blob: 298241b3408c5b94c5b0d8bb3cf1a2746d090ed7 [file] [log] [blame]
package org.eclipse.jst.jsf.common.ui.internal.utils;
/**
* Constants that can be passed to JSFUICommonPlugin.getImageDescriptor and
* getImage to obtain common images.
*
* @author cbateman
*
*/
public interface JSFSharedImages
{
/**
* The icon use for default/unknown tags. Consists of blue open/close
* angled braces on a neutral background.
*
* Size: 16x16
*/
public final static String DEFAULT_PALETTE_TAG_IMG = "PD_Palette_Default.gif";
/**
* A yellow cube on a white background. Suitable for representing
* generic objects and components.
*
* Size: 16x16
*/
public final static String GENERIC_OBJECT_IMG = "object.gif";
/**
* A generic image suitable for representing JSF validators. Consists of
* a white box with a blue check mark.
*
* Size: 16x16
*/
public final static String GENERIC_VALIDATOR_IMG = "jsf_validator.gif";
/**
* A generic image suitable for representing JSF converter. Consists of
* yellow blob being "converted".
*
* Size: 16x16
*/
public final static String GENERIC_CONVERTER_IMG = "jsf_converter.gif";
}