Interface AbsItfInclude<S extends AbsItfSchema>
-
- All Superinterfaces:
SchemaElement,Serializable
- All Known Subinterfaces:
AbsItfImport<S>,AbsItfRedefine<S>,Import,Include,Redefine
- All Known Implementing Classes:
AbstractImportImpl,AbstractIncludeImpl,ImportImpl,IncludeImpl,RedefineImpl
public interface AbsItfInclude<S extends AbsItfSchema> extends SchemaElement
- Author:
- Nicolas Salatge - EBM WebSourcing
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description URIgetLocationURI()Get the location URI of this import.SgetSchema()This property can be used to hang a referenced SchemaImpl, and the top-level SchemaImpl (i.e. the one with the <import>) will use this SchemaImpl when resolving referenced parts.voidsetLocationURI(URI locationURI)Set the location URI of this import.voidsetSchema(S schema)This property can be used to hang a referenced SchemaImpl, and the top-level SchemaImpl (i.e. the one with the <import>) will use this SchemaImpl when resolving referenced parts.-
Methods inherited from interface org.ow2.easywsdl.schema.api.SchemaElement
createDocumentation, equals, getDocumentation, getOtherAttributes, hashCode, setDocumentation
-
-
-
-
Method Detail
-
setLocationURI
void setLocationURI(URI locationURI)
Set the location URI of this import.- Parameters:
locationURI- the desired location URI
-
getLocationURI
URI getLocationURI()
Get the location URI of this import.- Returns:
- the schema location
URIof this import ornullif undefined.
-
setSchema
void setSchema(S schema)
This property can be used to hang a referenced SchemaImpl, and the top-level SchemaImpl (i.e. the one with the <import>) will use this SchemaImpl when resolving referenced parts. This would need to be made into a generic reference to handle other types of referenced documents.
-
getSchema
S getSchema()
This property can be used to hang a referenced SchemaImpl, and the top-level SchemaImpl (i.e. the one with the <import>) will use this SchemaImpl when resolving referenced parts. This would need to be made into a generic reference to handle other types of referenced documents.
-
-