jadex.xml.writer.WriteContextAndroid Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-android-xmlpull Show documentation
Show all versions of jadex-android-xmlpull Show documentation
This Project includes the a variant of the Jadex XML Parser using the Android XML Pull API.
The newest version!
package jadex.xml.writer;
import jadex.commons.collection.MultiCollection;
import java.util.ArrayList;
import java.util.IdentityHashMap;
import java.util.List;
import java.util.Map;
import org.xmlpull.v1.XmlSerializer;
/**
* Android Implementation of {@link AWriteContext}.
*/
public class WriteContextAndroid extends AWriteContext
{
// -------- constructors --------
/**
* Create a new write context.
*/
public WriteContextAndroid(IObjectWriterHandler handler, XmlSerializer writer, Object usercontext, Object rootobject,
ClassLoader classloader)
{
this(handler, writer, usercontext, rootobject, classloader, new IdentityHashMap(), new ArrayList(), new MultiCollection());
}
/**
* Create a new write context.
*/
public WriteContextAndroid(IObjectWriterHandler handler, XmlSerializer writer, Object usercontext, Object rootobject,
ClassLoader classloader, Map writtenobs, List stack, MultiCollection preprocessors)
{
super(handler, writer, usercontext, rootobject, classloader, writtenobs, stack, preprocessors);
}
// -------- methods --------
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy