Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 30 → Rev 31

/kickup/trunk/src/ak/kickup/core/model/Event.java
45,7 → 45,9
 
protected void init()
{
acts = new ArrayList();
acts = new ArrayList();
apartments = new ArrayList();
participants = new ArrayList();
}
 
/**
/kickup/trunk/src/ak/kickup/core/model/ParticipantManager.java
50,7 → 50,9
public Participant create()
throws ModelException
{
return new Participant();
Participant p = new Participant();
p.init();
return p;
}
 
public Participant get(Long id)
/kickup/trunk/src/ak/kickup/core/model/Participant.java
6,6 → 6,7
import java.util.Collections;
import java.util.Collection;
import java.util.Iterator;
import java.util.ArrayList;
import ak.kickup.util.ModelException;
import ak.kickup.util.ModelSecurityException;
 
41,6 → 42,11
{
}
 
protected void init()
{
acts = new ArrayList();
}
 
/**
*
* @hibernate.property