Package jadex.tools.debugger.micro
Class MicroDebuggerPanel
- java.lang.Object
- 
- jadex.tools.debugger.micro.MicroDebuggerPanel
 
- 
- All Implemented Interfaces:
- IDebuggerPanel
 
 public class MicroDebuggerPanel extends java.lang.Object implements IDebuggerPanel A generic debugger panel that can display arbitrary java objects.
- 
- 
Field SummaryFields Modifier and Type Field Description protected static javax.swing.UIDefaultsiconsThe image icons.protected MicroAgentViewPanelmicropanelThe gui component.
 - 
Constructor SummaryConstructors Constructor Description MicroDebuggerPanel()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddispose()Dispose the component.javax.swing.JComponentgetComponent()The component to be shown in the gui.javax.swing.IcongetIcon()The icon of the panel.java.lang.StringgetStepInfo()Get the step info.java.lang.StringgetTitle()The title of the panel (name of the tab).java.lang.StringgetTooltipText()The tooltip text of the panel, if any.voidinit(IControlCenter jcc, IBreakpointPanel bpp, IComponentIdentifier name, IExternalAccess access)Called to initialize the panel.
 
- 
- 
- 
Field Detail- 
iconsprotected static final javax.swing.UIDefaults icons The image icons.
 - 
micropanelprotected MicroAgentViewPanel micropanel The gui component.
 
- 
 - 
Method Detail- 
initpublic void init(IControlCenter jcc, IBreakpointPanel bpp, IComponentIdentifier name, IExternalAccess access) Called to initialize the panel. Called on the swing thread.- Specified by:
- initin interface- IDebuggerPanel
- Parameters:
- jcc- The jcc.
- bpp- The breakpoint panel.
- id- The component identifier.
- access- The external access of the component.
 
 - 
getTitlepublic java.lang.String getTitle() The title of the panel (name of the tab).- Specified by:
- getTitlein interface- IDebuggerPanel
- Returns:
- The tab title.
 
 - 
getIconpublic javax.swing.Icon getIcon() The icon of the panel.- Specified by:
- getIconin interface- IDebuggerPanel
- Returns:
- The icon (or null, if none).
 
 - 
getComponentpublic javax.swing.JComponent getComponent() The component to be shown in the gui.- Specified by:
- getComponentin interface- IDebuggerPanel
- Returns:
- The component to be displayed.
 
 - 
getTooltipTextpublic java.lang.String getTooltipText() The tooltip text of the panel, if any.- Specified by:
- getTooltipTextin interface- IDebuggerPanel
- Returns:
- The tooltip text, or null.
 
 - 
getStepInfopublic java.lang.String getStepInfo() Get the step info. Help to decide which component step to perform next.- Specified by:
- getStepInfoin interface- IDebuggerPanel
- Returns:
- Step info for debugging.
 
 - 
disposepublic void dispose() Dispose the component.- Specified by:
- disposein interface- IDebuggerPanel
 
 
- 
 
-