
org.sourceprojects.xmlparser.internal.DefinitionBuilderImpl Maven / Gradle / Ivy
/*
*
* This file is part of XmlParser.
*
* Foobar is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Foobar is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Foobar. If not, see .
*
*/
package org.sourceprojects.xmlparser.internal;
import org.sourceprojects.xmlparser.DefinitionBuilder;
import org.w3c.dom.Document;
/**
*
* @author noctarius
* @since 0.0.1
*/
public class DefinitionBuilderImpl implements DefinitionBuilder {
private final Document document;
public DefinitionBuilderImpl(Document document) {
this.document = document;
}
@Override
public Document getDocument() {
return document;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy