Java/JDK 6/JavaBeans — различия между версиями

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

Текущая версия на 06:12, 1 июня 2010

@ConstructorProperties Annotation Usage

 

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;
  }
}