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

📄 baselist.java

📁 Java的面向对象数据库系统的源代码
💻 JAVA
字号:
package org.ozoneDB.collections;import java.util.List;/** * <p>You are encouraged NOT to use this interface, but rather just use {@link * OzoneList}, which does not contain the 'internal' methods, or even * {@link java.util.SortedMap}, which does not have any ozone dependency at all</p> * <p>This interface functions as a sort of base interface for ozone aware lists, * were those lists themselves can implement if the nodes in the list are * ozone objects themselves or merely serializables.</p> * * @author <a href="mailto:ozoneATmekenkampD0Tcom">Leo Mekenkamp (mind the anti-sp@m)</a> (adaptation for ozone) */public interface BaseList extends OzoneList {        public int _org_ozoneDB_getModCount();    public void _org_ozoneDB_removeRange(int fromIndex, int toIndex); /*update*/        /**     * Needed for sub lists so that they can return the same type of list as     * the sub lists backing list would when <code>getClientXxx()</code> is     * called.     *     * @return empty list, to be filled and returned to client via <code>getClientXxx()</code>     */    public List _org_ozoneDB_emptyClientCollection();    }

⌨️ 快捷键说明

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