Revision 135

View differences:

tags/org.gvsig.customize.app-1.2.16/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4

  
5
  <modelVersion>4.0.0</modelVersion>
6
  <artifactId>org.gvsig.customize.app</artifactId>
7
  <packaging>pom</packaging>
8
  <name>${project.artifactId}</name>
9
  <version>1.2.16</version>
10
  <description>Customize some setting of gvSIG desktop</description>
11
  <parent>
12
      <groupId>org.gvsig</groupId>
13
      <artifactId>org.gvsig.desktop</artifactId>
14
      <version>2.0.124</version>
15
  </parent>
16
  <url>https://devel.gvsig.org/redmine/projects/gvsig-desktop-customize</url>
17

  
18
  <scm>
19
      <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop-customize/tags/org.gvsig.customize.app-1.2.16</connection>
20
      <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop-customize/tags/org.gvsig.customize.app-1.2.16</developerConnection>
21
      <url>https://devel.gvsig.org/redmine/projects/gvsig-desktop-customize/repository/show/tags/org.gvsig.customize.app-1.2.16</url>
22
  </scm>
23
    <repositories>
24
      <repository>
25
        <id>gvsig-public-http-repository</id>
26
        <name>gvSIG maven public HTTP repository</name>
27
        <url>http://devel.gvsig.org/m2repo/j2se</url>
28
        <releases>
29
          <enabled>true</enabled>
30
          <updatePolicy>daily</updatePolicy>
31
          <checksumPolicy>warn</checksumPolicy>
32
        </releases>
33
        <snapshots>
34
          <enabled>true</enabled>
35
          <updatePolicy>daily</updatePolicy>
36
          <checksumPolicy>warn</checksumPolicy>
37
        </snapshots>
38
      </repository>
39
    </repositories>
40
      
41
	<build>
42
		<plugins>
43
			<plugin>
44
				<groupId>org.apache.maven.plugins</groupId>
45
				<artifactId>maven-release-plugin</artifactId>
46
				<configuration>
47
					<tagBase>https://devel.gvsig.org/svn/gvsig-desktop-customize/tags</tagBase>
48
				</configuration>
49
			</plugin>
50
		</plugins>
51
	</build>
52

  
53
  <modules>
54
    <module>org.gvsig.customize.app.mainplugin</module>
55
  </modules>
56

  
57
</project>
tags/org.gvsig.customize.app-1.2.16/org.gvsig.customize.app.mainplugin/src/main/resources-plugin/plugin-persistence.def
1
<?xml version="1.0"?>
2
<!--
3
Definitions of plugin persistence org.gvsig.editing.  
4
 -->
5
<definitions>
6
  <version>1.0.0</version>
7
  <classes>
8
    <class name="org.gvsig.customize.app.mainplugin">
9
      <description>Persistence for the customize plugin</description>
10
      <fields>
11
        <field name="configureLocale" Label="Apply locale" type="Boolean" defaultValue="true" mandatory="false" group="Apply options">
12
          <description>Apply default locale in next startup</description>
13
        </field>
14
        <field name="configureProjection" Label="Apply projection" type="Boolean" defaultValue="true" mandatory="false" group="Apply options">
15
          <description>Apply default proyection in next startup</description>
16
        </field>
17
        <field name="configureHTTPPproxy" Label="Apply proxy configuration" type="Boolean" defaultValue="true" mandatory="false" group="Apply options">
18
          <description>Apply default proyection in next startup</description>
19
        </field>
20
        <field name="configureOGCServers_WMS" Label="Apply WMS servers" type="Boolean" defaultValue="true" mandatory="false" group="Apply options">
21
          <description>Apply default WMS servers in next startup</description>
22
        </field>
23
        <field name="configureOGCServers_WMTS" Label="Apply WMTS servers" type="Boolean" defaultValue="true" mandatory="false" group="Apply options">
24
          <description>Apply default WMTS servers in next startup</description>
25
        </field>
26
        <field name="configureOGCServers_WCS" Label="Apply WCS servers" type="Boolean" defaultValue="true" mandatory="false" group="Apply options">
27
          <description>Apply default WCS servers in next startup</description>
28
        </field>
29
        <field name="configureOGCServers_WFS" Label="Apply WFS servers" type="Boolean" defaultValue="true" mandatory="false" group="Apply options">
30
          <description>Apply default WFS servers in next startup</description>
31
        </field>
32
        <field name="installAdditionalComponents" Label="Install additional components" type="Boolean" defaultValue="true" mandatory="false" group="Apply options">
33
          <description>Install additional components if required</description>
34
        </field>
35
        
36
        <field name="showCustomizeTools" Label="Show customize tools" type="Boolean" defaultValue="true" mandatory="false" group="Apply options">
37
          <description>Show the tools to customize and create distributions</description>
38
        </field>
39
        
40
        <field name="distributionID" Label="Distribution identifier" type="String" defaultValue="" mandatory="false" group="Create distribution">
41
          <description>Identifier to use to generate the distribution, only letters and numbers</description>
42
        </field>
43
        <field name="onlineInstaller" Label="Online installer" type="File" defaultValue="" mandatory="false" group="Create distribution">
44
          <description>Last online installer used to generate the distribution</description>
45
        </field>        
46
        <field name="packageSet" Label="Package set" type="File" defaultValue="" mandatory="false" group="Create distribution">
47
          <description>Last package set used to generate the distribution</description>
48
        </field>        
49
        <field name="WorkingFolder" Label="Working folder" type="File" defaultValue="" mandatory="false" group="Create distribution">
50
          <description>Last working folder used to generate the distribution</description>
51
        </field>        
52
        <field name="includeCustomizePlugin" Label="Include customize plugin" type="Boolean" defaultValue="true" mandatory="false" group="Create distribution">
53
          <description>Last value used for the flag of include customize plugins used to generate the distribution</description>
54
        </field>        
55
      </fields>
56
    </class>
57
  </classes>
58
</definitions>  
tags/org.gvsig.customize.app-1.2.16/org.gvsig.customize.app.mainplugin/src/main/resources-plugin/i18n/text_en.properties
1
_Configuring_installation=Configuring installation
2
_Close=Close
3
_Terminating_installation=Terminating installation
4
_Preparing_additional_components_installation=Preparing additional components installation
5
_Searching_available_packages=Searching available packages
6
_Installing_{0}=Installing {0}
7
_Installation_terminated=Installation terminated
8
_Additional_components_installed_succesfully_Restart_applicaction=Additional components installed succesfully. Restart_applicaction.
9
_Additional_components_installed_succesfully=Additional components installed succesfully.
10
_Problems_installing_additional_components=Problems installing additional components.
11
_Installing_additional_components=Installing additional components
tags/org.gvsig.customize.app-1.2.16/org.gvsig.customize.app.mainplugin/src/main/resources-plugin/i18n/text.properties
1
_Configuring_installation=Configurando la instalaci\u00f3n
2
_Close=Cerrar
3
_Terminating_installation=Terminando la instalaci\u00f3n
4
_Preparing_additional_components_installation=Preparando la instalaci\u00f3n de componentes adicionales
5
_Searching_available_packages=Buscando los paquetes disponibles
6
_Installing_{0}=Instalando {0}
7
_Installation_terminated=Instalaci\u00f3n terminada
8
_Additional_components_installed_succesfully_Restart_applicaction=Componentes adicionales instalados correctamente. Reinicie la aplicaci\u00f3n.
9
_Additional_components_installed_succesfully=Componentes adicionales instalados correctamente.
10
_Problems_installing_additional_components=Han habido problemas instalando los componentes adicionales.
11
_Installing_additional_components=Instalando componentes adicionales
tags/org.gvsig.customize.app-1.2.16/org.gvsig.customize.app.mainplugin/src/main/resources-plugin/theme/andami-theme.xml
1
<!--
2

  
3
    gvSIG. Desktop Geographic Information System.
