JVM Languages
jade.txt
Associated article: J.A.D.E.: The Java Addition to the Default Environment
Tags: JVM Languages
Published source code accompanying the article by Jean-Marie Dautelle in which he presents the Java Addition to the Default Environment ("J.A.D.E." for short), an open-source project that fill gaps in the JDK core library.
J.A.D.E.: The Java Addition to the Default Environment
by Jean-Marie Dautelle
Listing One
package com.dautelle.geom2d;
public class Point {
double x;
double y;
// XML constructor.
public Point(Attributes attributes, Elements content) {
x = attributes.getDouble("...


