MarshallingContext |
MarshallingContext.attribute(int index,
String name,
int value) |
Generate integer attribute.
|
MarshallingContext |
MarshallingContext.attribute(int index,
String name,
int value,
String[] table) |
Generate enumeration attribute.
|
MarshallingContext |
MarshallingContext.attribute(int index,
String name,
String value) |
Generate text attribute.
|
MarshallingContext |
MarshallingContext.closeStartContent() |
Close start tag with content to follow.
|
MarshallingContext |
MarshallingContext.closeStartEmpty() |
Close start tag with no content (empty tag).
|
MarshallingContext |
MarshallingContext.content(int value) |
Add integer content to current element.
|
MarshallingContext |
MarshallingContext.content(int value,
String[] table) |
Add enumeration content to current element.
|
MarshallingContext |
MarshallingContext.content(String value) |
Add text content to current element.
|
MarshallingContext |
MarshallingContext.element(int index,
String name,
int value) |
Generate complete element with integer content.
|
MarshallingContext |
MarshallingContext.element(int index,
String name,
int value,
String[] table) |
Generate complete element with enumeration content.
|
MarshallingContext |
MarshallingContext.element(int index,
String name,
String value) |
Generate complete element with text content.
|
MarshallingContext |
MarshallingContext.endTag(int index,
String name) |
Generate end tag for element.
|
MarshallingContext |
MarshallingContext.marshalCollection(ArrayList col) |
Marshal all items in a collection.
|
MarshallingContext |
MarshallingContext.marshalCollection(Collection col) |
Marshal all items in a collection.
|
MarshallingContext |
MarshallingContext.marshalCollection(Vector col) |
Marshal all items in a collection.
|
MarshallingContext |
MarshallingContext.startTag(int index,
String name) |
Generate start tag for element without attributes.
|
MarshallingContext |
MarshallingContext.startTagAttributes(int index,
String name) |
Generate start tag for element with attributes.
|
MarshallingContext |
MarshallingContext.startTagNamespaces(int index,
String name,
int[] nums,
String[] prefs) |
Generate start tag for element with namespaces.
|
MarshallingContext |
MarshallingContext.writeCData(String text) |
Write CDATA text to document.
|
MarshallingContext |
MarshallingContext.writeContent(String text) |
Write content value with character entity substitutions.
|