1 19 20 package org.netbeans.examples.debugger.delegating; 21 22 import java.util.Set ; 23 import org.netbeans.api.debugger.DebuggerEngine; 24 import org.netbeans.spi.debugger.support.DelegatingActionsProvider; 25 26 27 31 public class AAAActionsProvider extends DelegatingActionsProvider { 32 33 34 public AAAActionsProvider (DebuggerEngine engine) { 35 super (engine); 36 } 37 38 public Set getActions () { 39 return getAllSupportedActions (); 40 } 41 42 protected String getOriginalLanguage () { 43 return "Java"; 44 } 45 } 46 47 | Popular Tags |