traitMapping, so that these methods can be overridden in
subclasses of Property.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197103
13f79535-47bb-0310-9956-
ffa450edef68
;
public static final int dataTypes = NOTYPE;
+
+ public int getDataTypes() {
+ return dataTypes;
+ }
public static final int initialValueType = NOTYPE_IT;
+
+ public int getInitialValueType() {
+ return initialValueType;
+ }
+
public static final int inherited = NO;
+ public int getInherited() {
+ return inherited;
+ }
+
+ private static final int traitMapping = NO_TRAIT;
+
+ public int getTraitMapping() {
+ return traitMapping;
+ }
+
public static Map enumHash = null;
public Property() {}