4

  
5
    Copyright (C) 2007-2013 gvSIG Association.
6

  
7
    This program is free software; you can redistribute it and/or
8
    modify it under the terms of the GNU General Public License
9
    as published by the Free Software Foundation; either version 3
10
    of the License, or (at your option) any later version.
11

  
12
    This program is distributed in the hope that it will be useful,
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
    GNU General Public License for more details.
16

  
17
    You should have received a copy of the GNU General Public License
18
    along with this program; if not, write to the Free Software
19
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
    MA  02110-1301, USA.
21

  
22
    For any additional information, do not hesitate to contact us
23
    at info AT gvsig.com, or visit our website www.gvsig.com.
24

  
25
-->
26
<AndamiProperties>
27
    <ApplicationImages>
28
        <SplashImages>
29
            <Splash
30
                path="splash.png"
31
                timer="10000"
32
                x="225" y="50"
33
                fontsize="16" color="80,170,240"
34
                version="${version}.${buildNumber} ${state}"/>
35
        </SplashImages>		
36
        <!--
37
        <BackgroundImage path="wallpaper.png"/>
38
        -->
39
        <!--
40
        <BackgroundColor color="0,0,0"/>
41
        -->
42
        <WallpaperType value="CENTERED"/>
43
        <Icon path="icon16x16.png"/>
44
    </ApplicationImages>
45
    <ApplicationName value="gvSIG ${version}.${buildNumber} ${state}"/>
46
    <priority value="1000"/>
47
</AndamiProperties>
tags/org.gvsig.customize.app-1.2.16/org.gvsig.customize.app.mainplugin/src/main/resources-plugin/configure.form
1
<?xml version="1.0"?>
2
<definitions>
3
  <version>1.0.0</version>
4
  <classes>
5

  
6
    <class name="ScriptAction">
7
      <description></description>
8
      <fields>
9
        <field name="name" label="Name" type="String" defaultValue="" mandatory="false">
10
          <description></description>
11
        </field>
12

  
13
        <field name="script" label="Script name" type="String" defaultValue="" mandatory="false">
14
          <description></description>
15
        </field>
16

  
17
        <field name="label" label="Label" type="String" defaultValue="" mandatory="false">
18
          <description></description>
19
        </field>
20

  
21
        <field name="icon" label="Icon name" type="String" defaultValue="" mandatory="false">
22
          <description></description>
23
        </field>
24

  
25
        <field name="position" label="Position" type="long" defaultValue="0" mandatory="false">
26
          <description></description>
27
        </field>
28

  
29
        <field name="tip" label="Tip" type="String" defaultValue="" mandatory="false">
30
          <description></description>
31
        </field>
32

  
33
      </fields>
34
    </class>
35

  
36
    <class name="ViewTocAction">
37
      <description></description>
38
      <fields>
39
        <field name="name" label="Action name" type="String" defaultValue="" mandatory="false">
40
          <description></description>
41
        </field>
42

  
43
        <field name="group" label="Group" type="String" defaultValue="" mandatory="false">
44
          <description></description>
45
        </field>
46

  
47
        <field name="grouporder" label="Group order" type="integer" defaultValue="0" mandatory="false">
48
          <description></description>
49
        </field>
50

  
51
      </fields>
52
    </class>
53

  
54
    <class name="ToolAction">
55
      <description></description>
56
      <fields>
57
        <field name="name" label="Action name" type="String" defaultValue="" mandatory="false">
58
          <description></description>
59
        </field>
60

  
61
        <field name="toolbarName" label="Toolbar name" type="String" defaultValue="" mandatory="false">
62
          <description></description>
63
        </field>
64

  
65
      </fields>
66
    </class>
67

  
68
    <class name="MenuAction">
69
      <description></description>
70
      <fields>
71
        <field name="name" label="Action name" type="String" defaultValue="" mandatory="false">
72
          <description></description>
73
        </field>
74

  
75
        <field name="text" label="Menu entry" type="String" defaultValue="" mandatory="false">
76
          <description></description>
77
        </field>
78

  
79
      </fields>
80
    </class>
81

  
82
    <class name="ServerURL">
83
      <description></description>
84
      <fields>
85
        <field name="remove" label="Remove" type="Boolean" defaultValue="false" mandatory="false">
86
          <description></description>
87
            <tags>
88
                    <value name="dynform.width" value="30" />
89
            </tags>
90
        </field>
91

  
92
        <field name="url" label="URL" type="String" defaultValue="" mandatory="false">
93
            <description></description>
94
        </field>
95

  
96
      </fields>
97
    </class>
98

  
99
    <class name="ProxyConfiguration">
100
      <description></description>
101
      <fields>
102
        <field name="host" label="Host" type="String" defaultValue="" mandatory="false">
103
          <description></description>
104
        </field>
105
        <field name="port" label="Port" type="String" defaultValue="" mandatory="false">
106
          <description></description>
107
        </field>
108
        <field name="username" label="User name" type="String" defaultValue="" mandatory="false">
109
          <description></description>
110
        </field>
111
        <field name="password" label="Password" type="String" defaultValue="" mandatory="false">
112
          <description></description>
113
        </field>
114
        <field name="nonProxyHosts" label="Non proxy hosts" type="String" defaultValue="" mandatory="false">
115
          <description></description>
116
        </field>
117
        <field name="promptUserAndPassword" label="Prompt user and password" type="boolean" defaultValue="false" mandatory="false">
118
          <description></description>
119
        </field>
120
        <field name="enabled" label="Enabled" type="boolean" defaultValue="false" mandatory="false">
121
          <description></description>
122
        </field>
123
      </fields>
124
    </class>
125

  
126
    <class name="CRSConfiguration">
127
      <description></description>
128
      <fields>
129
        <field name="default_projection" label="Default projection" type="CRS" defaultValue="EPSG:4326" mandatory="false">
130
          <description>Default projection to use in gvSIG</description>
131
        </field>
132
        <field name="recent11" label="Recent projection 1" type="Object" classOfValue="org.cresques.cts.IProjection" type="CRS" defaultValue="" mandatory="false">
133
          <description>Projection to add to recent used projections</description>
134
        </field>
135
        <field name="recent2" label="Recent projection 2" type="CRS" defaultValue="" mandatory="false">
136
          <description>Projection to add to recent used projections</description>
137
        </field>
138
        <field name="recent3" label="Recent projection 3" type="CRS" defaultValue="" mandatory="false">
139
          <description>Projection to add to recent used projections</description>
140
        </field>
141
        <field name="recent4" label="Recent projection 4" type="CRS" defaultValue="" mandatory="false">
142
          <description>Projection to add to recent used projections</description>
143
        </field>
144
      </fields>
145
    </class>
146

  
147
    <class name="ThemeConfiguration">
148
      <description></description>
149
      <fields>
150
        <field name="applicationname" label="Application title" type="String" defaultValue="gvSIG ${version}.${buildNumber} ${state}" mandatory="false">
151
          <description></description>
152
        </field>
153
        <field name="icon" label="Icon image" type="File" defaultValue="icon16x16.png" mandatory="false">
154
          <description></description>
155
        </field>
156
        <field name="splash_image" label="Splash image" type="File" defaultValue="splash.png" mandatory="false">
157
          <description></description>
158
        </field>
159
        <field name="splash_version" label="Version" type="String" defaultValue="${version}.${buildNumber} ${state}" mandatory="false">
