| java.lang.Object org.jboss.test.xml.book.BookObjectFactory
BookObjectFactory | public class BookObjectFactory implements ObjectModelFactory(Code) | | org.jboss.xb.binding.ObjectModelFactory implementation that accepts data chuncks from unmarshaller
and assembles them into an instance Book.
author: Alexey Loubyansky version: $Revision: 57211 $ |
Method Summary | |
public void | addChild(Book book, BookCharacter character, UnmarshallingContext navigator, String namespaceURI, String localName) Called when parsing character is complete. | public Object | completeRoot(Object root, UnmarshallingContext ctx, String uri, String name) | public Object | newChild(Book book, UnmarshallingContext navigator, String namespaceURI, String localName, Attributes attrs) Called when parsing of a new element started. | public Object | newRoot(Object root, UnmarshallingContext navigator, String namespaceURI, String localName, Attributes attrs) Return the root. | public void | setValue(Book book, UnmarshallingContext navigator, String namespaceURI, String localName, String value) Called when a child element with simple content is read for book. | public void | setValue(BookCharacter character, UnmarshallingContext navigator, String namespaceURI, String localName, String value) Called when a child element with simple content is read for character. |
addChild | public void addChild(Book book, BookCharacter character, UnmarshallingContext navigator, String namespaceURI, String localName)(Code) | | Called when parsing character is complete.
|
setValue | public void setValue(Book book, UnmarshallingContext navigator, String namespaceURI, String localName, String value)(Code) | | Called when a child element with simple content is read for book.
|
setValue | public void setValue(BookCharacter character, UnmarshallingContext navigator, String namespaceURI, String localName, String value)(Code) | | Called when a child element with simple content is read for character.
|
|
|