Package edu.indiana.extreme.xbaya.gui

Examples of edu.indiana.extreme.xbaya.gui.GridPanel.layout()


        XBayaLabel memoLabel = new XBayaLabel("Memo", this.memoTextArea);

        GridPanel gridPanel = new GridPanel();
        gridPanel.add(memoLabel);
        gridPanel.add(this.memoTextArea);
        gridPanel.layout(1, 2, 0, 1);

        JButton okButton = new JButton("OK");
        okButton.addActionListener(new AbstractAction() {
            public void actionPerformed(ActionEvent e) {
                setInput();
View Full Code Here


    infoPanel.add(gfacLabel);
    infoPanel.add(this.gfacTextField);
    infoPanel.add(interactLabel);
    infoPanel.add(this.interactChkBox);

    infoPanel.layout(5, 2, GridPanel.WEIGHT_NONE, 1);

    GridPanel mainPanel = new GridPanel();
    mainPanel.add(this.parameterPanel);
    mainPanel.add(infoPanel);
    mainPanel.layout(2, 1, 0, 0);
View Full Code Here

    infoPanel.layout(5, 2, GridPanel.WEIGHT_NONE, 1);

    GridPanel mainPanel = new GridPanel();
    mainPanel.add(this.parameterPanel);
    mainPanel.add(infoPanel);
    mainPanel.layout(2, 1, 0, 0);

    JButton okButton = new JButton("OK");
    okButton.addActionListener(new AbstractAction() {
      public void actionPerformed(ActionEvent e) {
        execute();
View Full Code Here

    infoPanel
        .add(new XBayaLabel("Hot deploy during composition", checkBox));
    infoPanel.add(checkBox);

    infoPanel.layout(8, 2, 0, 0);

    JButton okButton = new JButton("OK");
    okButton.addActionListener(new AbstractAction() {
      public void actionPerformed(ActionEvent e) {
View Full Code Here

        infoPanel.add(this.topicTextField);
        infoPanel.add(dummyLabel);
        infoPanel.add(this.pullCheckBox);
        infoPanel.add(msgBoxLabel);
        infoPanel.add(this.messageBoxTextField);
        infoPanel.layout(4, 2, SwingUtil.WEIGHT_NONE, 1);

        JButton okButton = new JButton("OK");
        okButton.addActionListener(new AbstractAction() {
            public void actionPerformed(ActionEvent e) {
                setConfiguration();
View Full Code Here

    mainPanel.add(chkMakePublic);
   
    messageField = new JTextField(engine.getWorkflow().getName());
    messageField.setEditable(true);
    mainPanel.add(messageField);
        mainPanel.layout(2, 1, 0, 0);
       

        this.dialog = new XBayaDialog(this.engine,
                "Export to XRegistry", mainPanel, buttonPanel);
        this.dialog.setDefaultButton(this.okButton);
View Full Code Here

    gridPanel.add(this.idButton);
    gridPanel.add(idLabel);
    gridPanel.add(this.idTextField);
    gridPanel.add(usernameLabel);
    gridPanel.add(this.usernameTextField);
    gridPanel.layout(5, 2, GridPanel.WEIGHT_NONE, 1);

    JButton okButton = new JButton("OK");
    okButton.addActionListener(new AbstractAction() {
      public void actionPerformed(ActionEvent e) {
        if(InstanceConfigurationDialog.this.idTextField.getText() == null || InstanceConfigurationDialog.this.idTextField.getText().isEmpty()){
View Full Code Here

    infoPanel.add(this.rslParamValueLabel);
    infoPanel.add(this.rslParamValueTextField);
    infoPanel.add(this.isPublicLabel);
    infoPanel.add(this.isPublicCheckBox);

    infoPanel.layout(16, 2, GridPanel.WEIGHT_NONE, 1);

    JPanel buttonPanel = new JPanel();
    this.addApplicationButton = new JButton();
    this.addApplicationButton.setText("Add Application");
    this.addApplicationButton.addActionListener(new java.awt.event.ActionListener() {
View Full Code Here

    searchPanel.add(this.docTypeComboBox);
    searchPanel.add(nameLabel);
    searchPanel.add(this.nameTextField);
    searchPanel.add(dummyLabel);
    searchPanel.add(this.searchButton);
    searchPanel.layout(3, 2, GridPanel.WEIGHT_NONE, 1);

    // this.list = new XBayaList<OGCEXRegistrySearchResult>();
    this.list = new XbayaEnhancedList<OGCEXRegistrySearchResult>();

    this.list.addMouseListener(new MouseAdapter() {
View Full Code Here

    GridPanel listPanel = new GridPanel();
    TitledBorder border = new TitledBorder(new EtchedBorder(),
        "Select an item to config");
    listPanel.getSwingComponent().setBorder(border);
    listPanel.add(this.list);
    listPanel.layout(1, 1, 0, 0);

    GridPanel mainPanel = new GridPanel();
    mainPanel.add(searchPanel);
    mainPanel.add(listPanel);
    mainPanel.layout(2, 1, GridPanel.WEIGHT_EQUALLY, 0);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.