在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Eclipse RCP Plug-in开发自学教程 源码.zip

Eclipse RCP Plug-in开发自学教程 源码.zip

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:1.57M
  • 下载次数:2
  • 浏览次数:109
  • 发布时间:2021-12-09
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
附件源码 更多请见:http://www.ceclipse.org/read.php?tid=27986&page=1&toread=1#tpc
【实例截图】
【核心代码】
4744300845374859387.zip
├── org.eclipse.ui.examples.navigator
│   ├── about.html
│   ├── bin
│   │   └── org
│   │   └── eclipse
│   │   └── ui
│   │   ├── examples
│   │   │   └── navigator
│   │   │   ├── PropertiesContentProvider$1.class
│   │   │   ├── PropertiesContentProvider.class
│   │   │   ├── PropertiesLabelProvider.class
│   │   │   └── PropertiesTreeData.class
│   │   └── internal
│   │   └── examples
│   │   └── navigator
│   │   └── Activator.class
│   ├── build.properties
│   ├── icons
│   │   ├── filenav_nav.gif
│   │   └── prop_ps.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.properties
│   ├── plugin.xml
│   └── src
│   └── org
│   └── eclipse
│   └── ui
│   ├── examples
│   │   └── navigator
│   │   ├── PropertiesContentProvider.java
│   │   ├── PropertiesLabelProvider.java
│   │   └── PropertiesTreeData.java
│   └── internal
│   └── examples
│   └── navigator
│   └── Activator.java
├── org.salever.rcp.examples.update.p2
│   ├── about.ini
│   ├── about.mappings
│   ├── about.properties
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   ├── examples
│   │   │   └── update
│   │   │   └── p2
│   │   │   ├── Activator.class
│   │   │   ├── Application$1.class
│   │   │   ├── ApplicationActionBarAdvisor.class
│   │   │   ├── Application.class
│   │   │   ├── ApplicationWorkbenchAdvisor.class
│   │   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   │   ├── Perspective.class
│   │   │   ├── View$ViewContentProvider.class
│   │   │   ├── View$ViewLabelProvider.class
│   │   │   └── View.class
│   │   └── update
│   ├── build.properties
│   ├── bundle.properties
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   └── alt_window_32.gif
│   ├── kaitone.product
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin_customization.ini
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   ├── examples
│   │   └── update
│   │   └── p2
│   │   ├── Activator.java
│   │   ├── ApplicationActionBarAdvisor.java
│   │   ├── Application.java
│   │   ├── ApplicationWorkbenchAdvisor.java
│   │   ├── ApplicationWorkbenchWindowAdvisor.java
│   │   ├── Perspective.java
│   │   └── View.java
│   └── update
├── org.salever.rcp.examples.update.p2.feature
│   ├── alt_window_32.gif
│   ├── build.properties
│   ├── category.xml
│   ├── compile.kaitone.wisp.kul.update.p2.feature.xml
│   ├── epl-v10.html
│   ├── feature.xml
│   ├── license.html
│   ├── license.txt
│   └── p2.inf
├── org.salever.rcp.tech.chapter10
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter10
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   ├── Perspective.class
│   │   └── views
│   │   ├── SampleView$1.class
│   │   ├── SampleView$2.class
│   │   ├── SampleView$3.class
│   │   ├── SampleView$4.class
│   │   ├── SampleView$5.class
│   │   ├── SampleView$NameSorter.class
│   │   ├── SampleView$TreeObject.class
│   │   ├── SampleView$TreeParent.class
│   │   ├── SampleView$ViewContentProvider.class
│   │   ├── SampleView$ViewLabelProvider.class
│   │   └── SampleView.class
│   ├── build.properties
│   ├── contexts.xml
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   ├── alt_window_32.gif
│   │   └── sample.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter10
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   ├── Perspective.java
│   └── views
│   └── SampleView.java
├── org.salever.rcp.tech.chapter11
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter11
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   ├── perspective
│   │   │   └── TestPerspectiveFactory.class
│   │   ├── Perspective.class
│   │   ├── View$ViewContentProvider.class
│   │   ├── View$ViewLabelProvider.class
│   │   └── View.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_window_16.gif
│   │   ├── alt_window_32.gif
│   │   └── default_persp.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter11
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   ├── perspective
│   │   └── TestPerspectiveFactory.java
│   ├── Perspective.java
│   └── View.java
├── org.salever.rcp.tech.chapter12
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter12
│   │   ├── actions
│   │   │   ├── JobAction$1.class
│   │   │   ├── JobAction.class
│   │   │   ├── ProgressDialogAction$1.class
│   │   │   └── ProgressDialogAction.class
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   └── Perspective.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   ├── alt_window_32.gif
│   │   ├── job.gif
│   │   └── sample.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter12
│   ├── actions
│   │   ├── JobAction.java
│   │   └── ProgressDialogAction.java
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   └── Perspective.java
├── org.salever.rcp.tech.chapter15
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter15
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   └── Perspective.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   └── alt_window_32.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin_customization.ini
│   ├── plugin.xml
│   ├── product.product
│   ├── splash.bmp
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter15
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   └── Perspective.java
├── org.salever.rcp.tech.chapter15.help
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter15
│   │   └── help
│   │   └── Activator.class
│   ├── build.properties
│   ├── html
│   │   ├── concepts
│   │   │   ├── maintopic.html
│   │   │   ├── subtopic2.html
│   │   │   └── subtopic.html
│   │   ├── gettingstarted
│   │   │   ├── maintopic.html
│   │   │   ├── subtopic2.html
│   │   │   └── subtopic.html
│   │   ├── reference
│   │   │   ├── maintopic.html
│   │   │   ├── subtopic2.html
│   │   │   └── subtopic.html
│   │   ├── samples
│   │   │   ├── maintopic.html
│   │   │   ├── subtopic2.html
│   │   │   └── subtopic.html
│   │   ├── tasks
│   │   │   ├── maintopic.html
│   │   │   ├── subtopic2.html
│   │   │   └── subtopic.html
│   │   └── toc.html
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   ├── src
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter15
│   │   └── help
│   │   └── Activator.java
│   ├── tocconcepts.xml
│   ├── tocgettingstarted.xml
│   ├── tocreference.xml
│   ├── tocsamples.xml
│   ├── toctasks.xml
│   └── toc.xml
├── org.salever.rcp.tech.chapter17
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter17
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   ├── ICommandIds.class
│   │   ├── MessagePopupAction.class
│   │   ├── Messages.class
│   │   ├── messages.properties
│   │   ├── messages_zh.properties
│   │   ├── NavigationView$TreeObject.class
│   │   ├── NavigationView$TreeParent.class
│   │   ├── NavigationView$ViewContentProvider.class
│   │   ├── NavigationView$ViewLabelProvider.class
│   │   ├── NavigationView.class
│   │   ├── OpenViewAction.class
│   │   ├── Perspective.class
│   │   ├── View$1.class
│   │   └── View.class
│   ├── build.properties
│   ├── icons
│   │   ├── mail.ico
│   │   ├── sample2.gif
│   │   ├── sample3.gif
│   │   ├── sample.gif
│   │   └── sample.icns
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   ├── product_lg.gif
│   ├── splash.bmp
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter17
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   ├── ICommandIds.java
│   ├── MessagePopupAction.java
│   ├── Messages.java
│   ├── messages.properties
│   ├── messages_zh.properties
│   ├── NavigationView.java
│   ├── OpenViewAction.java
│   ├── Perspective.java
│   └── View.java
├── org.salever.rcp.tech.chapter18.decorator
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter18
│   │   └── decorator
│   │   ├── Activator.class
│   │   └── decorators
│   ├── build.properties
│   ├── icons
│   │   └── sample_decorator.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter18
│   └── decorator
│   ├── Activator.java
│   └── decorators
├── org.salever.rcp.tech.chapter18.marker
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter18
│   │   └── marker
│   │   ├── Activator.class
│   │   └── popup
│   │   └── actions
│   │   └── TestMarkerAction.class
│   ├── build.properties
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter18
│   └── marker
│   ├── Activator.java
│   └── popup
│   └── actions
│   └── TestMarkerAction.java
├── org.salever.rcp.tech.chapter19
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter19
│   │   ├── Activator.class
│   │   ├── DebugConstants.class
│   │   └── launch
│   │   ├── XMlLaunchConfigurationDelegate.class
│   │   ├── XmlLaunchConfigurationTabGroup.class
│   │   ├── XmlLaunchShortcut.class
│   │   ├── XMLMainTab$1.class
│   │   ├── XMLMainTab$2.class
│   │   └── XMLMainTab.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_window_16.gif
│   │   └── sample.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter19
│   ├── Activator.java
│   ├── DebugConstants.java
│   └── launch
│   ├── XMlLaunchConfigurationDelegate.java
│   ├── XmlLaunchConfigurationTabGroup.java
│   ├── XmlLaunchShortcut.java
│   └── XMLMainTab.java
├── org.salever.rcp.tech.chapter3
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter3
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   └── Perspective.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   └── alt_window_32.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter3
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   └── Perspective.java
├── org.salever.rcp.tech.chapter3.ex
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter3
│   │   └── ex
│   │   ├── actions
│   │   │   └── SampleAction.class
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   └── Perspective.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   ├── alt_window_32.gif
│   │   └── sample.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter3
│   └── ex
│   ├── actions
│   │   └── SampleAction.java
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   └── Perspective.java
├── org.salever.rcp.tech.chapter3.keybinding
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter3
│   │   └── keybinding
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   ├── handlers
│   │   │   └── SampleHandler.class
│   │   └── Perspective.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   ├── alt_window_32.gif
│   │   └── sample.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter3
│   └── keybinding
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   ├── handlers
│   │   └── SampleHandler.java
│   └── Perspective.java
├── org.salever.rcp.tech.chapter4
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter4
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor$1.class
│   │   ├── ApplicationWorkbenchWindowAdvisor$2.class
│   │   ├── ApplicationWorkbenchWindowAdvisor$3.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   └── Perspective.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   └── alt_window_32.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter4
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   └── Perspective.java
├── org.salever.rcp.tech.chapter5
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter5
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   ├── Perspective.class
│   │   └── views
│   │   ├── SampleView$1.class
│   │   ├── SampleView$2.class
│   │   ├── SampleView$3.class
│   │   ├── SampleView$4.class
│   │   ├── SampleView$5.class
│   │   ├── SampleView$NameSorter.class
│   │   ├── SampleView$TreeObject.class
│   │   ├── SampleView$TreeParent.class
│   │   ├── SampleView$ViewContentProvider.class
│   │   ├── SampleView$ViewLabelProvider.class
│   │   └── SampleView.class
│   ├── build.properties
│   ├── contexts.xml
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   ├── alt_window_32.gif
│   │   └── sample.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter5
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   ├── Perspective.java
│   └── views
│   └── SampleView.java
├── org.salever.rcp.tech.chapter5.view
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter5
│   │   └── view
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   ├── Perspective.class
│   │   ├── SampleAction.class
│   │   └── SampleViewPart.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   └── alt_window_32.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter5
│   └── view
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   ├── Perspective.java
│   ├── SampleAction.java
│   └── SampleViewPart.java
├── org.salever.rcp.tech.chapter6
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter6
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   ├── editor
│   │   │   ├── SampleEditor.class
│   │   │   └── SampleInput.class
│   │   ├── Perspective.class
│   │   ├── View$1.class
│   │   ├── View$ViewContentProvider.class
│   │   ├── View$ViewLabelProvider.class
│   │   └── View.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_window_16.gif
│   │   └── alt_window_32.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter6
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   ├── editor
│   │   ├── SampleEditor.java
│   │   └── SampleInput.java
│   ├── Perspective.java
│   └── View.java
├── org.salever.rcp.tech.chapter6.txtedit
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter6
│   │   └── txtedit
│   │   ├── action
│   │   │   └── OpenAction.class
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   ├── editor
│   │   │   ├── FileInput.class
│   │   │   ├── SampleTextEditor$1.class
│   │   │   └── SampleTextEditor.class
│   │   └── Perspective.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   ├── alt_window_32.gif
│   │   ├── file.gif
│   │   └── open.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   ├── splash.bmp
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter6
│   └── txtedit
│   ├── action
│   │   └── OpenAction.java
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   ├── editor
│   │   ├── FileInput.java
│   │   └── SampleTextEditor.java
│   └── Perspective.java
├── org.salever.rcp.tech.chapter7
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter7
│   │   ├── actions
│   │   │   └── SampleAction.class
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   └── Perspective.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   ├── alt_window_32.gif
│   │   └── sample.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter7
│   ├── actions
│   │   └── SampleAction.java
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   └── Perspective.java
├── org.salever.rcp.tech.chapter7.dialog
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter7
│   │   └── dialog
│   │   ├── FirstDialog.class
│   │   └── FirstTitleDialog.class
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter7
│   └── dialog
│   ├── FirstDialog.java
│   └── FirstTitleDialog.java
├── org.salever.rcp.tech.chapter8
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter8
│   │   ├── actions
│   │   │   └── SampleAction.class
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   ├── Perspective.class
│   │   └── wizard
│   │   ├── MyPageOne$1.class
│   │   ├── MyPageOne.class
│   │   ├── MyPageTwo$1.class
│   │   ├── MyPageTwo.class
│   │   └── MyWizard.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   ├── alt_window_32.gif
│   │   └── sample.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter8
│   ├── actions
│   │   └── SampleAction.java
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   ├── Perspective.java
│   └── wizard
│   ├── MyPageOne.java
│   ├── MyPageTwo.java
│   └── MyWizard.java
├── org.salever.rcp.tech.chapter9
│   ├── bin
│   │   └── org
│   │   └── salever
│   │   └── rcp
│   │   └── tech
│   │   └── chapter9
│   │   ├── actions
│   │   │   ├── DeleteAction.class
│   │   │   └── PreferenceAction.class
│   │   ├── Activator.class
│   │   ├── Application$1.class
│   │   ├── ApplicationActionBarAdvisor.class
│   │   ├── Application.class
│   │   ├── ApplicationWorkbenchAdvisor.class
│   │   ├── ApplicationWorkbenchWindowAdvisor.class
│   │   ├── Perspective.class
│   │   └── preferences
│   │   ├── PreferenceConstants.class
│   │   ├── PreferenceInitializer.class
│   │   └── SamplePreferencePage.class
│   ├── build.properties
│   ├── icons
│   │   ├── alt_about.gif
│   │   ├── alt_launcher.icns
│   │   ├── alt_launcher.ico
│   │   ├── alt_launcher.xpm
│   │   ├── alt_window_16.gif
│   │   ├── alt_window_32.gif
│   │   ├── delete.gif
│   │   └── sample.gif
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── plugin.xml
│   └── src
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── chapter9
│   ├── actions
│   │   ├── DeleteAction.java
│   │   └── PreferenceAction.java
│   ├── Activator.java
│   ├── ApplicationActionBarAdvisor.java
│   ├── Application.java
│   ├── ApplicationWorkbenchAdvisor.java
│   ├── ApplicationWorkbenchWindowAdvisor.java
│   ├── Perspective.java
│   └── preferences
│   ├── PreferenceConstants.java
│   ├── PreferenceInitializer.java
│   └── SamplePreferencePage.java
└── org.salever.rcp.tech.helloworld
├── bin
│   └── org
│   └── salever
│   └── rcp
│   └── tech
│   └── helloworld
│   ├── Activator.class
│   ├── Application$1.class
│   ├── ApplicationActionBarAdvisor.class
│   ├── Application.class
│   ├── ApplicationWorkbenchAdvisor.class
│   ├── ApplicationWorkbenchWindowAdvisor.class
│   ├── HttpLoginTaobao$Step1ProgressListener.class
│   ├── HttpLoginTaobao$Step2ProgressListener.class
│   ├── HttpLoginTaobao$Step3ProgressListener.class
│   ├── HttpLoginTaobao$Step4ProgressListener.class
│   ├── HttpLoginTaobao.class
│   └── Perspective.class
├── build.properties
├── hs_err_pid4012.log
├── icons
│   ├── alt_about.gif
│   ├── alt_launcher.icns
│   ├── alt_launcher.ico
│   ├── alt_launcher.xpm
│   ├── alt_window_16.gif
│   └── alt_window_32.gif
├── META-INF
│   └── MANIFEST.MF
├── plugin.xml
├── splash.bmp
└── src
└── org
└── salever
└── rcp
└── tech
└── helloworld
├── Activator.java
├── ApplicationActionBarAdvisor.java
├── Application.java
├── ApplicationWorkbenchAdvisor.java
├── ApplicationWorkbenchWindowAdvisor.java
├── HttpLoginTaobao.java
└── Perspective.java

425 directories, 620 files

标签:

实例下载地址

Eclipse RCP Plug-in开发自学教程 源码.zip

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警