Examples of XBayaTextArea


Examples of edu.indiana.extreme.xbaya.gui.XBayaTextArea

    /**
     * Initializes the GUI.
     */
    private void initGui() {
        this.memoTextArea = new XBayaTextArea();
        XBayaLabel memoLabel = new XBayaLabel("Memo", this.memoTextArea);

        GridPanel gridPanel = new GridPanel();
        gridPanel.add(memoLabel);
        gridPanel.add(this.memoTextArea);
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.XBayaTextArea

            XBayaTextComponent paramField;
            if (LEADTypes.isKnownType(type)) {
                paramField = new XBayaTextField();
                columnWeights.add(new Double(0));
            } else {
                paramField = new XBayaTextArea();
                columnWeights.add(new Double(1.0));
            }
            paramLabel.setLabelFor(paramField.getSwingComponent());

            // default value
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.XBayaTextArea

        GridPanel reorderingPanel = new GridPanel();
        reorderingPanel.add(this.parameterList);
        reorderingPanel.add(buttonPanel);
        reorderingPanel.layout(1, 2, 0, 0);

        this.metadataTextArea = new XBayaTextArea();
        JLabel metadataLabel = new JLabel("Metadata");
        metadataLabel.setLabelFor(this.metadataTextArea.getSwingComponent());

        this.panel = new GridPanel();
        this.panel.add(reorderingPanel);
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.XBayaTextArea

  private void initGUI() {
   
    this.nameTextField = new XBayaTextField();
    XBayaLabel nameLabel = new XBayaLabel("Name", this.nameTextField);

    this.descriptionTextArea = new XBayaTextArea();
    XBayaLabel descriptionLabel = new XBayaLabel("Description",
        this.descriptionTextArea);
   
    JPanel buttonPanel = new JPanel();
        this.okButton = new JButton("OK");
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.XBayaTextArea

  private void initGui() {

    GridPanel mainPanel = new GridPanel();

    MonitorPanel monitorPanel = new MonitorPanel(this.engine, this.nodeID);
    this.consoleTextArea = new XBayaTextArea();
    XBayaLabel consoleLabel = new XBayaLabel("Console",
        this.consoleTextArea);

    this.commandField = new XBayaTextField();
    XBayaLabel commandLabel = new XBayaLabel("Command", this.commandField);
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.XBayaTextArea

      XBayaTextComponent paramField;
      if (LEADTypes.isKnownType(type)) {
        paramField = new XBayaTextField();
        columnWeights.add(new Double(0));
      } else {
        paramField = new XBayaTextArea();
        columnWeights.add(new Double(1.0));
      }
      paramLabel.setLabelFor(paramField.getSwingComponent());

      // default value
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.XBayaTextArea

  }

  private void initGUI() {
    BasicTypeMapping.reset();

    this.javaCodeTxtArea = new XBayaTextArea();
    XBayaLabel operationLabel = new XBayaLabel("Operation",
        this.javaCodeTxtArea);

    GridPanel infoPanel = new GridPanel();
    infoPanel.add(operationLabel);
View Full Code Here

Examples of org.apache.airavata.xbaya.gui.XBayaTextArea

    /**
     * Initializes the GUI.
     */
    private void initGui() {
        this.memoTextArea = new XBayaTextArea();
        XBayaLabel memoLabel = new XBayaLabel("Memo", this.memoTextArea);

        GridPanel gridPanel = new GridPanel();
        gridPanel.add(memoLabel);
        gridPanel.add(this.memoTextArea);
View Full Code Here

Examples of org.apache.airavata.xbaya.gui.XBayaTextArea

     */
    private void initGui() {
        this.nameTextField = new XBayaTextField();
        XBayaLabel nameLabel = new XBayaLabel("Name", this.nameTextField);

        this.descriptionTextArea = new XBayaTextArea();
        XBayaLabel descriptionLabel = new XBayaLabel("Description", this.descriptionTextArea);

        this.metadataTextArea = new XBayaTextArea();
        XBayaLabel metadataLabel = new XBayaLabel("Metadata", this.metadataTextArea);

        GridPanel mainPanel = new GridPanel();
        mainPanel.add(nameLabel);
        mainPanel.add(this.nameTextField);
View Full Code Here

Examples of org.apache.airavata.xbaya.gui.XBayaTextArea

     */
    private void initGui() {
        this.nameTextField = new XBayaTextField();
        XBayaLabel nameLabel = new XBayaLabel("Name", this.nameTextField);

        this.descriptionTextArea = new XBayaTextArea();
        XBayaLabel descriptionLabel = new XBayaLabel("Description", this.descriptionTextArea);

        this.valueTextField = new XBayaTextField(); // for string
        this.valueTextArea = new XBayaTextArea(); // for XML
        // temporaly set text field.
        this.valueLabel = new XBayaLabel("", this.valueTextField);

        this.metadataTextArea = new XBayaTextArea();
        XBayaLabel metadataLabel = new XBayaLabel("Metadata", this.metadataTextArea);

        this.gridPanel = new GridPanel();
        this.gridPanel.add(nameLabel);
        this.gridPanel.add(this.nameTextField);
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.