/* * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.scene.effect; /** Builder class for javafx.scene.effect.DropShadow @see javafx.scene.effect.DropShadow @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 DropShadowBuilder> implements javafx.util.Builder { protected DropShadowBuilder() { } /** Creates a new instance of DropShadowBuilder. */ @SuppressWarnings({"deprecation", "rawtypes", "unchecked"}) public static javafx.scene.effect.DropShadowBuilder create() { return new javafx.scene.effect.DropShadowBuilder(); } private int __set; private void __set(int i) { __set |= 1 << i; } public void applyTo(javafx.scene.effect.DropShadow x) { int set = __set; while (set != 0) { int i = Integer.numberOfTrailingZeros(set); set &= ~(1 << i); switch (i) { case 0: x.setBlurType(this.blurType); break; case 1: x.setColor(this.color); break; case 2: x.setHeight(this.height); break; case 3: x.setInput(this.input); break; case 4: x.setOffsetX(this.offsetX); break; case 5: x.setOffsetY(this.offsetY); break; case 6: x.setRadius(this.radius); break; case 7: x.setSpread(this.spread); break; case 8: x.setWidth(this.width); break; } } } private javafx.scene.effect.BlurType blurType; /** Set the value of the {@link javafx.scene.effect.DropShadow#getBlurType() blurType} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B blurType(javafx.scene.effect.BlurType x) { this.blurType = x; __set(0); return (B) this; } private javafx.scene.paint.Color color; /** Set the value of the {@link javafx.scene.effect.DropShadow#getColor() color} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B color(javafx.scene.paint.Color x) { this.color = x; __set(1); return (B) this; } private double height; /** Set the value of the {@link javafx.scene.effect.DropShadow#getHeight() height} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B height(double x) { this.height = x; __set(2); return (B) this; } private javafx.scene.effect.Effect input; /** Set the value of the {@link javafx.scene.effect.DropShadow#getInput() input} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B input(javafx.scene.effect.Effect x) { this.input = x; __set(3); return (B) this; } private double offsetX; /** Set the value of the {@link javafx.scene.effect.DropShadow#getOffsetX() offsetX} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B offsetX(double x) { this.offsetX = x; __set(4); return (B) this; } private double offsetY; /** Set the value of the {@link javafx.scene.effect.DropShadow#getOffsetY() offsetY} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B offsetY(double x) { this.offsetY = x; __set(5); return (B) this; } private double radius; /** Set the value of the {@link javafx.scene.effect.DropShadow#getRadius() radius} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B radius(double x) { this.radius = x; __set(6); return (B) this; } private double spread; /** Set the value of the {@link javafx.scene.effect.DropShadow#getSpread() spread} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B spread(double x) { this.spread = x; __set(7); return (B) this; } private double width; /** Set the value of the {@link javafx.scene.effect.DropShadow#getWidth() width} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B width(double x) { this.width = x; __set(8); return (B) this; } /** Make an instance of {@link javafx.scene.effect.DropShadow} based on the properties set on this builder. */ public javafx.scene.effect.DropShadow build() { javafx.scene.effect.DropShadow x = new javafx.scene.effect.DropShadow(); applyTo(x); return x; } }