Holger's
Java API

Uses of Class
com.antelmann.util.logging.Logger

Packages that use Logger
com.antelmann These are general classes that apply for the framework as a whole. 
com.antelmann.calendar This package contains classes for implementing calendar and time related solutions. 
com.antelmann.game This package contains packages to support game implementations. 
com.antelmann.game.quiz This package contains an implementation for quiz games. 
com.antelmann.io This package contains classes that are concerned with input/output operations. 
com.antelmann.mgmt This package contains generally useful classes for business management. 
com.antelmann.net The classes in this package are designed to provide convenient access to Internet related functionality. 
com.antelmann.net.mail The classes in this package are designed to ease the handling of emails. 
com.antelmann.timeregister This package contains classes that implement a time register solution for a small business. 
com.antelmann.util This package contains general utility classes that are used throughout the other packages. 
com.antelmann.util.gui This package contains utility classes for GUI related implementations. 
com.antelmann.util.logging This package contains classes that implement a custom logging for this framework - separate from java.util.logging. 
 

Uses of Logger in com.antelmann
 

Methods in com.antelmann that return Logger
 Logger LicenseManager.getLogger()
          returns the logger that logs changes and access to the LicenseManager
 

Uses of Logger in com.antelmann.calendar
 

Methods in com.antelmann.calendar that return Logger
 Logger NTPServer.getLogger()
          returns an empty logger w/o writers by default
 Logger AtomicTime.getLogger()
          may be null
 

Methods in com.antelmann.calendar with parameters of type Logger
 TimerTask AtomicClock.createTimerTask(Logger logger)
          creates a TimerTask that will adjust the delta and log the result to the given logger.
 void NTPServer.setLogger(Logger logger)
           
 void AtomicTime.setLogger(Logger logger)
          may be set to null
 

Constructors in com.antelmann.calendar with parameters of type Logger
AtomicTime(boolean activateNow, long updateIntervalMillis, Logger logger)
           
 

Uses of Logger in com.antelmann.game
 

Methods in com.antelmann.game with parameters of type Logger
static void GameServer.startServerWithGUI(Logger logger)
          a conveninent way to start a GameServer with a little GUI;
 

Constructors in com.antelmann.game with parameters of type Logger
GameServer(int serverPort, GamePlay game, int timeout, Logger logger)
           
SocketPlayerServer(int port, Player player, Monitor monitor, Logger logger)
          The constructor binds itself to the given port and keeps a reference to the actual Player object.
 

Uses of Logger in com.antelmann.game.quiz
 

Fields in com.antelmann.game.quiz declared as Logger
protected  Logger DemoQuizFrame.logger
           
 

Methods in com.antelmann.game.quiz that return Logger
 Logger DemoQuizFrame.getLogger()
           
 

Uses of Logger in com.antelmann.io
 

Methods in com.antelmann.io that return Logger
 Logger Backup.getLogger()
           
 

Methods in com.antelmann.io with parameters of type Logger
 Enumeration MyFile.objectEnumerator(boolean useDeserialization, Logger exceptionLogger)
          convenience method
 void Backup.setLogger(Logger logger)
          the logger may not be set while the backup is running
 MyFile[] MyFile.synchronizeDir(File destinationDir, FileFilter filter, Logger logger, Monitor monitor)
           
 MyFile[] MyFile.synchronizeDir(File destinationDir, Logger logger)
          This method allows for intermediate feedback through the logger; otherwise it's the same as the other synchronizeDir() method.
 MyFile[] MyFile.synchronizeDir(File destinationDir, Logger logger, Monitor monitor)
          This method allows for intermediate feedback and interactive stopping; otherwise it's the same as the other synchronizeDir() method.
 

Constructors in com.antelmann.io with parameters of type Logger
Backup(File originDir, File destinationDir, FileFilter filter, boolean deleteAtTarget, Monitor monitor, Logger logger)
           
ObjectEnumerator(File file, boolean useDeserialization, Logger exceptionLogger)
           
ObjectEnumerator(InputStream stream, boolean useDeserialization, Logger exceptionLogger)
           
 

Uses of Logger in com.antelmann.mgmt
 

Methods in com.antelmann.mgmt that return Logger
 Logger Database.getLogger()
          access to the Logger that by default uses a LogWriter writing entries directly into this database.
 Logger AbstractDatabase.getLogger()
          a logger that contains the logWriter given in the constructor; it is used to log all database access with the special level 'dbaccess' by default
 

Uses of Logger in com.antelmann.net
 

Fields in com.antelmann.net declared as Logger
protected  Logger SocketConnection.logger
           
 

Methods in com.antelmann.net that return Logger
 Logger SocketConnection.getLogger()
          loggs standard events - no exceptions are logged here
 Logger NetConnectionServer.getLogger()
           
 Logger MessageDelegator.getLogger()
           
 Logger JMessenger.getLogger()
           
 Logger ChatServer.getLogger()
           
 

Methods in com.antelmann.net with parameters of type Logger
 URL[] Spider.crawlWeb(CrawlerSetting crawler, int numberOfURLsToFind, Logger logger)
          searches the web from the embedded URL (used as root) for URLs based on the criteria given in the crawler; search is performed breadth-first
static URL[] Spider.crawlWeb(List<Spider.URLWrapper> searchList, List<URL> resultList, List<URL> closedList, CrawlerSetting crawler, int depth, int numberOfURLsToFind, Logger logger)
          usually called by crawlWeb(URL root, CrawlerSetting crawler, Logger)
 Object[] FTPConnector.downloadTree(String remoteSourceDir, File targetDir, Logger logger)
          uses a Logger to provide feedback.
 Object[] FTPConnector.downloadTree(String remoteSourceDir, File targetDir, Logger logger, Monitor monitor)
          uses a Monitor for enabling to cancel the operation prematurely.
 void SocketConnection.setLogger(Logger logger)
           
 void NetConnectionServer.setLogger(Logger logger)
           
 void MessageDelegator.setLogger(Logger logger)
           
