All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.plugin.tools.model.Component Maven / Gradle / Ivy

There is a newer version: 3.15.1
Show newest version
/*
 =================== 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