perl editor のpluginを作る 基本エディタ

とりあえず何も機能もないエディタを作る

package com.appspot.charisoku30km.editor.perl.editors;

import org.eclipse.ui.editors.text.TextEditor;

public class PerlOreditor extends TextEditor {

    public PerlOreditor() {
        super();
    }
    
}

デフォルトのテキストエディタをとりあえず継承。
これを起動するるだけでエディタとして動く。
基本的な機能はこれに含まれているだろうからこれを肉付けしていく形で実装していく。