我目前正在为Eclipse做一个定制编辑版。 我在手写上了这一战略:
public IAutoEditStrategy[] getAutoEditStrategies(
ISourceViewer sourceViewer, String contentType) {
return new IAutoEditStrategy[] { new KRLAutoEditStrategy() };
}
缩略语 类似战略:
public class KRLAutoEditStrategy implements IAutoEditStrategy {
public void customizeDocumentCommand(IDocument d, DocumentCommand c) {
System.out.println("Called.");
}
}
现在,只有我打回空间,而不是为了任何其他特性,才需要定制文件。 我失踪了什么? 我如何实施汽车登机?