1 19 20 package org.netbeans.editor.view.spi; 21 22 import javax.swing.text.View ; 23 24 59 60 public interface FlyView { 61 62 81 public FlyView flyInstance(View parent); 82 83 94 public View regularInstance(View parent, int startOffset, int endOffset); 95 96 102 public CharSequence getText(); 103 104 105 109 public interface Parent { 110 111 119 public int getStartOffset(int childViewIndex); 120 121 129 public int getEndOffset(int childViewIndex); 130 131 } 132 } 133 | Popular Tags |