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

org.apache.maven.model.FileSet Maven / Gradle / Ivy

Go to download

Statistical sampling library for use in virtdata libraries, based on apache commons math 4

There is a newer version: 5.17.0
Show newest version
/*
 =================== DO NOT EDIT THIS FILE ====================
 Generated by Modello 1.0.1 on 2009-08-06 15:13:09,
 any modifications will be overwritten.
 ==============================================================
 */

package org.apache.maven.model;

/**
 * A PatternSet for files.
 * 
 * @version $Revision$ $Date$
 */
public class FileSet
    extends PatternSet
    implements java.io.Serializable
{

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

    /**
     * Describe the directory where the resources are stored. The
     * path is relative
     *             to the POM.
     */
    private String directory;


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

    /**
     * Get describe the directory where the resources are stored.
     * The path is relative
     *             to the POM.
     * 
     * @return String
     */
    public String getDirectory()
    {
        return this.directory;
    } //-- String getDirectory()

    /**
     * Set describe the directory where the resources are stored.
     * The path is relative
     *             to the POM.
     * 
     * @param directory
     */
    public void setDirectory( String directory )
    {
        this.directory = directory;
    } //-- void setDirectory( String )


            
    /**
     * @see java.lang.Object#toString()
     */
    public String toString()
    {
        return "FileSet {directory: " + getDirectory() + ", " + super.toString() + "}";
    }
            
          
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy