Package com.salas.bb.reports.actions

Examples of com.salas.bb.reports.actions.DeleteFeed


            protected Map<String, Action> getActions()
            {
                Map<String, Action> actions = super.getActions();

                actions.remove(ACTION_DELETE);
                actions.put(ACTION_DELETE, new DeleteFeed(feed, guide));

                return actions;
            }
        });
View Full Code Here


    {
        Map<String, Action> actions = new Hashtable<String, Action>();

        actions.put(ACTION_MARK_AS_READ, MarkAsRead.createForFeed(feed, true));
        actions.put(ACTION_MARK_AS_UNREAD, MarkAsRead.createForFeed(feed, false));
        actions.put(ACTION_DELETE, new DeleteFeed(feed, null));
        if (feed instanceof DirectFeed)
        {
            actions.put(ACTION_BROWSE, new BrowseFeed(feed));
        }
View Full Code Here

TOP

Related Classes of com.salas.bb.reports.actions.DeleteFeed

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.