Eclipse可以做這個重構嗎?Eclipse支持重構火車殘骸
說我有,有一個列表類:
class DomainObject {
private List list;
public List getList() { return list; }
}
然後使用該類的一些代碼需要做到這一點:
domainObject.getList().get(23);
我想重構這個(和有所有其他引用這樣做):
domainObject.get(23);
我已經嘗試了幾個選項,但似乎無法找到這樣做(其它塔的方式ñ手動)
爲什麼Eclipse會知道那就是你想要做的? – 2012-02-15 14:15:51
好吧,說我選擇了getList()並說'內聯這個電話' – blank 2012-02-15 14:17:57