]> gerrit.simantics Code Review - simantics/interop.git/blobdiff - org.simantics.express/src/org/simantics/express/ast/types/ExpParametrizedType.java
Moved /interoperability/branches/dev/* to /interoperability/trunk
[simantics/interop.git] / org.simantics.express / src / org / simantics / express / ast / types / ExpParametrizedType.java
diff --git a/org.simantics.express/src/org/simantics/express/ast/types/ExpParametrizedType.java b/org.simantics.express/src/org/simantics/express/ast/types/ExpParametrizedType.java
new file mode 100644 (file)
index 0000000..157f17d
--- /dev/null
@@ -0,0 +1,19 @@
+/*******************************************************************************\r
+ * Copyright (c) 2007- VTT Technical Research Centre of Finland.\r
+ * All rights reserved. This program and the accompanying materials\r
+ * are made available under the terms of the Eclipse Public License v1.0\r
+ * which accompanies this distribution, and is available at\r
+ * http://www.eclipse.org/legal/epl-v10.html\r
+ *\r
+ * Contributors:\r
+ *     VTT Technical Research Centre of Finland - initial API and implementation\r
+ *******************************************************************************/\r
+package org.simantics.express.ast.types;\r
+\r
+public abstract class ExpParametrizedType implements ExpType {\r
+       ExpType parameter;\r
+\r
+       public ExpParametrizedType(ExpType parameter) {\r
+               this.parameter = parameter;\r
+       }       \r
+}\r