Uses of Class
org.salespointframework.core.logging.LogEntry

Packages that use LogEntry
org.salespointframework.core This package contains the central classes of the Framework. 
org.salespointframework.core.data Provides interfaces for data management. 
org.salespointframework.core.logging This package contains all classes that are relevant to logging. 
org.salespointframework.desktop   
org.salespointframework.desktop.formsheets   
org.salespointframework.desktop.models   
 

Uses of LogEntry in org.salespointframework.core
 

Subclasses of LogEntry in org.salespointframework.core
static class SaleProcess.ProcessLogEntry
          A log entry describing a process that was executed.
 

Methods in org.salespointframework.core that return LogEntry
 LogEntry SaleProcess.getLogData()
          Return information that describes the process for logging purposes.
 

Uses of LogEntry in org.salespointframework.core.data
 

Subclasses of LogEntry in org.salespointframework.core.data
static class CatalogItemDataBasketEntry.CIDBELogEntry
          A LogEntry that describes CatalogItemDataBasketEntries.
static class CountingStockItemDBEntry.CSDBELogEntry
          LogEntry describing an operation on CountingStock StockItem's.
static class DataBasketImpl.DataBasketImplLogEntry
          A LogEntry that describes an action on a DataBasket.
static class StockItemDBEntry.StockItemDBELogEntry
          A LogEntry that describes an operation on one or more StockItem(s).
 

Fields in org.salespointframework.core.data declared as LogEntry
private  LogEntry DataBasketImpl.DataBasketImplLogEntry.m_leData
          The org.salespointframework.log entry describing the actual action.
 

Methods in org.salespointframework.core.data that return LogEntry
 LogEntry DataBasketImpl.DataBasketImplLogEntry.getData()
          Get the org.salespointframework.log entry describing the actual action.
 LogEntry StockItemDBEntry.getLogData()
          Get a LogEntry describing this DataBasketEntry.
 LogEntry DataBasketEntryImpl.getLogData()
          Return a LogEntry that describes this DataBasketEntry.
 LogEntry CountingStockItemDBEntry.getLogData()
          Create and return a LogEntry describing this DataBasketEntry.
 LogEntry CatalogItemDataBasketEntry.getLogData()
          Return a LogEntry describing this DataBasketEntry.
 

Constructors in org.salespointframework.core.data with parameters of type LogEntry
DataBasketImpl.DataBasketImplLogEntry(int nAction, LogEntry leData)
          Create a new DataBasketImplLogEntry.
 

Uses of LogEntry in org.salespointframework.core.logging
 

Fields in org.salespointframework.core.logging with type parameters of type LogEntry
private  java.util.List<LogEntry> LogFileContent.m_lContentList
          The list which contains all Entries from the log file.
 

Methods in org.salespointframework.core.logging that return LogEntry
 LogEntry Loggable.getLogData()
          Called when the object is being logged.
 LogEntry LogInputStream.readEntry()
          Read the next log entry that is accepted by the filter from the stream.
 

Methods in org.salespointframework.core.logging that return types with arguments of type LogEntry
 java.util.List<LogEntry> LogFileContent.getContentList()
           
private  java.util.List<LogEntry> LogFileContent.streamToList(LogInputStream lis)
          Does the actual conversion from a LogInputStream to a list of LogEntries.
 

Methods in org.salespointframework.core.logging with parameters of type LogEntry
 boolean LogEntryFilter.accept(LogEntry le)
          Return whether or not the given LogEntry belongs to the set of visible LogEntries.
 

Uses of LogEntry in org.salespointframework.desktop
 

Constructor parameters in org.salespointframework.desktop with type arguments of type LogEntry
JLogTable(LogFileContent lfc, java.util.Comparator<LogEntry> cmp)
          Create a new JLogTable.
JLogTable(LogFileContent lfc, java.util.Comparator<LogEntry> cmp, TableEntryDescriptor ted)
          Create a new JLogTable.
 

Uses of LogEntry in org.salespointframework.desktop.formsheets
 

Methods in org.salespointframework.desktop.formsheets that return LogEntry
 LogEntry LogTableForm.getSelectedEntry()
          Get the currently selected log entry.
 

Constructor parameters in org.salespointframework.desktop.formsheets with type arguments of type LogEntry
LogTableForm(java.lang.String sCaption, LogFileContent lfc, java.util.Comparator<LogEntry> cmp, TableEntryDescriptor ted, boolean fWaitResponse)
           
LogTableForm(java.lang.String sCaption, LogInputStream lis, java.util.Comparator<LogEntry> cmp)
          Create a new LogTableForm.
LogTableForm(java.lang.String sCaption, LogInputStream lis, java.util.Comparator<LogEntry> cmp, TableEntryDescriptor ted)
          Create a new LogTableForm.
LogTableForm(java.lang.String sCaption, LogInputStream lis, java.util.Comparator<LogEntry> cmp, TableEntryDescriptor ted, boolean fWaitResponse)
          Create a new LogTableForm.
 

Uses of LogEntry in org.salespointframework.desktop.models
 

Fields in org.salespointframework.desktop.models with type parameters of type LogEntry
protected  java.util.List<LogEntry> LogTableModel.m_lEntries
          The LogEntries in the same order in which they appear in the table.
 

Constructor parameters in org.salespointframework.desktop.models with type arguments of type LogEntry
LogTableModel(LogFileContent lfc, java.util.Comparator<LogEntry> cmp, TableEntryDescriptor ted)
          Create a new LogTableModel.