~codescore-dev/codescore/version-1.0

« back to all changes in this revision

Viewing changes to src/net/codescore/ui/admin/ppl/AddTeam.java

  • Committer: Adam Cornett
  • Date: 2008-03-16 21:50:13 UTC
  • Revision ID: adam.cornett@gmail.com-20080316215013-sr98v9he6ez74hey
Refactoring! changed the top package to net.codescore from net.launchpad.codescore to reflect the new website and to cut back on the lenght of full class names

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 * <http://www.gnu.org/licenses>.
11
11
 */
12
12
 
13
 
package net.launchpad.codescore.ui.admin.ppl;
 
13
package net.codescore.ui.admin.ppl;
14
14
 
15
15
import org.zkoss.zul.Window;
16
16
 
17
 
import net.launchpad.codescore.dbo.School;
 
17
import net.codescore.dbo.School;
18
18
 
19
19
public class AddTeam extends Window {
20
20
        private static final long serialVersionUID = -3068679066967583133L;
21
 
        School school=null;
22
 
        
 
21
        School school = null;
 
22
 
 
23
        public AddTeam() {
 
24
                this(null);
 
25
        }
 
26
 
23
27
        public AddTeam(final School s) {
24
28
                school = s;
25
29
                initWindow();
26
30
        }
27
 
        public AddTeam() {
28
 
                this(null);
29
 
        }
30
 
        
 
31
 
31
32
        private void initWindow() {
32
 
                
 
33
 
33
34
        }
34
35
}