Interface SectionObject
-
- All Superinterfaces:
SectionDependencyObjectNode
- All Known Subinterfaces:
SectionObjectNode
- All Known Implementing Classes:
SectionObjectNodeImpl
public interface SectionObject extends SectionDependencyObjectNode
Object required by theSectionNode
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addAnnotation(java.lang.Object annotation)
Adds an annotation.java.lang.String
getSectionObjectName()
Obtains the name of thisSectionObject
.void
setTypeQualifier(java.lang.String qualifier)
Specifies the type qualifier.
-
-
-
Method Detail
-
getSectionObjectName
java.lang.String getSectionObjectName()
Obtains the name of thisSectionObject
.- Returns:
- Name of this
SectionObject
.
-
setTypeQualifier
void setTypeQualifier(java.lang.String qualifier)
Specifies the type qualifier.- Parameters:
qualifier
- Type qualifier.
-
addAnnotation
void addAnnotation(java.lang.Object annotation)
Adds an annotation.- Parameters:
annotation
- Annotation.
-
-