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

shaded.org.apache.maven.model.InputSource Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.9.1,
// any modifications will be overwritten.
// ==============================================================

package shaded.shaded.org.apache.maven.model;

/**
 * Class InputSource.
 * 
 * @version $Revision$ $Date$
 */
@SuppressWarnings( "all" )
public class InputSource
    implements java.io.Serializable, java.lang.Cloneable
{

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

    /**
     * 
     *             
     *             The identifier of the POM in the format {@code
     * ::}.
     *             
     *           
     */
    private String modelId;

    /**
     * 
     *             
     *             The path/URL of the POM or {@code null} if
     * unknown.
     *             
     *           
     */
    private String location;


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

    /**
     * Method clone.
     * 
     * @return InputSource
     */
    public InputSource clone()
    {
        try
        {
            InputSource copy = (InputSource) super.clone();

            return copy;
        }
        catch ( java.lang.Exception ex )
        {
            throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
                + " does not support clone()" ).initCause( ex );
        }
    } //-- InputSource clone()

    /**
     * Get the path/URL of the POM or {@code null} if unknown.
     * 
     * @return String
     */
    public String getLocation()
    {
        return this.location;
    } //-- String getLocation()

    /**
     * Get the identifier of the POM in the format {@code
     * ::}.
     * 
     * @return String
     */
    public String getModelId()
    {
        return this.modelId;
    } //-- String getModelId()

    /**
     * Set the path/URL of the POM or {@code null} if unknown.
     * 
     * @param location
     */
    public void setLocation( String location )
    {
        this.location = location;
    } //-- void setLocation( String )

    /**
     * Set the identifier of the POM in the format {@code
     * ::}.
     * 
     * @param modelId
     */
    public void setModelId( String modelId )
    {
        this.modelId = modelId;
    } //-- void setModelId( String )

    
            
    @Override
    public String toString()
    {
        return getModelId() + " " + getLocation();
    }
            
          
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy