@ConstructorProperties Annotation Usage : JavaBeans « JDK 6 « Java






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

        








Related examples in the same category