Searched defs:Log (Results 1 - 3 of 3) sorted by relevance

/openjdk7/langtools/make/tools/CompileProperties/
H A DCompileProperties.java64 static interface Log { interface in class:CompileProperties
75 private Log log;
77 public void setLog(Log log) {
83 log = new Log() {
281 private static void usage(Log log) {
/openjdk7/jdk/src/share/classes/sun/rmi/runtime/
H A DLog.java64 public abstract class Log { class
94 Log createLog(String loggerName, String oldLogName, Level level);
119 public static Log getLog(String loggerName, String oldLogName,
148 public static Log getLog(String loggerName, String oldLogName,
156 * Factory to create Log objects which deliver log messages to the
168 public Log createLog(final String loggerName, String oldLogName,
179 private static class LoggerLog extends Log {
202 /** creates a Log which will delegate to the given logger */
254 copyHandler.setLevel(Log.VERBOSE);
295 * RemoteServer.{set|get}Log()
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DLog.java54 public class Log extends AbstractLog { class in inherits:AbstractLog
56 public static final Context.Key<Log> logKey
57 = new Context.Key<Log>();
127 protected Log(Context context, PrintWriter errWriter, PrintWriter warnWriter, PrintWriter noticeWriter) { method in class:Log
192 protected Log(Context context) { method in class:Log
198 protected Log(Context context, PrintWriter defaultWriter) { method in class:Log
202 /** Get the Log instance for this context. */
203 public static Log instance(Context context) {
204 Log instance = context.get(logKey);
206 instance = new Log(contex
[all...]

Completed in 37 milliseconds