X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.browsing.ui.common%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fcommon%2Fstate%2FGraphExplorerStateNodeBean.java;fp=bundles%2Forg.simantics.browsing.ui.common%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fcommon%2Fstate%2FGraphExplorerStateNodeBean.java;h=67c5c9d7a54a0833bea422443b191759825c356d;hb=b4d5af2207087dbb580c1312ee3a4f115d2b8e2d;hp=0000000000000000000000000000000000000000;hpb=d5d681fba3e61c7121c0efd34e030c13f5c839c9;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/state/GraphExplorerStateNodeBean.java b/bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/state/GraphExplorerStateNodeBean.java new file mode 100644 index 000000000..67c5c9d7a --- /dev/null +++ b/bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/state/GraphExplorerStateNodeBean.java @@ -0,0 +1,27 @@ +/******************************************************************************* + * Copyright (c) 2012 Association for Decentralized Information Management in + * Industry THTH ry. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +package org.simantics.browsing.ui.common.state; + +import java.util.TreeMap; + +import org.simantics.databoard.util.Bean; + +/** + * @author Antti Villberg + */ +public class GraphExplorerStateNodeBean extends Bean { + + public static final GraphExplorerStateNodeBean[] NONE = {}; + + public TreeMap map = new TreeMap(); + +}