X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.g2d%2Fsrc%2Forg%2Fsimantics%2Fg2d%2Fscenegraph%2FICanvasSceneGraphProvider2.java;fp=bundles%2Forg.simantics.g2d%2Fsrc%2Forg%2Fsimantics%2Fg2d%2Fscenegraph%2FICanvasSceneGraphProvider2.java;h=c0af2f89096ced06f7e54d5d992213ef75fd1a99;hb=2bf1a3a2c26cf2a1ff4cd5b56971ef6a0ff10015;hp=0000000000000000000000000000000000000000;hpb=e9110dcc9cec82ed9a1028a324c24591afe698fc;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.g2d/src/org/simantics/g2d/scenegraph/ICanvasSceneGraphProvider2.java b/bundles/org.simantics.g2d/src/org/simantics/g2d/scenegraph/ICanvasSceneGraphProvider2.java new file mode 100644 index 000000000..c0af2f890 --- /dev/null +++ b/bundles/org.simantics.g2d/src/org/simantics/g2d/scenegraph/ICanvasSceneGraphProvider2.java @@ -0,0 +1,25 @@ +/******************************************************************************* + * Copyright (c) 2007, 2010 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.g2d.scenegraph; + +import org.simantics.db.layer0.variable.Variable; +import org.simantics.g2d.canvas.ICanvasContext; +import org.simantics.scenegraph.g2d.G2DSceneGraph; + +/** + * @author Antti Villberg + */ +public interface ICanvasSceneGraphProvider2 extends ICanvasSceneGraphProvider { + + public G2DSceneGraph initializeSceneGraph(ICanvasContext context, String modelURI, String RVI, Variable experiment); + +}