001/*
002 =================== DO NOT EDIT THIS FILE ====================
003 Generated by Modello 1.1 on 2014-09-13 07:21:04,
004 any modifications will be overwritten.
005 ==============================================================
006 */
007
008package org.apache.maven.scm.providers.starteam.settings;
009
010/**
011 * Class Settings.
012 * 
013 * @version $Revision$ $Date$
014 */
015@SuppressWarnings( "all" )
016public class Settings
017    implements java.io.Serializable
018{
019
020      //--------------------------/
021     //- Class/Member Variables -/
022    //--------------------------/
023
024    /**
025     * Enable compression in all stdcmd.
026     */
027    private boolean compressionEnable = false;
028
029    /**
030     * EOL setting in all applicable stdcmd.
031     */
032    private String eol = "on";
033
034    /**
035     * Field modelEncoding.
036     */
037    private String modelEncoding = "UTF-8";
038
039
040      //-----------/
041     //- Methods -/
042    //-----------/
043
044    /**
045     * Get eOL setting in all applicable stdcmd.
046     * 
047     * @return String
048     */
049    public String getEol()
050    {
051        return this.eol;
052    } //-- String getEol()
053
054    /**
055     * Get the modelEncoding field.
056     * 
057     * @return String
058     */
059    public String getModelEncoding()
060    {
061        return this.modelEncoding;
062    } //-- String getModelEncoding()
063
064    /**
065     * Get enable compression in all stdcmd.
066     * 
067     * @return boolean
068     */
069    public boolean isCompressionEnable()
070    {
071        return this.compressionEnable;
072    } //-- boolean isCompressionEnable()
073
074    /**
075     * Set enable compression in all stdcmd.
076     * 
077     * @param compressionEnable
078     */
079    public void setCompressionEnable( boolean compressionEnable )
080    {
081        this.compressionEnable = compressionEnable;
082    } //-- void setCompressionEnable( boolean )
083
084    /**
085     * Set eOL setting in all applicable stdcmd.
086     * 
087     * @param eol
088     */
089    public void setEol( String eol )
090    {
091        this.eol = eol;
092    } //-- void setEol( String )
093
094    /**
095     * Set the modelEncoding field.
096     * 
097     * @param modelEncoding
098     */
099    public void setModelEncoding( String modelEncoding )
100    {
101        this.modelEncoding = modelEncoding;
102    } //-- void setModelEncoding( String )
103
104}