| |
|
| java.lang.Object javax.swing.table.AbstractTableModel org.jahia.sqlprofiler.gui.LoggerTableModel
LoggerTableModel | class LoggerTableModel extends AbstractTableModel (Code) | | Represents a list of EventDetails objects that are sorted on
logging time. Methods are provided to filter the events that are visible.
author: Oliver Burn |
LoggerTableModel | LoggerTableModel()(Code) | | Creates a new MyTableModel instance.
|
addEvent | public void addEvent(EventDetails aEvent)(Code) | | Add an event to the list.
Parameters: aEvent - a EventDetails value |
clear | public void clear()(Code) | | Clear the list of all events.
|
getEventDetails | public EventDetails getEventDetails(int aRow)(Code) | | Get the throwable information at a specified row in the filtered events.
Parameters: aRow - the row index of the event the throwable information |
isPaused | public boolean isPaused()(Code) | | whether currently paused collecting events * |
setCategoryFilter | public void setCategoryFilter(String aStr)(Code) | | Set the filter for the category field.
Parameters: aStr - the string to match |
setMessageFilter | public void setMessageFilter(String aStr)(Code) | | Set the filter for the message field.
Parameters: aStr - the string to match |
setNDCFilter | public void setNDCFilter(String aStr)(Code) | | Set the filter for the NDC field.
Parameters: aStr - the string to match |
setPriorityFilter | public void setPriorityFilter(Priority aPriority)(Code) | | Sets the priority to filter events on. Only events of equal or higher
property are now displayed.
Parameters: aPriority - the priority to filter on |
setThreadFilter | public void setThreadFilter(String aStr)(Code) | | Set the filter for the thread field.
Parameters: aStr - the string to match |
toggle | public void toggle()(Code) | | Toggle whether collecting events *
|
|
|
|