diff WebServiceToolWorkflow/lib/SAWADLParser/src/javax/wadls/extensions/schema/SchemaImport.java @ 0:d5cd409b8a18 default tip

Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
author ganjoo
date Tue, 07 Jun 2011 18:00:50 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebServiceToolWorkflow/lib/SAWADLParser/src/javax/wadls/extensions/schema/SchemaImport.java	Tue Jun 07 18:00:50 2011 -0400
@@ -0,0 +1,25 @@
+/*
+ * (c) Copyright IBM Corp 2004, 2005 
+ */
+
+package javax.wadls.extensions.schema;
+
+
+/**
+ * Represents an import element within a schema element.
+ * Similar to an include or redefine, but includes a namespace.
+ * 
+ * @author Jeremy Hughes <hughesj@uk.ibm.com>
+ */
+public interface SchemaImport extends SchemaReference
+{
+  /**
+   * @return Returns the namespace.
+   */
+  public abstract String getNamespaceURI();
+
+  /**
+   * @param namespace The namespace to set.
+   */
+  public abstract void setNamespaceURI(String namespace);
+}
\ No newline at end of file