You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by at...@apache.org on 2013/10/17 17:00:06 UTC

svn commit: r1533099 - in /commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/model: Invoke.java Send.java

Author: ate
Date: Thu Oct 17 15:00:06 2013
New Revision: 1533099

URL: http://svn.apache.org/r1533099
Log:
Drop deprecated and no longer current (draft) specification conforming methods
See also SCXML-109

Modified:
    commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/model/Invoke.java
    commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/model/Send.java

Modified: commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/model/Invoke.java
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/model/Invoke.java?rev=1533099&r1=1533098&r2=1533099&view=diff
==============================================================================
--- commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/model/Invoke.java (original)
+++ commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/model/Invoke.java Thu Oct 17 15:00:06 2013
@@ -82,28 +82,6 @@ public class Invoke implements Namespace
     }
 
     /**
-     * Get the target type for this <invoke> element.
-     *
-     * @return String Returns the targettype.
-     * @deprecated Use {@link #getType()} instead.
-     */
-    @Deprecated
-    public final String getTargettype() {
-        return type;
-    }
-
-    /**
-     * Set the target type for this <invoke> element.
-     *
-     * @param targettype The targettype to set.
-     * @deprecated Use {@link #setType(String)} instead.
-     */
-    @Deprecated
-    public final void setTargettype(final String targettype) {
-        this.type = targettype;
-    }
-
-    /**
      * Get the type for this <invoke> element.
      *
      * @return String Returns the type.

Modified: commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/model/Send.java
URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/model/Send.java?rev=1533099&r1=1533098&r2=1533099&view=diff
==============================================================================
--- commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/model/Send.java (original)
+++ commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml2/model/Send.java Thu Oct 17 15:00:06 2013
@@ -228,28 +228,6 @@ public class Send extends Action impleme
     }
 
     /**
-     * Get the target type for this <send> element.
-     *
-     * @return String Returns the type.
-     * @deprecated Use {@link #getType()} instead.
-     */
-    @Deprecated
-    public final String getTargettype() {
-        return type;
-    }
-
-    /**
-     * Set the target type for this <send> element.
-     *
-     * @param targettype The type to set.
-     * @deprecated Use {@link #setType(String)} instead.
-     */
-    @Deprecated
-    public final void setTargettype(final String targettype) {
-        this.type = targettype;
-    }
-
-    /**
      * Get the type for this <send> element.
      *
      * @return String Returns the type.