1 6 7 package com.hp.hpl.jena.graph; 8 9 import com.hp.hpl.jena.shared.*; 10 import com.hp.hpl.jena.util.iterator.*; 11 12 19 20 public interface GraphMaker 21 { 22 26 public ReificationStyle getReificationStyle(); 27 28 35 public Graph getGraph(); 36 37 44 public Graph createGraph(); 45 46 55 public Graph createGraph( String name, boolean strict ); 56 57 61 public Graph createGraph( String name ); 62 63 73 public Graph openGraph( String name, boolean strict ); 74 75 78 public Graph openGraph( String name ); 79 80 89 public void removeGraph( String name ); 90 91 97 public boolean hasGraph( String name ); 98 99 105 public Graph getDescription(); 106 107 public Graph getDescription( Node root ); 108 109 115 public Graph addDescription( Graph desc, Node self ); 116 117 121 public void close(); 122 123 129 ExtendedIterator listGraphs(); 130 } 131 132 144 145 174 | Popular Tags |