blob: c0d068a567f44e31569677efa87fb95eb1995a7c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Standards for Technology in Automotive Retail and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* David Carver - STAR - bug 213849 - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsl.ui.internal.util;
/**
* Bundle of most images used by the XSL Plugins
*/
public class XSLPluginImages {
/**
* Path to the XPATH Images used for Content Assist
*/
public static final String IMG_XPATH_FUNCTION = "icons/full/function.gif"; //$NON-NLS-1$
/**
* Path to the XPATH Images used for Content Assist
*/
public static final String IMG_XPATH_AXIS = "icons/full/directional.gif"; //$NON-NLS-1$
/**
* Path to the XPATH Images used for Content Assist
*/
public static final String IMG_VARIABLES = "icons/full/variable.gif"; //$NON-NLS-1$
/**
* Path to the XPATH Images used for Content Assist
*/
public static final String IMG_OPERATOR = "icons/full/operation.gif"; //$NON-NLS-1$
/**
* Path to the XML Prefix Image used for Content Assist
*/
public static final String IMG_PREFIX = "icons/full/package_obj.gif"; //$NON-NLS-1$
/**
* Path to the XSL mode Image used for Content Assist
*/
public static final String IMG_MODE = "icons/full/mode.gif"; //$NON-NLS-1$
/**
* Path to the XSL File image use for Content Assistance.
*/
public static final String IMG_XSL_FILE = "icons/full/xslt_file.gif"; //$NON-NLS-1$
/**
* Path to the xsl template image use for Content Assistance.
*/
public static final String IMG_TEMPLATE = "icons/full/template.gif"; //$NON-NLS-1$
}