1 /*
2  * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.
8  *
9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  */
23 
24 package pkgfx;
25 
26 public class C {
27 
28     /**
29      * @propertyDescription PropertyDescription
30      */
CC()31     public void CC() {}
32 
33     /**
34      *
35      */
B()36     public void B() {}
37 
38     /**
39      * Method A documentation. Test index tag {@index "test treat as private"}.
40      * @treatAsPrivate
41      */
A()42     public void A() {}
43 
44     /**
45      * Field i
46      * @defaultValue 1.0
47      */
48     public int i;
49 
50 
51     /**
52      * Defines the direction/speed at which the {@code Timeline} is expected to
53      * be played.
54      * @defaultValue 11
55      * @since JavaFX 8.0
56      */
57     private DoubleProperty rate;
58 
setRate(double value)59     public final void setRate(double value) {}
60 
getRate()61     public final double getRate() {return 0.0;}
62 
rateProperty()63     public final DoubleProperty rateProperty() {return null;}
64 
65     private BooleanProperty paused;
66 
setPaused(boolean value)67     public final void setPaused(boolean value) {}
68 
isPaused()69     public final double isPaused() {return 0.0;}
70 
71     class DoubleProperty {}
72 
73     class BooleanProperty {}
74 
setTestMethodProperty()75     public final BooleanProperty setTestMethodProperty() {return null;}
76 
77     private class Inner {
testMethodProperty()78         private BooleanProperty testMethodProperty() {return null;}
79 
80         /**
81          * Defines the direction/speed at which the {@code Timeline} is expected to
82          * be played.
83          * @defaultValue 11
84          */
85         private DoubleProperty rate;
86 
setRate(double value)87         public final void setRate(double value) {}
88 
getRate()89         public final double getRate() {return 0.0;}
90 
rateProperty()91         public final DoubleProperty rateProperty() {return null;}
92     }
93 }
94