160
          <description></description>
161
        </field>
162
        <field name="splash_x" label="Version position X" type="Integer" defaultValue="225" mandatory="false">
163
          <description></description>
164
        </field>
165
        <field name="splash_y" label="Version position Y" type="Integer" defaultValue="50" mandatory="false">
166
          <description></description>
167
        </field>
168
        <field name="splash_font_size" label="Version font size" type="integer" defaultValue="16" mandatory="false">
169
          <description></description>
170
        </field>
171
        <field name="splash_font_color" label="Version font color" type="String" defaultValue="80,170,240" mandatory="false">
172
          <description></description>
173
        </field>
174

  
175
        <field name="wallpaper_image" label="Wallpaper image" type="File" defaultValue="" mandatory="false">
176
          <description></description>
177
        </field>
178
        <field name="wallpaper_mode" label="Wallpaper mode" type="String" defaultValue="CENTERED" mandatory="false">
179
            <description></description>
180
            <availableValues>
181
                    <value label="Centered">CENTERED</value>
182
                    <value label="Expand">EXPAND</value>
183
                    <value label="Mosaic">MOSAIC</value>
184
            </availableValues>
185
        </field>
186
        <field name="background_color" label="Background color" type="String" defaultValue="" mandatory="false">
187
          <description></description>
188
        </field>
189
      </fields>
190
    </class>
191

  
192
    <class name="Configuration">
193
      <description>Customize plugin configuration</description>
194
      <fields>
195
        <field name="default_locale" label="Default locale" type="String" subtype="locale" defaultValue="" mandatory="false" group="Locale">
196
          <description>Default locale to use in gvSIG</description>
197
        </field>
198

  
199
        <field name="crs" type="DynObject" classOfValue="CRSConfiguration" defaultValue="" mandatory="false" group="CRS">
200
          <description></description>
201
            <tags>
202
                    <value name="dynform.label.empty" value="true" />
203
            </tags>
204
        </field>
205

  
206
        <field name="httpproxy" type="DynObject" classOfValue="ProxyConfiguration" defaultValue="" mandatory="false" group="Proxy">
207
          <description></description>
208
            <tags>
209
                    <value name="dynform.label.empty" value="true" />
210
            </tags>
211
        </field>
212

  
213
        <field name="wmsUrls" label="WMS URLs" type="List" subtype="DynObject" typeOfItems="DynObject" classOfItems="ServerURL" defaultValue="" mandatory="false" group="WMS">
214
            <description></description>
215
            <tags>
216
                    <value name="dynform.height" value="300" />
217
                    <value name="ViewMode" value="SimpleTable" />
218
                    <value name="dynform.label.empty" value="true" />
219
            </tags>
220
        </field>
221

  
222
        <field name="wmtsUrls" label="WMTS URLs" type="List" subtype="DynObject" typeOfItems="DynObject" classOfItems="ServerURL" defaultValue="" mandatory="false" group="WMTS">
223
            <description></description>
224
            <tags>
225
                    <value name="dynform.height" value="300" />
226
                    <value name="ViewMode" value="SimpleTable" />
227
                    <value name="dynform.label.empty" value="true" />
228
            </tags>
229
        </field>
230

  
231
        <field name="wcsUrls" label="WCS URLs" type="List" subtype="DynObject" typeOfItems="DynObject" classOfItems="ServerURL" defaultValue="" mandatory="false" group="WCS">
232
            <description></description>
233
            <tags>
234
                    <value name="dynform.height" value="300" />
235
                    <value name="ViewMode" value="SimpleTable" />
236
                    <value name="dynform.label.empty" value="true" />
237
            </tags>
238
        </field>
239

  
240
        <field name="wfsUrls" label="WFS URLs" type="List" subtype="DynObject" typeOfItems="DynObject" classOfItems="ServerURL" defaultValue="" mandatory="false" group="WFS">
241
            <description></description>
242
            <tags>
243
                    <value name="dynform.height" value="300" />
244
                    <value name="ViewMode" value="SimpleTable" />
245
                    <value name="dynform.label.empty" value="true" />
246
            </tags>
247
        </field>
248

  
249
        <field name="theme" type="DynObject" classOfValue="ThemeConfiguration" defaultValue="" mandatory="false" group="Theme">
250
          <description></description>
251
            <tags>
252
                    <value name="dynform.label.empty" value="true" />
253
            </tags>
254
        </field>
255

  
256
        <field name="scriptActions" type="List" subtype="DynObject" typeOfItems="DynObject" classOfItems="ScriptAction"
257
                mandatory="false" defaultValue="" group="Script actions">
258
                <description></description>
259
                <tags>
260
                        <value name="dynform.label.empty" value="true" />
261
                        <value name="dynform.border.empty" value="true" />
262
                        <value name="allowNew" value="true" />
263
                        <value name="allowDelete" value="true" />
264
                        <value name="allowUpdate" value="true" />
265
                        <value name="allowSearch" value="false" />
266
                        <value name="allowClose" value="false" />
267
                </tags>
268
        </field>
269

  
270
        <field name="viewTocActions" type="List" subtype="DynObject" typeOfItems="DynObject" classOfItems="ViewTocAction"
271
                mandatory="false" defaultValue="" group="View TOC actions">
272
                <description></description>
273
                <tags>
274
                        <value name="dynform.label.empty" value="true" />
275
                        <value name="dynform.border.empty" value="true" />
276
                        <value name="allowNew" value="true" />
277
                        <value name="allowDelete" value="true" />
278
                        <value name="allowUpdate" value="true" />
279
                        <value name="allowSearch" value="false" />
280
                        <value name="allowClose" value="false" />
281
                </tags>
282
        </field>
283

  
284
        <field name="toolActions" type="List" subtype="DynObject" typeOfItems="DynObject" classOfItems="ToolAction"
285
                mandatory="false" defaultValue="" group="Tool actions">
286
                <description></description>
287
                <tags>
288
                        <value name="dynform.label.empty" value="true" />
289
                        <value name="dynform.border.empty" value="true" />
290
                        <value name="allowNew" value="true" />
291
                        <value name="allowDelete" value="true" />
292
                        <value name="allowUpdate" value="true" />
293
                        <value name="allowSearch" value="false" />
294
                        <value name="allowClose" value="false" />
295
                </tags>
296
        </field>
297

  
298
        <field name="menuActions" type="List" subtype="DynObject" typeOfItems="DynObject" classOfItems="MenuAction"
299
                mandatory="false" defaultValue="" group="Menu actions">
300
                <description></description>
301
                <tags>
302
                        <value name="dynform.label.empty" value="true" />
303
                        <value name="dynform.border.empty" value="true" />
304
                        <value name="dynform.action.new" value="true" />
305
                        <value name="allowNew" value="true" />
306
                        <value name="allowDelete" value="true" />
307
                        <value name="allowUpdate" value="true" />
308
                        <value name="allowSearch" value="false" />
309
                        <value name="allowClose" value="false" />
310
                </tags>
311
        </field>
312

  
313
      </fields>
314
    </class>
315
  </classes>
316
</definitions>  
tags/org.gvsig.customize.app-1.2.16/org.gvsig.customize.app.mainplugin/src/main/resources-plugin/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
    <libraries library-dir="lib/"/>
4
    <depends plugin-name="org.gvsig.app.mainplugin"/>
5
    <resourceBundle name="text"/>
6
    <extensions>
7

  
8
        <extension class-name="org.gvsig.customize.CustomizeExtension" active="true">
9

  
10
            <action 
11
                name="tools-customize-create-distribution" 
12
                label="_Create_distribution"
13
                tooltip="_Create_distribution" 
14
                action-command="tools-customize-create-distribution"
15
                icon="tools-customize-create-distribution" 
16
                position="900400050" 
17
                accelerator="" 
18
            />
19
            <action 
20
                name="tools-customize-edit-configuration" 
21
                label="_Edit_configuration"
22
                tooltip="_Edit_configuration" 
23
                action-command="tools-customize-edit-configuration"
24
                icon="tools-customize-edit-configuration" 
25
                position="900400060" 
26
                accelerator="" 
27
            />
28
            <menu
29
                name="tools-customize-edit-configuration" 
30
                text="tools/Customize/_Edit_configuration"
31
            />
32
            <menu
33
                name="tools-customize-create-distribution" 
34
                text="tools/Customize/_Create_distribution"
35
            />
36
        </extension>  
37
    </extensions>
38
</plugin-config>
39

  
tags/org.gvsig.customize.app-1.2.16/org.gvsig.customize.app.mainplugin/src/main/assembly/gvsig-plugin-package.xml
1
<!--
2

  
3
    gvSIG. Desktop Geographic Information System.
4

  
5
    Copyright (C) 2007-2013 gvSIG Association.
6

  
7
    This program is free software; you can redistribute it and/or
8
    modify it under the terms of the GNU General Public License
9
    as published by the Free Software Foundation; either version 3
10
    of the License, or (at your option) any later version.
11

  
12
    This program is distributed in the hope that it will be useful,
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
    GNU General Public License for more details.
16

  
17
    You should have received a copy of the GNU General Public License
18
    along with this program; if not, write to the Free Software
19
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
    MA  02110-1301, USA.
21

  
22
    For any additional information, do not hesitate to contact us
23
    at info AT gvsig.com, or visit our website www.gvsig.com.
24

  
25
-->
26
<assembly>
27
  <id>gvsig-plugin-package</id>
28
  <formats>
29
    <format>zip</format>
30
  </formats>
31
  <baseDirectory>${project.artifactId}</baseDirectory>
32
  <includeBaseDirectory>true</includeBaseDirectory>
33
  <files>
34
    <file>
35
      <source>target/${project.artifactId}-${project.version}.jar</source>
36
      <outputDirectory>lib</outputDirectory>
37
    </file>
38
    <file>
39
      <source>target/package.info</source>
40
    </file>
41
  </files>
42

  
43
  <fileSets>
44
    <fileSet>
45
      <directory>src/main/resources-plugin</directory>
46
      <outputDirectory>.</outputDirectory>
47
    </fileSet>
48
  </fileSets>
49
  
50

  
51
<!--
52
    Si le quito los comentarios y dejo la seccion includes vacia, me incluye
53
    si o si, todas depedencias, como si no hiciese caso del parametro 
54
    useTransitiveDependencies
55
  <dependencySets>
56
    <dependencySet>
57
      <useProjectArtifact>false</useProjectArtifact>
58
      <useTransitiveDependencies>false</useTransitiveDependencies>
59
      <outputDirectory>lib</outputDirectory>
60
      <includes>
61
      </includes>
62
    </dependencySet>
63
  </dependencySets>
64
-->
65

  
66
</assembly>
67

  
tags/org.gvsig.customize.app-1.2.16/org.gvsig.customize.app.mainplugin/src/main/java/org/gvsig/customize/HttpProxyLoginDialog.java
1

  
2

  
3
package org.gvsig.customize;
4

  
5
import java.awt.event.ActionEvent;
6
import java.awt.event.ActionListener;
7
import org.gvsig.tools.ToolsLocator;
8
import org.gvsig.tools.i18n.I18nManager;
9
import org.gvsig.tools.swing.api.ToolsSwingLocator;
10
import org.gvsig.tools.swing.api.windowmanager.WindowManager;
11

  
12

  
13
public class HttpProxyLoginDialog extends HttpProxyLoginDialogLayout {
14
    private boolean cancelled = true;
15
    
16
    public HttpProxyLoginDialog() {
17
        initComponents();
18
    }
19
    
20
    private void initComponents() {
21
        this.botLogin.addActionListener(new ActionListener() {
22
            public void actionPerformed(ActionEvent e) {
23
                doLogin();
24
            }
25
        });
26
        this.botCancel.addActionListener(new ActionListener() {
27
            public void actionPerformed(ActionEvent e) {
28
                doCancel();
29
            }
30
        });
31
        translate();
32
    }
33
    
34
    protected void doLogin() {
35
        this.setVisible(false);
36
        this.cancelled = false;
37
    }
38
    
39
    protected void doCancel() {
40
        this.setVisible(false);
41
        this.cancelled = true;
42
    }
43
    
44
    public boolean login() {
45
        I18nManager i18nManager = ToolsLocator.getI18nManager();
46
        WindowManager winmanager = ToolsSwingLocator.getWindowManager();
47
        winmanager.showWindow(
48
                this, 
49
                i18nManager.getTranslation("_Proxy_authentication"), 
50
                WindowManager.MODE.DIALOG
51
        );
52
        return ! this.cancelled;
53
    }
54
    
55
    public String getUserName() {
56
        return this.txtName.getText();
57
    }
58
    
59
    public String getPassword() {
60
        return this.txtPassword.getText();
61
    }
62
    
63
    public boolean canelled() {
64
        return this.cancelled;
65
    }
66

  
67
    void setUserName(String userName) {
68
        this.txtName.setText(userName);
69
    }
70

  
71
    void setPassword(String password) {
72
        this.txtPassword.setText(password);
73
    }
74

  
75
    private void translate() {
76
        I18nManager i18nManager = ToolsLocator.getI18nManager();
77
        lblTitle.setText(i18nManager.getTranslation("_User_information_to_access_internet"));
78
        lblName.setText(i18nManager.getTranslation("_User_name")+":");
79
        lblPassword.setText(i18nManager.getTranslation("_Password")+":");
80
        botLogin.setText(i18nManager.getTranslation("_Accept"));
81
        botCancel.setText(i18nManager.getTranslation("_Cancel"));
82
    }
83
}
tags/org.gvsig.customize.app-1.2.16/org.gvsig.customize.app.mainplugin/src/main/java/org/gvsig/customize/DistributionParametersPanelLayout.form
1
<?xml version="1.0" encoding="UTF-8" ?>
2

  
3
<Form version="1.8" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
4
  <AuxValues>
5
    <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/>
6
    <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/>
7
    <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/>
8
    <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/>
9
    <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/>
10
    <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/>
11
    <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/>
12
    <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/>
13
    <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="4"/>
14
    <AuxValue name="designerSize" type="java.awt.Dimension" value="-84,-19,0,5,115,114,0,18,106,97,118,97,46,97,119,116,46,68,105,109,101,110,115,105,111,110,65,-114,-39,-41,-84,95,68,20,2,0,2,73,0,6,104,101,105,103,104,116,73,0,5,119,105,100,116,104,120,112,0,0,0,-15,0,0,1,-9"/>
15
  </AuxValues>
16
  <SubComponents>
17
    <Component class="javax.swing.Box$Filler" name="filler1">
18
      <Properties>
19
        <Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
20
          <Dimension value="[2, 2]"/>
21
        </Property>
22
        <Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
23
          <Dimension value="[2, 2]"/>
24
        </Property>
25
        <Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
26
          <Dimension value="[2, 2]"/>
27
        </Property>
28
      </Properties>
29
      <AuxValues>
30
        <AuxValue name="classDetails" type="java.lang.String" value="Box.Filler.RigidArea"/>
31
      </AuxValues>
32
      <Constraints>
33
        <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
