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;
027
028/**
029Builder class for javafx.scene.SnapshotParameters
030@see javafx.scene.SnapshotParameters
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 SnapshotParametersBuilder<B extends javafx.scene.SnapshotParametersBuilder<B>> implements javafx.util.Builder<javafx.scene.SnapshotParameters> {
036    protected SnapshotParametersBuilder() {
037    }
038    
039    /** Creates a new instance of SnapshotParametersBuilder. */
040    @SuppressWarnings({"deprecation", "rawtypes", "unchecked"})
041    public static javafx.scene.SnapshotParametersBuilder<?> create() {
042        return new javafx.scene.SnapshotParametersBuilder();
043    }
044    
045    private int __set;
046    public void applyTo(javafx.scene.SnapshotParameters x) {
047        int set = __set;
048        if ((set & (1 << 0)) != 0) x.setCamera(this.camera);
049        if ((set & (1 << 1)) != 0) x.setDepthBuffer(this.depthBuffer);
050        if ((set & (1 << 2)) != 0) x.setFill(this.fill);
051        if ((set & (1 << 3)) != 0) x.setTransform(this.transform);
052        if ((set & (1 << 4)) != 0) x.setViewport(this.viewport);
053    }
054    
055    private javafx.scene.Camera camera;
056    /**
057    Set the value of the {@link javafx.scene.SnapshotParameters#getCamera() camera} property for the instance constructed by this builder.
058    */
059    @SuppressWarnings("unchecked")
060    public B camera(javafx.scene.Camera x) {
061        this.camera = x;
062        __set |= 1 << 0;
063        return (B) this;
064    }
065    
066    private boolean depthBuffer;
067    /**
068    Set the value of the {@link javafx.scene.SnapshotParameters#isDepthBuffer() depthBuffer} property for the instance constructed by this builder.
069    */
070    @SuppressWarnings("unchecked")
071    public B depthBuffer(boolean x) {
072        this.depthBuffer = x;
073        __set |= 1 << 1;
074        return (B) this;
075    }
076    
077    private javafx.scene.paint.Paint fill;
078    /**
079    Set the value of the {@link javafx.scene.SnapshotParameters#getFill() fill} property for the instance constructed by this builder.
080    */
081    @SuppressWarnings("unchecked")
082    public B fill(javafx.scene.paint.Paint x) {
083        this.fill = x;
084        __set |= 1 << 2;
085        return (B) this;
086    }
087    
088    private javafx.scene.transform.Transform transform;
089    /**
090    Set the value of the {@link javafx.scene.SnapshotParameters#getTransform() transform} property for the instance constructed by this builder.
091    */
092    @SuppressWarnings("unchecked")
093    public B transform(javafx.scene.transform.Transform x) {
094        this.transform = x;
095        __set |= 1 << 3;
096        return (B) this;
097    }
098    
099    private javafx.geometry.Rectangle2D viewport;
100    /**
101    Set the value of the {@link javafx.scene.SnapshotParameters#getViewport() viewport} property for the instance constructed by this builder.
102    */
103    @SuppressWarnings("unchecked")
104    public B viewport(javafx.geometry.Rectangle2D x) {
105        this.viewport = x;
106        __set |= 1 << 4;
107        return (B) this;
108    }
109    
110    /**
111    Make an instance of {@link javafx.scene.SnapshotParameters} based on the properties set on this builder.
112    */
113    public javafx.scene.SnapshotParameters build() {
114        javafx.scene.SnapshotParameters x = new javafx.scene.SnapshotParameters();
115        applyTo(x);
116        return x;
117    }
118}