comparison WebServiceExtensionsV1.1/WebServiceToolWorkflow_REST_SOAP/lib/SAWADLParser/src/javax/wadls/extensions/schema/SchemaImport.java @ 0:049760c677de default tip

Galaxy WSExtensions added successfully
author uga-galaxy-group
date Tue, 05 Jul 2011 19:34:18 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:049760c677de
1 /*
2 * (c) Copyright IBM Corp 2004, 2005
3 */
4
5 package javax.wadls.extensions.schema;
6
7
8 /**
9 * Represents an import element within a schema element.
10 * Similar to an include or redefine, but includes a namespace.
11 *
12 * @author Jeremy Hughes <hughesj@uk.ibm.com>
13 */
14 public interface SchemaImport extends SchemaReference
15 {
16 /**
17 * @return Returns the namespace.
18 */
19 public abstract String getNamespaceURI();
20
21 /**
22 * @param namespace The namespace to set.
23 */
24 public abstract void setNamespaceURI(String namespace);
25 }