filter.java
来自「Java游戏高级编程!!很不错的!!!Java游戏高级编程!!很不错的」· Java 代码 · 共 31 行
JAVA
31 行
package com.croftsoft.core.role; /********************************************************************* * Determines whether an object should be filtered. * * @author * <a href="http://www.croftsoft.com/">David Wallace Croft</a> * @version * 2003-04-09 * @since * 2003-04-09 *********************************************************************/ public interface Filter ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// { /********************************************************************* * Filtrate is what passes through a filter. * * @return * * Returns false if the object should be filtered. *********************************************************************/ public boolean isFiltrate ( Object o ); ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?