Subversion Repositories shark

Rev

Rev 1269 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1270 giacomo 1
//package first_filter;
1269 trimarchi 2
 
3
/**
4
 * <p>Title: First XML filter</p>
5
 * <p>Description: </p>
6
 * <p>Copyright: Copyright (c) 2003</p>
7
 * <p>Company: Retis Lab</p>
8
 * @author not attributable
9
 * @version 1.0
10
 */
11
 
12
public class task_class {
13
  String name;
14
  int task_type;
15
  int contract;
16
  int localscheduler;
17
  int number;
18
  int group;
19
  timespec deadline;
20
  timespec wcet;
21
  int act_number;
22
 
23
  public task_class() {
24
  }
25
 
1270 giacomo 26
}