// Class: DefaultDisplayFactory // // Author: Alyce Brady // // Created on Mar 1, 2005 // // License Information: // This class 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. // // This class 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. package edu.kzoo.grid.display; import java.util.HashSet; import java.util.Iterator; /** * Grid Display Package:
* * The DefaultDisplayFactory class contains methods * that provide a suitable default display for a given class. * * @author Alyce Brady * @version Mar 1, 2005 **/ public class DefaultDisplayFactory { private static GridObjectDisplay baseDefault = new DefaultDisplay(); private static String baseSuffixes[] = {"gif", "GIF", "jpg", "jpeg", "JPG", "JPEG"}; private static HashSet suffixes = new HashSet(); static { for ( int i = 0; i < baseSuffixes.length; i++ ) suffixes.add(baseSuffixes[i]); } /** Adds the specified suffix to the list of image suffixes to look for. * @param suffix image suffix (e.g., "tiff") */ public static void addSuffix(String suffix) { suffixes.add(suffix); } /** Returns a DefaultDisplay object. **/ public static GridObjectDisplay getDefaultDisplay() { return baseDefault; } /** Returns a default display specific to the given class if there * is one. In the following detailed description of which * display object is returned, assume that ClassName * is the base class name passed in as a parameter and package * is the name of the package in which that class resides. The * returned display is: *