Class SDOCSUnmarshalListener
- java.lang.Object
-
- org.eclipse.persistence.sdo.helper.SDOCSUnmarshalListener
-
- All Implemented Interfaces:
org.eclipse.persistence.internal.oxm.Unmarshaller.Listener,XMLUnmarshalListener
- Direct Known Subclasses:
SDOUnmarshalListener
public class SDOCSUnmarshalListener extends Object implements XMLUnmarshalListener
Purpose: Implementation of XMLUnmarshalListener used when unmarshalling XML to XMLDocuments
Responsibilities:
- When creating a DataObject we need to call setType and setHelperContext with the appropriate values
-
-
Constructor Summary
Constructors Constructor Description SDOCSUnmarshalListener(commonj.sdo.helper.HelperContext aContext)SDOCSUnmarshalListener(commonj.sdo.helper.HelperContext aContext, boolean bIsCSUnmarshalListener)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterUnmarshal(Object target, Object parent)Event that will be called after objects are unmarshalled.voidbeforeUnmarshal(Object target, Object parent)Event that will be called before objects are unmarshalled.
-
-
-
Method Detail
-
beforeUnmarshal
public void beforeUnmarshal(Object target, Object parent)
Description copied from interface:org.eclipse.persistence.internal.oxm.Unmarshaller.ListenerEvent that will be called before objects are unmarshalled.- Specified by:
beforeUnmarshalin interfaceorg.eclipse.persistence.internal.oxm.Unmarshaller.Listener- Parameters:
target- A newly created instance of the object to be unmarshalled.parent- the owning object of the object that will be unmarshalled. This may be null.
-
afterUnmarshal
public void afterUnmarshal(Object target, Object parent)
Description copied from interface:org.eclipse.persistence.internal.oxm.Unmarshaller.ListenerEvent that will be called after objects are unmarshalled.- Specified by:
afterUnmarshalin interfaceorg.eclipse.persistence.internal.oxm.Unmarshaller.Listener- Parameters:
target- the object that was unmarshalled.parent- the owning object of the object that was unmarshalled. This may be null.
-
-