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

📄 messagepanel.java

📁 JADE(JAVA Agent开发框架)是一个完全由JAVA语言开发的软件,它简化了多Agent系统的实现。
💻 JAVA
字号:
/*****************************************************************
 JADE - Java Agent DEvelopment Framework is a framework to develop 
 multi-agent systems in compliance with the FIPA specifications.
 Copyright (C) 2000 CSELT S.p.A. 
 
 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.introspector.gui;

import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.GridLayout;

import javax.swing.*;
import javax.swing.border.Border;
import javax.swing.border.TitledBorder;
import javax.swing.table.*;

import jade.lang.acl.ACLMessage;

/**
 The panel containing the message tables.
 
 @author Andrea Squeri,Corti Denis,Ballestracci Paolo -  Universita` di Parma
 */
public class MessagePanel extends JPanel {
	private JTabbedPane incoming = new JTabbedPane();
	private JTabbedPane outgoing = new JTabbedPane();
	private JScrollPane inScrollPending = new JScrollPane();
	private JScrollPane inScrollDone = new JScrollPane();
	private JScrollPane outScrollPending = new JScrollPane();
	private JScrollPane outScrollDone = new JScrollPane();
	private JTable inMessagesPending;
	private JTable inMessagesDone;
	private JTable outMessagesPending;
	private JTable outMessagesDone;
	private MessageTableModel inPending, inDone, outPending, outDone;
	private TableMouseListener listener;
	
	public MessagePanel(MessageTableModel in1, MessageTableModel in2, MessageTableModel out1, MessageTableModel out2) {
		super();
		inPending = in1;
		inDone = in2;
		outPending = out1;
		outDone = out2;
		inMessagesPending = new JTable(inPending);
		inMessagesDone = new JTable(inDone);
		outMessagesPending = new JTable(outPending);
		outMessagesDone = new JTable(outDone);
		inMessagesPending.setName("Incoming Messages");
		inMessagesDone.setName("Incoming Messages");
		outMessagesPending.setName("Outgoing Messages");
		outMessagesPending.setName("Outgoing Messages");
		inMessagesPending.setDefaultRenderer(ACLMessage.class, new ACLMessageRenderer());
		inMessagesDone.setDefaultRenderer(ACLMessage.class, new ACLMessageRenderer());
		outMessagesPending.setDefaultRenderer(ACLMessage.class, new ACLMessageRenderer());
		outMessagesDone.setDefaultRenderer(ACLMessage.class, new ACLMessageRenderer());
		listener = new TableMouseListener();
		inMessagesPending.addMouseListener(listener);
		inMessagesDone.addMouseListener(listener);
		outMessagesPending.addMouseListener(listener);
		outMessagesDone.addMouseListener(listener);
		build();
	}
	
	public void build() {
		inScrollPending.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
		inScrollDone.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
		inScrollPending.setAutoscrolls(true);
		inScrollDone.setAutoscrolls(true);
		
		outScrollPending.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
		outScrollDone.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
		outScrollPending.setAutoscrolls(true);
		outScrollDone.setAutoscrolls(true);
		
		inScrollPending.getViewport().add(inMessagesPending, null);
		inScrollDone.getViewport().add(inMessagesDone, null);
		outScrollPending.getViewport().add(outMessagesPending, null);
		outScrollDone.getViewport().add(outMessagesDone, null);
		
		Border line = BorderFactory.createEtchedBorder();
		incoming.setBorder(BorderFactory.createTitledBorder(line, "Incoming Messages", TitledBorder.CENTER, TitledBorder.TOP));
		incoming.add(inScrollPending, "Pending");
		incoming.add(inScrollDone, "Received");
		outgoing.setBorder(BorderFactory.createTitledBorder(line, "Outgoing Messages", TitledBorder.CENTER, TitledBorder.TOP));
		outgoing.add(outScrollPending, "Pending");
		outgoing.add(outScrollDone, "Sent");
		
		setLayout(new GridLayout(1,2));
		add(incoming);
		add(outgoing);
	}
	
	public MessageTableModel getInPendingModel() {
		return inPending;
	}
	
	public MessageTableModel getInProcessedModel() {
		return inDone;
	}
	
	public MessageTableModel getOutPendingModel() {
		return outPending;
	}
	
	public MessageTableModel getOutProcessedModel() {
		return outDone;
	}
	
	
	private static class ACLMessageRenderer extends DefaultTableCellRenderer {
		
		private Icon myIcon;
		
		public ACLMessageRenderer() {
			super();
			setHorizontalAlignment(SwingConstants.LEFT);
			setBorder(BorderFactory.createEmptyBorder(2,2,2,2));
			String path =  "/jade/tools/introspector/gui/images/aclMessage.gif";
			myIcon = new ImageIcon(getClass().getResource(path));
			setIcon(myIcon);
		}
		
		public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
			int height = myIcon.getIconHeight();
			if(table.getRowHeight() != height)
				table.setRowHeight(height);
			ACLMessage msg = (ACLMessage)value;
			setText(ACLMessage.getPerformative(msg.getPerformative()));
			setBackground(isSelected ? Color.cyan : Color.white);
			return this;
		}
		
	}
	
}


⌨️ 快捷键说明

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