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

com.thaiopensource.resolver.xml.ExternalDTDSubsetIdentifier Maven / Gradle / Ivy

package com.thaiopensource.resolver.xml;

/**
 *
 */
public class ExternalDTDSubsetIdentifier extends ExternalIdentifier {
  private final String doctypeName;

  public ExternalDTDSubsetIdentifier(String href, String base, String publicId, String doctypeName) {
    super(href, base, publicId);
    this.doctypeName = doctypeName;
  }

  public String getDoctypeName() {
    return doctypeName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy