package code.framework.android.data;
import org.apache.commons.lang.builder.ReflectionToStringBuilder;
public class Dimension {
public int width;
public int height;
public Dimension(int width, int height) {
super();
this.width = width;
this.height = height;
}
public String toString() {
// FIXME: no reflection allowed after JIT !?
return ReflectionToStringBuilder.toString(this);
}
}
|