modules/jdk.packager/src/main/java/com/sun/javafx/tools/packager/JSCallback.java

Print this page




  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.javafx.tools.packager;
  27 
  28 /**
  29  * Ant-independent version of the Callback class.
  30  *
  31  * @see com.sun.javafx.tools.ant.Callback
  32  *
  33  */

  34 class JSCallback {
  35 
  36     private String name;
  37     private String cmd;
  38 
  39     public JSCallback(String name, String cmd) {
  40         this.name = name;
  41         this.cmd = cmd;
  42     }
  43 
  44     public String getCmd() {
  45         return cmd;
  46     }
  47 
  48     public void setCmd(String cmd) {
  49         this.cmd = cmd;
  50     }
  51 
  52     public String getName() {
  53         return name;


  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.javafx.tools.packager;
  27 
  28 /**
  29  * Ant-independent version of the Callback class.
  30  *
  31  * @see com.sun.javafx.tools.ant.Callback
  32  * @deprecated use {@link ToolProvider} to locate the {@code "javapackager"} tool instead.
  33  */
  34 @Deprecated(since="10", forRemoval=true)
  35 class JSCallback {
  36 
  37     private String name;
  38     private String cmd;
  39 
  40     public JSCallback(String name, String cmd) {
  41         this.name = name;
  42         this.cmd = cmd;
  43     }
  44 
  45     public String getCmd() {
  46         return cmd;
  47     }
  48 
  49     public void setCmd(String cmd) {
  50         this.cmd = cmd;
  51     }
  52 
  53     public String getName() {
  54         return name;