Clover coverage report -
Coverage timestamp: Fri Nov 19 2004 13:41:51 PST
file stats: LOC: 41   Methods: 1
NCLOC: 14   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
SpaceVocab.java - 100% 100% 100%
coverage
 1    /* CVS $Id: $ */
 2    package photospace.meta.rdf;
 3    import com.hp.hpl.jena.rdf.model.*;
 4   
 5    /**
 6    * Vocabulary definitions from file:C:\photospace\project/etc/rdf/photospace.rdf
 7    * @author Auto-generated by schemagen on 19 Nov 2004 13:41
 8    */
 9    public class SpaceVocab {
 10    /** <p>The RDF model that holds the vocabulary terms</p> */
 11    private static Model m_model = ModelFactory.createDefaultModel();
 12   
 13    /** <p>The namespace of the vocabalary as a string ({@value})</p> */
 14    public static final String NS = "http://photospace.org/rdf/photospace-0-1#";
 15   
 16    /** <p>The namespace of the vocabalary as a string</p>
 17    * @see #NS */
 18  10 public static String getURI() {return NS;}
 19   
 20    /** <p>The namespace of the vocabalary as a resource</p> */
 21    public static final Resource NAMESPACE = m_model.createResource( NS );
 22   
 23    /** <p>Number of times asset has been viewed</p> */
 24    public static final Property VIEW_COUNT = m_model.createProperty( "http://photospace.org/rdf/photospace-0-1#viewCount" );
 25   
 26    /** <p>Number of ratings used to create the rating</p> */
 27    public static final Property RATING_COUNT = m_model.createProperty( "http://photospace.org/rdf/photospace-0-1#ratingCount" );
 28   
 29    /** <p>1-5 user rating of the asset</p> */
 30    public static final Property RATING = m_model.createProperty( "http://photospace.org/rdf/photospace-0-1#rating" );
 31   
 32    /** <p>Identifying path within a single media repository</p> */
 33    public static final Property PATH = m_model.createProperty( "http://photospace.org/rdf/photospace-0-1#path" );
 34   
 35    /** <p>Date metadata updated</p> */
 36    public static final Property UPDATED = m_model.createProperty( "http://photospace.org/rdf/photospace-0-1#updated" );
 37   
 38    /** <p>Any media item.</p> */
 39    public static final Resource ASSET = m_model.createResource( "http://photospace.org/rdf/photospace-0-1#Asset" );
 40   
 41    }