- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 RCP 应用程序有问题。
首先,我在我的 plugin.xml 中定义了一个 Activity :
<extension
point="org.eclipse.ui.activities">
<activity
id="myproject.view.input.activity"
name="myproject.view.input.activity">
<enabledWhen>
<with
variable="myproject.view.input.active">
<equals
value="ENABLED">
</equals>
</with>
</enabledWhen>
</activity>
<activityPatternBinding
activityId="myproject.view.input.activity"
pattern="myproject.gui/myproject.view.input">
</activityPatternBinding>
<extension
point="org.eclipse.ui.services">
<sourceProvider
provider="myproject.util.CommandState">
<variable
name="myproject.view.input.active"
priorityLevel="workbench">
</variable>
public class CommandState extends AbstractSourceProvider {
public final static String OUTPUT_VIEW = "myproject.view.input.active";
// then goes some others variables, i just skip them
// ....
public final static String [] ACTIONS = {OUTPUT_VIEW /*and all others variables*/};
public final static String ENABLED = "ENABLED";
public final static String DISENABLED = "DISENABLED";
private final Map <String, String> currentState = new HashMap <String, String> ();
@Override
public void dispose() {
}
@Override
public String[] getProvidedSourceNames() {
return ACTIONS;
}
@Override
public Map <String, String> getCurrentState() {
return currentState;
}
public void setEnabled(boolean enabled, String [] commands) {
String value = enabled ? ENABLED : DISENABLED;
for (String command : commands) {
currentState.put(command, value);
fireSourceChanged(ISources.WORKBENCH, command, value);
}
}
}
!ENTRY org.eclipse.ui 4 4 2011-11-16 15:54:43.284
!MESSAGE Exception in org.eclipse.ui.internal.PageLayout.addView: org.eclipse.ui.PartInitException: Could not create view: myproject.view.input
!ENTRY org.eclipse.ui 4 4 2011-11-16 15:54:43.321
!MESSAGE Exception in org.eclipse.ui.internal.PageLayout.addView: org.eclipse.ui.PartInitException: Could not create view: myproject.view.input
!STACK 1
org.eclipse.ui.PartInitException: Could not create view: myproject.view.input
at org.eclipse.ui.internal.ViewFactory.createView(ViewFactory.java:158)
at org.eclipse.ui.internal.LayoutHelper.createView(LayoutHelper.java:162)
at org.eclipse.ui.internal.PageLayout.createView(PageLayout.java:543)
at org.eclipse.ui.internal.PageLayout.addView(PageLayout.java:416)
at org.eclipse.ui.internal.PageLayout.addStandaloneView(PageLayout.java:894)
at org.eclipse.ui.internal.registry.PerspectiveExtensionReader.processView(PerspectiveExtensionReader.java:295)
at org.eclipse.ui.internal.registry.PerspectiveExtensionReader.processExtension(PerspectiveExtensionReader.java:118)
at org.eclipse.ui.internal.registry.PerspectiveExtensionReader.readElement(PerspectiveExtensionReader.java:355)
at org.eclipse.ui.internal.registry.RegistryReader.readElements(RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtension(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry(RegistryReader.java:176)
at org.eclipse.ui.internal.registry.PerspectiveExtensionReader.extendLayout(PerspectiveExtensionReader.java:82)
at org.eclipse.ui.internal.Perspective.loadPredefinedPersp(Perspective.java:818)
at org.eclipse.ui.internal.Perspective.createPresentation(Perspective.java:270)
at org.eclipse.ui.internal.Perspective.<init>(Perspective.java:156)
at org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createPerspective(Workbench3xImplementation.java:55)
at org.eclipse.ui.internal.WorkbenchPage.createPerspective(WorkbenchPage.java:1672)
at org.eclipse.ui.internal.WorkbenchPage.busySetPerspective(WorkbenchPage.java:1034)
at org.eclipse.ui.internal.WorkbenchPage.access$16(WorkbenchPage.java:1025)
at org.eclipse.ui.internal.WorkbenchPage$19.run(WorkbenchPage.java:3715)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3713)
at org.eclipse.ui.handlers.ShowPerspectiveHandler.openPerspective(ShowPerspectiveHandler.java:146)
at org.eclipse.ui.handlers.ShowPerspectiveHandler.openOther(ShowPerspectiveHandler.java:118)
at org.eclipse.ui.handlers.ShowPerspectiveHandler.execute(ShowPerspectiveHandler.java:57)
at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293)
at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476)
at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:178)
at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:247)
at org.eclipse.ui.actions.PerspectiveMenu.runOther(PerspectiveMenu.java:376)
at org.eclipse.ui.actions.PerspectiveMenu$3.runWithEvent(PerspectiveMenu.java:130)
at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:584)
at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501)
at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3540)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3161)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2640)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2604)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at myproject.arm.demo.Application.start(Application.java:28)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:620)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:575)
at org.eclipse.equinox.launcher.Main.run(Main.java:1408)
at org.eclipse.equinox.launcher.Main.main(Main.java:1384)
!SUBENTRY 1 org.eclipse.ui 4 0 2011-11-16 15:54:43.322
!MESSAGE Could not create view: myproject.view.input
最佳答案
系统正在运行。 Activity 可以使用户看不到 View 或向导,但可以选择故意显示它。
带有 enabledWhen 元素的 Activity 也会从 View 注册表中删除 View ,因此用户不能故意显示它,即使他们想要。这是为了防止用户在 RCP 应用程序中打开管理员 View 。
您将 View 添加到您的透视图中,如果您的 Activity 被禁用,就好像该 View 定义不存在一样。
您应该将该 View 添加为 View 占位符,或以管理员视角添加。如果用户使用管理员角色登录,那么您可以显示 View 或选择管理员视角。
关于java - RCP 应用 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8149512/
我继续阅读 http://eclipse.geekyramblings.net/2010/12/14/preventing-multiple-instances/关于如何防止启动多个 RCP 实例。但
是否可以在基于 RCP 的应用程序中动态更改关于对话框文本?当关于对话框打开时,我想通过动态更改其文本的某些部分来替换 aboutText 值。问题是我有一个客户端/服务器应用程序,其中有关客户端的信
背景 我正在为 uDig 开发一个插件,这是一个基于 Eclipse RCP 构建的项目。我的插件包含一个表格,其中填充了来自 Workbench 选择的数据。用户可以对表格数据进行分组、排序和过滤。
我在重新启动 RCP 应用程序时遇到问题。当我在 Eclipse 下运行时一切正常,但是当我创建独立应用程序方法时重启只需关闭应用程序。我使用下一个代码: IWorkbench 工作台 = Platf
我已经编写了一个 RCP 应用程序。为此,我想使用 log4j 添加日志记录。 有人能提出解决方案吗? 我已经尝试过 this , 但我无法使用它。 感谢任何帮助! 最佳答案 考虑使用 Eclipse
我想在代码中调用 RCP 命令,如下所示: IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow()
我刚刚开始玩 Eclipse RCP。 我想完成的一些事情: 如何最大化应用程序的初始大小? 我想在我的左边创建一个侧边栏类型 View ,并想固定该 View 的大小并删除任何标题栏,从该侧边栏最小
我目前使用的是 Eclipse Helios Service Release 1。我是 IDE 和平台的新手。 我的问题是,如何在我的应用程序上获得与 IDE 相同的曲线选项卡? 最佳答案 根据 th
在Eclipse RCP中开发“关于窗口”时,我们需要定义: aboutText =我的文本,将在“关于”窗口中显示 在about.ini文件中。 我需要添加在概述页面中定义的版本号 .product
我使用 eclipse kepler(RCP 和 RAP 开发人员的 Eclipse)开发了一个 rcp 产品,但是设置选项卡样式不起作用。我尝试了两种方式 1.config.xml
我创建了一个简单的 Eclipse RCP 应用程序,我可以在其中根据用户操作打开多个编辑器实例。我有一个单独的 View (ViewPart),我在其中监听编辑器上的选择更改。问题是 View 仅被
我有一个 RCP 应用程序。它的默认透视图在编辑器区域的左侧和底部打开两个 View 。选项 SaveAndRestore 设置为 true。下次启动应用程序时,两个 View 都会关闭。为什么?我做
我正在构建一个基于 Eclipse RCP 的产品,我遇到了一个问题,当我尝试使用内置 p2 UI 安装产品更新时,我在对话框中收到一条错误消息“访问权限不足应用此更新。” 我已经调试到 Eclips
我开发了一个 Eclipse RCP 应用程序,我正在从我自己的 Java 程序中调用它。 当我从命令提示符(windows)运行我自己的 Java 程序时,它完美地工作并给出结果。 但是当我在 ec
我想知道是否可以(以及如何)将文件添加到 Eclipse RCP 应用程序的根目录。 我有一个 AppManual.pdf,我想在应用程序的根目录中分发。 最佳答案 退房 http://help.ec
是否可以在我的 Eclipse-RCP 产品中覆盖内置透视图的布局? 特别是,我希望添加一个自定义 View 并更改 Debug 透视图的布局。我知道如何使用自定义透视图 (IPerspectiveF
我必须开发一个简单的基于 Eclipse 的应用程序。我使用 Luna Eclipse RCP IDE(4.4)。我想有没有声明性的方式来启动我的应用程序,主窗口的大小最大化。 提前致谢 最佳答案 您
我想开始一个新项目,它将广泛使用插件。我知道 Eclipse 和 Netbeans 都有各自的富客户端平台,各有优缺点。 我想要一些 Stack Overflow 社区喜欢的评论。 此外,最重要的是,
有没有办法强制 RCP 产品在每次 RCP 被关注时显示欢迎页面? (默认情况下,仅在第一次启动 RCP 时才会显示欢迎页面。) 我在plugin_customization.ini中尝试了org.e
我尝试在 Eclipse RCP 应用程序中使用 classmexer,但我只得到一个 IllegalStateException: java.lang.IllegalStateException:
我是一名优秀的程序员,十分优秀!