/* * 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.ImageInput @see javafx.scene.effect.ImageInput @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 ImageInputBuilder> implements javafx.util.Builder { protected ImageInputBuilder() { } /** Creates a new instance of ImageInputBuilder. */ @SuppressWarnings({"deprecation", "rawtypes", "unchecked"}) public static javafx.scene.effect.ImageInputBuilder create() { return new javafx.scene.effect.ImageInputBuilder(); } private int __set; public void applyTo(javafx.scene.effect.ImageInput x) { int set = __set; if ((set & (1 << 0)) != 0) x.setSource(this.source); if ((set & (1 << 1)) != 0) x.setX(this.x); if ((set & (1 << 2)) != 0) x.setY(this.y); } private javafx.scene.image.Image source; /** Set the value of the {@link javafx.scene.effect.ImageInput#getSource() source} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B source(javafx.scene.image.Image x) { this.source = x; __set |= 1 << 0; return (B) this; } private double x; /** Set the value of the {@link javafx.scene.effect.ImageInput#getX() x} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B x(double x) { this.x = x; __set |= 1 << 1; return (B) this; } private double y; /** Set the value of the {@link javafx.scene.effect.ImageInput#getY() y} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B y(double x) { this.y = x; __set |= 1 << 2; return (B) this; } /** Make an instance of {@link javafx.scene.effect.ImageInput} based on the properties set on this builder. */ public javafx.scene.effect.ImageInput build() { javafx.scene.effect.ImageInput x = new javafx.scene.effect.ImageInput(); applyTo(x); return x; } }