home *** CD-ROM | disk | FTP | other *** search
/ Datatid 1999 #6 / Datatid_1999-06.iso / internet / Tango352Promo / Tango / data.z / Echo.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-02-03  |  574 b   |  15 lines

  1. package com.everyware.tango.jas;
  2.  
  3. public class Echo extends Action {
  4.    public void customProcessing(String[] var1) {
  5.       ((Action)this).setNumColumns(1);
  6.       Integer var3 = new Integer(var1[1]);
  7.  
  8.       for(int var2 = 0; var2 < var3; ++var2) {
  9.          ((Action)this).newRow();
  10.          ((Action)this).newColumn(var1[0]);
  11.       }
  12.  
  13.    }
  14. }
  15.