//------------------------------------------------------------------------------ // Copyright (c) 2005, 2006 IBM Corporation 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: // IBM Corporation - initial implementation //------------------------------------------------------------------------------ package org.eclipse.epf.library.edit.process.command; public class IActionTypeConstants { public static final int ADD_PRIMARY_PERFORMER = 0; public static final int ADD_ADDITIONAL_PERFORMER = 1; public static final int ADD_ASSISTED_BY = 2; public static final int ADD_EXTERNAL_INPUT = 3; public static final int ADD_MANDATORY_INPUT = 4; public static final int ADD_OPTIONAL_INPUT = 5; public static final int ADD_OUTPUT = 6; public static final int ADD_RESPONSIBLE_FOR = 7; public static final int ADD_REQUIRED_RESULT = 8; }