source: xssim/trunk/src/schedframe/scheduling/AbstractProcessesGroup.java @ 104

Revision 104, 326 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.scheduling;
2
3/**
4 *
5 * @author Marcin Krystek
6 *
7 */
8public abstract class AbstractProcessesGroup {
9
10        protected String groupId;
11       
12        protected AbstractProcessesGroup(){
13        }
14       
15        protected AbstractProcessesGroup(String groupId){
16                this.groupId = groupId;
17        }
18       
19        public String getId(){
20                return this.groupId;
21        }
22}
Note: See TracBrowser for help on using the repository browser.