?? epctypefiltermbean.java
字號:
/* * EPCTypeFilterMBean.java * * Created on December 15, 2005, 2:29 PM */package com.sun.rfid.filter;import com.sun.autoid.ems.ComponentMBean;/** * This interface extends service bean interface to include methods for * getting information about the operation of the __RfidFilter__. You * generally don't need to modify this file. */public interface EPCTypeFilterMBean extends ComponentMBean { /** * Returns the count of the identifiers discarded by this filter. * * @return the number of discarded identifiers */ public long getDiscardedCount(); /** * Returns the count of identifiers that passed through this filter. * * @return the number of processed identifiers */ public long getPassCount(); /** * Resets the filter counters. Both the pass counter and the discard * counter are reset as a result of calling this method. */ public void reset();}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -