/******************************************************************************* * Copyright (c) 2005, 2009 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.msproject; import java.math.BigInteger; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>WBS Mask</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.epf.msproject.WBSMask#getLevel <em>Level</em>}</li> * <li>{@link org.eclipse.epf.msproject.WBSMask#getType <em>Type</em>}</li> * <li>{@link org.eclipse.epf.msproject.WBSMask#getLength <em>Length</em>}</li> * <li>{@link org.eclipse.epf.msproject.WBSMask#getSeparator <em>Separator</em>}</li> * </ul> * </p> * * @see org.eclipse.epf.msproject.MsprojectPackage#getWBSMask() * @model extendedMetaData="name='WBSMask_._type' kind='elementOnly'" * @generated */ public interface WBSMask extends EObject { /** * Returns the value of the '<em><b>Level</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * The level of the mask. * <!-- end-model-doc --> * @return the value of the '<em>Level</em>' attribute. * @see #setLevel(BigInteger) * @see org.eclipse.epf.msproject.MsprojectPackage#getWBSMask_Level() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.Integer" required="true" * extendedMetaData="kind='element' name='Level' namespace='##targetNamespace'" * @generated */ BigInteger getLevel(); /** * Sets the value of the '{@link org.eclipse.epf.msproject.WBSMask#getLevel <em>Level</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Level</em>' attribute. * @see #getLevel() * @generated */ void setLevel(BigInteger value); /** * Returns the value of the '<em><b>Type</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * The type of the node value. * The values are: 0=Numbers, 1=Uppercase Letters, 2=Lowercase Letters, 3=Characters. * <!-- end-model-doc --> * @return the value of the '<em>Type</em>' attribute. * @see #setType(BigInteger) * @see org.eclipse.epf.msproject.MsprojectPackage#getWBSMask_Type() * @model unique="false" dataType="org.eclipse.epf.msproject.TypeType2" required="true" * extendedMetaData="kind='element' name='Type' namespace='##targetNamespace'" * @generated */ BigInteger getType(); /** * Sets the value of the '{@link org.eclipse.epf.msproject.WBSMask#getType <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' attribute. * @see #getType() * @generated */ void setType(BigInteger value); /** * Returns the value of the '<em><b>Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * The maximum length in characters. * This element is omitted when length is "any". * <!-- end-model-doc --> * @return the value of the '<em>Length</em>' attribute. * @see #setLength(String) * @see org.eclipse.epf.msproject.MsprojectPackage#getWBSMask_Length() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='element' name='Length' namespace='##targetNamespace'" * @generated */ String getLength(); /** * Sets the value of the '{@link org.eclipse.epf.msproject.WBSMask#getLength <em>Length</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Length</em>' attribute. * @see #getLength() * @generated */ void setLength(String value); /** * Returns the value of the '<em><b>Separator</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * The separator character of the node. * <!-- end-model-doc --> * @return the value of the '<em>Separator</em>' attribute. * @see #setSeparator(String) * @see org.eclipse.epf.msproject.MsprojectPackage#getWBSMask_Separator() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='element' name='Separator' namespace='##targetNamespace'" * @generated */ String getSeparator(); /** * Sets the value of the '{@link org.eclipse.epf.msproject.WBSMask#getSeparator <em>Separator</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Separator</em>' attribute. * @see #getSeparator() * @generated */ void setSeparator(String value); } // WBSMask