forked from NASAWorldWind/WorldWindJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKeepingObjectsInView.jnlp
More file actions
46 lines (40 loc) · 1.81 KB
/
KeepingObjectsInView.jnlp
File metadata and controls
46 lines (40 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2012 United States Government as represented by the Administrator of the
~ National Aeronautics and Space Administration.
~ All Rights Reserved.
-->
<jnlp spec="1.0+" codebase="" href="KeepingObjectsInView.jnlp">
<!--
Provides a description of this World Wind demo application.
-->
<information>
<title>Keeping Objects In View</title>
<vendor>NASA</vendor>
<homepage href="https://worldwind.arc.nasa.gov"/>
<offline-allowed/>
</information>
<!--
Requests a trusted application environment. The World Wind SDK core library requires access to the network and
the local filesystem. All World Wind JAR files are signed with a digital signature associated with NASA.
-->
<security>
<all-permissions/>
</security>
<!--
Specifies the resources required by the this World Wind demo application:
* Java Runtime Environment version 1.6 or newer, with a maximum heap size of at least 1024 MB. The World Wind SDK
requires at least 1024 MB of heap space. This heap size must be specified in the application's Web Start file.
* World Wind extensions Java Web Start component. This downloads and adds the World Wind SDK extensions JAR file
and its dependencies ot the class path at runtime.
-->
<resources>
<java version="1.7+" max-heap-size="1024m"/>
<extension name="worldwindx" href="worldwindx.jnlp"/>
</resources>
<!--
Indicates that this Java Web Start file describes an application. The main-class element indicates the class
who's main method is executed when this Web Start file launches.
-->
<application-desc main-class="gov.nasa.worldwindx.examples.KeepingObjectsInView"/>
</jnlp>