Package vg.logging

Examples of vg.logging.FileLog


public class TestSuite1 extends TestCase{
  public TestSuite1(String s) {
    super(s);
    // set all system services------------
    try {
      VisualGraph.setLog(new FileLog());
    } catch (Throwable ex) {
      ex.printStackTrace();
      VisualGraph.setLog(new SimpleLog());
    }
    VisualGraph.setWindowMessage(new WindowMessage());
View Full Code Here


public class CreatingModule extends TestCase {
  public CreatingModule(String s) {
    super(s);
    // set all system services------------
    try {
      VisualGraph.setLog(new FileLog());
    } catch (Throwable ex) {
      ex.printStackTrace();
      VisualGraph.setLog(new SimpleLog());
    }
    VisualGraph.setWindowMessage(new WindowMessage());
View Full Code Here

public class TestSuite1 extends TestCase {
  public TestSuite1(String s) {
    super(s);
    // set all system services------------
    try {
      VisualGraph.setLog(new FileLog());
    } catch (Throwable ex) {
      ex.printStackTrace();
      VisualGraph.setLog(new SimpleLog());
    }
    VisualGraph.setWindowMessage(new WindowMessage());
View Full Code Here

      }
    }, "edit");
  }
  public static void main(String[] args) {
    try {
      VisualGraph.setLog(new FileLog());
    } catch (Throwable ex) {
      ex.printStackTrace();
      VisualGraph.setLog(new SimpleLog());
    }
    VisualGraph.setWindowMessage(new WindowMessage());
View Full Code Here

TOP

Related Classes of vg.logging.FileLog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.