List of usage examples for org.xml.sax.helpers DefaultHandler subclass-usage
From source file org.jajuk.base.Collection.java
/** * Items root container. */ public final class Collection extends DefaultHandler { /** The Constant TAG_CLOSE_NEWLINE. */ private static final String TAG_CLOSE_NEWLINE = ">\n";
From source file com.ctctlabs.ctctwsjavalib.CTCTConnection.java
public class CTCTConnection extends DefaultHandler { public static final String API_BASE = "https://api.constantcontact.com"; public static final String OAUTH2_TOKENINFO_LINK = "https://oauth2.constantcontact.com/oauth2/tokeninfo.htm"; private String username; private String accessToken; // for OAuth2.0
From source file Writer.java
/**
* A sample SAX2 writer. This sample program illustrates how to register a SAX2
* ContentHandler and receive the callbacks in order to print a document that is
* parsed.
*
* @author Andy Clark, IBM
From source file org.wso2.carbon.mediator.datamapper.engine.input.readers.XMLReader.java
/** * This class implements {@link Reader} interface and xml reader for data mapper engine using SAX */ public class XMLReader extends DefaultHandler implements Reader { private static final Log log = LogFactory.getLog(XMLReader.class);
From source file org.eclipse.mylyn.internal.jira.core.service.web.rss.JiraRssHandler.java
/**
* From the wiki:
* <ul>
* <li>Cascading Select - Multiple select lists where the options for the second select list dynamically updates based
* on the value of the first</li>
* <li>Date Picker - Input field allowing input with a date picker and enforcing valid dates</li>
From source file org.jahia.services.importexport.FilesAclImportHandler.java
public class FilesAclImportHandler extends DefaultHandler { private static Logger logger = org.slf4j.LoggerFactory.getLogger(FilesAclImportHandler.class); private static Logger corruptedFilesLogger = org.slf4j.LoggerFactory .getLogger(FilesAclImportHandler.class.getName() + ".CorruptedFiles"); private Resource archive;
From source file TestModelBuilder.java
class SAXModelBuilder extends DefaultHandler { Stack<SimpleElement> stack = new Stack<SimpleElement>(); SimpleElement element; public void startElement(String namespace, String localname, String qname, Attributes atts)
From source file org.apache.syncope.core.util.ImportExport.java
@Component public class ImportExport extends DefaultHandler { /** * Logger. */
From source file edu.virginia.speclab.juxta.author.model.JuxtaXMLParser.java
/**
* Normally juxta reads in either an XML file with a very limited set of tags
* (call this a juxta xml file) and simply parses out the raw text, making note
* of some line number annotations with data given in some of the tags.
*
* What we want to be able to do is read an arbitrary XML file with an
From source file org.apache.cayenne.map.MapLoader.java
/** * Default MapLoader. Its responsibilities include reading DataMaps from XML files and * saving DataMap objects back to XML. */ public class MapLoader extends DefaultHandler {