Coverage Report - org.apache.any23.vocab.HRECIPE
 
Classes in this File Line Coverage Branch Coverage Complexity
HRECIPE
0%
0/27
0%
0/2
1.5
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one or more
 3  
  * contributor license agreements.  See the NOTICE file distributed with
 4  
  * this work for additional information regarding copyright ownership.
 5  
  * The ASF licenses this file to You under the Apache License, Version 2.0
 6  
  * (the "License"); you may not use this file except in compliance with
 7  
  * the License.  You may obtain a copy of the License at
 8  
  *
 9  
  *  http://www.apache.org/licenses/LICENSE-2.0
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 
 18  
 package org.apache.any23.vocab;
 19  
 
 20  
 import org.openrdf.model.URI;
 21  
 
 22  
 /**
 23  
  * Vocabulary to map the <a href="http://microformats.org/wiki/hrecipe">hRecipe</a> microformat.
 24  
  *
 25  
  * @author Michele Mostarda (mostarda@fbk.eu)
 26  
  */
 27  
 public class HRECIPE extends Vocabulary {
 28  
 
 29  
     public static final String NS = SINDICE.NS + "hrecipe/";
 30  
 
 31  
     private static HRECIPE instance;
 32  
 
 33  
     public static HRECIPE getInstance() {
 34  0
         if(instance == null) {
 35  0
             instance = new HRECIPE();
 36  
         }
 37  0
         return instance;
 38  
     }
 39  
 
 40  
     // Resources.
 41  0
     public URI Recipe     = createClass(NS, "Recipe");
 42  0
     public URI Duration   = createClass(NS, "Duration");
 43  0
     public URI Ingredient = createClass(NS, "Ingredient");
 44  0
     public URI Nutrition  = createClass(NS, "Nutrition");
 45  
 
 46  
     // Properties.
 47  0
     public URI fn                     = createProperty(NS, "fn");
 48  0
     public URI duration               = createProperty(NS, "duration");
 49  0
     public URI durationTitle          = createProperty(NS, "durationTitle");
 50  0
     public URI durationTime           = createProperty(NS, "durationTime");
 51  0
     public URI photo                  = createProperty(NS, "photo");
 52  0
     public URI summary                = createProperty(NS, "summary");
 53  0
     public URI author                 = createProperty(NS, "author");
 54  0
     public URI published              = createProperty(NS, "published");
 55  0
     public URI nutrition              = createProperty(NS, "nutrition");
 56  0
     public URI nutritionValue         = createProperty(NS, "nutritionValue");
 57  0
     public URI nutritionValueType     = createProperty(NS, "nutritionValueType");
 58  0
     public URI tag                    = createProperty(NS, "tag");
 59  0
     public URI ingredient             = createProperty(NS, "ingredient");
 60  0
     public URI ingredientName         = createProperty(NS, "ingredientName");
 61  0
     public URI ingredientQuantity     = createProperty(NS, "ingredientQuantity");
 62  0
     public URI ingredientQuantityType = createProperty(NS, "ingredientQuantityType");
 63  0
     public URI instructions           = createProperty(NS, "instructions");
 64  0
     public URI yield                  = createProperty(NS, "yield");
 65  
 
 66  
     private HRECIPE() {
 67  0
         super(NS);
 68  0
     }
 69  
 }