Class ValueWithPos<E>
- java.lang.Object
-
- de.knightsoftnet.validators.shared.data.ValueWithPos<E>
-
- Type Parameters:
E- Type of value
public class ValueWithPos<E> extends Object
bean with value and cursor position.- Author:
- Manfred Tremmel
-
-
Constructor Summary
Constructors Constructor Description ValueWithPos()default constructor.ValueWithPos(E pvalue, int ppos)constructor initializing fields.ValueWithPos(E poriginalValue, E pvalue, int ppos)constructor initializing fields.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)EgetOriginalValue()intgetPos()EgetValue()inthashCode()voidsetOriginalValue(E poriginalValue)voidsetPos(int ppos)voidsetValue(E pvalue)StringtoString()
-
-
-
Constructor Detail
-
ValueWithPos
public ValueWithPos()
default constructor.
-
ValueWithPos
public ValueWithPos(E pvalue, int ppos)
constructor initializing fields.- Parameters:
pvalue- value entryppos- cursor position
-
-