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.PerspectiveTransform
030@see javafx.scene.effect.PerspectiveTransform
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 PerspectiveTransformBuilder<B extends javafx.scene.effect.PerspectiveTransformBuilder<B>> implements javafx.util.Builder<javafx.scene.effect.PerspectiveTransform> {
036    protected PerspectiveTransformBuilder() {
037    }
038    
039    /** Creates a new instance of PerspectiveTransformBuilder. */
040    @SuppressWarnings({"deprecation", "rawtypes", "unchecked"})
041    public static javafx.scene.effect.PerspectiveTransformBuilder<?> create() {
042        return new javafx.scene.effect.PerspectiveTransformBuilder();
043    }
044    
045    private int __set;
046    private void __set(int i) {
047        __set |= 1 << i;
048    }
049    public void applyTo(javafx.scene.effect.PerspectiveTransform 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.setInput(this.input); break;
056                case 1: x.setLlx(this.llx); break;
057                case 2: x.setLly(this.lly); break;
058                case 3: x.setLrx(this.lrx); break;
059                case 4: x.setLry(this.lry); break;
060                case 5: x.setUlx(this.ulx); break;
061                case 6: x.setUly(this.uly); break;
062                case 7: x.setUrx(this.urx); break;
063                case 8: x.setUry(this.ury); break;
064            }
065        }
066    }
067    
068    private javafx.scene.effect.Effect input;
069    /**
070    Set the value of the {@link javafx.scene.effect.PerspectiveTransform#getInput() input} property for the instance constructed by this builder.
071    */
072    @SuppressWarnings("unchecked")
073    public B input(javafx.scene.effect.Effect x) {
074        this.input = x;
075        __set(0);
076        return (B) this;
077    }
078    
079    private double llx;
080    /**
081    Set the value of the {@link javafx.scene.effect.PerspectiveTransform#getLlx() llx} property for the instance constructed by this builder.
082    */
083    @SuppressWarnings("unchecked")
084    public B llx(double x) {
085        this.llx = x;
086        __set(1);
087        return (B) this;
088    }
089    
090    private double lly;
091    /**
092    Set the value of the {@link javafx.scene.effect.PerspectiveTransform#getLly() lly} property for the instance constructed by this builder.
093    */
094    @SuppressWarnings("unchecked")
095    public B lly(double x) {
096        this.lly = x;
097        __set(2);
098        return (B) this;
099    }
100    
101    private double lrx;
102    /**
103    Set the value of the {@link javafx.scene.effect.PerspectiveTransform#getLrx() lrx} property for the instance constructed by this builder.
104    */
105    @SuppressWarnings("unchecked")
106    public B lrx(double x) {
107        this.lrx = x;
108        __set(3);
109        return (B) this;
110    }
111    
112    private double lry;
113    /**
114    Set the value of the {@link javafx.scene.effect.PerspectiveTransform#getLry() lry} property for the instance constructed by this builder.
115    */
116    @SuppressWarnings("unchecked")
117    public B lry(double x) {
118        this.lry = x;
119        __set(4);
120        return (B) this;
121    }
122    
123    private double ulx;
124    /**
125    Set the value of the {@link javafx.scene.effect.PerspectiveTransform#getUlx() ulx} property for the instance constructed by this builder.
126    */
127    @SuppressWarnings("unchecked")
128    public B ulx(double x) {
129        this.ulx = x;
130        __set(5);
131        return (B) this;
132    }
133    
134    private double uly;
135    /**
136    Set the value of the {@link javafx.scene.effect.PerspectiveTransform#getUly() uly} property for the instance constructed by this builder.
137    */
138    @SuppressWarnings("unchecked")
139    public B uly(double x) {
140        this.uly = x;
141        __set(6);
142        return (B) this;
143    }
144    
145    private double urx;
146    /**
147    Set the value of the {@link javafx.scene.effect.PerspectiveTransform#getUrx() urx} property for the instance constructed by this builder.
148    */
149    @SuppressWarnings("unchecked")
150    public B urx(double x) {
151        this.urx = x;
152        __set(7);
153        return (B) this;
154    }
155    
156    private double ury;
157    /**
158    Set the value of the {@link javafx.scene.effect.PerspectiveTransform#getUry() ury} property for the instance constructed by this builder.
159    */
160    @SuppressWarnings("unchecked")
161    public B ury(double x) {
162        this.ury = x;
163        __set(8);
164        return (B) this;
165    }
166    
167    /**
168    Make an instance of {@link javafx.scene.effect.PerspectiveTransform} based on the properties set on this builder.
169    */
170    public javafx.scene.effect.PerspectiveTransform build() {
171        javafx.scene.effect.PerspectiveTransform x = new javafx.scene.effect.PerspectiveTransform();
172        applyTo(x);
173        return x;
174    }
175}