com.adobe.epubcheck.ctc.epubpackage.PackageMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epubcheck Show documentation
Show all versions of epubcheck Show documentation
EpubCheck is a tool to validate IDPF EPUB files. It can detect many types of errors in EPUB.
OCF container structure, OPF and OPS mark-up, and internal reference consistency are checked.
EpubCheck can be run as a standalone command-line tool, installed as a Java server-side web application
or used as a Java library.
The newest version!
package com.adobe.epubcheck.ctc.epubpackage;
import java.util.Vector;
/**
* === WARNING ==========================================
* This class is scheduled to be refactored and integrated
* in another package.
* Please keep changes minimal (bug fixes only) until then.
* ========================================================
*/
public class PackageMetadata
{
private final Vector m = new Vector();
public Vector getMetaElements()
{
return m;
}
public void addMetaElement(MetadataElement meta)
{
m.add(meta);
}
}