ProxyClicker Class Reference

Collaboration diagram for ProxyClicker:
[legend]

List of all members.

Public Member Functions

 ProxyClicker ()
void actionPerformed (ActionEvent ae)
void run ()

Static Public Member Functions

static void main (String[] args)

Static Package Attributes

static final int MAX_PROGRESS = 100
static final int panelWidth = 400
static final int panelHeight = 200


Constructor & Destructor Documentation

ProxyClicker::ProxyClicker (  )  [inline]

00032                               {
00033                 _this = this;
00034         }


Member Function Documentation

void ProxyClicker::actionPerformed ( ActionEvent  ae  )  [inline]

00143                                                    {
00144                 if (ae.getActionCommand().equals("Save")) {
00145                         saveConfig();
00146                         return;
00147                 }
00148                 synchronized(this){notifyAll();}
00149         }

static void ProxyClicker::main ( String[]  args  )  [inline, static]

00214                                               {
00215                 ProxyClicker p = new ProxyClicker();  
00216                 new Thread(p).start();
00217                 javax.swing.SwingUtilities.invokeLater(new Runnable() {
00218                                                         public void run() {
00219                                                                 createAndShowGUI();
00220                                                         }
00221                                                 });
00222         }

Here is the call graph for this function:

void ProxyClicker::run (  )  [inline]

00202                          {
00203                 while(true){
00204                         try{
00205                                 synchronized(this){wait();}
00206                         } catch (InterruptedException e){
00207                                 System.out.println("Exception: " + e);
00208                         }
00209                         results.setText("");
00210                         this.generateRequests();
00211                 }
00212         }


Member Data Documentation

final int ProxyClicker::MAX_PROGRESS = 100 [static, package]

final int ProxyClicker::panelHeight = 200 [static, package]

final int ProxyClicker::panelWidth = 400 [static, package]


The documentation for this class was generated from the following file:

Generated on Thu Oct 22 17:40:09 2009 for JAVAProxyClick by  doxygen 1.5.8