home *** CD-ROM | disk | FTP | other *** search
- package com.everyware.tango.jas;
-
- public class Echo extends Action {
- public void customProcessing(String[] var1) {
- ((Action)this).setNumColumns(1);
- Integer var3 = new Integer(var1[1]);
-
- for(int var2 = 0; var2 < var3; ++var2) {
- ((Action)this).newRow();
- ((Action)this).newColumn(var1[0]);
- }
-
- }
- }
-