Examples of BrowseDestinationTask


Examples of hermes.browser.tasks.BrowseDestinationTask

     */
    protected Task createTask() throws Exception
    {
        if (getDestination() == null)
        {
            return new BrowseDestinationTask(getHermes(), getHermes().getDestinations()) ;
        }
        else
        {
            return new BrowseDestinationTask(getHermes(), getConfig()) ;
        }
    }
View Full Code Here

Examples of hermes.browser.tasks.BrowseDestinationTask

      if (currentPath.getLastPathComponent() instanceof DestinationConfigTreeNode) {
        final DestinationConfigTreeNode destinationNode = HermesBrowser.getBrowser().getBrowserTree().getSelectedDestinationNodes().get(0);
        final DestinationConfig destinationConfig = destinationNode.getConfig();
        h = ((HermesTreeNode) destinationNode.getParent()).getHermes();
        task = new BrowseDestinationTask(h, destinationConfig);
        f = destinationConfig.getName();
      } else {
        MessageStore messageStore = HermesBrowser.getBrowser().getBrowserTree().getSelectedMessageStore();
        h = getMyHermes();
        task = new BrowseMessageStoreTask(h, messageStore, null, null);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.