1 19 20 package org.netbeans.api.editor.guards; 21 22 import org.netbeans.modules.editor.guards.SimpleSectionImpl; 23 24 28 public final class SimpleSection extends GuardedSection { 29 30 35 SimpleSection(SimpleSectionImpl impl) { 36 super(impl); 37 } 38 39 43 public void setText(String text) { 44 getImpl().setText(text); 45 } 46 47 61 62 SimpleSectionImpl getImpl() { 63 return (SimpleSectionImpl) super.getImpl(); 64 } 65 } 66 | Popular Tags |