test/jdk/javadoc/doclet/testOrdering/pkg1/MethodOrder.java

Print this page


   1 /*
   2  * Copyright (c) 2014, 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  */


 108      */
 109     public UsedClass m(Double in) {return null;}
 110 
 111     /**
 112      * method test for ordering parameters
 113      * @param i1 a param
 114      * @param i2 a param
 115      * @return something
 116      */
 117     public UsedClass m(Double i1, Double i2) {return null;}
 118 
 119     /**
 120      * method test for ordering parameters
 121      * @param i1 a param
 122      * @param i2 a param
 123      * @return something
 124      */
 125     public UsedClass m(double i1, Double i2) {return null;}
 126 
 127     /**








 128      * method test for ordering parameters
 129      * @param l1 param
 130      * @return something
 131      */
 132     public UsedClass m(long l1) {return null;}
 133 
 134     /**
 135      *  method test for ordering parameters
 136      * @param l1 param
 137      * @param l2 param
 138      * @return something
 139      */
 140     public UsedClass m(long l1, Long l2) {return null;}
 141 
 142     /**
 143      *  method test for ordering parameters
 144      * @param l1 param
 145      * @param l2 param
 146      * @return something
 147      */


   1 /*
   2  * Copyright (c) 2014, 2015, 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  */


 108      */
 109     public UsedClass m(Double in) {return null;}
 110 
 111     /**
 112      * method test for ordering parameters
 113      * @param i1 a param
 114      * @param i2 a param
 115      * @return something
 116      */
 117     public UsedClass m(Double i1, Double i2) {return null;}
 118 
 119     /**
 120      * method test for ordering parameters
 121      * @param i1 a param
 122      * @param i2 a param
 123      * @return something
 124      */
 125     public UsedClass m(double i1, Double i2) {return null;}
 126 
 127     /**
 128      * method test for ordering parameters
 129      * @param l1 param
 130      * @param xenon param
 131      * @return something
 132      */
 133     public UsedClass m(long l1, Long... xenon) {return null;}
 134 
 135     /**
 136      * method test for ordering parameters
 137      * @param l1 param
 138      * @return something
 139      */
 140     public UsedClass m(long l1) {return null;}
 141 
 142     /**
 143      *  method test for ordering parameters
 144      * @param l1 param
 145      * @param l2 param
 146      * @return something
 147      */
 148     public UsedClass m(long l1, Long l2) {return null;}
 149 
 150     /**
 151      *  method test for ordering parameters
 152      * @param l1 param
 153      * @param l2 param
 154      * @return something
 155      */