我知道如何从eclipse中的成员字段生成setter和getter方法。但有没有办法用setter和getter公开成员的setter和getter方法?
例如,如果我有一个班级Foo
:
class Foo
{
private int val;
public void setVal(int val)
{
this.val = val;
}
public int getVal()
{
return val;
}
}
是班级Foo2
的成员:
class Foo2
{
private Foo foo;
}
是否有可能在类Foo2
中使用eclipse自动生成以下方法?
public void setVal(int val)
{
foo.setVal(val);
}
public int getVal()
{
return foo.getVal();
}