blob: c2292ad47483d8b2e031c132efc19d65edfec327 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2010 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.portfolio.type;
/**
* @author Benoit Langlois
*/
public interface TypeConstants {
/**
* Contents task contract
*/
public static final String CONTENTS_NAME_CONTRACT = "contents"; //$NON-NLS-1$
/**
* In value task contract
*/
public static final String IN_VALUE_NAME_CONTRACT = "inValue"; //$NON-NLS-1$
/**
* Out value task contract
*/
public static final String OUT_VALUE_NAME_CONTRACT = "outValue"; //$NON-NLS-1$
/**
* Regular expression task contract
*/
public static final String REGEX_NAME_CONTRACT = "regex"; //$NON-NLS-1$
/**
* Replacement task contract
*/
public static final String REPLACEMENT_NAME_CONTRACT = "replacement"; //$NON-NLS-1$
/**
* Occurrence task contract
*/
public static final String OCCURRENCE_NAME_CONTRACT = "occurrence"; //$NON-NLS-1$
}