test/com/sun/javadoc/testJavaFX/C.java

Tue, 14 May 2013 10:14:56 -0700

author
jjg
date
Tue, 14 May 2013 10:14:56 -0700
changeset 1749
25c89a492f14
parent 1606
ccbe7ffdd867
child 1866
26437287529d
permissions
-rw-r--r--

8012295: Cleanup JavaFX features in standard doclet
Reviewed-by: darcy

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

mercurial