-
Enhancement
-
Resolution: Other
-
P4
-
None
-
1.4.0, 1.4.1, 1.4.2, 5.0, 6, 7
-
generic, x86, sparc
-
generic, linux, solaris_10, windows_2000, windows_xp, windows_vista
A DESCRIPTION OF THE REQUEST :
It should be possible to obtain references to Field, Method and
Constructor objects without the use of strings. Proposed syntax:
// Assuming the following class
public class Foo {
String bar;
public Foo(String bar) {
this.bar = bar;
}
public void fly(String to) {
bar = to;
}
}
Field fooBarField = Foo.class.bar.field;
Method fooFlyMethod = Foo.class.fly.method(new Object[]{String.class});
Constructor fooConstructor = Foo.class.constructor(new Object[]{String.class});
The construct is similar to the ClassName.class syntax and it can be treated
by the Compiler in the same way:
It could produce the getDeclaredField, getDeclaredMethod and getConstructor
bytecode. No modifications to the JVM would be necessary.
JUSTIFICATION :
I posted this as an RFE twice before. The last time I was asked me to resubmit the RFE with a link to the message ID. Here is the discussion in a newsgroup:
news:bkc2ml$qdt$01$###@###.###
My justification again:
The existance of the field/method/constructor could be checked during compile
time. Typos would no longer be possible.
A notation without strings could be very easily refactored by IDEs.
We would specifically need the feature for our typesafe querying system,
so it could work completely without strings.
http://sodaquery.sf.net/
The possibility to get Method objects without strings, would encourage many
developers to use them for more dynamic programming and would result in lots
of more flexible libraries for the Java platform.
Thanks in advance for a consideration to add this very simple compiler add-on to J2SE 1.5.
(Incident Review ID: 208397)
======================================================================
- duplicates
-
JDK-4483171 Adding support for delegates and method references
-
- Closed
-
-
JDK-4810162 Make reflection more convenient to use
-
- Closed
-
-
JDK-4948610 Integrate usage of Reflection API for methods into the Java grammar
-
- Closed
-
-
JDK-5050261 java.lang.reflect.Method instance from a method name, similar to MyClass.class
-
- Closed
-
-
JDK-6356762 Should be possible to aquire Method object without reflection
-
- Closed
-
-
JDK-6424492 Make Package objects consistent and expose through Java language
-
- Closed
-
-
JDK-6526540 Language change: Class method to get pointer to method
-
- Closed
-
-
JDK-6682571 Access to class meta data at compile time
-
- Closed
-
-
JDK-6915224 Compiler type- & existence-checked reflection syntax sugar via new ".." operator
-
- Closed
-