home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / JCLASS.BIN / KLG.JAR / jclass / bwt / TextAreaConverter.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-12-05  |  745 b   |  12 lines

  1. package jclass.bwt;
  2.  
  3. import jclass.util.JCConverter;
  4.  
  5. class TextAreaConverter {
  6.    static void getParams(JCTextAreaComponent var0) {
  7.       JCConverter var1 = JCComponent.conv;
  8.       var0.rows = var1.toInt(((JCComponent)var0).getParam("Rows"), var0.rows);
  9.       var0.multiline = var1.toBoolean(((JCComponent)var0).getParam("multiline"), var0.multiline);
  10.    }
  11. }
  12.