34
          <GridBagConstraints gridX="8" gridY="6" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.0" weightY="0.0"/>
35
        </Constraint>
36
      </Constraints>
37
    </Component>
38
    <Component class="javax.swing.Box$Filler" name="filler2">
39
      <Properties>
40
        <Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
41
          <Dimension value="[2, 2]"/>
42
        </Property>
43
        <Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
44
          <Dimension value="[2, 2]"/>
45
        </Property>
46
        <Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
47
          <Dimension value="[2, 2]"/>
48
        </Property>
49
      </Properties>
50
      <AuxValues>
51
        <AuxValue name="classDetails" type="java.lang.String" value="Box.Filler.RigidArea"/>
52
      </AuxValues>
53
      <Constraints>
54
        <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
55
          <GridBagConstraints gridX="0" gridY="0" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.0" weightY="0.0"/>
56
        </Constraint>
57
      </Constraints>
58
    </Component>
59
    <Container class="javax.swing.JTabbedPane" name="jTabbedPane1">
60
      <AccessibilityProperties>
61
        <Property name="AccessibleContext.accessibleName" type="java.lang.String" value="tab2"/>
62
      </AccessibilityProperties>
63
      <Constraints>
64
        <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
65
          <GridBagConstraints gridX="2" gridY="2" gridWidth="5" gridHeight="1" fill="1" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.1" weightY="0.1"/>
66
        </Constraint>
67
      </Constraints>
68

  
69
      <Layout class="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout"/>
70
      <SubComponents>
71
        <Container class="javax.swing.JPanel" name="jPanel2">
72
          <Constraints>
73
            <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout$JTabbedPaneConstraintsDescription">
74
              <JTabbedPaneConstraints tabName="General">
75
                <Property name="tabTitle" type="java.lang.String" value="General"/>
76
              </JTabbedPaneConstraints>
77
            </Constraint>
78
          </Constraints>
79
          <SubComponents>
80
            <Component class="javax.swing.Box$Filler" name="filler3">
81
              <Properties>
82
                <Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
83
                  <Dimension value="[4, 4]"/>
84
                </Property>
85
                <Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
86
                  <Dimension value="[4, 4]"/>
87
                </Property>
88
                <Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
89
                  <Dimension value="[4, 4]"/>
90
                </Property>
91
              </Properties>
92
              <AuxValues>
93
                <AuxValue name="classDetails" type="java.lang.String" value="Box.Filler.RigidArea"/>
94
              </AuxValues>
95
              <Constraints>
96
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
97
                  <GridBagConstraints gridX="0" gridY="0" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.0" weightY="0.0"/>
98
                </Constraint>
99
              </Constraints>
100
            </Component>
101
            <Component class="javax.swing.JLabel" name="lblOnlineInstaller">
102
              <Properties>
103
                <Property name="text" type="java.lang.String" value="Online installer"/>
104
              </Properties>
105
              <Constraints>
106
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
107
                  <GridBagConstraints gridX="2" gridY="4" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="21" weightX="0.0" weightY="0.0"/>
108
                </Constraint>
109
              </Constraints>
110
            </Component>
111
            <Component class="javax.swing.JTextField" name="txtOnlineInstaller">
112
              <Constraints>
113
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
114
                  <GridBagConstraints gridX="4" gridY="4" gridWidth="5" gridHeight="1" fill="2" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.1" weightY="0.0"/>
115
                </Constraint>
116
              </Constraints>
117
            </Component>
118
            <Component class="javax.swing.JButton" name="butBrowseOnlineInstaller">
119
              <Properties>
120
                <Property name="text" type="java.lang.String" value="Browse..."/>
121
              </Properties>
122
              <Constraints>
123
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
124
                  <GridBagConstraints gridX="10" gridY="4" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.0" weightY="0.0"/>
125
                </Constraint>
126
              </Constraints>
127
            </Component>
128
            <Component class="javax.swing.JLabel" name="lblDistributionId">
129
              <Properties>
130
                <Property name="text" type="java.lang.String" value="Distribution id"/>
131
              </Properties>
132
              <Constraints>
133
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
134
                  <GridBagConstraints gridX="2" gridY="2" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="21" weightX="0.0" weightY="0.0"/>
135
                </Constraint>
136
              </Constraints>
137
            </Component>
138
            <Component class="javax.swing.JTextField" name="txtDistributionId">
139
              <Constraints>
140
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
141
                  <GridBagConstraints gridX="4" gridY="2" gridWidth="7" gridHeight="1" fill="2" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.5" weightY="0.0"/>
142
                </Constraint>
143
              </Constraints>
144
            </Component>
145
            <Component class="javax.swing.JLabel" name="lblPackageSet">
146
              <Properties>
147
                <Property name="text" type="java.lang.String" value="Package set"/>
148
              </Properties>
149
              <Constraints>
150
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
151
                  <GridBagConstraints gridX="2" gridY="6" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="21" weightX="0.0" weightY="0.0"/>
152
                </Constraint>
153
              </Constraints>
154
            </Component>
155
            <Component class="javax.swing.JTextField" name="txtPackageSet">
156
              <Constraints>
157
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
158
                  <GridBagConstraints gridX="4" gridY="6" gridWidth="5" gridHeight="1" fill="2" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.1" weightY="0.0"/>
159
                </Constraint>
160
              </Constraints>
161
            </Component>
162
            <Component class="javax.swing.JButton" name="butBrowsePackageSet">
163
              <Properties>
164
                <Property name="text" type="java.lang.String" value="Browse..."/>
165
              </Properties>
166
              <Constraints>
167
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
168
                  <GridBagConstraints gridX="10" gridY="6" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.0" weightY="0.0"/>
169
                </Constraint>
170
              </Constraints>
171
            </Component>
172
            <Component class="javax.swing.JLabel" name="lblWorkingFolder">
173
              <Properties>
174
                <Property name="text" type="java.lang.String" value="Working folder"/>
175
              </Properties>
176
              <Constraints>
177
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
178
                  <GridBagConstraints gridX="2" gridY="8" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="21" weightX="0.0" weightY="0.0"/>
179
                </Constraint>
180
              </Constraints>
181
            </Component>
182
            <Component class="javax.swing.JTextField" name="txtWorkingFolder">
183
              <Constraints>
184
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
185
                  <GridBagConstraints gridX="4" gridY="8" gridWidth="5" gridHeight="1" fill="2" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.1" weightY="0.0"/>
186
                </Constraint>
187
              </Constraints>
188
            </Component>
189
            <Component class="javax.swing.JButton" name="butBrowseWorkingFolder">
190
              <Properties>
191
                <Property name="text" type="java.lang.String" value="Browse..."/>
192
              </Properties>
193
              <Constraints>
194
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
195
                  <GridBagConstraints gridX="10" gridY="8" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.0" weightY="0.0"/>
196
                </Constraint>
197
              </Constraints>
198
            </Component>
199
            <Component class="javax.swing.JLabel" name="lblIncludeCustomizePlugin">
200
              <Properties>
201
                <Property name="text" type="java.lang.String" value="Include Customize Plugin"/>
202
              </Properties>
203
              <Constraints>
204
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
205
                  <GridBagConstraints gridX="2" gridY="10" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="21" weightX="0.0" weightY="0.0"/>
206
                </Constraint>
207
              </Constraints>
208
            </Component>
209
            <Component class="javax.swing.JCheckBox" name="chkIncludeCustomizePlugin">
210
              <Constraints>
211
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
212
                  <GridBagConstraints gridX="4" gridY="10" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="21" weightX="0.0" weightY="0.0"/>
213
                </Constraint>
214
              </Constraints>
215
            </Component>
