Cleanup: Add Javadoc to all public methods and members
[deliverable/lttng-ust.git] / liblttng-ust-java-agent / java / lttng-ust-agent-jul / org / lttng / ust / agent / jul / LTTngJUL.java
index 6a3eac95cc8ce90c0acbffcd6197268f9ab24c39..2f21d62ebcd5e87b8d2b42eb06f93f79802be353 100644 (file)
@@ -21,17 +21,27 @@ package org.lttng.ust.agent.jul;
 import java.util.Enumeration;
 import java.util.Iterator;
 import java.util.Vector;
-
 import java.util.logging.LogManager;
 import java.util.logging.Logger;
 
 import org.lttng.ust.agent.LogFrameworkSkeleton;
 
+/**
+ * JUL logging framework
+ *
+ * @author Christian Babeux
+ */
 public class LTTngJUL extends LogFrameworkSkeleton {
 
        private LTTngLogHandler handler;
        private Boolean attached;
 
+       /**
+        * Constructor
+        *
+        * @param isRoot
+        *            If this logger is a root logger or not.
+        */
        public LTTngJUL(Boolean isRoot) {
                super();
                this.handler = new LTTngLogHandler(isRoot);
This page took 0.023114 seconds and 5 git commands to generate.