You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2014/06/12 15:02:24 UTC

svn commit: r1602150 - /jena/trunk/jena-core/src/main/java/com/hp/hpl/jena/graph/impl/GraphAddList.java

Author: andy
Date: Thu Jun 12 13:02:23 2014
New Revision: 1602150

URL: http://svn.apache.org/r1602150
Log:
Deprecate.

Modified:
    jena/trunk/jena-core/src/main/java/com/hp/hpl/jena/graph/impl/GraphAddList.java

Modified: jena/trunk/jena-core/src/main/java/com/hp/hpl/jena/graph/impl/GraphAddList.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-core/src/main/java/com/hp/hpl/jena/graph/impl/GraphAddList.java?rev=1602150&r1=1602149&r2=1602150&view=diff
==============================================================================
--- jena/trunk/jena-core/src/main/java/com/hp/hpl/jena/graph/impl/GraphAddList.java (original)
+++ jena/trunk/jena-core/src/main/java/com/hp/hpl/jena/graph/impl/GraphAddList.java Thu Jun 12 13:02:23 2014
@@ -25,8 +25,9 @@ import com.hp.hpl.jena.graph.*;
 /**
     A List that implements the GraphAdd interface, so that it can be passed
     to things that want to add triples to Graphs. The triples are filtered.
+    @depecated This will be removed. 
 */
-
+@Deprecated
 public class GraphAddList implements GraphAdd
     {
     protected Triple match;
@@ -35,7 +36,9 @@ public class GraphAddList implements Gra
     /**
          Initialise a GraphAddList with a triple [pattern] that specifies what triples
          will be accepted into the list. 
+    @depecated This will be removed. 
     */
+    @Deprecated   
     public GraphAddList( Triple match ) { this.match = match; }
     
     /**