1 11 package org.eclipse.jface.text.link; 12 13 23 public interface ILinkedModeListener { 24 25 26 int NONE= 0; 27 31 int EXIT_ALL= 1 << 0; 32 36 int UPDATE_CARET= 1 << 1; 37 41 int SELECT= 1 << 2; 42 46 int EXTERNAL_MODIFICATION= 1 << 3; 47 48 54 void left(LinkedModeModel model, int flags); 55 56 63 void suspend(LinkedModeModel model); 64 65 72 void resume(LinkedModeModel model, int flags); 73 } 74 | Popular Tags |