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

com.thaiopensource.xml.dtd.parse.Notation Maven / Gradle / Ivy

There is a newer version: 20220510
Show newest version
package com.thaiopensource.xml.dtd.parse;

import com.thaiopensource.xml.em.ExternalId;

class Notation {
  final String name;
  String systemId;
  String publicId;
  String baseUri;
  
  Notation(String name) {
    this.name = name;
  }

  ExternalId getExternalId() {
    return new ExternalId(systemId, publicId, baseUri);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy