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

📄 monitoreditor.java

📁 network scanner used to scan the packet captured during transmission
💻 JAVA
字号:
package com.anthonyeden.jnm;

import java.awt.Component;

import com.anthonyeden.jnm.event.EditorListener;

/**	Standard interface which is implemented by all monitor
	editors.
	
	@author Anthony Eden
*/

public interface MonitorEditor{
	
	/**	Get an editor component.
	
		@return The editor Component
	*/
	
	public Component getComponent();
	
	/**	Get the monitor that is being edited.
	
		@return The Monitor
	*/
	
	public Monitor getMonitor();
	
	/**	Set the monitor that the editor is editing.
	
		@param monitor The Monitor
	*/
	
	public void setMonitor(Monitor monitor);
	
	/**	Save the current edits.  Returns true if the save
		was successful.
		
		@return True if the edits were saved
	*/
	
	public boolean save();
	
	/**	Revert to the last saved data. */
	
	public void revert();
	
	public void addEditorListener(EditorListener l);
	public void removeEditorListener(EditorListener l);
	
}

⌨️ 快捷键说明

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