test/java/lang/reflect/Field/GenericStringTest.java

Print this page




   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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 5033583
  27  * @summary Check toGenericString() method
  28  * @author Joseph D. Darcy
  29  * @compile -source 1.5 GenericStringTest.java
  30  * @run main GenericStringTest
  31  */
  32 
  33 import java.lang.reflect.*;
  34 import java.lang.annotation.*;
  35 import java.util.*;
  36 
  37 public class GenericStringTest {
  38     public static void main(String argv[]) throws Exception {
  39         int failures = 0;
  40         List<Class> classList = new LinkedList<Class>();
  41         classList.add(TestClass1.class);
  42         classList.add(TestClass2.class);
  43 
  44 
  45         for(Class clazz: classList)
  46             for(Field field: clazz.getDeclaredFields()) {
  47                 ExpectedString es = field.getAnnotation(ExpectedString.class);
  48                 String genericString = field.toGenericString();
  49                 System.out.println(genericString);
  50                 if (! es.value().equals(genericString)) {




   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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  20  * CA 95054 USA or visit www.sun.com if you need additional information or
  21  * have any questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 5033583
  27  * @summary Check toGenericString() method
  28  * @author Joseph D. Darcy


  29  */
  30 
  31 import java.lang.reflect.*;
  32 import java.lang.annotation.*;
  33 import java.util.*;
  34 
  35 public class GenericStringTest {
  36     public static void main(String argv[]) throws Exception {
  37         int failures = 0;
  38         List<Class> classList = new LinkedList<Class>();
  39         classList.add(TestClass1.class);
  40         classList.add(TestClass2.class);
  41 
  42 
  43         for(Class clazz: classList)
  44             for(Field field: clazz.getDeclaredFields()) {
  45                 ExpectedString es = field.getAnnotation(ExpectedString.class);
  46                 String genericString = field.toGenericString();
  47                 System.out.println(genericString);
  48                 if (! es.value().equals(genericString)) {