org.apache.maven.artifact.repository.metadata.Plugin 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:12:36,
any modifications will be overwritten.
==============================================================
*/
package org.apache.maven.artifact.repository.metadata;
/**
* Mapping information for a single plugin within this group.
*
* @version $Revision$ $Date$
*/
public class Plugin
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Display name for the plugin.
*/
private String name;
/**
* The plugin invocation prefix (i.e. eclipse for
* eclipse:eclipse).
*/
private String prefix;
/**
* The plugin artifactId.
*/
private String artifactId;
//-----------/
//- Methods -/
//-----------/
/**
* Get the plugin artifactId.
*
* @return String
*/
public String getArtifactId()
{
return this.artifactId;
} //-- String getArtifactId()
/**
* Get display name for the plugin.
*
* @return String
*/
public String getName()
{
return this.name;
} //-- String getName()
/**
* Get the plugin invocation prefix (i.e. eclipse for
* eclipse:eclipse).
*
* @return String
*/
public String getPrefix()
{
return this.prefix;
} //-- String getPrefix()
/**
* Set the plugin artifactId.
*
* @param artifactId
*/
public void setArtifactId( String artifactId )
{
this.artifactId = artifactId;
} //-- void setArtifactId( String )
/**
* Set display name for the plugin.
*
* @param name
*/
public void setName( String name )
{
this.name = name;
} //-- void setName( String )
/**
* Set the plugin invocation prefix (i.e. eclipse for
* eclipse:eclipse).
*
* @param prefix
*/
public void setPrefix( String prefix )
{
this.prefix = prefix;
} //-- void setPrefix( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy