Java Doc for Logger.java in  » Development » Monolog » org » objectweb » util » monolog » wrapper » javaLog » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Development » Monolog » org.objectweb.util.monolog.wrapper.javaLog 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.util.logging.Logger
      org.objectweb.util.monolog.wrapper.javaLog.Logger

Logger
public class Logger extends java.util.logging.Logger implements org.objectweb.util.monolog.api.TopicalLogger(Code)
Is an extension of the java.util.logging.Logger class used to wrap Monolog on the logging system provided in the JDK since the 1.4 version.
author:
   S.Chassande-Barrioz


Field Summary
 booleanenabled
    
protected  java.util.logging.Loggerinner
     This fieds is the real logger.

Constructor Summary
protected  Logger(java.util.logging.Logger inner)
    
protected  Logger(String name, String resName)
    

Method Summary
public  voidaddHandler(java.util.logging.Handler handler)
    
public  voidaddHandler(Handler h)
     A TopicalLogger manages a list of Handler instances.
public  voidaddTopic(String topic)
     This method allows adding a topic to a TopicalLogger.
public  booleangetAdditivity()
     It retrieves the additivity flag for this logger instance.
public  ObjectgetAttribute(String name)
     It retrieves the value of an attribute value of the handler.
public  String[]getAttributeNames()
    
public  intgetCurrentIntLevel()
    
public  LevelgetCurrentLevel()
    
public  HandlergetHandler(String hn)
    
public synchronized  Handler[]getHandler()
     Get the Handlers associated with this logger.
public  String[]getTopic()
     This method allows getting a topic list of this TopicalLogger.
public  EnumerationgetTopics()
     This method allows getting a topic list of this TopicalLogger.
public  StringgetType()
    
public  booleanisLoggable(int l)
    
public  booleanisLoggable(org.objectweb.util.monolog.api.Level l)
    
public  booleanisOn()
    
public  voidlog(int l, Object o)
    
public  voidlog(Level l, Object o)
    
public  voidlog(int l, Object o, Throwable t)
    
public  voidlog(Level l, Object o, Throwable t)
    
public  voidlog(int level, Object o, Object location, Object method)
    
public  voidlog(Level l, Object o, Object location, Object method)
    
public  voidlog(int level, Object o, Throwable t, Object location, Object method)
    
public  voidlog(Level l, Object o, Throwable t, Object location, Object method)
    
public  voidremoveAllHandlers()
     A TopicalLogger manages a list of Handler instances.
public  voidremoveHandler(Handler h)
     A TopicalLogger manages a list of Handler instances.
public  voidremoveTopic(String topic)
     This method allows removing a topic to a TopicalLogger.
public  voidsetAdditivity(boolean a)
     It assigns the additivity flag for this logger instance.
public  ObjectsetAttribute(String name, Object value)
     It assigns an attributte to the handler.
public  voidsetIntLevel(int level)
    
public  voidsetLevel(org.objectweb.util.monolog.api.Level l)
    
public  voidsetName(String name)
    
public  voidturnOff()
    
public  voidturnOn()
    

Field Detail
enabled
boolean enabled(Code)
indicates if the logger is enabled



inner
protected java.util.logging.Logger inner(Code)
This fieds is the real logger. In some cases inner is equal to this.




Constructor Detail
Logger
protected Logger(java.util.logging.Logger inner)(Code)
Builds a a Logger with an inner logger
Parameters:
  inner - the real logger



Logger
protected Logger(String name, String resName)(Code)
Builds a Logger without inner logger (==> inner = this)
Parameters:
  name - is the loggerName
Parameters:
  resName - is the resource bundle name




Method Detail
addHandler
public void addHandler(java.util.logging.Handler handler)(Code)



addHandler
public void addHandler(Handler h) throws Exception(Code)
A TopicalLogger manages a list of Handler instances. This method allows adding a handler to this list. The addHandler method returns true only if the Handler did not exist



addTopic
public void addTopic(String topic) throws Exception(Code)
This method allows adding a topic to a TopicalLogger. This actions change the hierarchical structure, but also the list of handlers. The list of handlers of a TopicalLogger is composed of its handlers and all handlers inherited from its parents. Adding a topic changes the inherited handlers list.



getAdditivity
public boolean getAdditivity()(Code)
It retrieves the additivity flag for this logger instance.



getAttribute
public Object getAttribute(String name)(Code)
It retrieves the value of an attribute value of the handler.
Parameters:
  name - is an attribute name



getAttributeNames
public String[] getAttributeNames()(Code)
It retrieves the attributes of the handler



getCurrentIntLevel
public int getCurrentIntLevel()(Code)



getCurrentLevel
public Level getCurrentLevel()(Code)



getHandler
public Handler getHandler(String hn)(Code)
It returns the handler which the name is equals to the parameter
Parameters:
  hn - is the handler name an Handler or a null value.



getHandler
public synchronized Handler[] getHandler()(Code)
Get the Handlers associated with this logger.

an array of all registered Handlers




getTopic
public String[] getTopic()(Code)
This method allows getting a topic list of this TopicalLogger.



getTopics
public Enumeration getTopics()(Code)
This method allows getting a topic list of this TopicalLogger. Only kept for the backward compatibility.



getType
public String getType()(Code)
It retrieves the Handler type



isLoggable
public boolean isLoggable(int l)(Code)



isLoggable
public boolean isLoggable(org.objectweb.util.monolog.api.Level l)(Code)



isOn
public boolean isOn()(Code)



log
public void log(int l, Object o)(Code)



log
public void log(Level l, Object o)(Code)



log
public void log(int l, Object o, Throwable t)(Code)



log
public void log(Level l, Object o, Throwable t)(Code)



log
public void log(int level, Object o, Object location, Object method)(Code)



log
public void log(Level l, Object o, Object location, Object method)(Code)



log
public void log(int level, Object o, Throwable t, Object location, Object method)(Code)



log
public void log(Level l, Object o, Throwable t, Object location, Object method)(Code)



removeAllHandlers
public void removeAllHandlers() throws Exception(Code)
A TopicalLogger manages a list of Handler instances. This method allows removing all handler.



removeHandler
public void removeHandler(Handler h) throws Exception(Code)
A TopicalLogger manages a list of Handler instances. This method allows removing a handler to this list.



removeTopic
public void removeTopic(String topic) throws Exception(Code)
This method allows removing a topic to a TopicalLogger. This actions change the hierarchical structure, but also the list of handlers. The list of handlers of a TopicalLogger is composed of its handlers and all handlers inherited from its parents. Removing a topic changes the inherited handlers list.



setAdditivity
public void setAdditivity(boolean a)(Code)
It assigns the additivity flag for this logger instance.



setAttribute
public Object setAttribute(String name, Object value)(Code)
It assigns an attributte to the handler.
Parameters:
  name - is the attribute name
Parameters:
  value - is the attribute value the old value is the attribute was already defined



setIntLevel
public void setIntLevel(int level)(Code)



setLevel
public void setLevel(org.objectweb.util.monolog.api.Level l)(Code)



setName
public void setName(String name)(Code)
It assigns the name of the handler



turnOff
public void turnOff()(Code)



turnOn
public void turnOn()(Code)



Fields inherited from java.util.logging.Logger
final public static String GLOBAL_LOGGER_NAME(Code)(Java Doc)
final public static Logger global(Code)(Java Doc)

Methods inherited from java.util.logging.Logger
public synchronized void addHandler(Handler handler) throws SecurityException(Code)(Java Doc)
public void config(String msg)(Code)(Java Doc)
public void entering(String sourceClass, String sourceMethod)(Code)(Java Doc)
public void entering(String sourceClass, String sourceMethod, Object param1)(Code)(Java Doc)
public void entering(String sourceClass, String sourceMethod, Object params)(Code)(Java Doc)
public void exiting(String sourceClass, String sourceMethod)(Code)(Java Doc)
public void exiting(String sourceClass, String sourceMethod, Object result)(Code)(Java Doc)
public void fine(String msg)(Code)(Java Doc)
public void finer(String msg)(Code)(Java Doc)
public void finest(String msg)(Code)(Java Doc)
public static synchronized Logger getAnonymousLogger()(Code)(Java Doc)
public static synchronized Logger getAnonymousLogger(String resourceBundleName)(Code)(Java Doc)
public synchronized Filter getFilter()(Code)(Java Doc)
final public static Logger getGlobal()(Code)(Java Doc)
public synchronized Handler[] getHandlers()(Code)(Java Doc)
public Level getLevel()(Code)(Java Doc)
public static synchronized Logger getLogger(String name)(Code)(Java Doc)
public static synchronized Logger getLogger(String name, String resourceBundleName)(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public Logger getParent()(Code)(Java Doc)
public ResourceBundle getResourceBundle()(Code)(Java Doc)
public String getResourceBundleName()(Code)(Java Doc)
public synchronized boolean getUseParentHandlers()(Code)(Java Doc)
public void info(String msg)(Code)(Java Doc)
public boolean isLoggable(Level level)(Code)(Java Doc)
public void log(LogRecord record)(Code)(Java Doc)
public void log(Level level, String msg)(Code)(Java Doc)
public void log(Level level, String msg, Object param1)(Code)(Java Doc)
public void log(Level level, String msg, Object params)(Code)(Java Doc)
public void log(Level level, String msg, Throwable thrown)(Code)(Java Doc)
public void logp(Level level, String sourceClass, String sourceMethod, String msg)(Code)(Java Doc)
public void logp(Level level, String sourceClass, String sourceMethod, String msg, Object param1)(Code)(Java Doc)
public void logp(Level level, String sourceClass, String sourceMethod, String msg, Object params)(Code)(Java Doc)
public void logp(Level level, String sourceClass, String sourceMethod, String msg, Throwable thrown)(Code)(Java Doc)
public void logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String msg)(Code)(Java Doc)
public void logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String msg, Object param1)(Code)(Java Doc)
public void logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String msg, Object params)(Code)(Java Doc)
public void logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String msg, Throwable thrown)(Code)(Java Doc)
public synchronized void removeHandler(Handler handler) throws SecurityException(Code)(Java Doc)
public synchronized void setFilter(Filter newFilter) throws SecurityException(Code)(Java Doc)
public void setLevel(Level newLevel) throws SecurityException(Code)(Java Doc)
public void setParent(Logger parent)(Code)(Java Doc)
public synchronized void setUseParentHandlers(boolean useParentHandlers)(Code)(Java Doc)
public void severe(String msg)(Code)(Java Doc)
public void throwing(String sourceClass, String sourceMethod, Throwable thrown)(Code)(Java Doc)
public void warning(String msg)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.