author | lana |
Thu, 26 Dec 2013 12:04:16 -0800 | |
changeset 23010 | 6dadb192ad81 |
parent 15684 | e5b41bd22ec9 |
permissions | -rw-r--r-- |
15684
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
1 |
/* |
23010
6dadb192ad81
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents:
15684
diff
changeset
|
2 |
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. |
15684
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
4 |
* |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
8 |
* |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
13 |
* accompanied this code). |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
14 |
* |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
18 |
* |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
21 |
* questions. |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
22 |
*/ |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
23 |
|
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
24 |
/* @test |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
25 |
* @bug 8004931 |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
26 |
* @summary Invoke getDeclaredMethods on LogManager to ensure that |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
27 |
* all types referenced in the method signatures is present. |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
28 |
*/ |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
29 |
|
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
30 |
import java.util.logging.LogManager; |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
31 |
import java.lang.reflect.Method; |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
32 |
|
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
33 |
public class Reflect { |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
34 |
static void printMethods(Class<?> c) { |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
35 |
System.out.println(c); |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
36 |
for (Method m: c.getDeclaredMethods()) { |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
37 |
System.out.println(" " + m); |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
38 |
} |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
39 |
} |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
40 |
public static void main(String[] args) { |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
41 |
printMethods(java.util.logging.LogManager.class); |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
42 |
printMethods(java.util.logging.LogManager.getLogManager().getClass()); |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
43 |
} |
e5b41bd22ec9
8004931: add/removePropertyChangeListener should not exist in subset Profiles of Java SE
alanb
parents:
diff
changeset
|
44 |
} |