Package com.adobe.xmp.schema.rng.model
Interface PropertyAnnotationInfo
-
- All Known Implementing Classes:
PropertyInfo
public interface PropertyAnnotationInfoAn 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.ACCESSgetAccess()java.lang.StringgetDescription()java.lang.StringgetLabel()voidsetAccess(com.adobe.xmp.schema.rng.parser.annotation.RNGDecorationAnnotation.ACCESS mAccess)voidsetDescription(java.lang.String mDescription)voidsetLabel(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
-
-