]> gerrit.simantics Code Review - simantics/3d.git/blobdiff - org.simantics.opencascade/src/org/simantics/opencascade/SolidModelProvider.java
White space clean-up
[simantics/3d.git] / org.simantics.opencascade / src / org / simantics / opencascade / SolidModelProvider.java
index bc45ec980237cc852d4d44071812c8a051fc4c48..5dbef231c3d54111c1e71595896b0144b3c01c4b 100644 (file)
@@ -1,11 +1,23 @@
-package org.simantics.opencascade;\r
-\r
-import java.util.Collection;\r
-\r
-import org.jcae.opencascade.jni.TopoDS_Shape;\r
-\r
-public interface SolidModelProvider {\r
-\r
-       \r
-       public Collection<TopoDS_Shape> getModel()  throws Exception;\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2012, 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:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.opencascade;
+
+import java.util.Collection;
+
+import org.jcae.opencascade.jni.TopoDS_Shape;
+import org.simantics.g3d.scenegraph.GeometryProvider;
+
+public interface SolidModelProvider extends GeometryProvider {
+
+       
+       public Collection<TopoDS_Shape> getModel()  throws Exception;
+}