Package org.apache.olingo.odata2.api.edm
Interface EdmAnnotationElement
-
public interface EdmAnnotationElement@org.apache.olingo.odata2.DoNotImplement A CSDL AnnotationElement elementEdmAnnotationElement is a custom XML element which can be applied to a CSDL element.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<EdmAnnotationAttribute>getAttributes()Get the attributes of this custom elementList<EdmAnnotationElement>getChildElements()Get the child elements of the custom elementStringgetName()Get the name of the custom elementStringgetNamespace()Get the namespace of the custom elementStringgetPrefix()Get the prefix of the custom elementStringgetText()Get the XML data of the custom element
-
-
-
Method Detail
-
getNamespace
String getNamespace()
Get the namespace of the custom element- Returns:
- String
-
getPrefix
String getPrefix()
Get the prefix of the custom element- Returns:
- String
-
getName
String getName()
Get the name of the custom element- Returns:
- String
-
getText
String getText()
Get the XML data of the custom element- Returns:
- String
-
getChildElements
List<EdmAnnotationElement> getChildElements()
Get the child elements of the custom element- Returns:
- child elements of this
EdmAnnotationElementor null if no child elements exist
-
getAttributes
List<EdmAnnotationAttribute> getAttributes()
Get the attributes of this custom element- Returns:
- the attributes of this
EdmAnnotationElementor null if no attributes exist
-
-