| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
package org.apache.any23.vocab; |
| 19 | |
|
| 20 | |
import org.openrdf.model.URI; |
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 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 | |
|
| 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 | |
|
| 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 | |
} |