Lines Matching refs:_value
35 domListOfUInts _value;
39 * Gets the _value array.
40 * @return Returns a domListOfUInts reference of the _value array.
42 domListOfUInts &getValue() { return _value; }
44 * Gets the _value array.
45 * @return Returns a constant domListOfUInts reference of the _value array.
47 const domListOfUInts &getValue() const { return _value; }
49 * Sets the _value array.
50 * @param val The new value for the _value array.
52 void setValue( const domListOfUInts &val ) { _value = val; }
58 domP(DAE& dae) : daeElement(dae), _value() {}