uk.ac.starlink.votable.dom.DelegatingNotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stil Show documentation
Show all versions of stil Show documentation
Starlink Tables Infrastructure Library
package uk.ac.starlink.votable.dom;
import org.w3c.dom.Notation;
public class DelegatingNotation extends DelegatingNode implements Notation {
private final Notation base_;
protected DelegatingNotation( Notation base, DelegatingDocument doc ) {
super( base, doc );
base_ = base;
}
public String getPublicId() {
return base_.getPublicId();
}
public String getSystemId() {
return base_.getSystemId();
}
}