langtools/test/jdk/javadoc/doclet/testSearch/pkgfx/C.java
changeset 36705 890c250d8da8
parent 35426 374342e56a56
equal deleted inserted replaced
36503:4a95f4b1bd8b 36705:890c250d8da8
     1 /*
     1 /*
     2  * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
     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.
     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 0.0;}
    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 0.0;}
    72 
    72 
    73     class DoubleProperty {}
    73     class DoubleProperty {}
    74 
    74 
    75     class BooleanProperty {}
    75     class BooleanProperty {}
    76 
    76 
    77     public final BooleanProperty setTestMethodProperty() {}
    77     public final BooleanProperty setTestMethodProperty() {return null;}
    78 
    78 
    79     private class Inner {
    79     private class Inner {
    80         private BooleanProperty testMethodProperty() {}
    80         private BooleanProperty testMethodProperty() {return null;}
    81 
    81 
    82         /**
    82         /**
    83          * Defines the direction/speed at which the {@code Timeline} is expected to
    83          * Defines the direction/speed at which the {@code Timeline} is expected to
    84          * be played.
    84          * be played.
    85          * @defaultValue 11
    85          * @defaultValue 11
    86          */
    86          */
    87         private DoubleProperty rate;
    87         private DoubleProperty rate;
    88 
    88 
    89         public final void setRate(double value) {}
    89         public final void setRate(double value) {}
    90 
    90 
    91         public final double getRate() {}
    91         public final double getRate() {return 0.0;}
    92 
    92 
    93         public final DoubleProperty rateProperty() {}
    93         public final DoubleProperty rateProperty() {return null;}
    94     }
    94     }
    95 }
    95 }