Class LineSeriesItem<I extends Serializable,V extends Serializable>
- java.lang.Object
-
- org.wicketstuff.jqplot.lib.data.item.LineSeriesItem<I,V>
-
- Type Parameters:
I- index of seriesV- value of series
- All Implemented Interfaces:
Serializable,BaseItem
public class LineSeriesItem<I extends Serializable,V extends Serializable> extends Object implements BaseItem
LineSeriesItem's data.- Author:
- inaiat
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LineSeriesItem()Instantiates a new line series item.LineSeriesItem(I index, V value)Instantiates a new line series item.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IgetIndex()Gets the index.VgetValue()Gets the value.voidsetIndex(I index)Sets the index.voidsetValue(V value)Sets the value.
-
-
-
Method Detail
-
getIndex
public I getIndex()
Gets the index.- Returns:
- the index
-
setIndex
public void setIndex(I index)
Sets the index.- Parameters:
index- the new index
-
getValue
public V getValue()
Gets the value.- Returns:
- the value
-
setValue
public void setValue(V value)
Sets the value.- Parameters:
value- the new value
-
-