View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.0.1 on 2009-03-27 22:27:26,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package com.mindtree.techworks.insight.releng.mvn.nsis.model;
9   
10  /**
11   * The settings about the un-install page.
12   * 
13   * @version $Revision$ $Date$
14   */
15  public class UninstallConfirmPageSettings
16      implements java.io.Serializable
17  {
18  
19        //--------------------------/
20       //- Class/Member Variables -/
21      //--------------------------/
22  
23      /**
24       * 
25       * 						See
26       * http://nsis.sourceforge.net/Docs/Modern%20UI/Readme.html
27       * 					.
28       */
29      private String textTop;
30  
31      /**
32       * 
33       * 						See
34       * http://nsis.sourceforge.net/Docs/Modern%20UI/Readme.html
35       * 					.
36       */
37      private String textLocation;
38  
39  
40        //-----------/
41       //- Methods -/
42      //-----------/
43  
44      /**
45       * Get see
46       * http://nsis.sourceforge.net/Docs/Modern%20UI/Readme.html.
47       * 
48       * @return String
49       */
50      public String getTextLocation()
51      {
52          return this.textLocation;
53      } //-- String getTextLocation()
54  
55      /**
56       * Get see
57       * http://nsis.sourceforge.net/Docs/Modern%20UI/Readme.html.
58       * 
59       * @return String
60       */
61      public String getTextTop()
62      {
63          return this.textTop;
64      } //-- String getTextTop()
65  
66      /**
67       * Set see
68       * http://nsis.sourceforge.net/Docs/Modern%20UI/Readme.html.
69       * 
70       * @param textLocation
71       */
72      public void setTextLocation( String textLocation )
73      {
74          this.textLocation = textLocation;
75      } //-- void setTextLocation( String )
76  
77      /**
78       * Set see
79       * http://nsis.sourceforge.net/Docs/Modern%20UI/Readme.html.
80       * 
81       * @param textTop
82       */
83      public void setTextTop( String textTop )
84      {
85          this.textTop = textTop;
86      } //-- void setTextTop( String )
87  
88  
89  }