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; }
/**