diff options
| author | kgilmer | 2005-11-13 22:10:28 +0000 |
|---|---|---|
| committer | kgilmer | 2005-11-13 22:10:28 +0000 |
| commit | 269c82a6dafc979a494db61045e73cc667ea5f89 (patch) | |
| tree | 442d5f381b062f4f704d9d5fd0b4fd6593293df7 | |
| parent | c4fb008825be4ba311dbfb0b03aafe1a30abfa4d (diff) | |
| download | org.eclipse.ecf-269c82a6dafc979a494db61045e73cc667ea5f89.tar.gz org.eclipse.ecf-269c82a6dafc979a494db61045e73cc667ea5f89.tar.xz org.eclipse.ecf-269c82a6dafc979a494db61045e73cc667ea5f89.zip | |
Added org.eclipse.ui.editors.editor extension point. Currently set as a secondary editor for Java, XML, and Text files via the Extension property.
| -rw-r--r-- | examples/bundles/org.eclipse.ecf.example.collab/plugin.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.collab/plugin.xml b/examples/bundles/org.eclipse.ecf.example.collab/plugin.xml index 03aeb8d0b..75fb63bd7 100644 --- a/examples/bundles/org.eclipse.ecf.example.collab/plugin.xml +++ b/examples/bundles/org.eclipse.ecf.example.collab/plugin.xml @@ -166,5 +166,15 @@ </action> </viewerContribution> </extension> + <extension + point="org.eclipse.ui.editors"> + <editor + class="org.eclipse.ecf.example.collab.ui.SharedEditor" + default="false" + extensions="xml,txt,java" + icon="icons/person.gif" + id="org.eclipse.ecf.example.collab.SharedEditor" + name="Shared Editor"/> + </extension> </plugin> |
