Package fr.dz.swan.log

Examples of fr.dz.swan.log.LogManager


public class LogPanel extends JPanel {

  public LogPanel(String id) {
    setLayout(new BorderLayout());
    LogManager log =LogManager.getLogger(id);
    String[][] messages =parseLog(log.getLog("parse"));
    String[] titres= new String[2];
    titres[0]="ligne";
    titres[1]="message";
    JTable table = new JTable(messages,titres);
    table.setCellSelectionEnabled(false);
View Full Code Here

TOP

Related Classes of fr.dz.swan.log.LogManager

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.