⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aclcontentdialog.java

📁 java实现的P2P多agent中间件
💻 JAVA
字号:
/******************************************************************
 * JADE - Java Agent DEvelopment Framework is a framework to develop
 * multi-agent systems in compliance with the FIPA specifications.
 * Copyright (C) 2002 TILAB S.p.A.
 *
 * This file is donated by Acklin B.V. to the JADE project.
 *
 *
 * GNU Lesser General Public License
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation,
 * version 2.1 of the License.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA  02111-1307, USA.
 * ***************************************************************/
package jade.tools.gui;

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

import jade.lang.acl.ACLMessage;

public class ACLContentDialog extends JDialog {


  public ACLContentDialog(Frame frame, String title, boolean modal) {
    super(frame, title, modal);
    try {
      jbInit();
      this.setSize(500, 400);
    }
    catch (Exception ex) {
      ex.printStackTrace();
    }
  }


  public ACLContentDialog() {
    this(null, "", false);
  }


  public void setEditable(boolean theBool) {
    this.contentTextArea.setEditable(theBool);
  }


  public void setItsContent(ACLMessage itsMsg) {

    contentTextArea.register(itsMsg, "Content");

    String contentLanguage = (itsMsg.getLanguage() != null ? itsMsg.getLanguage() : "<unknown>");
    String contentOntology = (itsMsg.getOntology() != null ? itsMsg.getOntology() : "<unknown>");

    this.titleLabel.setText("content with language=" + contentLanguage + " and ontology=" + contentOntology);

  }


  void jbInit() throws Exception {
    contentPanel.setLayout(borderLayout1);
    this.getContentPane().setBackground(Color.white);
    this.setModal(true);
    this.addFocusListener(
      new java.awt.event.FocusAdapter() {
        public void focusGained(FocusEvent e) {
          this_focusGained(e);
        }
      });
    contentPanel.setBackground(Color.white);
    titleLabel.setFont(new java.awt.Font("Dialog", 0, 12));
    titleLabel.setHorizontalAlignment(SwingConstants.CENTER);
    titleLabel.setText("content:");
    doneButton.setBackground(Color.white);
    doneButton.setFont(new java.awt.Font("Dialog", 0, 12));
    doneButton.setToolTipText("Close Dialog and return to ACLMessage");
    doneButton.setHorizontalTextPosition(SwingConstants.CENTER);
    doneButton.setText("done");
    doneButton.addActionListener(
      new java.awt.event.ActionListener() {
        public void actionPerformed(ActionEvent e) {
          doneButton_actionPerformed(e);
        }
      });
    contentTextArea.setElectricScroll(1);
    getContentPane().add(contentPanel);
    contentPanel.add(titleLabel, BorderLayout.NORTH);
    contentPanel.add(doneButton, BorderLayout.SOUTH);
    contentPanel.add(contentTextArea, BorderLayout.CENTER);
  }


  void doneButton_actionPerformed(ActionEvent e) {
    this.hide();
  }


  void this_focusGained(FocusEvent e) {
    this.contentTextArea.requestFocus();
  }


  JPanel contentPanel = new JPanel();
  BorderLayout borderLayout1 = new BorderLayout();
  JLabel titleLabel = new JLabel();
  JButton doneButton = new JButton();

  ACLTextArea contentTextArea = new ACLTextArea();
}
//  ***EOF***

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -