Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: javax/ide/Identifiable.java


1   package javax.ide;
2   
3   /**
4    * <code>Identifiable</code> objects are IDE components that can be 
5    * identified by a unique string identifier. Such components include:
6    * Extensions, IDEActions, Menus, Views, etc..
7    */
8   public interface Identifiable
9   {
10    /**
11     * Gets this object's unique identifier.
12     *
13     * @return The object's unique identifier. 
14     */
15    public String getID();
16  }