DZone
Java Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Java Zone > FEST-Reflect 0.3: Java Reflection Simplified

FEST-Reflect 0.3: Java Reflection Simplified

Alex Ruiz user avatar by
Alex Ruiz
·
Jan. 31, 08 · Java Zone · News
Like (0)
Save
Tweet
8.03K Views

Join the DZone community and get the full member experience.

Join For Free

FEST-Reflect is a Java library that provides a Fluent Interface-based API that simplifies the usage of Java Reflection, resulting in improved readability and type safety. It supports access to constructors, methods and fields.

We are proud to announce that FEST-Reflect 0.3 is out!

Although I heard/read many times that reflection is "evil" (whatever that means,) I still think reflection can be useful in certain cases. For example, in FEST-Swing, there are a couple of special cases where we don't have enough platform-related information to simulate user input on a Swing component. Our last resource is to access the UI delegate of such component (e.g. JTree) using reflection to achieve our goal.

As any tool, reflection has its uses. The "evil" part, IMHO, comes from abuse.

The following example compares FEST-Reflect with plain reflection. Let's start by defining the class Names:

class Names {
private final List<String> names = new ArrayList<String>();

String get(int index) {
return names.get(index);
}
}

The following code listing shows how to call the method "get" using reflection:

Method method = Names.class.getMethod("get", int.class);

AccessController.doPrivileged(new PrivilegedAction<Void>() {
public Void run() {
method.setAccessible(true);
return null;
}
});

String name = (String) method.invoke(names, 8);

The same example using FEST-Reflect:

String name = method("get").withReturnType(String.class)
.withParameterTypes(int.class)
.in(names)
.invoke(8);

You can download the latest release here (file fest-reflect-0.3.zip.) FEST-Assert requires Java SE 5.0 or later.

Here are some useful links:

  • Documentation
  • Changelog
  • Javadocs
  • Issues
  • Users' Group

Feedback is always appreciated :)

Java (programming language)

Published at DZone with permission of Alex Ruiz, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Understand Source Code — Deep Into the Codebase, Locally and in Production
  • 10 Programming Habits a Web Developer Should Embrace
  • How Low Code Demands More Creativity From Developers
  • 5 Myths of Kubernetes

Comments

Java Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo