bin
Class GUIFramework.ButtonProcessor

java.lang.Object
  extended by bin.GUIFramework.ButtonProcessor
All Implemented Interfaces:
java.awt.event.ActionListener, java.util.EventListener
Enclosing class:
GUIFramework

protected class GUIFramework.ButtonProcessor
extends java.lang.Object
implements java.awt.event.ActionListener

This Inner-Class handles all button-click processes.


Field Summary
(package private)  boolean done
          Temporary boolean value that monitors whether a String has had its "instinct" appended to the front of it or not.
 
Constructor Summary
protected GUIFramework.ButtonProcessor()
           
 
Method Summary
 void actionPerformed(java.awt.event.ActionEvent event)
          Invoked when an action occurs.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

done

boolean done
Temporary boolean value that monitors whether a String has had its "instinct" appended to the front of it or not. If it hasn't, the String will add the instinct and reset the flag; if it has (and the flag is therefore "true") then the String will append the instinct's "x" [number of] arguments to it.

Constructor Detail

GUIFramework.ButtonProcessor

protected GUIFramework.ButtonProcessor()
Method Detail

actionPerformed

public void actionPerformed(java.awt.event.ActionEvent event)
Invoked when an action occurs.

Specified by:
actionPerformed in interface java.awt.event.ActionListener
Parameters:
event - The ActionEvent source that invoked this action.