Class Documentation
- java.lang.Object
-
- org.apache.olingo.odata2.api.edm.provider.Documentation
-
public class Documentation extends Object
Objects of this class represent documentation
-
-
Constructor Summary
Constructors Constructor Description Documentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AnnotationAttribute>getAnnotationAttributes()List<AnnotationElement>getAnnotationElements()StringgetLongDescription()StringgetSummary()DocumentationsetAnnotationAttributes(List<AnnotationAttribute> annotationAttributes)Sets the collection ofAnnotationAttributefor thisDocumentationDocumentationsetAnnotationElements(List<AnnotationElement> annotationElements)Sets the collection ofAnnotationElementfor thisDocumentationDocumentationsetLongDescription(String longDescription)Sets the long description for thisDocumentationDocumentationsetSummary(String summary)Sets the summary for thisDocumentation
-
-
-
Method Detail
-
getSummary
public String getSummary()
- Returns:
- String summary
-
getLongDescription
public String getLongDescription()
- Returns:
- String the long description
-
getAnnotationAttributes
public List<AnnotationAttribute> getAnnotationAttributes()
- Returns:
- collection of
AnnotationAttributeannotation attributes
-
getAnnotationElements
public List<AnnotationElement> getAnnotationElements()
- Returns:
- collection of
AnnotationElementannotation elements
-
setSummary
public Documentation setSummary(String summary)
Sets the summary for thisDocumentation- Parameters:
summary- Sumario- Returns:
Documentationfor method chaining
-
setLongDescription
public Documentation setLongDescription(String longDescription)
Sets the long description for thisDocumentation- Parameters:
longDescription- Descrição- Returns:
Documentationfor method chaining
-
setAnnotationAttributes
public Documentation setAnnotationAttributes(List<AnnotationAttribute> annotationAttributes)
Sets the collection ofAnnotationAttributefor thisDocumentation- Parameters:
annotationAttributes- Atributos- Returns:
Documentationfor method chaining
-
setAnnotationElements
public Documentation setAnnotationElements(List<AnnotationElement> annotationElements)
Sets the collection ofAnnotationElementfor thisDocumentation- Parameters:
annotationElements- Elementos- Returns:
Documentationfor method chaining
-
-