請教JDONJIVE3.6程式碼的問題

moren發表於2009-03-09
這幾天看了一下程式碼,有幾處不是很清楚,請高手們指教一下:
問題1:AcountServiceImp.java中:
/**
* init the account
*/
public Account initAccount(EventModel em) {
return new Account();
}

函式中引數沒用到,不知道這裡引進這個引數有什麼用?
感覺應該用下面的:
Account account = (Account) em.getModelIF();
若account為空再返回new Account();?
問題2:這個可能是沒時間檢查的原因吧:

public AccountProfileForm(){
account = new Account();
propertys = new ArrayList();
propertys = new ArrayList();
for(int i=0; i<maxSize; i++){
propertys.add(new Property());
}
}
propertys new了兩次.
剛學習jivejdon,還請各位多多指教.

相關文章