~ubuntu-branches/ubuntu/utopic/jing-trang/utopic

« back to all changes in this revision

Viewing changes to mod/resolver/src/main/com/thaiopensource/resolver/xml/ExternalDTDSubsetIdentifier.java

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Thibault
  • Date: 2009-09-01 15:53:03 UTC
  • Revision ID: james.westby@ubuntu.com-20090901155303-2kweef05h5v9j3ni
Tags: upstream-20090818
ImportĀ upstreamĀ versionĀ 20090818

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package com.thaiopensource.resolver.xml;
 
2
 
 
3
/**
 
4
 *
 
5
 */
 
6
public class ExternalDTDSubsetIdentifier extends ExternalIdentifier {
 
7
  private final String doctypeName;
 
8
 
 
9
  public ExternalDTDSubsetIdentifier(String href, String base, String publicId, String doctypeName) {
 
10
    super(href, base, publicId);
 
11
    this.doctypeName = doctypeName;
 
12
  }
 
13
 
 
14
  public String getDoctypeName() {
 
15
    return doctypeName;
 
16
  }
 
17
}