001package com.ganteater.ae.desktop.editor; 002 003import com.ganteater.ae.CommandException; 004import com.ganteater.ae.util.xml.easyparser.Node; 005 006public interface Editor { 007 008 void init(TaskEditor taskEditor, Node editorNode) throws CommandException; 009 010}