org.apache.maven.model.Developer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
/*
=================== DO NOT EDIT THIS FILE ====================
Generated by Modello 1.0.1 on 2009-08-06 15:13:09,
any modifications will be overwritten.
==============================================================
*/
package org.apache.maven.model;
/**
* Information about one of the committers on this project.
*
* @version $Revision$ $Date$
*/
public class Developer
extends Contributor
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* The unique ID of the developer in the SCM.
*/
private String id;
//-----------/
//- Methods -/
//-----------/
/**
* Get the unique ID of the developer in the SCM.
*
* @return String
*/
public String getId()
{
return this.id;
} //-- String getId()
/**
* Set the unique ID of the developer in the SCM.
*
* @param id
*/
public void setId( String id )
{
this.id = id;
} //-- void setId( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy