indexer-core/src/main/java/org/apache/maven/index/ArtifactInfo.java [636:657]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getGroupId() {
        return groupId;
    }

    public void setGroupId(String groupId) {
        this.groupId = groupId;
    }

    public String getArtifactId() {
        return artifactId;
    }

    public void setArtifactId(String artifactId) {
        this.artifactId = artifactId;
    }

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



indexer-core/src/main/java/org/apache/maven/index/treeview/AbstractTreeNode.java [167:213]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getGroupId() {
        return groupId;
    }

    /**
     * Set the group id of this node.
     *
     * @param groupId
     */
    public void setGroupId(String groupId) {
        this.groupId = groupId;
    }

    /**
     * Get the artifact id of this node.
     *
     * @return String
     */
    public String getArtifactId() {
        return artifactId;
    }

    /**
     * Set the artifact id of this node.
     *
     * @param artifactId
     */
    public void setArtifactId(String artifactId) {
        this.artifactId = artifactId;
    }

    /**
     * Get the version of this node.
     *
     * @return String
     */
    public String getVersion() {
        return version;
    }

    /**
     * Set the version of this node.
     *
     * @param version
     */
    public void setVersion(String version) {
        this.version = version;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



