/* * Copyright (c) 2014 Eike Stepper (Berlin, Germany) 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: * Eike Stepper - initial API and implementation */ package org.eclipse.oomph.setup; import org.eclipse.oomph.base.ModelElement; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Text Modification'. * * *

* The following features are supported: *

*

* * @see org.eclipse.oomph.setup.SetupPackage#getTextModification() * @model * @generated */ public interface TextModification extends ModelElement { /** * Returns the value of the 'Pattern' attribute. * *

* If the meaning of the 'Pattern' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Pattern' attribute. * @see #setPattern(String) * @see org.eclipse.oomph.setup.SetupPackage#getTextModification_Pattern() * @model required="true" * @generated */ String getPattern(); /** * Sets the value of the '{@link org.eclipse.oomph.setup.TextModification#getPattern Pattern}' attribute. * * * @param value the new value of the 'Pattern' attribute. * @see #getPattern() * @generated */ void setPattern(String value); /** * Returns the value of the 'Substitutions' attribute list. * The list contents are of type {@link java.lang.String}. * *

* If the meaning of the 'Substitutions' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Substitutions' attribute list. * @see org.eclipse.oomph.setup.SetupPackage#getTextModification_Substitutions() * @model extendedMetaData="kind='element' name='substitution'" * @generated */ EList getSubstitutions(); } // TextModification