KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > fop > plan > ActionInfo


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */

17
18 /* $Id: ActionInfo.java 426576 2006-07-28 15:44:37Z jeremias $ */
19  
20 package org.apache.fop.plan;
21
22 import java.util.Date JavaDoc;
23
24 public class ActionInfo {
25     
26     public static final int TASK = 1;
27     public static final int MILESTONE = 2;
28     public static final int GROUPING = 3;
29
30     private Date JavaDoc startDate;
31     private Date JavaDoc endDate;
32     private String JavaDoc owner;
33     private String JavaDoc label;
34     private int type = TASK;
35     private String JavaDoc dependant = "";
36
37     public void setType(int t) {
38         type = t;
39     }
40
41     public int getType() {
42         return type;
43     }
44
45     public void setLabel(String JavaDoc str) {
46         label = str;
47     }
48
49     public void setOwner(String JavaDoc str) {
50         owner = str;
51     }
52
53     public void setStartDate(Date JavaDoc sd) {
54         startDate = sd;
55         if (endDate == null) {
56             endDate = startDate;
57         }
58     }
59
60     public void setEndDate(Date JavaDoc ed) {
61         endDate = ed;
62     }
63
64     public String JavaDoc getLabel() {
65         return label;
66     }
67
68     public String JavaDoc getOwner() {
69         return owner;
70     }
71
72     public Date JavaDoc getStartDate() {
73         return startDate;
74     }
75
76     public Date JavaDoc getEndDate() {
77         return endDate;
78     }
79
80 }
81
Popular Tags