1 11 12 package org.eclipse.ui.texteditor; 13 14 23 public interface ITextEditorExtension3 { 24 25 28 public static class InsertMode { 29 private InsertMode() { 30 } 31 } 32 33 36 final static InsertMode INSERT= new InsertMode(); 37 40 final static InsertMode SMART_INSERT= new InsertMode(); 41 42 43 48 InsertMode getInsertMode(); 49 50 56 void setInsertMode(InsertMode mode); 57 58 63 void showChangeInformation(boolean show); 64 65 70 boolean isChangeInformationShowing(); 71 } 72 | Popular Tags |