Class HelloWorldBuilder

java.lang.Object
  |
  +--HelloWorldBuilder
All Implemented Interfaces:
InstructionConstants

public class HelloWorldBuilder
extends java.lang.Object
implements InstructionConstants

Create HelloWorld class:

 import java.io.*;

 public class HelloWorld {
   public static void main(String[] argv) {
     BufferedReader in   = new BufferedReader(new InputStreamReader(System.in));
     String name = null;
 
     try {
       System.out.print("Please enter your name> ");
       name = in.readLine();
     } catch(IOException e) { return; }
 
     System.out.println("Hello, " + name);
   }
 }
 

Version:
$Id: HelloWorldBuilder.java,v 1.4 1999/06/23 14:56:29 dahm Exp $
Author:
M. Dahm

Inner classes inherited from class de.fub.bytecode.generic.InstructionConstants
InstructionConstants.Clinit
 
Fields inherited from interface de.fub.bytecode.generic.InstructionConstants
AALOAD, AASTORE, ACONST_NULL, ALOAD_0, ALOAD_1, ALOAD_2, ARETURN, ARRAYLENGTH, ASTORE_0, ASTORE_1, ASTORE_2, ATHROW, BALOAD, BASTORE, bla, CALOAD, CASTORE, D2F, D2I, D2L, DADD, DALOAD, DASTORE, DCMPG, DCMPL, DCONST_0, DCONST_1, DDIV, DMUL, DNEG, DREM, DRETURN, DSUB, DUP, DUP_X1, DUP_X2, DUP2, DUP2_X1, DUP2_X2, F2D, F2I, F2L, FADD, FALOAD, FASTORE, FCMPG, FCMPL, FCONST_0, FCONST_1, FCONST_2, FDIV, FMUL, FNEG, FREM, FRETURN, FSUB, I2B, I2C, I2D, I2F, I2L, I2S, IADD, IALOAD, IAND, IASTORE, ICONST_0, ICONST_1, ICONST_2, ICONST_3, ICONST_4, ICONST_5, ICONST_M1, IDIV, ILOAD_0, ILOAD_1, ILOAD_2, IMUL, INEG, INSTRUCTIONS, IOR, IREM, IRETURN, ISHL, ISHR, ISTORE_0, ISTORE_1, ISTORE_2, ISUB, IUSHR, IXOR, L2D, L2F, L2I, LADD, LALOAD, LAND, LASTORE, LCMP, LCONST_0, LCONST_1, LDIV, LMUL, LNEG, LOR, LREM, LRETURN, LSHL, LSHR, LSUB, LUSHR, LXOR, MONITORENTER, MONITOREXIT, NOP, POP, POP2, RETURN, SALOAD, SASTORE, SWAP, THIS
 
Constructor Summary
HelloWorldBuilder()
           
 
Method Summary
static void main(java.lang.String[] argv)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HelloWorldBuilder

public HelloWorldBuilder()
Method Detail

main

public static void main(java.lang.String[] argv)