this.myProxyChecker = new MyProxyChecker(this.engine);
initGUI();
}
protected void initGUI() {
this.parameterPanel = new GridPanel(true);
this.topicTextField = new XBayaTextField();
XBayaLabel topicLabel = new XBayaLabel("Notification Topic",
this.topicTextField);
this.xRegistryTextField = new XBayaTextField();
XBayaLabel xRegistryLabel = new XBayaLabel("XRegistry URL",
this.xRegistryTextField);
this.gfacTextField = new XBayaTextField();
XBayaLabel gfacLabel = new XBayaLabel("GFac URL", this.gfacTextField);
this.inputFilepathField = new XBayaTextField();
this.inputFilepathField.setText("/Users/fanye/Documents/fileList");
XBayaLabel filePathLabel = new XBayaLabel("Input File",
this.inputFilepathField);
GridPanel infoPanel = new GridPanel();
infoPanel.add(topicLabel);
infoPanel.add(this.topicTextField);
infoPanel.add(xRegistryLabel);
infoPanel.add(this.xRegistryTextField);
infoPanel.add(gfacLabel);
infoPanel.add(this.gfacTextField);
infoPanel.add(filePathLabel);
infoPanel.add(this.inputFilepathField);
infoPanel.layout(4, 2, GridPanel.WEIGHT_NONE, 1);
GridPanel mainPanel = new GridPanel();
mainPanel.add(this.parameterPanel);
mainPanel.add(infoPanel);
mainPanel.layout(2, 1, 0, 0);
this.invokeButton = new JButton("Invoke");
this.invokeButton.addActionListener(new AbstractAction() {
public void actionPerformed(ActionEvent e) {
execute();