Package fr.pingtimeout.jtail.gui.model

Examples of fr.pingtimeout.jtail.gui.model.JTailMainModelEvent


    public void update(Observable observable, Object arg) {
        if (observable == this.model) {
            JTailLogger.debug("JTailMainFrame just received a notification : " //NON-NLS
                    + arg);

            final JTailMainModelEvent event = (JTailMainModelEvent) arg;
            switch (event.type) {
                case CREATED:
                    JTailLogger.debug("Adding a tab for {}", event.model.getFileName()); //NON-NLS
                    JTailPanel panel = new JTailPanel(event.model);
View Full Code Here

TOP

Related Classes of fr.pingtimeout.jtail.gui.model.JTailMainModelEvent

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.