public interface LogPage
LogPage interface should be implemented by addins 
  that report information to the user. The framework provides an
  abstract implementation, AbstractLogPage, for convenience.| Modifier and Type | Method and Description | 
|---|---|
void | 
addMouseListener(java.awt.event.MouseListener listener)
Implemenations should add the specified  
listener to
  the graphical components used in the page implementation. | 
void | 
clearAll()
Clear all currently displayed messages. 
 | 
View | 
getLogPageView()
Returns the  
View implementation backing this LogPage. | 
javax.swing.Icon | 
getTabIcon()
Get the icon to display when this page is tabbed. 
 | 
java.lang.String | 
getTabName()
Get the name to display when this page is tabbed. 
 | 
java.lang.String | 
getTitleName()
Get the title to be displayed in the log window hosting this page. 
 | 
java.lang.String | 
getToolTip()
Get the tooltip to display when this page is tabbed. 
 | 
void | 
log(java.lang.Object msg)
Display the specified  
msg. | 
void | 
removeMouseListener(java.awt.event.MouseListener listener)
Removes the specified  
listener from the graphical
  components used in the page implementation. | 
void | 
setOwner(LogOwner owner)
Set the  
view that owns this page. | 
void log(java.lang.Object msg)
msg.msg - the message to display.void clearAll()
java.lang.String getTitleName()
java.lang.String getTabName()
javax.swing.Icon getTabIcon()
java.lang.String getToolTip()
void setOwner(LogOwner owner)
view that owns this page.owner - view the hosting view.void addMouseListener(java.awt.event.MouseListener listener)
listener to
  the graphical components used in the page implementation. The
  specified listener is responsible for showing the
  ContextMenu.listener - mouse listener responsible for displaying a context menu.void removeMouseListener(java.awt.event.MouseListener listener)
listener from the graphical
  components used in the page implementation.listener - mouse listener responsible for displaying a context menu.