]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/core/execution/RefSpecAttribute.java
Remove eclipse project definitions
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / org / argeo / slc / core / execution / RefSpecAttribute.java
1 package org.argeo.slc.core.execution;
2
3 public class RefSpecAttribute extends AbstractSpecAttribute {
4 private Class targetClass;
5 /** Read only. */
6 private String targetClassName;
7 private Object value = null;
8
9 public Object getValue() {
10 return value;
11 }
12
13 public void setValue(Object value) {
14 this.value = value;
15 }
16
17 public Class getTargetClass() {
18 return targetClass;
19 }
20
21 public void setTargetClass(Class targetClass) {
22 this.targetClass = targetClass;
23 this.targetClassName = targetClass.getName();
24 }
25
26 public String getTargetClassName() {
27 return targetClassName;
28 }
29
30 }