1 6 package com.hp.hpl.jena.rdf.model; 7 8 import com.hp.hpl.jena.graph.TripleBoundary; 9 10 16 public class StatementTripleBoundary implements StatementBoundary 17 { 18 protected TripleBoundary tb; 19 20 24 public StatementTripleBoundary( TripleBoundary tb ) 25 { this.tb = tb; } 26 27 30 public boolean stopAt( Statement s ) 31 { return tb.stopAt( s.asTriple() ); } 32 33 36 public TripleBoundary asTripleBoundary( Model ignored ) 37 { return tb; } 38 } 39 40 | Popular Tags |