test/langtools/jdk/javadoc/doclet/testJavaFX/pkg1/C.java
changeset 49879 601277b1d582
parent 47216 71c04702a3d5
equal deleted inserted replaced
49878:2422d4e027b0 49879:601277b1d582
     1 /*
     1 /*
     2  * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    58      */
    58      */
    59     private DoubleProperty rate;
    59     private DoubleProperty rate;
    60 
    60 
    61     public final void setRate(double value) {}
    61     public final void setRate(double value) {}
    62 
    62 
    63     public final double getRate() {}
    63     public final double getRate() { return 1.0d; }
    64 
    64 
    65     public final DoubleProperty rateProperty() {}
    65     public final DoubleProperty rateProperty() { return null; }
    66 
    66 
    67     private BooleanProperty paused;
    67     private BooleanProperty paused;
    68 
    68 
    69     public final void setPaused(boolean value) {}
    69     public final void setPaused(boolean value) {}
    70 
    70 
    71     public final double isPaused() {}
    71     public final double isPaused() { return 3.14d; }
    72 
    72 
    73     /**
    73     /**
    74      * Defines if paused. The second line.
    74      * Defines if paused. The second line.
    75      * @defaultValue false
    75      * @defaultValue false
       
    76      * @return foo
    76      */
    77      */
    77     public final BooleanProperty pausedProperty() {}
    78     public final BooleanProperty pausedProperty() { return null; }
    78 
    79 
    79     class DoubleProperty {}
    80     class DoubleProperty {}
    80 
    81 
    81     class BooleanProperty {}
    82     class BooleanProperty {}
    82 
    83 
    83     public final BooleanProperty setTestMethodProperty() {}
    84     public final BooleanProperty setTestMethodProperty() { return null; }
    84 
    85 
    85     private class Inner {
    86     private class Inner {
    86         private BooleanProperty testMethodProperty() {}
    87         private BooleanProperty testMethodProperty() {}
    87 
    88 
    88         /**
    89         /**
    92          */
    93          */
    93         private DoubleProperty rate;
    94         private DoubleProperty rate;
    94 
    95 
    95         public final void setRate(double value) {}
    96         public final void setRate(double value) {}
    96 
    97 
    97         public final double getRate() {}
    98         public final double getRate() { return 3.14d; }
    98 
    99 
    99         public final DoubleProperty rateProperty() {}
   100         public final DoubleProperty rateProperty() { return null; }
   100     }
   101     }
   101 }
   102 }