/******************************************************************************* * Copyright (c) 2008 Pierre-Antoine Grégoire. * 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: * Pierre-Antoine Grégoire - initial API and implementation *******************************************************************************/ package org.org.eclipse.core.utils.platform.images; import org.org.eclipse.core.utils.platform.PlatformUtilsPlugin; /** * @author pagregoire */ public final class PluginImages { public static final String LOGO_BASIC_ERROR_64 = PlatformUtilsPlugin.class.getName() + ".ICONS_64_basic_error"; public static final String LOGO_BASIC_INFO_64 = PlatformUtilsPlugin.class.getName() + ".ICONS_64_basic_info"; public static final String LOGO_BASIC_WARNING_64 = PlatformUtilsPlugin.class.getName() + ".ICONS_64_basic_warning"; public static final String SMALL_WARNING_16 = PlatformUtilsPlugin.class.getName() + ".ICONS_16_small_warning"; public static final String SMALL_ERROR_16 = PlatformUtilsPlugin.class.getName() + ".ICONS_16_small_error"; public static final String SMALL_OK_16 = PlatformUtilsPlugin.class.getName() + ".ICONS_16_small_ok"; public static final String ICON_REMOVE_ON_16 = PlatformUtilsPlugin.class.getName() + ".ICONS_16_small_remove_on"; }