int RENDER_RTF = 10;
// element constants
+ int FO_UNKNOWN = 0; // FObj base class
int FO_BASIC_LINK = 1;
int FO_BIDI_OVERRIDE = 2;
int FO_BLOCK = 3;
int FO_CHARACTER = 5;
int FO_COLOR_PROFILE = 6;
int FO_CONDITIONAL_PAGE_MASTER_REFERENCE = 7;
- int FO_DECLARATION = 8;
+ int FO_DECLARATIONS = 8;
int FO_EXTERNAL_GRAPHIC = 9;
int FO_FLOAT = 10;
int FO_FLOW = 11;
}
return -1;
}
+
+ /**
+ * Returns the Constants class integer value of this formatting object
+ * @return the integer enumeration of this FO
+ */
+ public int getNameId() {
+ return FO_UNKNOWN;
+ }
}
elem = elements[Constants.FO_ROOT];
elem.addProperty(Constants.PR_MEDIA_USAGE);
elem.addContent(Constants.FO_LAYOUT_MASTER_SET);
- elem.addContent(Constants.FO_DECLARATION);
+ elem.addContent(Constants.FO_DECLARATIONS);
elem.addContent(Constants.FO_PAGE_SEQUENCE);
- elem = elements[Constants.FO_DECLARATION];
+ elem = elements[Constants.FO_DECLARATIONS];
elem.addContent(Constants.FO_COLOR_PROFILE);
elem = elements[Constants.FO_COLOR_PROFILE];
return "fo:basic-link";
}
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_BASIC_LINK;
+ }
+
/**
* @return true (BasicLink can contain Markers)
* @todo see if can remove in favor of a BitSet for all FO's
return "fo:bidi-override";
}
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_BIDI_OVERRIDE;
+ }
+
/**
* @return true (BidiOverride can contain Markers)
*/
return "fo:block";
}
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_BLOCK;
+ }
+
/**
* @return true (Block can contain Markers)
*/
public String getName() {
return "fo:block-container";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_BLOCK_CONTAINER;
+ }
}
aLMV.serveCharacter(this);
}
+ /**
+ * @see org.apache.fop.fo.FObj#getName()
+ */
public String getName() {
return "fo:character";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_CHARACTER;
+ }
}
return vp;
}
-
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_EXTERNAL_GRAPHIC;
+ }
}
public String getName() {
return "fo:float";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_FLOAT;
+ }
}
public String getName() {
return "fo:footnote";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_FOOTNOTE;
+ }
}
public String getName() {
return "fo:footnote-body";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_FOOTNOTE_BODY;
+ }
}
public String getName() {
return "fo:initial-property-set";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_INITIAL_PROPERTY_SET;
+ }
}
public String getName() {
return "fo:inline";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_INLINE;
+ }
}
public String getName() {
return "fo:inline-container";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_INLINE_CONTAINER;
+ }
}
public String getName() {
return "fo:instream-foreign-object";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_INSTREAM_FOREIGN_OBJECT;
+ }
}
setup();
aLMV.serveLeader(this);
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_LEADER;
+ }
}
public String getName() {
return "fo:list-block";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_LIST_BLOCK;
+ }
}
public String getName() {
return "fo:list-item";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_LIST_ITEM;
+ }
}
public String getName() {
return "fo:list-item-body";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_LIST_ITEM_BODY;
+ }
}
public String getName() {
return "fo:list-item-label";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_LIST_ITEM_LABEL;
+ }
}
public String getName() {
return "fo:marker";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_MARKER;
+ }
}
public String getName() {
return "fo:multi-case";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_MULTI_CASE;
+ }
}
public String getName() {
return "fo:multi-properties";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_MULTI_PROPERTIES;
+ }
}
public String getName() {
return "fo:multi-property-set";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_MULTI_PROPERTY_SET;
+ }
}
public String getName() {
return "fo:multi-switch";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_MULTI_SWITCH;
+ }
}
public String getName() {
return "fo:multi-toggle";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_MULTI_TOGGLE;
+ }
}
public String getName() {
return "fo:page-number";
}
+
+ public int getNameId() {
+ return FO_PAGE_NUMBER;
+ }
}
}
return inline;
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_PAGE_NUMBER_CITATION;
+ }
}
public String getName() {
return "fo:retrieve-marker";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_RETRIEVE_MARKER;
+ }
+
}
public String getName() {
return "fo:table";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_TABLE;
+ }
}
public String getName() {
return "fo:table-and-caption";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_TABLE_AND_CAPTION;
+ }
}
public String getName() {
return "fo:table-body";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_TABLE_BODY;
+ }
}
public String getName() {
return "fo:table-caption";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_TABLE_CAPTION;
+ }
}
public String getName() {
return "fo:table-cell";
}
-
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_TABLE_CELL;
+ }
}
public String getName() {
return "fo:table-column";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_TABLE_COLUMN;
+ }
}
public String getName() {
return "fo:table-footer";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_TABLE_FOOTER;
+ }
}
public String getName() {
return "fo:table-header";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_TABLE_HEADER;
+ }
}
return "fo:table-row";
}
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_TABLE_ROW;
+ }
}
return "fo:wrapper";
}
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_WRAPPER;
+ }
}
}
}
+ /**
+ * @see org.apache.fop.fo.FObj#getName()
+ */
public String getName() {
return "fo:color-profile";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_COLOR_PROFILE;
+ }
}
}
}
+ /**
+ * @see org.apache.fop.fo.FObj#getName()
+ */
public String getName() {
return "fo:conditional-page-master-reference";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_CONDITIONAL_PAGE_MASTER_REFERENCE;
+ }
}
childNodes = null;
}
+ /**
+ * @see org.apache.fop.fo.FObj#getName()
+ */
public String getName() {
return "fo:declarations";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_DECLARATIONS;
+ }
}
public String getName() {
return "fo:flow";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_FLOW;
+ }
}
public String getName() {
return "fo:layout-master-set";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_LAYOUT_MASTER_SET;
+ }
}
public String getName() {
return "fo:page-sequence";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_PAGE_SEQUENCE;
+ }
}
public String getName() {
return "fo:page-sequence-master";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_PAGE_SEQUENCE_MASTER;
+ }
}
public String getName() {
return "fo:region-after";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_REGION_AFTER;
+ }
}
public String getName() {
return "fo:region-before";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_REGION_BEFORE;
+ }
}
public String getName() {
return "fo:region-body";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_REGION_BODY;
+ }
}
public String getName() {
return "fo:region-end";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_REGION_END;
+ }
}
public String getName() {
return "fo:region-start";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_REGION_START;
+ }
}
public String getName() {
return "fo:repeatable-page-master-alternatives";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_REPEATABLE_PAGE_MASTER_ALTERNATIVES;
+ }
}
public String getName() {
return "fo:repeatable-page-master-reference";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_REPEATABLE_PAGE_MASTER_REFERENCE;
+ }
}
public String getName() {
return "fo:root";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_ROOT;
+ }
+
}
public String getName() {
return "fo:simple-page-master";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_SIMPLE_PAGE_MASTER;
+ }
}
public String getName() {
return "fo:single-page-master-reference";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_SINGLE_PAGE_MASTER_REFERENCE;
+ }
}
public String getName() {
return "fo:static-content";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_STATIC_CONTENT;
+ }
}
public String getName() {
return "fo:title";
}
+
+ /**
+ * @see org.apache.fop.fo.FObj#getNameId()
+ */
+ public int getNameId() {
+ return FO_TITLE;
+ }
}