![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.maven.plugin.tools.model.Component Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-plugin-tools-model Show documentation
Show all versions of maven-plugin-tools-model Show documentation
The Maven Plugin Metadata Model provides an API to play with the Metadata model.
/*
=================== DO NOT EDIT THIS FILE ====================
Generated by Modello 1.4.1 on 2012-05-28 12:54:11,
any modifications will be overwritten.
==============================================================
*/
package org.apache.maven.plugin.tools.model;
/**
*
* A reference to a plexus component, assumed to be
* available to the plugin container.
*
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class Component
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* The component role to lookup.
*/
private String role;
/**
* The role-hint to lookup.
*/
private String hint;
//-----------/
//- Methods -/
//-----------/
/**
* Get the role-hint to lookup.
*
* @return String
*/
public String getHint()
{
return this.hint;
} //-- String getHint()
/**
* Get the component role to lookup.
*
* @return String
*/
public String getRole()
{
return this.role;
} //-- String getRole()
/**
* Set the role-hint to lookup.
*
* @param hint
*/
public void setHint( String hint )
{
this.hint = hint;
} //-- void setHint( String )
/**
* Set the component role to lookup.
*
* @param role
*/
public void setRole( String role )
{
this.role = role;
} //-- void setRole( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy