blob: c4ff1fcd205ac76283a48a9542047658eaf67221 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2010 Sonatype, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Sonatype, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.m2e.model.edit.pom;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc --> A representation of the model object ' <em><b>Extension</b></em>'. <!-- end-user-doc --> <!--
* begin-model-doc --> 4.0.0 Describes a build extension to utilise. <!-- end-model-doc -->
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.m2e.model.edit.pom.Extension#getGroupId <em>Group Id </em>}</li>
* <li>{@link org.eclipse.m2e.model.edit.pom.Extension#getArtifactId <em>Artifact Id</em>}</li>
* <li>{@link org.eclipse.m2e.model.edit.pom.Extension#getVersion <em>Version </em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.m2e.model.edit.pom.PomPackage#getExtension()
* @model extendedMetaData="name='Extension' kind='elementOnly'"
* @generated
*/
public interface Extension extends EObject {
/**
* Returns the value of the '<em><b>Group Id</b></em>' attribute. <!-- begin-user-doc --> <!-- end-user-doc --> <!--
* begin-model-doc --> 4.0.0 The group ID of the extension's artifact. <!-- end-model-doc -->
*
* @return the value of the '<em>Group Id</em>' attribute.
* @see #setGroupId(String)
* @see org.eclipse.m2e.model.edit.pom.PomPackage#getExtension_GroupId()
* @model dataType="org.eclipse.emf.ecore.xml.type.String" extendedMetaData=
* "kind='element' name='groupId' namespace='##targetNamespace'"
* @generated
*/
String getGroupId();
/**
* Sets the value of the ' {@link org.eclipse.m2e.model.edit.pom.Extension#getGroupId <em>Group Id</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value the new value of the '<em>Group Id</em>' attribute.
* @see #getGroupId()
* @generated
*/
void setGroupId(String value);
/**
* Returns the value of the '<em><b>Artifact Id</b></em>' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
* <!-- begin-model-doc --> 4.0.0 The artifact ID of the extension. <!-- end-model-doc -->
*
* @return the value of the '<em>Artifact Id</em>' attribute.
* @see #setArtifactId(String)
* @see org.eclipse.m2e.model.edit.pom.PomPackage#getExtension_ArtifactId()
* @model dataType="org.eclipse.emf.ecore.xml.type.String" extendedMetaData=
* "kind='element' name='artifactId' namespace='##targetNamespace'"
* @generated
*/
String getArtifactId();
/**
* Sets the value of the ' {@link org.eclipse.m2e.model.edit.pom.Extension#getArtifactId <em>Artifact Id</em>}'
* attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value the new value of the '<em>Artifact Id</em>' attribute.
* @see #getArtifactId()
* @generated
*/
void setArtifactId(String value);
/**
* Returns the value of the '<em><b>Version</b></em>' attribute. <!-- begin-user-doc --> <!-- end-user-doc --> <!--
* begin-model-doc --> 4.0.0 The version of the extension. <!-- end-model-doc -->
*
* @return the value of the '<em>Version</em>' attribute.
* @see #setVersion(String)
* @see org.eclipse.m2e.model.edit.pom.PomPackage#getExtension_Version()
* @model dataType="org.eclipse.emf.ecore.xml.type.String" extendedMetaData=
* "kind='element' name='version' namespace='##targetNamespace'"
* @generated
*/
String getVersion();
/**
* Sets the value of the ' {@link org.eclipse.m2e.model.edit.pom.Extension#getVersion <em>Version</em>}' attribute.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value the new value of the '<em>Version</em>' attribute.
* @see #getVersion()
* @generated
*/
void setVersion(String value);
} // Extension