~hjd/ubuntu/wily/xmlgraphics-commons/debian-merged

« back to all changes in this revision

Viewing changes to src/java/org/apache/xmlgraphics/xmp/schemas/pdf/PDFAXMPSchema.java

  • Committer: Bazaar Package Importer
  • Author(s): Vincent Fourmond
  • Date: 2011-02-11 14:15:14 UTC
  • mfrom: (8.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20110211141514-h67achft6x31gju1
Tags: 1.4.dfsg-3
Uploading to unstable, hoping we won't break too many things ;-)...

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 * limitations under the License.
16
16
 */
17
17
 
18
 
/* $Id: PDFAXMPSchema.java 426584 2006-07-28 16:01:47Z jeremias $ */
 
18
/* $Id: PDFAXMPSchema.java 750418 2009-03-05 11:03:54Z vhennebert $ */
19
19
 
20
20
package org.apache.xmlgraphics.xmp.schemas.pdf;
21
21
 
29
29
 */
30
30
public class PDFAXMPSchema extends XMPSchema {
31
31
 
32
 
    /** Namespace URI for Dublin Core */ 
 
32
    /** Namespace URI for Dublin Core */
33
33
    public static final String NAMESPACE = XMPConstants.PDF_A_IDENTIFICATION;
34
 
    
 
34
 
35
35
    private static MergeRuleSet mergeRuleSet = new MergeRuleSet();
36
 
    
 
36
 
37
37
    /** Creates a new schema instance for Dublin Core. */
38
38
    public PDFAXMPSchema() {
39
39
        super(NAMESPACE, "pdfaid");
40
40
    }
41
 
    
 
41
 
42
42
    /**
43
43
     * Creates and returns an adapter for this schema around the given metadata object.
44
44
     * @param meta the metadata object
52
52
    public MergeRuleSet getDefaultMergeRuleSet() {
53
53
        return mergeRuleSet;
54
54
    }
55
 
    
 
55
 
56
56
}