com.intellij.openapi.actionSystem
Class Anchor

java.lang.Object
  extended by com.intellij.openapi.actionSystem.Anchor

public class Anchor
extends java.lang.Object

Defines possible positions of an action relative to another action.


Field Summary
static Anchor AFTER
          Anchor type that specifies the action to be placed after the relative action.
static Anchor BEFORE
          Anchor type that specifies the action to be placed before the relative action.
static Anchor FIRST
          Anchor type that specifies the action to be the first in the list at the moment of addition.
static Anchor LAST
          Anchor type that specifies the action to be the last in the list at the moment of addition.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

FIRST

public static final Anchor FIRST
Anchor type that specifies the action to be the first in the list at the moment of addition.


LAST

public static final Anchor LAST
Anchor type that specifies the action to be the last in the list at the moment of addition.


BEFORE

public static final Anchor BEFORE
Anchor type that specifies the action to be placed before the relative action.


AFTER

public static final Anchor AFTER
Anchor type that specifies the action to be placed after the relative action.

Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object