Package bear.main.event

Examples of bear.main.event.EventToUI


    public void append(LogEvent event) {
        Message message = event.getMessage();

        //this might be a big buggy, because this event is not attached to a tree, e.g. has no parent
        if (message instanceof EventToUI) {
            EventToUI eventToUI = (EventToUI) message;
            eventToUI.setLevel(event.getLevel().intLevel());
            bearFX.sendMessageToUI(eventToUI);
            return;
        }

        String s = new String(getLayout().toByteArray(event));
View Full Code Here

TOP

Related Classes of bear.main.event.EventToUI

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.