AS3 - list of instructions after CTRL+SPACE fix

AS3 - methodinfo refactoring
This commit is contained in:
Jindra Pet��k
2011-07-10 17:31:01 +02:00
parent 6b3a959054
commit 27df4647a0
3 changed files with 10 additions and 15 deletions
@@ -174,12 +174,7 @@ public class MainFrame extends JFrame implements ActionListener, ItemListener {
JPanel rightPanel = new JPanel();
rightPanel.setLayout(new BorderLayout());
rightPanel.add(new JScrollPane(sourceTextArea), BorderLayout.CENTER);
sourceTextArea.setContentType("text/flasm3");
ActionMap am=sourceTextArea.getActionMap();
ComboCompletionAction cca=(ComboCompletionAction)am.get("combo-completion");
List<String> items=new ArrayList<String>();
items.add("ahoj");
cca.setItems(items);
sourceTextArea.setContentType("text/flasm3");
JPanel buttonsPan = new JPanel();
buttonsPan.setLayout(new FlowLayout());
JButton verifyButton = new JButton("Verify");