/* *------------------------------------------------------------------------------ * Copyright (C) 2006-2013 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.metadata.rnd; import java.util.Collection; import omero.gateway.SecurityContext; import org.openmicroscopy.shoola.env.rnd.RenderingControl; import org.openmicroscopy.shoola.env.rnd.RndProxyDef; import omero.gateway.model.ImageData; import omero.gateway.model.XMLAnnotationData; /** * Factory to create the {@link Renderer} components. * * @author Jean-Marie Burel      * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a> * @author Andrea Falconi      * <a href="mailto:a.falconi@dundee.ac.uk">a.falconi@dundee.ac.uk</a> * @author Donald MacDonald      * <a href="mailto:donald@lifesci.dundee.ac.uk">donald@lifesci.dundee.ac.uk</a> * @since 3.0-Beta4 */ public class RendererFactory { /** * Creates a new {@link Renderer}. * * @param rndControl Reference to the component that controls the * rendering settings. Mustn't be <code>null</code>. * @param image The image the component is for. * @param rndIndex The index of the renderer. * @param modulo The modulo annotations if any. * @param def The alternative rendering settings if any. * @return See above. */ public static Renderer createRenderer(SecurityContext ctx, RenderingControl rndControl, ImageData image, int rndIndex, Collection<XMLAnnotationData> modulo, RndProxyDef def) { RendererModel model = new RendererModel(ctx, rndControl, rndIndex, def); model.setImage(image); model.setXMLAnnotations(modulo); RendererComponent rnd = new RendererComponent(model); rnd.initialize(); return rnd; } }