Describes a ranked list of supported JRE version that the application can run on. The most preferred version is specified first.
Attributes
-
version=versions
, required
- Describes the versions of the JRE that the application runs on. Separate version ids with spaces.
-
href=url
, optional
- Specifies the location where to download the JRE.
-
initial-heap-size=bytes, kilos, megs
, optional
- Specifies the initial size of the object heap for the Java Virtual Machine.
You can use the modifiers
m
and k
for megabytes and kilobytes, respectively.
For example, 128m
will be the same as 134217728
(128*1024*1024).
Both lower case (m
) and upper case (M
) are supported.
-
max-heap-size=bytes, kilos, megs
, optional
- Specifies the preferred maximum size of the object heap for the Java Virtual Machine.
Use the modifiers
m
and k
for megabytes and kilobytes, respectively.
Contents
resources
*
Appears In
resources
Examples
<j2se version="1.3" />
<j2se version="1.4 1.3 1.2.2+" />
<j2se version="1.3+" initial-heap-size="64m" max-heap-size="512m" />