view 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 source

/*
 * (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);
}