1 package net.sourceforge.phpdt.sql.view;
3 public class LogProxy implements LogConstants {
4 private static LogProxy instance = null;
5 private SQLLogView log = null;
8 public synchronized static LogProxy getInstance() {
9 if (instance == null) {
10 instance = new LogProxy();
14 public void addText(int type, String text) {
15 log = SQLLogView.getInstance();
17 log.addText(type, text);