1 5 6 package com.hp.hpl.jena.db.impl; 7 8 import com.hp.hpl.jena.graph.*; 9 import com.hp.hpl.jena.vocabulary.DB; 10 11 28 public class DBPropPSet extends DBProp { 29 30 33 34 public static Node_URI pSetName = (Node_URI)DB.pSetName.getNode(); 35 public static Node_URI pSetType = (Node_URI)DB.pSetType.getNode(); 36 public static Node_URI pSetTable = (Node_URI)DB.pSetTable.getNode(); 37 38 39 public DBPropPSet( SpecializedGraph g, String type, String tableName) { 40 super( g); 41 putPropString(pSetName, DBProp.generateUniqueID()); 42 putPropString(pSetType, type); 43 putPropString(pSetTable, tableName); 44 } 45 46 public DBPropPSet( SpecializedGraph g, Node n) { 47 super(g,n); 48 } 49 50 public String getName() { return getPropString( pSetName); } 51 public String getType() { return getPropString( pSetType); } 52 public String getTable() { return getPropString( pSetTable); } 53 } 54 55 | Popular Tags |