1 19 20 package org.netbeans.lib.editor.view; 21 22 import javax.swing.text.Element ; 23 import javax.swing.text.View ; 24 25 37 38 public class GapLineView extends GapBoxView { 39 40 public GapLineView(Element lineElement) { 41 super(lineElement, View.X_AXIS); 42 } 43 44 protected GapBoxViewChildren createChildren() { 45 return new GapLineViewChildren(this); 46 } 47 48 } 49 | Popular Tags |