/******************************************************************************* * Copyright 2005-2007, CHISEL Group, University of Victoria, Victoria, BC, Canada * and IBM Corporation. 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: * The Chisel Group, University of Victoria *******************************************************************************/ package net.sourceforge.tagsea.resources.ui; /** * Shared image constants for the resource waypoints. Can be retrieved from the plugin's image registry. * @author Del Myers * */ public interface ISharedImages { public static final String IMG_TEXT = "IMG_TEXT"; public static final String IMG_NEW_IN = "IMG_NEW_IN"; public static final String IMG_NEW_OUT = "IMG_NEW_OUT"; public static final String IMG_OVERLAY = "IMG_OVERLAY"; public static final String IMG_SYNCH_IN = "IMG_SYNCH_IN"; public static final String IMG_SYNCH_OUT = "IMG_SYNCH_OUT"; public static final String IMG_REMOVE_IN = "IMG_REMOVE_IN"; public static final String IMG_REMOVE_OUT = "IMG_REMOVE_OUT"; public static final String IMG_CONFLICT = "IMG_CONFLICT"; }