Spec-Zone .ru
спецификации, руководства, описания, API
001/* 
002 * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
003 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
004 *
005 * This code is free software; you can redistribute it and/or modify it
006 * under the terms of the GNU General Public License version 2 only, as
007 * published by the Free Software Foundation.  Oracle designates this
008 * particular file as subject to the "Classpath" exception as provided
009 * by Oracle in the LICENSE file that accompanied this code.
010 *
011 * This code is distributed in the hope that it will be useful, but WITHOUT
012 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
013 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
014 * version 2 for more details (a copy is included in the LICENSE file that
015 * accompanied this code).
016 *
017 * You should have received a copy of the GNU General Public License version
018 * 2 along with this work; if not, write to the Free Software Foundation,
019 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
020 *
021 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
022 * or visit www.oracle.com if you need additional information or have any
023 * questions.
024 */
025
026package javafx.scene.effect;
027
028/**
029Builder class for javafx.scene.effect.InnerShadow
030@see javafx.scene.effect.InnerShadow
031@deprecated This class is deprecated and will be removed in the next version
032*/
033@javax.annotation.Generated("Generated by javafx.builder.processor.BuilderProcessor")
034@Deprecated
035public class InnerShadowBuilder<B extends javafx.scene.effect.InnerShadowBuilder<B>> implements javafx.util.Builder<javafx.scene.effect.InnerShadow> {
036    protected InnerShadowBuilder() {
037    }
038    
039    /** Creates a new instance of InnerShadowBuilder. */
040    @SuppressWarnings({"deprecation", "rawtypes", "unchecked"})
041    public static javafx.scene.effect.InnerShadowBuilder<?> create() {
042        return new javafx.scene.effect.InnerShadowBuilder();
043    }
044    
045    private int __set;
046    private void __set(int i) {
047        __set |= 1 << i;
048    }
049    public void applyTo(javafx.scene.effect.InnerShadow x) {
050        int set = __set;
051        while (set != 0) {
052            int i = Integer.numberOfTrailingZeros(set);
053            set &= ~(1 << i);
054            switch (i) {
055                case 0: x.setBlurType(this.blurType); break;
056                case 1: x.setChoke(this.choke); break;
057                case 2: x.setColor(this.color); break;
058                case 3: x.setHeight(this.height); break;
059                case 4: x.setInput(this.input); break;
060                case 5: x.setOffsetX(this.offsetX); break;
061                case 6: x.setOffsetY(this.offsetY); break;
062                case 7: x.setRadius(this.radius); break;
063                case 8: x.setWidth(this.width); break;
064            }
065        }
066    }
067    
068    private javafx.scene.effect.BlurType blurType;
069    /**
070    Set the value of the {@link javafx.scene.effect.InnerShadow#getBlurType() blurType} property for the instance constructed by this builder.
071    */
072    @SuppressWarnings("unchecked")
073    public B blurType(javafx.scene.effect.BlurType x) {
074        this.blurType = x;
075        __set(0);
076        return (B) this;
077    }
078    
079    private double choke;
080    /**
081    Set the value of the {@link javafx.scene.effect.InnerShadow#getChoke() choke} property for the instance constructed by this builder.
082    */
083    @SuppressWarnings("unchecked")
084    public B choke(double x) {
085        this.choke = x;
086        __set(1);
087        return (B) this;
088    }
089    
090    private javafx.scene.paint.Color color;
091    /**
092    Set the value of the {@link javafx.scene.effect.InnerShadow#getColor() color} property for the instance constructed by this builder.
093    */
094    @SuppressWarnings("unchecked")
095    public B color(javafx.scene.paint.Color x) {
096        this.color = x;
097        __set(2);
098        return (B) this;
099    }
100    
101    private double height;
102    /**
103    Set the value of the {@link javafx.scene.effect.InnerShadow#getHeight() height} property for the instance constructed by this builder.
104    */
105    @SuppressWarnings("unchecked")
106    public B height(double x) {
107        this.height = x;
108        __set(3);
109        return (B) this;
110    }
111    
112    private javafx.scene.effect.Effect input;
113    /**
114    Set the value of the {@link javafx.scene.effect.InnerShadow#getInput() input} property for the instance constructed by this builder.
115    */
116    @SuppressWarnings("unchecked")
117    public B input(javafx.scene.effect.Effect x) {
118        this.input = x;
119        __set(4);
120        return (B) this;
121    }
122    
123    private double offsetX;
124    /**
125    Set the value of the {@link javafx.scene.effect.InnerShadow#getOffsetX() offsetX} property for the instance constructed by this builder.
126    */
127    @SuppressWarnings("unchecked")
128    public B offsetX(double x) {
129        this.offsetX = x;
130        __set(5);
131        return (B) this;
132    }
133    
134    private double offsetY;
135    /**
136    Set the value of the {@link javafx.scene.effect.InnerShadow#getOffsetY() offsetY} property for the instance constructed by this builder.
137    */
138    @SuppressWarnings("unchecked")
139    public B offsetY(double x) {
140        this.offsetY = x;
141        __set(6);
142        return (B) this;
143    }
144    
145    private double radius;
146    /**
147    Set the value of the {@link javafx.scene.effect.InnerShadow#getRadius() radius} property for the instance constructed by this builder.
148    */
149    @SuppressWarnings("unchecked")
150    public B radius(double x) {
151        this.radius = x;
152        __set(7);
153        return (B) this;
154    }
155    
156    private double width;
157    /**
158    Set the value of the {@link javafx.scene.effect.InnerShadow#getWidth() width} property for the instance constructed by this builder.
159    */
160    @SuppressWarnings("unchecked")
161    public B width(double x) {
162        this.width = x;
163        __set(8);
164        return (B) this;
165    }
166    
167    /**
168    Make an instance of {@link javafx.scene.effect.InnerShadow} based on the properties set on this builder.
169    */
170    public javafx.scene.effect.InnerShadow build() {
171        javafx.scene.effect.InnerShadow x = new javafx.scene.effect.InnerShadow();
172        applyTo(x);
173        return x;
174    }
175}