Class FlowContainerRenderer
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.gui.visualization.debug.objectrenderer.AbstractObjectRenderer
-
- adams.gui.visualization.debug.objectrenderer.FlowContainerRenderer
-
- All Implemented Interfaces:
LoggingSupporter,SizeOfHandler,ObjectRenderer,Serializable
public class FlowContainerRenderer extends AbstractObjectRenderer
Renders flow containers as tables.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected SpreadSheetTablem_LastTablethe last setup.-
Fields inherited from class adams.gui.visualization.debug.objectrenderer.AbstractObjectRenderer
m_Cache, m_RendererClasses, m_Renderers
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description FlowContainerRenderer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanRenderCached(Object obj, JPanel panel)Checks whether the renderer can use a cached setup to render an object.protected SpreadSheetcontainerToSheet(AbstractContainer cont, MessageCollection errors)Converts the container into a spreadsheet.protected StringdoRender(Object obj, JPanel panel, Integer limit)Performs the actual rendering.protected StringdoRenderCached(Object obj, JPanel panel, Integer limit)Performs the actual rendering.booleanhandles(Class cls)Checks whether the renderer can handle the specified class.-
Methods inherited from class adams.gui.visualization.debug.objectrenderer.AbstractObjectRenderer
getRenderer, getRenderer, getRenderers, initRenderers, instantiate, render, renderCached, supportsLimit
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Field Detail
-
m_LastTable
protected SpreadSheetTable m_LastTable
the last setup.
-
-
Method Detail
-
handles
public boolean handles(Class cls)
Checks whether the renderer can handle the specified class.- Specified by:
handlesin interfaceObjectRenderer- Specified by:
handlesin classAbstractObjectRenderer- Parameters:
cls- the class to check- Returns:
- true if the renderer can handle this type of object
-
canRenderCached
public boolean canRenderCached(Object obj, JPanel panel)
Checks whether the renderer can use a cached setup to render an object.- Specified by:
canRenderCachedin interfaceObjectRenderer- Overrides:
canRenderCachedin classAbstractObjectRenderer- Parameters:
obj- the object to renderpanel- the panel to render into- Returns:
- true if possible
-
containerToSheet
protected SpreadSheet containerToSheet(AbstractContainer cont, MessageCollection errors)
Converts the container into a spreadsheet.- Parameters:
cont- the container to converterrors- for collecting errors- Returns:
- the spreadsheet, null if failed to convert
-
doRenderCached
protected String doRenderCached(Object obj, JPanel panel, Integer limit)
Performs the actual rendering.- Overrides:
doRenderCachedin classAbstractObjectRenderer- Parameters:
obj- the object to renderpanel- the panel to render intolimit- the limit to use for the rendering (if applicable), ignored if null- Returns:
- null if successful, otherwise error message
-
doRender
protected String doRender(Object obj, JPanel panel, Integer limit)
Performs the actual rendering.- Specified by:
doRenderin classAbstractObjectRenderer- Parameters:
obj- the object to renderpanel- the panel to render intolimit- the limit to use for the rendering (if applicable), ignored if null- Returns:
- null if successful, otherwise error message
-
-