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