this does not work

Former-commit-id: e584b865b8 [formerly ca6be1651d] [formerly d15fb1076641d0bc42126fdfee997b7d9156493d [formerly e6eaa7dbfd]]
Former-commit-id: 963267b07d0bfe61e36b62a4f31227e8dd6a805b [formerly 6ba5680132]
Former-commit-id: 24a7509466
This commit is contained in:
AWIPS User 2015-04-15 22:04:33 -06:00
parent 16ef48d5aa
commit 70865dd9e5
6 changed files with 26 additions and 16 deletions

View file

@ -46,13 +46,6 @@
version="0.0.0" version="0.0.0"
unpack="false"/> unpack="false"/>
<plugin
id="gov.noaa.nws.ncep.ui.ncradarui"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
<plugin <plugin
id="gov.noaa.nws.ncep.ui.pgen" id="gov.noaa.nws.ncep.ui.pgen"
download-size="0" download-size="0"
@ -321,4 +314,11 @@
version="0.0.0" version="0.0.0"
unpack="false"/> unpack="false"/>
<plugin
id="edu.ucar.unidata.ui.ncradarui"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
</feature> </feature>

View file

@ -400,6 +400,12 @@
mnemonic="C" mnemonic="C"
style="push"> style="push">
</command> </command>
<command
commandId="edu.ucar.unidata.ui.ncradarui.palette"
id="edu.ucar.unidata.ui.ncradarui.palette"
label="Ncradar"
style="push">
</command>
<!-- <!--
<command <command
commandId="sync.file.tool.command" commandId="sync.file.tool.command"
@ -617,6 +623,7 @@
</command> </command>
<command <command
commandId="edu.ucar.unidata.ui.ncradarui.palette" commandId="edu.ucar.unidata.ui.ncradarui.palette"
id="edu.ucar.unidata.ui.ncradarui.palette"
label="Ncradar" label="Ncradar"
style="push"> style="push">
</command> </command>
@ -768,10 +775,10 @@
<visibleWhen> <visibleWhen>
<reference <reference
definitionId="gov.noaa.nws.ncep.viz.ui.personalities.notInNCActionSet"> definitionId="gov.noaa.nws.ncep.viz.ui.personalities.notInNCActionSet">
</reference> <command
</visibleWhen> id="edu.ucar.unidata.ui.ncradarui.palette"
</toolbar> name="Ncradar">
</command> </command>/command>
</menuContribution--> </menuContribution-->
</extension> </extension>
<extension <extension
@ -827,6 +834,9 @@
class="gov.noaa.nws.ncep.viz.ui.perspectives.PreferencesHandler" class="gov.noaa.nws.ncep.viz.ui.perspectives.PreferencesHandler"
commandId="gov.noaa.nws.ncep.viz.ui.preferences.handler"> commandId="gov.noaa.nws.ncep.viz.ui.preferences.handler">
</handler> </handler>
<handler
commandId="edu.ucar.unidata.ui.ncradarui.palette">
</handler>
</extension> </extension>

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<classpath> <classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/> <classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
<classpathentry kind="output" path="bin"/> <classpathentry kind="output" path="bin"/>
</classpath> </classpath>

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<projectDescription> <projectDescription>
<name>gov.noaa.nws.ncep.ui.ncradarui</name> <name>edu.ucar.unidata.ui.ncradarui</name>
<comment></comment> <comment></comment>
<projects> <projects>
</projects> </projects>

View file

@ -49,7 +49,7 @@
allowMultiple="false" allowMultiple="false"
restorable="true" restorable="true"
class="edu.ucar.unidata.ui.ncradarui.palette.NcradaruiPaletteWindow" class="edu.ucar.unidata.ui.ncradarui.palette.NcradaruiPaletteWindow"
id="edu.ucar.unidata.ui.ncradarui" id="edu.ucar.unidata.ui.NCRADARUI"
name="NCRADAR"/> name="NCRADAR"/>
</extension> </extension>
<extension <extension
@ -65,7 +65,7 @@
<extension <extension
point="org.eclipse.ui.menus"> point="org.eclipse.ui.menus">
<menuContribution <menuContribution
locationURI="toolbar:edu.ucar.unidata.ui.ncradarui"> locationURI="toolbar:edu.ucar.unidata.ui.NCRADARUI">
<command <command
commandId="edu.ucar.unidata.ui.ncradarui.help" commandId="edu.ucar.unidata.ui.ncradarui.help"
label="Help" label="Help"

View file

@ -19,9 +19,9 @@ package edu.ucar.unidata.ui.ncradarui.palette;
import org.eclipse.core.commands.AbstractHandler; import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException; import org.eclipse.core.commands.ExecutionException;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.IViewPart; import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IWorkbenchPage; import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.PlatformUI;
import edu.ucar.unidata.ui.ncradarui.rsc.NcradaruiResource; import edu.ucar.unidata.ui.ncradarui.rsc.NcradaruiResource;