/* * org.openmicroscopy.shoola.agents.treeviewer.TimeIntervalsLoader * *------------------------------------------------------------------------------ * Copyright (C) 2006-2008 University of Dundee. All rights reserved. * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * *------------------------------------------------------------------------------ */ package org.openmicroscopy.shoola.agents.treeviewer; //Java imports import java.util.Set; //Third-party libraries //Application-internal dependencies import org.openmicroscopy.shoola.agents.treeviewer.view.TreeViewer; import org.openmicroscopy.shoola.agents.util.browser.TreeImageTimeSet; import org.openmicroscopy.shoola.env.data.model.TimeRefObject; import omero.gateway.SecurityContext; import org.openmicroscopy.shoola.env.data.views.CallHandle; /** * Loads the images imported during a given period. * This class calls the <code>loadHierarchy</code> method in the * <code>HierarchyBrowsingView</code>. * * @author Jean-Marie Burel      * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a> * @author Donald MacDonald      * <a href="mailto:donald@lifesci.dundee.ac.uk">donald@lifesci.dundee.ac.uk</a> * @version 3.0 * <small> * (<b>Internal version:</b> $Revision: $Date: $) * </small> * @since OME3.0 */ public class TimeIntervalsLoader extends DataTreeViewerLoader { /** Handle to the asynchronous call so that we can cancel it. */ private CallHandle handle; /** Reference to the node hosting the time interval to browse. */ private TreeImageTimeSet node; /** * Creates a new instance. * * @param viewer The viewer this loader is for. * Mustn't be <code>null</code>. * @param ctx The security context. * @param node The node hosting the time interval to browse. * Mustn't be <code>null</code>. */ public TimeIntervalsLoader(TreeViewer viewer, SecurityContext ctx, TreeImageTimeSet node) { super(viewer, ctx); if (node == null) throw new IllegalArgumentException("No node of reference."); this.node = node; } /** * Retrieves the data. * @see DataTreeViewerLoader#load() */ public void load() { long id = TreeViewerAgent.getUserDetails().getId(); TimeRefObject ref = node.getTimeObject(id); handle = dhView.loadImages(ctx, ref.getStartTime(), ref.getEndTime(), ref.getUserID(), this); } /** * Cancels the data loading. * @see DataTreeViewerLoader#cancel() */ public void cancel() { handle.cancel(); } /** * Feeds the result back to the viewer. * @see DataTreeViewerLoader#handleResult(Object) */ public void handleResult(Object result) { if (viewer.getState() == TreeViewer.DISCARDED) return; //Async cancel. viewer.browseTimeInterval(node, (Set) result); } }