All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.agimatec.commons.config.sax.StringHandler Maven / Gradle / Ivy

There is a newer version: 2.5.27
Show newest version
package com.agimatec.commons.config.sax;

import org.xml.sax.Attributes;

/**
 * Title:
 * Description:
 * Company:
 *
 * @author Roman Stumm
 */
class StringHandler extends PrimNodeHandler {
    public StringHandler(final String aTag) {
        super(aTag);
    }

    protected Class getInstanceClass() {
        return String.class;
    }

    protected Object startNode(final Attributes attr) {
        return getValue(attr);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy