Package org.fenrir.yggdrasil.ui.action

Examples of org.fenrir.yggdrasil.ui.action.Action


        // Entrada al popup
        final TrayPopupEntry entry = new TrayPopupEntry();
        entry.setNotificationId(notification.getId());
        entry.setMessage(notification.getMessage());
        if(notification instanceof INotificationActionSupport){
            Action action = ((INotificationActionSupport)notification).getAction();
            entry.setAction(action);
        }
        ImageIcon icon = new ImageIcon(getClass().getResource(notification.getIconPath()));
        entry.setIcon(icon);
       
View Full Code Here


    @Override
    public Action getAction()
    {
        // S'obren les incidències actualitzades a la llista de la vista principal
        Action action = new Action()
        {
            @Override
            public void actionPerformed()
            {
                ApplicationWindowManager.getInstance().displayErrorMessage(errorDescription, errorThrowable);
View Full Code Here

TOP

Related Classes of org.fenrir.yggdrasil.ui.action.Action

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.