yuxc
2025-01-15 c09f81131e8b7c83937206d7cf76f34d2020be75
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.vci.client.workflow.editor.ui;
 
import java.io.Serializable;
 
public class PropertyObject implements Serializable {
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    
    private String property;
    private String value;
 
    public PropertyObject() {
    }
 
    public PropertyObject(String property, String value) {
        this.property = property;
        this.value = value;
    }
 
    public String getProperty() {
        return property;
    }
 
    public void setProperty(String property) {
        this.property = property;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    @Override
    public String toString() {
        return value;
    }
}