Java by API/java.beans/ConstructorProperties
Версия от 17:43, 31 мая 2010; (обсуждение)
java.beans.ConstructorProperties;
import java.beans.ConstructorProperties;
public class Point {
private double x, y;
public Point() {
}
@ConstructorProperties({"x", "y"})
public Point(double x, double y) {
this.x = x;
this.y = y;
}
}