Java by API/java.beans/ConstructorProperties — различия между версиями

Материал из Java эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 14:33, 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;
  }
}