User loginNavigation |
Attribute-Oriented Programming with Java 1.5From Peeking Inside the Box. An interesting look at the addition of annotations to the next generation Java. Not sure what the main purpose of this metadata is, but the author discusses it in terms of debugging and instrumentation. Annotation definitions look a lot like interface definitions, but the keyword @interface is used instead of interface and only methods are supported (though they act more like fields). public @interface Status {
String value();
}I can now define my method as follows: @Status("Connecting to database")
public void connectToDB (String url) {
...
} |
Browse archives
Active forum topics |
Recent comments
22 hours 31 min ago
22 hours 46 min ago
5 days 23 hours ago
5 days 23 hours ago
5 days 23 hours ago
3 weeks 6 days ago
4 weeks 5 days ago
4 weeks 5 days ago
4 weeks 6 days ago
4 weeks 6 days ago