1 11 12 package org.eclipse.osgi.framework.internal.defaultadaptor; 13 14 import java.io.*; 15 import org.eclipse.osgi.framework.log.FrameworkLog; 16 import org.eclipse.osgi.framework.log.FrameworkLogEntry; 17 import org.osgi.framework.FrameworkEvent; 18 19 22 public class DefaultLog implements FrameworkLog { 23 24 public DefaultLog() { 25 } 26 27 public void log(FrameworkEvent frameworkEvent) { 28 } 29 30 public void log(FrameworkLogEntry logEntry) { 31 } 32 33 public void setWriter(Writer newWriter, boolean append) { 34 } 35 36 public void setFile(File newFile, boolean append) throws IOException { 37 } 38 39 public File getFile() { 40 return null; 41 } 42 43 public void setConsoleLog(boolean consoleLog) { 44 } 45 46 public void close() { 47 } 48 49 } 50 | Popular Tags |