home *** CD-ROM | disk | FTP | other *** search
Java Source | 1999-02-03 | 497 b | 20 lines |
- package com.everyware.tango.jas;
-
- import com.everyware.tango.jas.*;
-
- /**
- * @author <a href="http://www.pervasive.com/">Pervasive Software Inc.</a>, 1997, 1999.
- */
-
- public class Hello extends Action {
- // provide an implementation of customProcessing to do the work
- public void customProcessing(String argv[]) {
- // first declare how many columns per row
- setNumColumns(1);
- // now start a new row
- newRow();
- // add a column to the row
- newColumn((String)"Hello!");
- }
- }
-