home *** CD-ROM | disk | FTP | other *** search
/ Datatid 1999 #6 / Datatid_1999-06.iso / internet / Tango352Promo / Tango / data.z / Hello.java < prev    next >
Encoding:
Java Source  |  1999-02-03  |  497 b   |  20 lines

  1. package com.everyware.tango.jas;
  2.  
  3. import com.everyware.tango.jas.*;
  4.  
  5. /**
  6. * @author <a href="http://www.pervasive.com/">Pervasive Software Inc.</a>, 1997, 1999.
  7. */
  8.  
  9. public class Hello extends Action {
  10.     // provide an implementation of customProcessing to do the work
  11.     public void customProcessing(String argv[]) {
  12.         // first declare how many columns per row
  13.         setNumColumns(1);
  14.         // now start a new row
  15.         newRow();
  16.         // add a column to the row
  17.         newColumn((String)"Hello!");
  18.     }
  19. }
  20.