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

org.codehaus.mojo.appassembler.model.JvmSettings Maven / Gradle / Ivy

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

package org.codehaus.mojo.appassembler.model;

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

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

    /**
     * Field initialMemorySize.
     */
    private String initialMemorySize;

    /**
     * Field maxMemorySize.
     */
    private String maxMemorySize;

    /**
     * Field maxStackSize.
     */
    private String maxStackSize;

    /**
     * Field systemProperties.
     */
    private java.util.List systemProperties;

    /**
     * Field extraArguments.
     */
    private java.util.List extraArguments;


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

    /**
     * Method addExtraArgument.
     * 
     * @param string
     */
    public void addExtraArgument( String string )
    {
        getExtraArguments().add( string );
    } //-- void addExtraArgument( String )

    /**
     * Method addSystemProperty.
     * 
     * @param string
     */
    public void addSystemProperty( String string )
    {
        getSystemProperties().add( string );
    } //-- void addSystemProperty( String )

    /**
     * Method getExtraArguments.
     * 
     * @return List
     */
    public java.util.List getExtraArguments()
    {
        if ( this.extraArguments == null )
        {
            this.extraArguments = new java.util.ArrayList();
        }

        return this.extraArguments;
    } //-- java.util.List getExtraArguments()

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

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

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

    /**
     * Method getSystemProperties.
     * 
     * @return List
     */
    public java.util.List getSystemProperties()
    {
        if ( this.systemProperties == null )
        {
            this.systemProperties = new java.util.ArrayList();
        }

        return this.systemProperties;
    } //-- java.util.List getSystemProperties()

    /**
     * Method removeExtraArgument.
     * 
     * @param string
     */
    public void removeExtraArgument( String string )
    {
        getExtraArguments().remove( string );
    } //-- void removeExtraArgument( String )

    /**
     * Method removeSystemProperty.
     * 
     * @param string
     */
    public void removeSystemProperty( String string )
    {
        getSystemProperties().remove( string );
    } //-- void removeSystemProperty( String )

    /**
     * Set the extraArguments field.
     * 
     * @param extraArguments
     */
    public void setExtraArguments( java.util.List extraArguments )
    {
        this.extraArguments = extraArguments;
    } //-- void setExtraArguments( java.util.List )

    /**
     * Set the initialMemorySize field.
     * 
     * @param initialMemorySize
     */
    public void setInitialMemorySize( String initialMemorySize )
    {
        this.initialMemorySize = initialMemorySize;
    } //-- void setInitialMemorySize( String )

    /**
     * Set the maxMemorySize field.
     * 
     * @param maxMemorySize
     */
    public void setMaxMemorySize( String maxMemorySize )
    {
        this.maxMemorySize = maxMemorySize;
    } //-- void setMaxMemorySize( String )

    /**
     * Set the maxStackSize field.
     * 
     * @param maxStackSize
     */
    public void setMaxStackSize( String maxStackSize )
    {
        this.maxStackSize = maxStackSize;
    } //-- void setMaxStackSize( String )

    /**
     * Set the systemProperties field.
     * 
     * @param systemProperties
     */
    public void setSystemProperties( java.util.List systemProperties )
    {
        this.systemProperties = systemProperties;
    } //-- void setSystemProperties( java.util.List )

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy