/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.buckminster.rmap.maven; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> A representation of the model object ' * <em><b>Group And Artifact</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.buckminster.rmap.maven.GroupAndArtifact#getArtifactId * <em>Artifact Id</em>}</li> * <li>{@link org.eclipse.buckminster.rmap.maven.GroupAndArtifact#getGroupId * <em>Group Id</em>}</li> * </ul> * </p> * * @see org.eclipse.buckminster.rmap.maven.MavenPackage#getGroupAndArtifact() * @model * @generated */ public interface GroupAndArtifact extends EObject { /** * Returns the value of the '<em><b>Artifact Id</b></em>' attribute. <!-- * begin-user-doc --> * <p> * If the meaning of the '<em>Artifact Id</em>' attribute isn't clear, there * really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Artifact Id</em>' attribute. * @see #setArtifactId(String) * @see org.eclipse.buckminster.rmap.maven.MavenPackage#getGroupAndArtifact_ArtifactId() * @model * @generated */ String getArtifactId(); /** * Returns the value of the '<em><b>Group Id</b></em>' attribute. <!-- * begin-user-doc --> * <p> * If the meaning of the '<em>Group Id</em>' attribute isn't clear, there * really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Group Id</em>' attribute. * @see #setGroupId(String) * @see org.eclipse.buckminster.rmap.maven.MavenPackage#getGroupAndArtifact_GroupId() * @model * @generated */ String getGroupId(); /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @model * @generated */ boolean isMatchFor(String group, String artifact); /** * Sets the value of the ' * {@link org.eclipse.buckminster.rmap.maven.GroupAndArtifact#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); /** * Sets the value of the ' * {@link org.eclipse.buckminster.rmap.maven.GroupAndArtifact#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); } // GroupAndArtifact