View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 1.8.2,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.apache.maven.scm.providers.clearcase.settings;
7   
8   /**
9    * Class Settings.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class Settings
15      implements java.io.Serializable
16  {
17  
18        //--------------------------/
19       //- Class/Member Variables -/
20      //--------------------------/
21  
22      /**
23       * Clearcase viewstore path.
24       */
25      private String viewstore;
26  
27      /**
28       * Do you want to use vws parameter when clearcase provider run
29       * mkview?
30       */
31      private boolean useVWSParameter = true;
32  
33      /**
34       * Are you using ClearCase LT or UCM version ?
35       */
36      private String clearcaseType;
37  
38      /**
39       * The format of the USER pattern in lhistory command. For
40       * example, it can be "-8.8".
41       */
42      private String changelogUserFormat;
43  
44      /**
45       * Field modelEncoding.
46       */
47      private String modelEncoding = "UTF-8";
48  
49  
50        //-----------/
51       //- Methods -/
52      //-----------/
53  
54      /**
55       * Get the format of the USER pattern in lhistory command. For
56       * example, it can be "-8.8".
57       * 
58       * @return String
59       */
60      public String getChangelogUserFormat()
61      {
62          return this.changelogUserFormat;
63      } //-- String getChangelogUserFormat()
64  
65      /**
66       * Get are you using ClearCase LT or UCM version ?
67       * 
68       * @return String
69       */
70      public String getClearcaseType()
71      {
72          return this.clearcaseType;
73      } //-- String getClearcaseType()
74  
75      /**
76       * Get the modelEncoding field.
77       * 
78       * @return String
79       */
80      public String getModelEncoding()
81      {
82          return this.modelEncoding;
83      } //-- String getModelEncoding()
84  
85      /**
86       * Get clearcase viewstore path.
87       * 
88       * @return String
89       */
90      public String getViewstore()
91      {
92          return this.viewstore;
93      } //-- String getViewstore()
94  
95      /**
96       * Get do you want to use vws parameter when clearcase provider
97       * run mkview?
98       * 
99       * @return boolean
100      */
101     public boolean isUseVWSParameter()
102     {
103         return this.useVWSParameter;
104     } //-- boolean isUseVWSParameter()
105 
106     /**
107      * Set the format of the USER pattern in lhistory command. For
108      * example, it can be "-8.8".
109      * 
110      * @param changelogUserFormat
111      */
112     public void setChangelogUserFormat( String changelogUserFormat )
113     {
114         this.changelogUserFormat = changelogUserFormat;
115     } //-- void setChangelogUserFormat( String )
116 
117     /**
118      * Set are you using ClearCase LT or UCM version ?
119      * 
120      * @param clearcaseType
121      */
122     public void setClearcaseType( String clearcaseType )
123     {
124         this.clearcaseType = clearcaseType;
125     } //-- void setClearcaseType( String )
126 
127     /**
128      * Set the modelEncoding field.
129      * 
130      * @param modelEncoding
131      */
132     public void setModelEncoding( String modelEncoding )
133     {
134         this.modelEncoding = modelEncoding;
135     } //-- void setModelEncoding( String )
136 
137     /**
138      * Set do you want to use vws parameter when clearcase provider
139      * run mkview?
140      * 
141      * @param useVWSParameter
142      */
143     public void setUseVWSParameter( boolean useVWSParameter )
144     {
145         this.useVWSParameter = useVWSParameter;
146     } //-- void setUseVWSParameter( boolean )
147 
148     /**
149      * Set clearcase viewstore path.
150      * 
151      * @param viewstore
152      */
153     public void setViewstore( String viewstore )
154     {
155         this.viewstore = viewstore;
156     } //-- void setViewstore( String )
157 
158 }