/**
* The attribute property.
*/
- private Property _property;
+ private Property property;
/**
* Constructor for the AFPAttribute.
*/
protected AFPAttribute(String name) {
super(0);
- _property = null;
+ property = null;
}
/**
* @return property The property object.
*/
public Property make(PropertyList propertyList) {
- if (_property == null) {
- _property = make(propertyList, "", propertyList.getParentFObj());
+ if (property == null) {
+ property = make(propertyList, "", propertyList.getParentFObj());
}
- return _property;
+ return property;
}
}
\ No newline at end of file
*/
public class AFPElementMapping extends ElementMapping {
+ /** page element */
public static final String PAGE = "page";
+ /** page group element */
public static final String PAGE_GROUP = "page-group";
+ /** tag logical element */
public static final String TAG_LOGICAL_ELEMENT = "tag-logical-element";
+ /** include page overlay element */
public static final String INCLUDE_PAGE_OVERLAY = "include-page-overlay";
+ /** include page segment element */
public static final String INCLUDE_PAGE_SEGMENT = "include-page-segment";
/** NOP */