Class LayoutPosition
- java.lang.Object
-
- com.cosylab.vdct.graphics.objects.LayoutPosition
-
public class LayoutPosition extends Object
Doubly linked list for LayoutManager.- Author:
- ssah
-
-
Constructor Summary
Constructors Constructor Description LayoutPosition(int posX, int posY)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LayoutPosition
getNext()
int
getPosX()
int
getPosY()
LayoutPosition
getPrevious()
void
setNext(LayoutPosition next)
void
setPrevious(LayoutPosition previous)
-
-
-
Method Detail
-
getPrevious
public LayoutPosition getPrevious()
- Returns:
- the previous
-
setPrevious
public void setPrevious(LayoutPosition previous)
- Parameters:
previous
- the previous to set
-
getNext
public LayoutPosition getNext()
- Returns:
- the next
-
setNext
public void setNext(LayoutPosition next)
- Parameters:
next
- the next to set
-
getPosX
public int getPosX()
- Returns:
- the posX
-
getPosY
public int getPosY()
- Returns:
- the posY
-
-