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