< prev index next >

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

Print this page




  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;


  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  * @Deprecated
  34  */
  35 @Deprecated
  36 class JSCallback {
  37 
  38     private String name;
  39     private String cmd;
  40 
  41     public JSCallback(String name, String cmd) {
  42         this.name = name;
  43         this.cmd = cmd;
  44     }
  45 
  46     public String getCmd() {
  47         return cmd;
  48     }
  49 
  50     public void setCmd(String cmd) {
  51         this.cmd = cmd;
  52     }
  53 
  54     public String getName() {
  55         return name;
< prev index next >