216
            <Component class="javax.swing.Box$Filler" name="filler7">
217
              <Properties>
218
                <Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
219
                  <Dimension value="[4, 4]"/>
220
                </Property>
221
                <Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
222
                  <Dimension value="[4, 4]"/>
223
                </Property>
224
                <Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
225
                  <Dimension value="[4, 4]"/>
226
                </Property>
227
              </Properties>
228
              <AuxValues>
229
                <AuxValue name="classDetails" type="java.lang.String" value="Box.Filler.RigidArea"/>
230
              </AuxValues>
231
              <Constraints>
232
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
233
                  <GridBagConstraints gridX="12" gridY="12" gridWidth="1" gridHeight="1" fill="0" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.0" weightY="0.0"/>
234
                </Constraint>
235
              </Constraints>
236
            </Component>
237
            <Component class="javax.swing.Box$Filler" name="filler4">
238
              <Properties>
239
                <Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
240
                  <Dimension value="[0, 32767]"/>
241
                </Property>
242
              </Properties>
243
              <AuxValues>
244
                <AuxValue name="classDetails" type="java.lang.String" value="Box.Filler.VerticalGlue"/>
245
              </AuxValues>
246
              <Constraints>
247
                <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
248
                  <GridBagConstraints gridX="0" gridY="12" gridWidth="1" gridHeight="1" fill="3" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.0" weightY="0.4"/>
249
                </Constraint>
250
              </Constraints>
251
            </Component>
252
          </SubComponents>
253
          <LayoutCode>
254
            <CodeStatement>
255
              <CodeExpression id="1_jPanel2Layout">
256
                <CodeVariable name="jPanel2Layout" type="4096" declaredType="java.awt.GridBagLayout"/>
257
                <ExpressionOrigin>
258
                  <ExpressionProvider type="CodeConstructor">
259
                    <CodeConstructor class="java.awt.GridBagLayout" parameterTypes=""/>
260
                  </ExpressionProvider>
261
                </ExpressionOrigin>
262
              </CodeExpression>
263
              <StatementProvider type="CodeExpression">
264
                <CodeExpression id="1_jPanel2Layout"/>
265
              </StatementProvider>
266
            </CodeStatement>
267
            <CodeStatement>
268
              <CodeExpression id="1_jPanel2Layout"/>
269
              <StatementProvider type="CodeField">
270
                <CodeField name="columnWidths" class="java.awt.GridBagLayout"/>
271
              </StatementProvider>
272
              <Parameters>
273
                <CodeExpression id="2">
274
                  <ExpressionOrigin>
275
                    <Value type="[I" editor="org.netbeans.modules.form.layoutsupport.delegates.GridBagLayoutSupport$IntArrayPropertyEditor">
276
                      <PropertyValue value="[0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0]"/>
277
                    </Value>
278
                  </ExpressionOrigin>
279
                </CodeExpression>
280
              </Parameters>
281
            </CodeStatement>
282
            <CodeStatement>
283
              <CodeExpression id="1_jPanel2Layout"/>
284
              <StatementProvider type="CodeField">
285
                <CodeField name="rowHeights" class="java.awt.GridBagLayout"/>
286
              </StatementProvider>
287
              <Parameters>
288
                <CodeExpression id="3">
289
                  <ExpressionOrigin>
290
                    <Value type="[I" editor="org.netbeans.modules.form.layoutsupport.delegates.GridBagLayoutSupport$IntArrayPropertyEditor">
291
                      <PropertyValue value="[0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0]"/>
292
                    </Value>
293
                  </ExpressionOrigin>
294
                </CodeExpression>
295
              </Parameters>
296
            </CodeStatement>
297
            <CodeStatement>
298
              <CodeExpression id="4_jPanel2">
299
                <CodeVariable name="jPanel2" type="8196" declaredType="javax.swing.JPanel"/>
300
                <ExpressionOrigin>
301
                  <ExpressionProvider type="ComponentRef">
302
                    <ComponentRef name="jPanel2"/>
303
                  </ExpressionProvider>
304
                </ExpressionOrigin>
305
              </CodeExpression>
306
              <StatementProvider type="CodeMethod">
307
                <CodeMethod name="setLayout" class="java.awt.Container" parameterTypes="java.awt.LayoutManager"/>
308
              </StatementProvider>
309
              <Parameters>
310
                <CodeExpression id="1_jPanel2Layout"/>
311
              </Parameters>
312
            </CodeStatement>
313
            <CodeStatement>
314
              <CodeExpression id="5_gridBagConstraints">
315
                <CodeVariable name="gridBagConstraints" type="20480" declaredType="java.awt.GridBagConstraints"/>
316
                <ExpressionOrigin>
317
                  <ExpressionProvider type="CodeConstructor">
318
                    <CodeConstructor class="java.awt.GridBagConstraints" parameterTypes=""/>
319
                  </ExpressionProvider>
320
                </ExpressionOrigin>
321
              </CodeExpression>
322
              <StatementProvider type="CodeExpression">
323
                <CodeExpression id="5_gridBagConstraints"/>
324
              </StatementProvider>
325
            </CodeStatement>
326
            <CodeStatement>
327
              <CodeExpression id="5_gridBagConstraints"/>
328
              <StatementProvider type="CodeField">
329
                <CodeField name="gridx" class="java.awt.GridBagConstraints"/>
330
              </StatementProvider>
331
              <Parameters>
332
                <CodeExpression id="6">
333
                  <ExpressionOrigin>
334
                    <Value type="int" value="0"/>
335
                  </ExpressionOrigin>
336
                </CodeExpression>
337
              </Parameters>
338
            </CodeStatement>
339
            <CodeStatement>
340
              <CodeExpression id="5_gridBagConstraints"/>
341
              <StatementProvider type="CodeField">
342
                <CodeField name="gridy" class="java.awt.GridBagConstraints"/>
343
              </StatementProvider>
344
              <Parameters>
345
                <CodeExpression id="7">
346
                  <ExpressionOrigin>
347
                    <Value type="int" value="0"/>
348
                  </ExpressionOrigin>
349
                </CodeExpression>
350
              </Parameters>
351
            </CodeStatement>
352
            <CodeStatement>
353
              <CodeExpression id="4_jPanel2"/>
354
              <StatementProvider type="CodeMethod">
355
                <CodeMethod name="add" class="java.awt.Container" parameterTypes="java.awt.Component, java.lang.Object"/>
356
              </StatementProvider>
357
              <Parameters>
358
                <CodeExpression id="8_filler3">
359
                  <CodeVariable name="filler3" type="8196" declaredType="javax.swing.Box$Filler"/>
360
                  <ExpressionOrigin>
361
                    <ExpressionProvider type="ComponentRef">
362
                      <ComponentRef name="filler3"/>
363
                    </ExpressionProvider>
364
                  </ExpressionOrigin>
365
                </CodeExpression>
366
                <CodeExpression id="5_gridBagConstraints"/>
367
              </Parameters>
368
            </CodeStatement>
369
            <CodeStatement>
370
              <CodeExpression id="9_gridBagConstraints">
371
                <CodeVariable name="gridBagConstraints"/>
372
                <ExpressionOrigin>
373
                  <ExpressionProvider type="CodeConstructor">
374
                    <CodeConstructor class="java.awt.GridBagConstraints" parameterTypes=""/>
375
                  </ExpressionProvider>
376
                </ExpressionOrigin>
377
              </CodeExpression>
378
              <StatementProvider type="CodeExpression">
379
                <CodeExpression id="9_gridBagConstraints"/>
380
              </StatementProvider>
381
            </CodeStatement>
382
            <CodeStatement>
383
              <CodeExpression id="9_gridBagConstraints"/>
384
              <StatementProvider type="CodeField">
385
                <CodeField name="gridx" class="java.awt.GridBagConstraints"/>
386
              </StatementProvider>
387
              <Parameters>
388
                <CodeExpression id="10">
389
                  <ExpressionOrigin>
390
                    <Value type="int" value="2"/>
391
                  </ExpressionOrigin>
392
                </CodeExpression>
393
              </Parameters>
394
            </CodeStatement>
395
            <CodeStatement>
396
              <CodeExpression id="9_gridBagConstraints"/>
397
              <StatementProvider type="CodeField">
398
                <CodeField name="gridy" class="java.awt.GridBagConstraints"/>
399
              </StatementProvider>
400
              <Parameters>
401
                <CodeExpression id="11">
402
                  <ExpressionOrigin>
403
                    <Value type="int" value="4"/>
404
                  </ExpressionOrigin>
405
                </CodeExpression>
406
              </Parameters>
407
            </CodeStatement>
408
            <CodeStatement>
409
              <CodeExpression id="9_gridBagConstraints"/>
410
              <StatementProvider type="CodeField">
411
                <CodeField name="anchor" class="java.awt.GridBagConstraints"/>
412
              </StatementProvider>
413
              <Parameters>
414
                <CodeExpression id="12">
415
                  <ExpressionOrigin>
416
                    <Value type="int" value="21"/>
417
                  </ExpressionOrigin>
418
                </CodeExpression>
419
              </Parameters>
420
            </CodeStatement>
421
            <CodeStatement>
422
              <CodeExpression id="4_jPanel2"/>
423
              <StatementProvider type="CodeMethod">
424
                <CodeMethod name="add" class="java.awt.Container" parameterTypes="java.awt.Component, java.lang.Object"/>
425
              </StatementProvider>
426
              <Parameters>
427
                <CodeExpression id="13_lblOnlineInstaller">
428
                  <CodeVariable name="lblOnlineInstaller" type="8196" declaredType="javax.swing.JLabel"/>
429
                  <ExpressionOrigin>
430
                    <ExpressionProvider type="ComponentRef">
431
                      <ComponentRef name="lblOnlineInstaller"/>
432
                    </ExpressionProvider>
433
                  </ExpressionOrigin>
434
                </CodeExpression>
435
                <CodeExpression id="9_gridBagConstraints"/>
436
              </Parameters>
437
            </CodeStatement>
438
            <CodeStatement>
439
              <CodeExpression id="14_gridBagConstraints">
440
                <CodeVariable name="gridBagConstraints"/>
441
                <ExpressionOrigin>
442
                  <ExpressionProvider type="CodeConstructor">
443
                    <CodeConstructor class="java.awt.GridBagConstraints" parameterTypes=""/>
444
                  </ExpressionProvider>
445
                </ExpressionOrigin>
446
              </CodeExpression>
447
              <StatementProvider type="CodeExpression">
448
                <CodeExpression id="14_gridBagConstraints"/>
449
              </StatementProvider>
450
            </CodeStatement>
451
            <CodeStatement>
452
              <CodeExpression id="14_gridBagConstraints"/>
453
              <StatementProvider type="CodeField">
454
                <CodeField name="gridx" class="java.awt.GridBagConstraints"/>
455
              </StatementProvider>
456
              <Parameters>
457
                <CodeExpression id="15">
458
                  <ExpressionOrigin>
459
                    <Value type="int" value="4"/>
460
                  </ExpressionOrigin>
461
                </CodeExpression>
462
              </Parameters>
463
            </CodeStatement>
464
            <CodeStatement>
465
              <CodeExpression id="14_gridBagConstraints"/>
466
              <StatementProvider type="CodeField">
467
                <CodeField name="gridy" class="java.awt.GridBagConstraints"/>
468
              </StatementProvider>
469
              <Parameters>
470
                <CodeExpression id="16">
471
                  <ExpressionOrigin>
472
                    <Value type="int" value="4"/>
473
                  </ExpressionOrigin>
474
                </CodeExpression>
475
              </Parameters>
476
            </CodeStatement>
477
            <CodeStatement>
478
              <CodeExpression id="14_gridBagConstraints"/>
479
              <StatementProvider type="CodeField">
480
                <CodeField name="gridwidth" class="java.awt.GridBagConstraints"/>
481
              </StatementProvider>
482
              <Parameters>
483
                <CodeExpression id="17">
484
                  <ExpressionOrigin>
485
                    <Value type="int" value="5"/>
486
                  </ExpressionOrigin>
487
                </CodeExpression>
488
              </Parameters>
489
            </CodeStatement>
490
            <CodeStatement>
491
              <CodeExpression id="14_gridBagConstraints"/>
492
              <StatementProvider type="CodeField">
493
                <CodeField name="fill" class="java.awt.GridBagConstraints"/>
494
              </StatementProvider>
495
              <Parameters>
496
                <CodeExpression id="18">
497
                  <ExpressionOrigin>
498
                    <Value type="int" value="2"/>
499
                  </ExpressionOrigin>
500
                </CodeExpression>
501
              </Parameters>
502
            </CodeStatement>
503
            <CodeStatement>
504
              <CodeExpression id="14_gridBagConstraints"/>
505
              <StatementProvider type="CodeField">
506
                <CodeField name="weightx" class="java.awt.GridBagConstraints"/>
507
              </StatementProvider>
508
              <Parameters>
509
                <CodeExpression id="19">
510
                  <ExpressionOrigin>
511
                    <Value type="double" value="0.1"/>
512
                  </ExpressionOrigin>
513
                </CodeExpression>
514
              </Parameters>
515
            </CodeStatement>
516
            <CodeStatement>
517
              <CodeExpression id="4_jPanel2"/>
518
              <StatementProvider type="CodeMethod">
519
                <CodeMethod name="add" class="java.awt.Container" parameterTypes="java.awt.Component, java.lang.Object"/>
520
              </StatementProvider>
521
              <Parameters>
522
                <CodeExpression id="20_txtOnlineInstaller">
523
                  <CodeVariable name="txtOnlineInstaller" type="8196" declaredType="javax.swing.JTextField"/>
524
                  <ExpressionOrigin>
525
                    <ExpressionProvider type="ComponentRef">
526
                      <ComponentRef name="txtOnlineInstaller"/>
527
                    </ExpressionProvider>
528
                  </ExpressionOrigin>
529
                </CodeExpression>
530
                <CodeExpression id="14_gridBagConstraints"/>
531
              </Parameters>
532
            </CodeStatement>
533
            <CodeStatement>
534
              <CodeExpression id="21_gridBagConstraints">
535
                <CodeVariable name="gridBagConstraints"/>
536
                <ExpressionOrigin>
537
                  <ExpressionProvider type="CodeConstructor">
538
                    <CodeConstructor class="java.awt.GridBagConstraints" parameterTypes=""/>
539
                  </ExpressionProvider>
540
                </ExpressionOrigin>
541
              </CodeExpression>
542
              <StatementProvider type="CodeExpression">
543
                <CodeExpression id="21_gridBagConstraints"/>
544
              </StatementProvider>
545
            </CodeStatement>
546
            <CodeStatement>
547
              <CodeExpression id="21_gridBagConstraints"/>
548
              <StatementProvider type="CodeField">
549
                <CodeField name="gridx" class="java.awt.GridBagConstraints"/>
550
              </StatementProvider>
551
              <Parameters>
552
                <CodeExpression id="22">
553
                  <ExpressionOrigin>
554
                    <Value type="int" value="10"/>
555
                  </ExpressionOrigin>
556
                </CodeExpression>
557
              </Parameters>
558
            </CodeStatement>
559
            <CodeStatement>
560
              <CodeExpression id="21_gridBagConstraints"/>
561
              <StatementProvider type="CodeField">
562
                <CodeField name="gridy" class="java.awt.GridBagConstraints"/>
563
              </StatementProvider>
564
              <Parameters>
565
                <CodeExpression id="23">
566
                  <ExpressionOrigin>
567
                    <Value type="int" value="4"/>
568
                  </ExpressionOrigin>
569
                </CodeExpression>
570
              </Parameters>
571
            </CodeStatement>
572
            <CodeStatement>
573
              <CodeExpression id="4_jPanel2"/>
574
              <StatementProvider type="CodeMethod">
575
                <CodeMethod name="add" class="java.awt.Container" parameterTypes="java.awt.Component, java.lang.Object"/>
576
              </StatementProvider>
577
              <Parameters>
578
                <CodeExpression id="24_butBrowseOnlineInstaller">
579
                  <CodeVariable name="butBrowseOnlineInstaller" type="8196" declaredType="javax.swing.JButton"/>
580
                  <ExpressionOrigin>
581
                    <ExpressionProvider type="ComponentRef">
582
                      <ComponentRef name="butBrowseOnlineInstaller"/>
583
                    </ExpressionProvider>
584
                  </ExpressionOrigin>
585
                </CodeExpression>
586
                <CodeExpression id="21_gridBagConstraints"/>
587
              </Parameters>
588
            </CodeStatement>
589
            <CodeStatement>
590
              <CodeExpression id="25_gridBagConstraints">
591
                <CodeVariable name="gridBagConstraints"/>
592
                <ExpressionOrigin>
593
                  <ExpressionProvider type="CodeConstructor">
594
                    <CodeConstructor class="java.awt.GridBagConstraints" parameterTypes=""/>
595
                  </ExpressionProvider>
596
                </ExpressionOrigin>
597
              </CodeExpression>
598
              <StatementProvider type="CodeExpression">
599
                <CodeExpression id="25_gridBagConstraints"/>
600
              </StatementProvider>
601
            </CodeStatement>
602
            <CodeStatement>
603
              <CodeExpression id="25_gridBagConstraints"/>
604
              <StatementProvider type="CodeField">
605
                <CodeField name="gridx" class="java.awt.GridBagConstraints"/>
606
              </StatementProvider>
607
              <Parameters>
608
                <CodeExpression id="26">
609
                  <ExpressionOrigin>
610
                    <Value type="int" value="2"/>
611
                  </ExpressionOrigin>
612
                </CodeExpression>
613
              </Parameters>
614
            </CodeStatement>
615
            <CodeStatement>
616
              <CodeExpression id="25_gridBagConstraints"/>
617
              <StatementProvider type="CodeField">
618
                <CodeField name="gridy" class="java.awt.GridBagConstraints"/>
619
              </StatementProvider>
620
              <Parameters>
621
                <CodeExpression id="27">
622
                  <ExpressionOrigin>
623
                    <Value type="int" value="2"/>
624
                  </ExpressionOrigin>
625
                </CodeExpression>
626
              </Parameters>
627
            </CodeStatement>
628
            <CodeStatement>
629
              <CodeExpression id="25_gridBagConstraints"/>
630
              <StatementProvider type="CodeField">
631
                <CodeField name="anchor" class="java.awt.GridBagConstraints"/>
632
              </StatementProvider>
633
              <Parameters>
634
                <CodeExpression id="28">
635
                  <ExpressionOrigin>
636
                    <Value type="int" value="21"/>
637
                  </ExpressionOrigin>
638
                </CodeExpression>
639
              </Parameters>
640
            </CodeStatement>
641
            <CodeStatement>
642
              <CodeExpression id="4_jPanel2"/>
643
              <StatementProvider type="CodeMethod">
644
                <CodeMethod name="add" class="java.awt.Container" parameterTypes="java.awt.Component, java.lang.Object"/>
645
              </StatementProvider>
646
              <Parameters>
647
                <CodeExpression id="29_lblDistributionId">
648
                  <CodeVariable name="lblDistributionId" type="8196" declaredType="javax.swing.JLabel"/>
649
                  <ExpressionOrigin>
650
                    <ExpressionProvider type="ComponentRef">
651
                      <ComponentRef name="lblDistributionId"/>
652
                    </ExpressionProvider>
653
                  </ExpressionOrigin>
654
                </CodeExpression>
655
                <CodeExpression id="25_gridBagConstraints"/>
656
              </Parameters>
657
            </CodeStatement>
658
            <CodeStatement>
659
              <CodeExpression id="30_gridBagConstraints">
660
                <CodeVariable name="gridBagConstraints"/>
661
                <ExpressionOrigin>
662
                  <ExpressionProvider type="CodeConstructor">
663
                    <CodeConstructor class="java.awt.GridBagConstraints" parameterTypes=""/>
664
                  </ExpressionProvider>
665
                </ExpressionOrigin>
666
              </CodeExpression>
667
              <StatementProvider type="CodeExpression">
668
                <CodeExpression id="30_gridBagConstraints"/>
669
              </StatementProvider>
670
            </CodeStatement>
671
            <CodeStatement>
672
              <CodeExpression id="30_gridBagConstraints"/>
673
              <StatementProvider type="CodeField">
674
                <CodeField name="gridx" class="java.awt.GridBagConstraints"/>
675
              </StatementProvider>
676
              <Parameters>
677
                <CodeExpression id="31">
678
                  <ExpressionOrigin>
679
                    <Value type="int" value="4"/>
680
                  </ExpressionOrigin>
681
                </CodeExpression>
682
              </Parameters>
683
            </CodeStatement>
684
            <CodeStatement>
685
              <CodeExpression id="30_gridBagConstraints"/>
686
              <StatementProvider type="CodeField">
687
                <CodeField name="gridy" class="java.awt.GridBagConstraints"/>
688
              </StatementProvider>
689
              <Parameters>
690
                <CodeExpression id="32">
691
                  <ExpressionOrigin>
692
                    <Value type="int" value="2"/>
693
                  </ExpressionOrigin>
694
                </CodeExpression>
695
              </Parameters>
696
            </CodeStatement>
697
            <CodeStatement>
698
              <CodeExpression id="30_gridBagConstraints"/>
699
              <StatementProvider type="CodeField">
700
                <CodeField name="gridwidth" class="java.awt.GridBagConstraints"/>
701
              </StatementProvider>
702
              <Parameters>
703
                <CodeExpression id="33">
704
                  <ExpressionOrigin>
705
                    <Value type="int" value="7"/>
706
                  </ExpressionOrigin>
707
                </CodeExpression>
708
              </Parameters>
709
            </CodeStatement>
710
            <CodeStatement>
711
              <CodeExpression id="30_gridBagConstraints"/>
712
              <StatementProvider type="CodeField">
713
                <CodeField name="fill" class="java.awt.GridBagConstraints"/>
714
              </StatementProvider>
715
              <Parameters>
716
                <CodeExpression id="34">
717
                  <ExpressionOrigin>
718
                    <Value type="int" value="2"/>
719
                  </ExpressionOrigin>
720
                </CodeExpression>
721
              </Parameters>
722
            </CodeStatement>
723
            <CodeStatement>
724
              <CodeExpression id="30_gridBagConstraints"/>
725
              <StatementProvider type="CodeField">
726
                <CodeField name="weightx" class="java.awt.GridBagConstraints"/>
727
              </StatementProvider>
728
              <Parameters>
729
                <CodeExpression id="35">
730
                  <ExpressionOrigin>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff