X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.modeling.ui%2Fsrc%2Forg%2Fsimantics%2Fmodeling%2Fui%2FmodelBrowser2%2Fcontributions%2FIsComponentTest.java;fp=bundles%2Forg.simantics.modeling.ui%2Fsrc%2Forg%2Fsimantics%2Fmodeling%2Fui%2FmodelBrowser2%2Fcontributions%2FIsComponentTest.java;h=a80c5806053ef00c01f82f362764163be2cd5455;hp=5067498ff6f51942c90113605cf403c4046b7225;hb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;hpb=24e2b34260f219f0d1644ca7a138894980e25b14 diff --git a/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/modelBrowser2/contributions/IsComponentTest.java b/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/modelBrowser2/contributions/IsComponentTest.java index 5067498ff..a80c58060 100644 --- a/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/modelBrowser2/contributions/IsComponentTest.java +++ b/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/modelBrowser2/contributions/IsComponentTest.java @@ -1,58 +1,58 @@ -/******************************************************************************* - * Copyright (c) 2013 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: - * Semantum Oy - initial API and implementation - *******************************************************************************/ -package org.simantics.modeling.ui.modelBrowser2.contributions; - -import org.simantics.browsing.ui.model.tests.Test; -import org.simantics.db.ReadGraph; -import org.simantics.db.Resource; -import org.simantics.db.exception.DatabaseException; -import org.simantics.db.layer0.variable.Variable; -import org.simantics.structural.stubs.StructuralResource2; - -/** - * @author Tuukka Lehtonen - */ -public enum IsComponentTest implements Test { - - INSTANCE; - - public static IsComponentTest get() { - return INSTANCE; - } - - @Override - public boolean isCompatible(Class contentType) { - return Variable.class.equals(contentType) || - Resource.class.equals(contentType); - } - - @Override - public boolean test(ReadGraph graph, Object content) throws DatabaseException { - if (content instanceof Variable) { - Variable v = (Variable) content; - //System.out.println("Test variable: " + v.getURI(graph)); - StructuralResource2 STR = StructuralResource2.getInstance(graph); - Resource type = v.getPossibleType(graph, STR.Component); - //System.out.println("variable component type: " + NameUtils.getURIOrSafeNameInternal(graph, type)); - return type != null; - } else if (content instanceof Resource) { - Resource r = (Resource) content; - //System.out.println("Test resource: " + NameUtils.getURIOrSafeNameInternal(graph, r)); - StructuralResource2 STR = StructuralResource2.getInstance(graph); - Resource type = graph.getPossibleType(r, STR.Component); - //System.out.println("resource component type: " + NameUtils.getURIOrSafeNameInternal(graph, type)); - return type != null; - } - return false; - } - -} +/******************************************************************************* + * Copyright (c) 2013 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: + * Semantum Oy - initial API and implementation + *******************************************************************************/ +package org.simantics.modeling.ui.modelBrowser2.contributions; + +import org.simantics.browsing.ui.model.tests.Test; +import org.simantics.db.ReadGraph; +import org.simantics.db.Resource; +import org.simantics.db.exception.DatabaseException; +import org.simantics.db.layer0.variable.Variable; +import org.simantics.structural.stubs.StructuralResource2; + +/** + * @author Tuukka Lehtonen + */ +public enum IsComponentTest implements Test { + + INSTANCE; + + public static IsComponentTest get() { + return INSTANCE; + } + + @Override + public boolean isCompatible(Class contentType) { + return Variable.class.equals(contentType) || + Resource.class.equals(contentType); + } + + @Override + public boolean test(ReadGraph graph, Object content) throws DatabaseException { + if (content instanceof Variable) { + Variable v = (Variable) content; + //System.out.println("Test variable: " + v.getURI(graph)); + StructuralResource2 STR = StructuralResource2.getInstance(graph); + Resource type = v.getPossibleType(graph, STR.Component); + //System.out.println("variable component type: " + NameUtils.getURIOrSafeNameInternal(graph, type)); + return type != null; + } else if (content instanceof Resource) { + Resource r = (Resource) content; + //System.out.println("Test resource: " + NameUtils.getURIOrSafeNameInternal(graph, r)); + StructuralResource2 STR = StructuralResource2.getInstance(graph); + Resource type = graph.getPossibleType(r, STR.Component); + //System.out.println("resource component type: " + NameUtils.getURIOrSafeNameInternal(graph, type)); + return type != null; + } + return false; + } + +}