Class ValuePropertyLoader
- java.lang.Object
-
- com.sun.xml.bind.v2.runtime.unmarshaller.Loader
-
- com.sun.xml.bind.v2.runtime.unmarshaller.ValuePropertyLoader
-
public class ValuePropertyLoader extends Loader
Reads a text value and set to the current target.- Author:
- Kohsuke Kawaguchi
- See Also:
LeafPropertyLoader
-
-
Field Summary
-
Fields inherited from class com.sun.xml.bind.v2.runtime.unmarshaller.Loader
expectText
-
-
Constructor Summary
Constructors Constructor Description ValuePropertyLoader(TransducedAccessor xacc)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
text(UnmarshallingContext.State state, java.lang.CharSequence text)
Called when this loaderis an active loaderand we see a chunk of text.-
Methods inherited from class com.sun.xml.bind.v2.runtime.unmarshaller.Loader
childElement, expectText, fireAfterUnmarshal, fireBeforeUnmarshal, getExpectedAttributes, getExpectedChildElements, handleGenericError, handleGenericException, handleGenericException, handleParseConversionException, leaveElement, reportError, reportError, reportUnexpectedChildElement, startElement
-
-
-
-
Constructor Detail
-
ValuePropertyLoader
public ValuePropertyLoader(TransducedAccessor xacc)
-
-
Method Detail
-
text
public void text(UnmarshallingContext.State state, java.lang.CharSequence text) throws org.xml.sax.SAXException
Description copied from class:Loader
Called when this loaderis an active loaderand we see a chunk of text. The runtime makes sure that adjacent characters (even those separated by comments, PIs, etc) are reported as one event. IOW, you won't see two text event calls in a row.
-
-