Package fr.pingtimeout.jtail.gui.model

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


    }

    @Override
    public void update(Observable observable, Object o) {
        if (observable == this.openFileModel) {
            OpenFileModelEvent event = ((OpenFileModelEvent) o);
            switch(event.eventType) {
                case FILE_CHANGED:
                    this.fileTextField.setText(event.file.getAbsolutePath());
                    break;
                case INDEX_TYPE_CHANGED:
View Full Code Here

TOP

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

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.