📄 irdocindexlist.java
字号:
package dragon.ir.index;/** * <p>Interface of IRDoc Index List</p> * <p></p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: IST, Drexel University</p> * @author Davis Zhou * @version 1.0 */public interface IRDocIndexList { /** * Gets the IRDoc specified by its index * @param index the index of the document * @return the IRDoc object */ public IRDoc get(int index); /** * Adds an IRDoc object to the index list * @param curDoc the IRDoc for adding * @return true if added successfully. */ public boolean add(IRDoc curDoc); /** * Releases occupied resources */ public void close(); /** * Gets the number of documents in the list. * @return the number of documents in the list. */ public int size();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -