identifiable.java

来自「world wind java sdk 源码」· Java 代码 · 共 45 行

JAVA
45
字号
/*
Copyright (C) 2001, 2008 United States Government as represented by
the Administrator of the National Aeronautics and Space Administration.
All Rights Reserved.
*/
package gov.nasa.worldwind.applications.gio.ebrim;

import java.util.Collection;
import java.util.Iterator;

/**
 * @author dcollins
 * @version $Id$
 */
public interface Identifiable
{
    int getSlotCount();

    int getIndex(Slot s);

    Slot getSlot(int index);

    void setSlot(int index, Slot s);

    void addSlot(int index, Slot s);

    void addSlot(Slot s);

    void addSlots(Collection<? extends Slot> c);

    void removeSlot(int index);

    void clearSlots();

    Iterator<Slot> getSlotIterator();

    String getId();

    void setId(String id);

    String getHome();

    void setHome(String home);
}

⌨️ 快捷键说明

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