Index: lib/Makefile.am
===================================================================
RCS file: /share/darwin/darwin4/cvs/java/lib/Makefile.am,v
retrieving revision 1.4
diff -u -3 -p -u -r1.4 Makefile.am
--- lib/Makefile.am 2005/02/21 23:56:13 1.4
+++ lib/Makefile.am 2005/03/01 13:24:57
@@ -51,9 +51,9 @@ JAVAH = $(USER_JAVAH) -jni -classpath .:
if INSTALL_GLIBJ_ZIP
if FOUND_ECLIPSE
-pkgdata_DATA = rdf.jar eclipse.jar
+pkgdata_DATA = rdf.jar owls.jar eclipse.jar
else
-pkgdata_DATA = rdf.jar
+pkgdata_DATA = rdf.jar owls.jar
endif
endif # INSTALL_GLIBJ_ZIP
@@ -76,6 +76,9 @@ endif # INSTALL_CLASS_FILES
rdf.jar: classes compile-classes # resources
if test "$(JAR)" != ""; then rm rdf.jar; $(JAR) cf rdf.jar `find nongnu -path '*rdf*' -name '*class'` > /dev/null; fi
+
+owls.jar: classes compile-classes # resources
+ if test "$(JAR)" != ""; then rm owls.jar; $(JAR) cf owls.jar `find nongnu -path '*owls*' -name '*class'` > /dev/null; fi
if FOUND_ECLIPSE
Index: src/nongnu/cashews/owls/process/Parameter.java
===================================================================
RCS file: Parameter.java
diff -N Parameter.java
--- /dev/null Tue Mar 1 13:23:17 2005
+++ Parameter.java Tue Mar 1 13:24:57 2005
@@ -0,0 +1,43 @@
+/* Parameter.java -- Representation of a OWL-S process model parameter.
+ Copyright (C) 2005 The University of Sheffield.
+
+This file is part of the CASheW-s editor.
+
+The CASheW-s editor is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+The CASheW-s editor is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with The CASheW-s editor; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+02111-1307 USA.
+*/
+
+package nongnu.cashews.owls.process;
+
+import nongnu.cahsews.rdf.RDFURI;
+
+/**
+ * A Parameter
is a generalization of the
+ * inputs and outputs found within an OWL-S process.
+ *
+ * @author Andrew John Hughes (address@hidden)
+ */
+public class Parameter
+{
+
+ /**
+ * An RDFURI
which specifies the OWL class
+ * from which the values of this parameter are taken.
+ *
+ * @see nongnu.cashews.rdf.RDFURI
+ */
+ private RDFURI type;
+
+}