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

org.codehaus.stax2.evt.DTD2 Maven / Gradle / Ivy

Go to download

A Java implementation of a KillBill Payment Plugin that uses Authorize.Net as a payment gateway

There is a newer version: 2.8.196
Show newest version
package org.codehaus.stax2.evt;

import javax.xml.stream.events.DTD;

/**
 * Interface that extends basic {@link DTD} with methods that are
 * necessary to completely reproduce actual DOCTYPE declaration
 * constructs in xml documents.
 */
public interface DTD2
    extends DTD
{
    public String getRootName();

    public String getSystemId();

    public String getPublicId();

    public String getInternalSubset();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy