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

com.feilong.lib.digester3.xmlrules.SetNamespaceURIRule Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
package com.feilong.lib.digester3.xmlrules;

import org.xml.sax.Attributes;

import com.feilong.lib.digester3.Rule;

/**
 * @since 3.0
 */
final class SetNamespaceURIRule extends Rule{

    private final NameSpaceURIRulesBinder rulesBinder;

    public SetNamespaceURIRule(NameSpaceURIRulesBinder rulesBinder){
        this.rulesBinder = rulesBinder;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void begin(String namespace,String name,Attributes attributes) throws Exception{
        rulesBinder.addNamespaceURI(attributes.getValue("namespaceURI"));
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void end(String namespace,String name) throws Exception{
        rulesBinder.removeNamespaceURI();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy