Package com.logicaldoc.core.util
Class IconSelector
- java.lang.Object
-
- com.logicaldoc.core.util.IconSelector
-
public class IconSelector extends Object
utility class to select an icon based on a file extension- Author:
- Sebastian Stein
-
-
Constructor Summary
Constructors Constructor Description IconSelector()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isPicture(String ext)
Determines if the given extension represents a picturestatic String
selectIcon(String ext)
Returns the icon by parsing the provided file extensionstatic String
selectIcon(String ext, boolean shortcut)
Returns the icon by parsing the provided file extension
-
-
-
Method Detail
-
selectIcon
public static String selectIcon(String ext)
Returns the icon by parsing the provided file extension- Parameters:
ext
- file extension- Returns:
- file name of the icon
-
selectIcon
public static String selectIcon(String ext, boolean shortcut)
Returns the icon by parsing the provided file extension- Parameters:
ext
- the gile extensionsshortcut
- If the icon displays a shortcut- Returns:
- the icon file name
-
isPicture
public static boolean isPicture(String ext)
Determines if the given extension represents a picture- Parameters:
ext
- the file extension- Returns:
- if ext is an image
-
-