View Javadoc
1   /*
2    * To change this license header, choose License Headers in Project Properties.
3    * To change this template file, choose Tools | Templates
4    * and open the template in the editor.
5    */
6   package cz.zcu.mre.data.core;
7   
8   import org.apache.jena.rdf.model.Property;
9   import org.apache.jena.vocabulary.DC;
10  import org.apache.jena.vocabulary.DC_10;
11  import org.apache.jena.vocabulary.RDFS;
12  import org.apache.jena.vocabulary.SKOS;
13  
14  /**
15   * Annotation properties used by MRE for titles.
16   *
17   * @author Petr Vcelak (vcelak@kiv.zcu.cz)
18   */
19  
20  class MREDataTitles {    
21      
22      /**
23       * Preferred titles.
24       */
25      public static final Property[] TITLES = new Property[]{
26          SKOS.prefLabel,
27          DC.title, // DC_11.title is same as DC.title
28          RDFS.label,
29          DC_10.title
30      };
31  }