blob: d99a3e311965dcd3d055f2af067a0ba5256abbfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package com.c2kernel.lifecycle.instance.predefined.entitycreation;
/**
* New Properties for the item
*
* @version $Revision: 1.1 $ $Date: 2005/04/28 13:48:26 $
*/
public class Property implements java.io.Serializable {
public String name;
public String value;
//----------------/
//- Constructors -/
//----------------/
public Property() {
super();
}
public Property(String name, String value) {
super();
this.name = name;
this.value = value;
}
}
|