B&B Electronics ADAM-6066 - Manual User Manual
Page 116

ADAM-6000 Series User Manual
106
/**Get a parameter value*/
public String getParameter(String key, String def) {
return isStandalone ? System.getProperty(key, def) :
(getParameter(key) != null ? getParameter(key) : def);
}
/**Constructor*/
public Adam6060() {
}
/**Applet Initialization*/
public void init() {
try {
HostIP= getParameter("HostIP");
Adam6060Connection = new ModBus(HostIP);
//create ADAM-6060 module object
if (HostIP == "")//check the Host IP
labAdamStatusForDIO.setText("Get Host IP is null !!");
else
labAdamStatusForDIO.setText("GetHostIP:"+
Adam6060Connection.GetHostIP() + " Ver 1.00");
jbInit();
}
catch(Exception e) {
e.printStackTrace();
}
}
/**Component initialization and displayed screen*/
private void jbInit() throws Exception {
this.setLayout(null);