01: package com.jeta.forms.store.jml;
02:
03: public class PrimitiveHolder {
04: private Object m_value;
05:
06: public PrimitiveHolder() {
07: }
08:
09: public PrimitiveHolder(Object value) {
10: m_value = value;
11: }
12:
13: public Object getPrimitive() {
14: return m_value;
15: }
16:
17: public String getPrimitiveClassName() {
18: return m_value == null ? "null" : m_value.getClass().getName();
19: }
20:
21: }
|