~codescore-dev/codescore/version-1.0

« back to all changes in this revision

Viewing changes to src/net/codescore/ui/admin/judge/JSubList.java

  • Committer: Adam Cornett
  • Date: 2008-05-16 02:53:17 UTC
  • mfrom: (65.1.52 codescore)
  • Revision ID: adam.cornett@gmail.com-20080516025317-douek1kxjabvb3wu
Merged changes from my branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2008 Adam Cornett This program is free software; you can
 
3
 * redistribute it and/or modify it under the terms of the GNU General Public
 
4
 * License as published by the Free Software Foundation; either version 3 of the
 
5
 * License, or (at your option) any later version. This program is distributed
 
6
 * in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
 
7
 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
8
 * See the GNU General Public License for more details. You should have received
 
9
 * a copy of the GNU General Public License along with this program; if not, see
 
10
 * <http://www.gnu.org/licenses>.
 
11
 */
 
12
 
 
13
package net.codescore.ui.admin.judge;
 
14
 
 
15
import net.codescore.controllers.JudgeController;
 
16
import net.codescore.ui.admin.JudgeHome;
 
17
import net.codescore.ui.components.windows.ChildControlledWin;
 
18
 
 
19
public class JSubList extends ChildControlledWin<JudgeController> {
 
20
        public JSubList(JudgeHome h) {
 
21
                super(h);
 
22
                setTitle("Submission List");
 
23
        }
 
24
}