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

org.codehaus.cargo.maven3.Merge Maven / Gradle / Ivy

The newest version!
/*
 =================== DO NOT EDIT THIS FILE ====================
 
 Generated by Modello 2.4.0,
 
 any modifications will be overwritten.
 
 ==============================================================
 */

package org.codehaus.cargo.maven3;

/**
 * Merge settings.
 * 
 * @version $Revision$ $Date$
 */
@SuppressWarnings( "all" )
public class Merge
    implements java.io.Serializable
{

      //--------------------------/
     //- Class/Member Variables -/
    //--------------------------/

    /**
     * Field document.
     */
    private String document;

    /**
     * Field file.
     */
    private String file;

    /**
     * Field type.
     */
    private String type;

    /**
     * Field classname.
     */
    private String classname;

    /**
     * Field parameters.
     */
    private Object parameters;


      //-----------/
     //- Methods -/
    //-----------/

    /**
     * Get the classname field.
     * 
     * @return String
     */
    public String getClassname()
    {
        return this.classname;
    } //-- String getClassname()

    /**
     * Get the document field.
     * 
     * @return String
     */
    public String getDocument()
    {
        return this.document;
    } //-- String getDocument()

    /**
     * Get the file field.
     * 
     * @return String
     */
    public String getFile()
    {
        return this.file;
    } //-- String getFile()

    /**
     * Get the parameters field.
     * 
     * @return Object
     */
    public Object getParameters()
    {
        return this.parameters;
    } //-- Object getParameters()

    /**
     * Get the type field.
     * 
     * @return String
     */
    public String getType()
    {
        return this.type;
    } //-- String getType()

    /**
     * Set the classname field.
     * 
     * @param classname a classname object.
     */
    public void setClassname( String classname )
    {
        this.classname = classname;
    } //-- void setClassname( String )

    /**
     * Set the document field.
     * 
     * @param document a document object.
     */
    public void setDocument( String document )
    {
        this.document = document;
    } //-- void setDocument( String )

    /**
     * Set the file field.
     * 
     * @param file a file object.
     */
    public void setFile( String file )
    {
        this.file = file;
    } //-- void setFile( String )

    /**
     * Set the parameters field.
     * 
     * @param parameters a parameters object.
     */
    public void setParameters( Object parameters )
    {
        this.parameters = parameters;
    } //-- void setParameters( Object )

    /**
     * Set the type field.
     * 
     * @param type a type object.
     */
    public void setType( String type )
    {
        this.type = type;
    } //-- void setType( String )

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy