/*******************************************************************************
* Copyright (c) 2009 the CHISEL group and contributors.
* 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:
* Del Myers - initial API and implementation
*******************************************************************************/
package ca.uvic.chisel.javasketch.ui;
/**
* Various images and icons for the plugin
* @author Del Myers
*
*/
public interface ISketchImageConstants {
String ICON_PROCESS_TRACE = "icon.process.trace";
String ICON_THREAD_TRACE = "icon.thread.trace";
String ICON_TRACE = "icon.trace";
String OVERLAY_PLAY = "overlay.play";
String OVERLAY_STOP = "overlay.stop";
String OVERLAY_ANALYSE = "overlay.gear";
String ICON_TRACE_EDITOR = "icon.trace.editor";
String ICON_CALENDAR = "icon.calendar";
String ICON_TRACE_ACTIVE = "icon.trace.active";
String ICON_TRACE_INACTIVE = "icon.trace.inactive";
String ICON_ELEMENT_FILTERED = "icon.element.filtered";
String ICON_ELEMENT_VISIBLE = "icon.element.visible";
String ICON_LOGO = "icon.logo";
String ICON_ACTIVATION = "icon.activation";
String ICON_ANNOTATIONS = "icon.annotations";
String ICON_ANNOTATION = "icon.annotation";
}