FileDocCategorySizeDatePackage
DeepCopy.javaAPI DocExample4018Mon Apr 06 18:10:22 BST 1998None

DepthReading

public class DepthReading extends Object implements Cloneable

Fields Summary
private double
depth
Constructors Summary
public DepthReading(double depth)

 
    this.depth = depth;
  
Methods Summary
public java.lang.Objectclone()

    Object o = null;
    try {
      o = super.clone();
    } catch (CloneNotSupportedException e) {
      e.printStackTrace();
    }
    return o;