/* * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.geometry; /** Builder class for javafx.geometry.Rectangle2D @see javafx.geometry.Rectangle2D @deprecated This class is deprecated and will be removed in the next version * @since JavaFX 2.0 */ @javax.annotation.Generated("Generated by javafx.builder.processor.BuilderProcessor") @Deprecated public class Rectangle2DBuilder> implements javafx.util.Builder { protected Rectangle2DBuilder() { } /** Creates a new instance of Rectangle2DBuilder. */ @SuppressWarnings({"deprecation", "rawtypes", "unchecked"}) public static javafx.geometry.Rectangle2DBuilder create() { return new javafx.geometry.Rectangle2DBuilder(); } private double height; /** Set the value of the {@link javafx.geometry.Rectangle2D#getHeight() height} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B height(double x) { this.height = x; return (B) this; } private double minX; /** Set the value of the {@link javafx.geometry.Rectangle2D#getMinX() minX} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B minX(double x) { this.minX = x; return (B) this; } private double minY; /** Set the value of the {@link javafx.geometry.Rectangle2D#getMinY() minY} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B minY(double x) { this.minY = x; return (B) this; } private double width; /** Set the value of the {@link javafx.geometry.Rectangle2D#getWidth() width} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B width(double x) { this.width = x; return (B) this; } /** Make an instance of {@link javafx.geometry.Rectangle2D} based on the properties set on this builder. */ public javafx.geometry.Rectangle2D build() { javafx.geometry.Rectangle2D x = new javafx.geometry.Rectangle2D(this.minX, this.minY, this.width, this.height); return x; } }