protocolview.java

来自「JGRoups源码」· Java 代码 · 共 85 行

JAVA
85
字号
// $Id: ProtocolView.java,v 1.2 2004/09/23 16:29:16 belaban Exp $package org.jgroups.debug;import javax.swing.*;import javax.swing.table.DefaultTableModel;import org.jgroups.stack.Protocol;import org.jgroups.stack.ProtocolObserver;import org.jgroups.Event;/** * Graphical view of a protocol instance * @author  Bela Ban, created July 22 2000 */public class ProtocolView implements ProtocolObserver {    final DefaultTableModel  model;    int                my_index=-1;    Protocol           prot=null;    String             prot_name=null;    final JButton            down_label=new JButton("0");    final JButton up_label=new JButton("0");    boolean            cummulative=false;    long               tot_up=0, tot_down=0;    public ProtocolView(Protocol p, DefaultTableModel model, int my_index) {	prot=p; prot_name=p.getName(); this.model=model; this.my_index=my_index;    }    public ProtocolView(Protocol p, DefaultTableModel model, int my_index, boolean cummulative) {	prot=p; prot_name=p.getName(); this.model=model; this.my_index=my_index; this.cummulative=cummulative;    }        /* ----------------------- ProtocolObserver interface ----------------------- */    public void setProtocol(Protocol prot) {	this.prot=prot;    }        public boolean up(Event evt, int num_evts) {	tot_up++;	if(cummulative)	    model.setValueAt("" + tot_up, my_index, 2);	else	    model.setValueAt("" + num_evts, my_index, 2);	return true;    }    public boolean passUp(Event evt) {	return true;    }            public boolean down(Event evt, int num_evts) {	tot_down++;	if(cummulative)	    model.setValueAt("" + tot_down, my_index, 3);	else	    model.setValueAt("" + num_evts, my_index, 3);	return true;    }    public boolean passDown(Event evt) {	return true;    }    /* ------------------- End of ProtocolObserver interface ---------------------- */    public String toString() {	return prot != null ? prot.getName() : "<n|a>";    }}

⌨️ 快捷键说明

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