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

uk.ac.starlink.votable.dom.DelegatingNotation Maven / Gradle / Ivy

There is a newer version: 4.3
Show newest version
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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy