Issue #2139 Loaded maps at cave start up.
Change-Id: If7d1e801190a2215c6043b81b4beb70e09ba9ee1 Former-commit-id:bbd2a9e5ab
[formerly58fcc4c896
] [formerlya2328f0e06
] [formerlybbd2a9e5ab
[formerly58fcc4c896
] [formerlya2328f0e06
] [formerlyde24b8b431
[formerlya2328f0e06
[formerly 55cb110ba6f328d9fb68d3a9c46254f342299237]]]] Former-commit-id:de24b8b431
Former-commit-id:767a7dd7d9
[formerlyab2e2f9a17
] [formerly 092389edf48fb57d0afab52fb91a50a27f6e805d [formerly4e1b0674e4
]] Former-commit-id: 549f5c664b546ffc489f5a28b764ce64bd4be1a4 [formerly5431e5915d
] Former-commit-id:28849d2a53
This commit is contained in:
parent
dbd11273bf
commit
596ffc3b12
2 changed files with 12 additions and 3 deletions
|
@ -27,4 +27,5 @@ Bundle-ActivationPolicy: lazy
|
||||||
Bundle-ClassPath: .
|
Bundle-ClassPath: .
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||||
Export-Package: com.raytheon.viz.ui.personalities.awips
|
Export-Package: com.raytheon.viz.ui.personalities.awips
|
||||||
Import-Package: com.raytheon.uf.common.pypies
|
Import-Package: com.raytheon.uf.common.pypies,
|
||||||
|
com.raytheon.uf.viz.core.maps
|
||||||
|
|
|
@ -19,8 +19,11 @@
|
||||||
**/
|
**/
|
||||||
package com.raytheon.viz.ui.personalities.awips;
|
package com.raytheon.viz.ui.personalities.awips;
|
||||||
|
|
||||||
|
import com.raytheon.uf.viz.core.maps.MapStore;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO Add Description
|
* This is the default component for CAVE that is the standard workbench with
|
||||||
|
* all the perspectives.
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
*
|
*
|
||||||
|
@ -28,6 +31,7 @@ package com.raytheon.viz.ui.personalities.awips;
|
||||||
* Date Ticket# Engineer Description
|
* Date Ticket# Engineer Description
|
||||||
* ------------ ---------- ----------- --------------------------
|
* ------------ ---------- ----------- --------------------------
|
||||||
* Aug 9, 2010 mschenke Initial creation
|
* Aug 9, 2010 mschenke Initial creation
|
||||||
|
* Jul 1, 2013 2139 jsanchez Loaded map tree at cave start up.
|
||||||
*
|
*
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -50,7 +54,11 @@ public class CAVE extends AbstractCAVEComponent {
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected void startInternal(String componentName) throws Exception {
|
protected void startInternal(String componentName) throws Exception {
|
||||||
|
// Loading Map Tree
|
||||||
|
long t = System.currentTimeMillis();
|
||||||
|
MapStore.getMapTree();
|
||||||
|
System.out.println("Loading Map Tree: "
|
||||||
|
+ (System.currentTimeMillis() - t));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue