uk.ac.starlink.votable.dom.DelegatingEntityReference 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.EntityReference;
public class DelegatingEntityReference extends DelegatingNode
implements EntityReference {
protected DelegatingEntityReference( EntityReference base,
DelegatingDocument doc ) {
super( base, doc );
}
}