![JAR search and dependency download from the Maven repository](/logo.png)
org.odftoolkit.odfdom.pkg.manifest.OdfManifestDom Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odfdom-java Show documentation
Show all versions of odfdom-java Show documentation
ODFDOM is an OpenDocument Format (ODF) framework. Its purpose
is to provide an easy common way to create, access and
manipulate ODF files, without requiring detailed knowledge of
the ODF specification. It is designed to provide the ODF
developer community with an easy lightwork programming API
portable to any object-oriented language.
The current reference implementation is written in Java.
/************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
*
* Use is subject to license terms.
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* See the License for the specific language governing permissions and
* limitations under the License.
*
************************************************************************/
package org.odftoolkit.odfdom.pkg.manifest;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathFactory;
import org.odftoolkit.odfdom.dom.OdfSchemaDocument;
import org.odftoolkit.odfdom.pkg.OdfFileDom;
import org.odftoolkit.odfdom.pkg.OdfPackage;
/**
* The DOM representation of the ODF manifest.xml file of an ODF document.
*
* @since 0.8.9
*/
public class OdfManifestDom extends OdfFileDom {
private static final long serialVersionUID = 8149848234988627233L;
/**
* Creates the DOM representation of an XML file of an Odf document.
*
* @param odfDocument
* the document the XML files belongs to
* @param packagePath
* the internal package path to the XML file
*/
public OdfManifestDom(OdfSchemaDocument odfDocument, String packagePath) {
super(odfDocument, packagePath);
}
/**
* Creates the DOM representation of an XML file of an Odf document.
*
* @param pkg
* the package the XML files belongs to
* @param packagePath
* the internal package path to the XML file
*/
public OdfManifestDom(OdfPackage pkg, String packagePath) {
super(pkg, packagePath);
}
/**
* Might be used to initialize specific XML Namespace prefixes/URIs for this
* XML file
*/
@Override
protected void initialize() {
mUriByPrefix.put("manifest", "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0");
mPrefixByUri.put("urn:oasis:names:tc:opendocument:xmlns:manifest:1.0", "manifest");
super.initialize();
}
/**
* @return The root element of the manifest.xml file as
* ManifestElement
.
*/
@Override
public ManifestElement getRootElement() {
return (ManifestElement) getDocumentElement();
}
/**
* Creates an JDK XPath
instance. Initialized with ODF
* namespaces from OdfDocumentNamespace
. Updated with all
* namespace of the XML file.
*
* @return an XPath instance with namespace context set to include the
* standard ODFDOM prefixes.
*/
@Override
public XPath getXPath() {
if (mXPath == null) {
mXPath = XPathFactory.newInstance().newXPath();
mXPath.setNamespaceContext(this);
mUriByPrefix.put("manifest", "urn:oasis:names:tc:opendocument:xmlns:manifest:1.0");
mPrefixByUri.put("urn:oasis:names:tc:opendocument:xmlns:manifest:1.0", "manifest");
}
return mXPath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy