init method

void init(
  1. double x
)

** / should never reach here

Implementation

// * Creates and returns a copy of this value.
// *
// * @return a copy of this value
// */
// Object clone()
//{
//try {
//return super.clone();
//}
//catch (CloneNotSupportedException ex) {
//// should never reach here
//return null;
//}
//}

void init(double x) {
  this.hi = x;
  this.lo = 0.0;
}