|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnextapp.echo.AbstractComponent
nextapp.echo.Container
echopoint.EchoPointComponent
echopoint.PopUp
echopoint.BalloonHelp
public class BalloonHelp
The BalloonHelp
class is a PopUp component that
appears like classic Balloon Help, inspired from the early
Apple Macintosh.
PopUp
,
Serialized FormNested Class Summary |
---|
Nested classes/interfaces inherited from class echopoint.PopUp |
---|
PopUp.NestedStyleInfo |
Field Summary | |
---|---|
static ImageReference |
defaultIcon
default help icon |
Fields inherited from class echopoint.PopUp |
---|
AUTO_COLLAPSE_CHANGED_PROPERTY, EXPANSION_MODEL_CHANGED_PROPERTY, ICON_CHANGED_PROPERTY, STYLE_ICON |
Fields inherited from class echopoint.EchoPointComponent |
---|
STYLE_TOOL_TIP_TEXT, TOOL_TIP_TEXT_CHANGED_PROPERTY, toolTipPopUp |
Fields inherited from interface echopoint.positionable.MouseCursorable |
---|
borderStyleSymbolics, CURSOR_AUTO, CURSOR_CROSSHAIR, CURSOR_CUSTOM_URI, CURSOR_DEFAULT, CURSOR_E_RESIZE, CURSOR_HELP, CURSOR_MOVE, CURSOR_N_RESIZE, CURSOR_NE_RESIZE, CURSOR_NW_RESIZE, CURSOR_POINTER, CURSOR_S_RESIZE, CURSOR_SE_RESIZE, CURSOR_SW_RESIZE, CURSOR_TEXT, CURSOR_W_RESIZE, CURSOR_WAIT, STYLE_MOUSE_CURSOR, STYLE_MOUSE_CURSOR_URI |
Constructor Summary | |
---|---|
BalloonHelp()
Constructs a BalloonHelp component that has a default
help icon. |
Method Summary | |
---|---|
java.lang.Object |
set(java.lang.reflect.Field field,
java.lang.Object newValue)
Called to save the old value of a field, set in a new value and return the old value of a field. |
Methods inherited from class echopoint.PopUp |
---|
applyStyle, getExpansionModel, getIcon, isAutoCollapse, isExpanded, setAutoCollapse, setExpanded, setExpansionModel, setIcon |
Methods inherited from class echopoint.EchoPointComponent |
---|
getMouseCursor, getMouseCursorURI, getToolTipPopUp, getToolTipText, set, set, set, set, set, set, set, set, set, setEnabledAllChildren, setMouseCursor, setMouseCursorURI, setToolTipText, validate |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static ImageReference defaultIcon
Constructor Detail |
---|
public BalloonHelp()
BalloonHelp
component that has a default
help icon.
Method Detail |
---|
public java.lang.Object set(java.lang.reflect.Field field, java.lang.Object newValue) throws java.lang.Exception
ReflectionSetter
public Object set(Field f, Object newValue) throws Exception { Object oldValue = f.get(this); f.set(this,newValue); return oldValue; }
set
in interface ReflectionSetter
set
in class PopUp
field
- - the field to be setnewValue
- - the new value to be set
java.lang.IllegalAccessException
java.lang.IllegalArgumentException
java.lang.NullPointerException
java.lang.Exception
ReflectionSetter.set(Field, Object)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |