Revision 33743 branches/v2_0_0_prep/extensions/org.gvsig.installer/org.gvsig.installer.lib/org.gvsig.installer.lib.api/src/main/java/org/gvsig/installer/lib/api/PackageInfo.java

View differences:

PackageInfo.java
29 29

  
30 30
import java.io.File;
31 31

  
32
import org.gvsig.installer.lib.api.InstallerManager.ARCH;
33
import org.gvsig.installer.lib.api.InstallerManager.JVM;
34
import org.gvsig.installer.lib.api.InstallerManager.OS;
35
import org.gvsig.installer.lib.api.InstallerManager.STATE;
36

  
32 37
/**
33 38
 * Information of a package that is used on the installation process.
34 39
 * This information is composed by next fields:
......
93 98
    /**
94 99
     * @return
95 100
     *         Gets the state of the package.
101
     * @see STATE
96 102
     */
97 103
    public String getState();
98 104

  
105
    /**
106
     * Sets the state of the package
107
     * 
108
     * @param state
109
     * @see STATE
110
     */
99 111
    public void setState(String state);
100 112

  
101 113
    /**
......
114 126

  
115 127
    public void setType(String type);
116 128

  
129
    /**
130
     * Returns the supported operating system.
131
     * 
132
     * @return the supported operating system
133
     * @see OS
134
     */
117 135
    public String getOperatingSystem();
118 136

  
137
    /**
138
     * Sets the supported operating system.
139
     * 
140
     * @param operatingSystem
141
     *            the supported operating system
142
     * @see OS
143
     */
119 144
    public void setOperatingSystem(String operatingSystem);
120 145

  
146
    /**
147
     * Returns the supported hardware architecture.
148
     * 
149
     * @return the supported hardware architecture
150
     * @see ARCH
151
     */
121 152
    public String getArchitecture();
122 153

  
154
    /**
155
     * Sets the supported hardware architecture.
156
     * 
157
     * @param architecture
158
     *            the supported hardware architecture
159
     * @see ARCH
160
     */
123 161
    public void setArchitecture(String architecture);
124 162

  
163
    /**
164
     * Returns the supported java vm version.
165
     * 
166
     * @return the supported java vm version
167
     * @see JVM
168
     */
125 169
    public String getJavaVM();
126 170

  
171
    /**
172
     * Sets the supported java vm version.
173
     * 
174
     * @param javaVM
175
     *            the supported java vm version
176
     * @see JVM
177
     */
127 178
    public void setJavaVM(String javaVM);
128 179

  
129 180
    public String getGvSIGVersion();

Also available in: Unified diff