ProxyClicker Class Reference
List of all members.
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 }
| 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
The documentation for this class was generated from the following file: