/******************************************************************************* * <copyright> * * Copyright (c) 2005, 2010 SAP AG. * 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: * SAP AG - initial API, implementation and documentation * * </copyright> * *******************************************************************************/ /** * */ package org.activiti.designer.eclipse.common; /** * The Interface IMofImageConstants. */ public interface ISampleImageConstants { /** * The Constant PRE. */ static final String PRE = "org.eclipse.graphiti.examples.common."; //$NON-NLS-1$ /** * The Constant IMG_MISSING. */ static final String IMG_MISSING = PRE + "missing"; //$NON-NLS-1$ /** * The Constant IMG_MODIFIER_A_PUBLIC. */ static final String IMG_MODIFIER_A_PUBLIC = PRE + "mod.a.public"; //$NON-NLS-1$ /** * The Constant IMG_MODIFIER_A_PRIVATE. */ static final String IMG_MODIFIER_A_PRIVATE = PRE + "mod.a.private"; //$NON-NLS-1$ /** * The Constant IMG_MODIFIER_A_PROTECTED. */ static final String IMG_MODIFIER_A_PROTECTED = PRE + "mod.a.protected"; //$NON-NLS-1$ /** * The Constant IMG_MODIFIER_R_PUBLIC. */ static final String IMG_MODIFIER_R_PUBLIC = PRE + "mod.r.public"; //$NON-NLS-1$ /** * The Constant IMG_MODIFIER_R_PRIVATE. */ static final String IMG_MODIFIER_R_PRIVATE = PRE + "mod.r.private"; //$NON-NLS-1$ /** * The Constant IMG_MODIFIER_R_PROTECTED. */ static final String IMG_MODIFIER_R_PROTECTED = PRE + "mod.r.protected"; //$NON-NLS-1$ /** * The Constant IMG_MODIFIER_O_PUBLIC. */ static final String IMG_MODIFIER_O_PUBLIC = PRE + "mod.o.public"; //$NON-NLS-1$ /** * The Constant IMG_MODIFIER_O_PRIVATE. */ static final String IMG_MODIFIER_O_PRIVATE = PRE + "mod.o.private"; //$NON-NLS-1$ /** * The Constant IMG_MODIFIER_O_PROTECTED. */ static final String IMG_MODIFIER_O_PROTECTED = PRE + "mod.o.protected"; //$NON-NLS-1$ /** * The Constant IMG_NEW_CLASS. */ static final String IMG_NEW_CLASS = PRE + "new_class"; //$NON-NLS-1$ /** * The Constant IMG_CLASS. */ static final String IMG_CLASS = PRE + "class"; //$NON-NLS-1$ /** * The Constant IMG_PACKAGE. */ static final String IMG_PACKAGE = PRE + "package"; //$NON-NLS-1$ /** * The Constant IMG_MOF. */ static final String IMG_MOF = PRE + "mof"; //$NON-NLS-1$ // tree /** * The Constant IMG_TREE_UP. */ static final String IMG_TREE_UP = PRE + "tree.up"; //$NON-NLS-1$ /** * The Constant IMG_TREE_DOWN. */ static final String IMG_TREE_DOWN = PRE + "tree.down"; //$NON-NLS-1$ /** * The Constant IMG_TREE_LEFT. */ static final String IMG_TREE_LEFT = PRE + "tree.left"; //$NON-NLS-1$ /** * The Constant IMG_TREE_RIGHT. */ static final String IMG_TREE_RIGHT = PRE + "tree.right"; //$NON-NLS-1$ // outline /** * The Constant IMG_OUTLINE_TREE. */ static final String IMG_OUTLINE_TREE = PRE + "outline.tree"; //$NON-NLS-1$ /** * The Constant IMG_OUTLINE_THUMBNAIL. */ static final String IMG_OUTLINE_THUMBNAIL = PRE + "outline.thumbnail"; //$NON-NLS-1$ }