FileDocCategorySizeDatePackage
LocalCopy.javaAPI DocExample3630Mon Apr 06 18:10:22 BST 1998None

MyObject

public class MyObject extends Object implements Cloneable

Fields Summary
int
i
Constructors Summary
MyObject(int ii)

 i = ii; 
Methods Summary
public java.lang.Objectclone()

    Object o = null;
    try {
      o = super.clone();
    } catch (CloneNotSupportedException e) {
      System.out.println("MyObject can't clone");
    }
    return o;
  
public java.lang.StringtoString()

    return Integer.toString(i);