Clover coverage report -
Coverage timestamp: Fri Nov 19 2004 13:41:51 PST
file stats: LOC: 52   Methods: 1
NCLOC: 20   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
TechVocab.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/technical.rdf
 7    * @author Auto-generated by schemagen on 19 Nov 2004 13:41
 8    */
 9    public class TechVocab {
 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://www.w3.org/2000/PhotoRDF/technical-1-0#";
 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    public static final Property SENSING_METHOD = m_model.createProperty( "http://www.w3.org/2000/PhotoRDF/technical-1-0#sensing-method" );
 24   
 25    public static final Property APERTURE = m_model.createProperty( "http://www.w3.org/2000/PhotoRDF/technical-1-0#aperture" );
 26   
 27    /** <p>Brand and type of film</p> */
 28    public static final Property FILM = m_model.createProperty( "http://www.w3.org/2000/PhotoRDF/technical-1-0#film" );
 29   
 30    public static final Property FLASH = m_model.createProperty( "http://www.w3.org/2000/PhotoRDF/technical-1-0#flash" );
 31   
 32    public static final Property FOCAL_LENGTH = m_model.createProperty( "http://www.w3.org/2000/PhotoRDF/technical-1-0#focal-length" );
 33   
 34    public static final Property EXPOSURE_BIAS = m_model.createProperty( "http://www.w3.org/2000/PhotoRDF/technical-1-0#exposure-bias" );
 35   
 36    /** <p>Date on which the film was developed.</p> */
 37    public static final Property DEVEL_DATE = m_model.createProperty( "http://www.w3.org/2000/PhotoRDF/technical-1-0#devel-date" );
 38   
 39    /** <p>Brand and type of camera</p> */
 40    public static final Property CAMERA = m_model.createProperty( "http://www.w3.org/2000/PhotoRDF/technical-1-0#camera" );
 41   
 42    public static final Property METERING_MODE = m_model.createProperty( "http://www.w3.org/2000/PhotoRDF/technical-1-0#metering-mode" );
 43   
 44    public static final Property SHUTTER_SPEED = m_model.createProperty( "http://www.w3.org/2000/PhotoRDF/technical-1-0#shutter-speed" );
 45   
 46    /** <p>Brand and type of lens.</p> */
 47    public static final Property LENS = m_model.createProperty( "http://www.w3.org/2000/PhotoRDF/technical-1-0#lens" );
 48   
 49    /** <p>A class that represents technical data about a photo</p> */
 50    public static final Resource TECHNICAL_DATA = m_model.createResource( "http://www.w3.org/2000/PhotoRDF/technical-1-0#Technical-data" );
 51   
 52    }