KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > jayasoft > ivy > status > Status


1 /*
2  * This file is subject to the licence found in LICENCE.TXT in the root directory of the project.
3  * Copyright Jayasoft 2005 - All rights reserved
4  *
5  * #SNAPSHOT#
6  */

7 package fr.jayasoft.ivy.status;
8
9 public class Status {
10     private String JavaDoc _name;
11     private boolean _integration;
12     
13     public Status() {
14     }
15     
16     public Status(String JavaDoc name, boolean integration) {
17         _name = name;
18         _integration = integration;
19     }
20     public boolean isIntegration() {
21         return _integration;
22     }
23     public void setIntegration(boolean integration) {
24         _integration = integration;
25     }
26     public String JavaDoc getName() {
27         return _name;
28     }
29     public void setName(String JavaDoc name) {
30         _name = name;
31     }
32 }
33
Popular Tags