Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE [gef-dev] How to run a GEF Application

Hi !
It is written in the plugin.xml file.

....
<extension
         point="org.eclipse.ui.editors">
      <editor
            name="Hello World Editor"
            default="true"
            icon="example.gif"
            filenames="hello.world"
            contributorClass="gef.example.helloworld.MyContributor"
            class="gef.example.helloworld.HelloWorldEditor"
            id="gef.example.helloworld.editor1">
      </editor>
   </extension>
...
In this example, you need to open a file name hello.world (but before you
need to build the plugin with Run as...->EclipseApplication, a new eclipse
is opened, you create a new project and you open the file).


(Sorry for my poor english)



Back to the top