0

如何在没有工作区和其他 Eclipse 默认功能的情况下创建 RCP 项目?

每次我创建 Eclipse RCP 项目时,它都会在单独的工作区中运行,在左侧显示 Package Explorer,允许创建项目等等。

是否可以创建像 XMind 这样的独立应用程序,它只打开某些类型的文件并包含某些类型的视图?

更新

例如,Eclipse 帮助中有一个 Zest 示例。它旨在在 Eclipse 下运行,但主要包含:

/*******************************************************************************
  * Copyright 2005-2007, CHISEL Group, University of Victoria, Victoria, BC,
  * Canada. All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
  * 
  * Contributors: The Chisel Group, University of Victoria
  ******************************************************************************/
 package org.eclipse.zest.examples.swt;

 import org.eclipse.zest.core.widgets.Graph;
 import org.eclipse.zest.core.widgets.GraphConnection;
 import org.eclipse.zest.core.widgets.GraphNode;
 import org.eclipse.zest.layouts.LayoutStyles;
 import org.eclipse.zest.layouts.algorithms.SpringLayoutAlgorithm;
 import org.eclipse.swt.SWT;
 import org.eclipse.swt.layout.FillLayout;
 import org.eclipse.swt.widgets.Display;
 import org.eclipse.swt.widgets.Shell;

 /**
  * This snippet creates a very simple graph where Rock is connected to Paper
  * which is connected to scissors which is connected to rock.
  * 
  * The nodes a layed out using a SpringLayout Algorithm, and they can be moved
  * around.
  * 
  * 
  * @author Ian Bull
  * 
  */
 public class GraphSnippet1 {
    /**
     * @param args
     */
    public static void main(String[] args) {
        // Create the shell
        Display d = new Display();
        Shell shell = new Shell(d);
        shell.setText("GraphSnippet1");
        shell.setLayout(new FillLayout());
        shell.setSize(400, 400);

        Graph g = new Graph(shell, SWT.NONE);
        GraphNode n = new GraphNode(g, SWT.NONE, "Paper");
        GraphNode n2 = new GraphNode(g, SWT.NONE, "Rock");
        GraphNode n3 = new GraphNode(g, SWT.NONE, "Scissors");
        new GraphConnection(g, SWT.NONE, n, n2);
        new GraphConnection(g, SWT.NONE, n2, n3);
        new GraphConnection(g, SWT.NONE, n3, n);
        g.setLayoutAlgorithm(new SpringLayoutAlgorithm(LayoutStyles.NO_LAYOUT_NODE_RESIZING), true);

        shell.open();
        while (!shell.isDisposed()) {
            while (!d.readAndDispatch()) {
                d.sleep();
            }
        }
    }
 }

如何编译这个?如果我只是把它放到 java 项目中,它没有很多 Eclipse 库。但是如果我创建插件项目,我看不到插入 main 方法的地方。

4

1 回答 1

1

要获得绝对最小 RCP 代码,请执行File / New Project并选择Plug-in Project. 在向导的第二步取消选择This plug-in will make contributions to the UIYes选择Would you like to create a 3.x rich client application. 向导的最后一步是Headless Hello RCP创建 RCP 的绝对最小代码。

如果您This plug-in will make contributions to the UI选中某些模板来创建具有视图等的 RCP,则会显示。

以上是针对 Eclipse 3.x 风格的 RCP,针对在 New Project 向导中e4使用的 Eclipse 4 纯 RCP 。Eclipse 4 / Eclipse 4 Application Project

于 2013-10-06T21:02:22.020 回答