comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:d5cd409b8a18
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 }