| Java Doc By Examples | |
| Prev Class | Next Class | Frames | No Frames |
| Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Objectjavax.xml.bind.Binder<XmlNode>public abstract class Binder<XmlNode>extends ObjectConstructor Summary | |
| |
Method Summary | |
abstract ValidationEventHandler | |
abstract Object |
|
abstract Object |
|
abstract Schema | |
abstract XmlNode |
|
abstract void | |
abstract void |
|
abstract void |
|
abstract void | |
abstract Object |
|
abstract Object |
|
abstract XmlNode | |
abstract XmlNode | |
Methods inherited from class java.lang.Object | |
clone, equals, extends Object> getClass, finalize, hashCode, notify, notifyAll, toString, wait, wait, wait | |
1: 2: package javasoft.sqe.tests.bind.binder; 3: 4: ... 5: import java.util.LinkedHashMap; 6: import javax.xml.bind.Binder; 7: import javax.xml.bind.JAXBContext; 8: ... 9: 10: public Binder<Node> getBinder() throws JAXBException{ 11: JAXBContext jaxbContext = getJAXBContext(); 12: ... 13: try{ 14: binder.getProperty(null);
public abstract void setEventHandler(ValidationEventHandler handler) throws JAXBException
1: 2: package javasoft.sqe.tests.bind.binder; 3: 4: ... 5: import java.util.LinkedHashMap; 6: import javax.xml.bind.Binder; 7: import javax.xml.bind.JAXBContext; 8: ... 9: 10: public Binder<Node> getBinder() throws JAXBException{ 11: JAXBContext jaxbContext = getJAXBContext(); 12: ... 13: try { 14: binder.setEventHandler(validationEventHandler);
1: 2: package javasoft.sqe.tests.bind.binder; 3: 4: ... 5: import java.util.LinkedHashMap; 6: import javax.xml.bind.Binder; 7: import javax.xml.bind.JAXBContext; 8: ... 9: 10: public Binder<Node> getBinder() throws JAXBException{ 11: JAXBContext jaxbContext = getJAXBContext(); 12: ... 13: try{ 14: binder.setProperty(null,"-");