vote up 2 vote down star

How, in Java, to quickly (or generically) convert one class that implements an interface into another class that implements the same interface?

I mean, if they're a POJO one class setters should take the other class getters as arguments.

Is there a Pattern for this situation?

flag
You might add what the desired result should be - an instance of the second class with access to it's specialized methods/properties? – Ken Gentle Oct 25 '08 at 0:48

2 Answers

vote up 3 vote down

The Apache Bean Utilities package has a tool for this.

org.apache.commons.beanutils.BeanUtils .BeanUtils.copyProperties

public static void copyProperties(Object dest, Object orig) throws IllegalAccessException, InvocationTargetException

Copy property values from the origin bean to the destination bean for all cases where the property names are the same.

For more details see BeanUtilsBean.

Parameters:
    dest - Destination bean whose properties are modified
    orig - Origin bean whose properties are retrieved
link|flag
vote up 2 vote down

I believe that the pattern for this situation is called a Proxy:

A proxy, in its most general form, is a class functioning as an interface to another thing. The other thing could be anything: a network connection, a large object in memory, a file, or some other resource that is expensive or impossible to duplicate.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.