Package com.adobe.xmp.schema.rng.model
Interface PropertyAnnotationInfo
-
- All Known Implementing Classes:
PropertyInfo
public interface PropertyAnnotationInfo
An interface which describes storage of information extracted from annotations into PropertyInfo objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.adobe.xmp.schema.rng.parser.annotation.RNGDecorationAnnotation.ACCESS
getAccess()
java.lang.String
getDescription()
java.lang.String
getLabel()
void
setAccess(com.adobe.xmp.schema.rng.parser.annotation.RNGDecorationAnnotation.ACCESS mAccess)
void
setDescription(java.lang.String mDescription)
void
setLabel(java.lang.String mLabel)
-
-
-
Method Detail
-
setLabel
void setLabel(java.lang.String mLabel)
- Parameters:
mLabel
- the mLabel to set
-
getLabel
java.lang.String getLabel()
- Returns:
- the mLabel
-
setDescription
void setDescription(java.lang.String mDescription)
- Parameters:
mDescription
- the mDescription to set
-
getDescription
java.lang.String getDescription()
- Returns:
- the mDescription
-
setAccess
void setAccess(com.adobe.xmp.schema.rng.parser.annotation.RNGDecorationAnnotation.ACCESS mAccess)
- Parameters:
mAccess
- the mAccess to set
-
getAccess
com.adobe.xmp.schema.rng.parser.annotation.RNGDecorationAnnotation.ACCESS getAccess()
- Returns:
- the mAccess
-
-