You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/05/23 18:30:05 UTC

svn commit: r1126572 - in /commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model: Invoke.java Send.java

Author: sebb
Date: Mon May 23 16:30:04 2011
New Revision: 1126572

URL: http://svn.apache.org/viewvc?rev=1126572&view=rev
Log:
Missing @Deprecated

Modified:
    commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Invoke.java
    commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Send.java

Modified: commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Invoke.java
URL: http://svn.apache.org/viewvc/commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Invoke.java?rev=1126572&r1=1126571&r2=1126572&view=diff
==============================================================================
--- commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Invoke.java (original)
+++ commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Invoke.java Mon May 23 16:30:04 2011
@@ -87,6 +87,7 @@ public class Invoke implements Namespace
      * @return String Returns the targettype.
      * @deprecated Use {@link #getType()} instead.
      */
+    @Deprecated
     public final String getTargettype() {
         return type;
     }
@@ -97,6 +98,7 @@ public class Invoke implements Namespace
      * @param targettype The targettype to set.
      * @deprecated Use {@link #setType(String)} instead.
      */
+    @Deprecated
     public final void setTargettype(final String targettype) {
         this.type = targettype;
     }

Modified: commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Send.java
URL: http://svn.apache.org/viewvc/commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Send.java?rev=1126572&r1=1126571&r2=1126572&view=diff
==============================================================================
--- commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Send.java (original)
+++ commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Send.java Mon May 23 16:30:04 2011
@@ -233,6 +233,7 @@ public class Send extends Action impleme
      * @return String Returns the type.
      * @deprecated Use {@link #getType()} instead.
      */
+    @Deprecated
     public final String getTargettype() {
         return type;
     }
@@ -243,6 +244,7 @@ public class Send extends Action impleme
      * @param targettype The type to set.
      * @deprecated Use {@link #setType(String)} instead.
      */
+    @Deprecated
     public final void setTargettype(final String targettype) {
         this.type = targettype;
     }