1 19 20 package org.netbeans.spi.editor; 21 22 import java.util.ResourceBundle ; 23 import javax.swing.Action ; 24 import javax.swing.text.JTextComponent ; 25 26 38 public interface EditorImplementationProvider { 39 40 41 public ResourceBundle getResourceBundle(String localizer); 42 43 47 public Action [] getGlyphGutterActions(JTextComponent target); 48 49 52 public boolean activateComponent(JTextComponent c); 53 } 54 | Popular Tags |