1 6 7 package com.hp.hpl.jena.graph.impl; 8 9 import java.util.ArrayList ; 10 11 import com.hp.hpl.jena.graph.*; 12 13 17 18 public class GraphAddList extends ArrayList implements GraphAdd 19 { 20 protected Triple match; 21 22 26 public GraphAddList( Triple match ) { this.match = match; } 27 28 31 public void add( Triple t ) { if (match.matches( t )) super.add( t ); } 32 } 33 34 | Popular Tags |