static void ChatServer.startServerWithGUI(Logger logger)
          uses the com.antelmann.net.chat.port property from Settings
 Object[] FTPConnector.synchronizeDirectory(File sourceDir, String remoteTargetDir, boolean deleteRemoteFiles, Logger logger)
          This method allows for intermediate feedback through the logger; otherwise it's the same as the other synchronizeDirectory() method.
 Object[] FTPConnector.synchronizeDirectory(File sourceDir, String remoteTargetDir, boolean deleteRemoteFiles, Logger logger, Monitor monitor)
          This method allows for intermediate feedback and interactive stopping; otherwise it's the same as the other synchronizeDirectory() method.
 

Constructors in com.antelmann.net with parameters of type Logger
ChatServer(int serverPort, Logger logger)
           
JMessenger(int port, Logger logger)
           
JMessenger(Logger logger)
           
MessageDelegator(NetConnection con, NetConnectionHandler handler, Logger logger)
          if logger is not null, it will be used to log established and closed connections
NetConnectionServer(int port, ConnectionDispatcher factory, Logger logger)
           
NetConnectionServer(int port, NetConnectionHandler handler, Handshake handshake, Logger logger)
          each connection made will run in a separate thread that delegates every message received to the given handler; if logger is not null, it will be used to log both: connection and message handling
Spider.SMonitor(Logger logger, int maxFound)
          Deprecated.  
 

Uses of Logger in com.antelmann.net.mail
 

Methods in com.antelmann.net.mail that return Logger
 Logger JMessageTable.getLogger()
           
 Logger EmailAccount.getLogger()
           
 

Methods in com.antelmann.net.mail with parameters of type Logger
 void JEmailWatcher.handleLogException(Logger logger, LogException ex, LogWriter writer)
           
 void JMessageTable.setLogger(Logger logger)
           
 void EmailAccount.setLogger(Logger logger)
           
 

Constructors in com.antelmann.net.mail with parameters of type Logger
EmailAccount(String pop3Server, String smtpServer, String user, String password, String from, boolean authentication, Logger logger)
           
 

Uses of Logger in com.antelmann.timeregister
 

Fields in com.antelmann.timeregister declared as Logger
protected  Logger PunchAdminTool.logger
           
 

Methods in com.antelmann.timeregister that return Logger
 Logger PunchStation.getLogger()
           
 Logger PunchServerFrame.getLogger()
           
 Logger PunchDBServer.getLogger()
           
 Logger JWorkUnitEditor.getLogger()
           
 

Methods in com.antelmann.timeregister with parameters of type Logger
 void PunchStation.setLogger(Logger logger)
           
 void PunchDBServer.setLogger(Logger logger)
          must not be null; empty logger is ok
 

Constructors in com.antelmann.timeregister with parameters of type Logger
JWorkUnitEditor(PunchAdminDB db, User currentUser, Logger logger)
          each parameter must not be null
JWorkUnitValidatorEditor(PunchAdminDB db, User user, Logger logger)
           
PunchAdminTool(PunchAdminDB db, Logger logger)
           
PunchAdminTool(PunchAdminDB db, Logger logger, User currentUser)
           
PunchClientFrame(String location, String serverName, int port, Logger logger)
           
PunchDBServer(PunchAdminDB db, Logger logger)
           
PunchServerFrame(PunchAdminDB db, int port, Logger logger, boolean runNTPServer)
           
PunchServerFrame(PunchAdminDB db, Logger logger, boolean runNTPServer)
          uses port 2004
PunchServerTray(PunchAdminDB db, int port, Logger logger, Icon image, boolean runNTP)
           
PunchStation(PunchDB db, String location, TimeSystem ts, Logger logger)
           
PunchStation(PunchDB db, String location, TimeSystem ts, Logger logger, String activity)
           
WorkUnitGenerator(Logger logger)
           
 

Uses of Logger in com.antelmann.util
 

Fields in com.antelmann.util declared as Logger
static Logger Debug.logger
          the logger is initialized as a plain empty logger
 

Uses of Logger in com.antelmann.util.gui
 

Fields in com.antelmann.util.gui declared as Logger
protected  Logger JMainFrame.logger
          used if verbose is true
 

Methods in com.antelmann.util.gui that return Logger
 Logger SchedulerFrame.getLogger()
          contains a JTextComponentLog by default
 

Uses of Logger in com.antelmann.util.logging
 

Methods in com.antelmann.util.logging that return Logger
 Logger SocketLogListener.getLogger()
           
 Logger MemoryLogger.getLogger()
           
 

Methods in com.antelmann.util.logging with parameters of type Logger
 void Logger.addWritersFromLogger(Logger logger)
          adds all LogWriter handler from the given logger
 void LogExceptionHandler.handleLogException(Logger logger, LogException ex, LogWriter writer)
          is called when a logger encounteres a LogException while the handler logs an entry.
 

Constructors in com.antelmann.util.logging with parameters of type Logger
Logger(Logger logger)
          uses the configuration from the given logger (including writers and filter)
LogNetPropagator(int port, Logger logger)
          the server is not started through the constructor
LogNetReceiver(String server, int port, Logger logger)
           
MemoryLogger(Logger logger, long intervalMillis)
           
SocketLogListener(int port, Logger logger)
           
SocketLogListener(int port, Logger logger, boolean logInternals)
           
 



(c) 2001-2006 Holger Antelmann - all rights reserved (contact: info@antelmann.com)
see www.antelmann.com/developer for further details and available downloads