1 16 17 package packager.listeners; 18 19 import Jmc.baseGui.*; 20 import Jmc.commonGui.*; 21 import Jmc.baseTools.*; 22 23 33 57 public class GetInput_li implements base_guiListener, base_executableObject_if 58 { 59 private String pem_name = null; 60 61 64 public GetInput_li(String l_name) 65 { 66 this.pem_name = l_name; 67 } 68 69 78 public void pcmf_execListener(base_guiObj xParam) throws Exception 79 { 80 base_optionDlg_if l_dlg = (base_optionDlg_if)base_registredObject.pcmf_getObjByName(pem_name); 82 l_dlg.pcmf_showTextInput("please enter name"); 83 84 return; 85 } 86 87 97 public Object pcmf_execObj(Object xObj) 98 { 99 try 100 { 101 this.pcmf_execListener((base_guiObj)xObj); 102 } 103 catch (Exception e) 104 { 105 base_log.pcmf_logException("packager", this, e); 106 } 107 return null; 108 } 109 110 } 111 | Popular Tags |