Package net.opengis.wcs20
Interface ExtensionItemType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
ExtensionItemTypeImpl
public interface ExtensionItemType extends EObject
Contains one item from the csw:Extension container. This class does not come from the WCS model, it has been created to carry around name and namespace of the various values since various of them are literals- Author:
- Andrea Aime - GeoSolutions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
The name of the element containing the itemString
getNamespace()
The namespace of the elementObject
getObjectContent()
The content of the element, for simple elementsString
getSimpleContent()
The content of the element, for simple elementsvoid
setName(String value)
Sets the value of the 'Name
' attribute.void
setNamespace(String value)
Sets the value of the 'Namespace
' attribute.void
setObjectContent(Object value)
Sets the value of the 'Object Content
' reference.void
setSimpleContent(String value)
Sets the value of the 'Simple Content
' attribute.
-
-
-
Method Detail
-
getName
String getName()
The name of the element containing the item
-
setName
void setName(String value)
Sets the value of the 'Name
' attribute.- Parameters:
value
- the new value of the 'Name' attribute.- See Also:
getName()
-
getNamespace
String getNamespace()
The namespace of the element
-
setNamespace
void setNamespace(String value)
Sets the value of the 'Namespace
' attribute.- Parameters:
value
- the new value of the 'Namespace' attribute.- See Also:
getNamespace()
-
getSimpleContent
String getSimpleContent()
The content of the element, for simple elements
-
setSimpleContent
void setSimpleContent(String value)
Sets the value of the 'Simple Content
' attribute.- Parameters:
value
- the new value of the 'Simple Content' attribute.- See Also:
getSimpleContent()
-
getObjectContent
Object getObjectContent()
The content of the element, for simple elements
-
setObjectContent
void setObjectContent(Object value)
Sets the value of the 'Object Content
' reference.- Parameters:
value
- the new value of the 'Object Content' reference.- See Also:
getObjectContent()
-
-