Package io.keikai.doc.collab.types
Class ItemTextListPosition
- java.lang.Object
-
- io.keikai.doc.collab.types.ItemTextListPosition
-
public class ItemTextListPosition extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ItemTextListPosition(Item left, Item right, int index, java.util.Map<java.lang.String,java.lang.Object> currentAttributes)Constructor for ItemTextListPosition.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidforward()Only call this if you know that this.right is defined.java.util.Map<java.lang.String,java.lang.Object>getCurrentAttributes()intgetIndex()ItemgetLeft()ItemgetRight()voidsetIndex(int index)voidsetLeft(Item left)voidsetRight(Item right)
-
-
-
Constructor Detail
-
ItemTextListPosition
public ItemTextListPosition(Item left, Item right, int index, java.util.Map<java.lang.String,java.lang.Object> currentAttributes)
Constructor for ItemTextListPosition.- Parameters:
left- The item to the left.right- The item to the right.index- The index position.currentAttributes- The current attributes at this position.
-
-
Method Detail
-
forward
public void forward()
Only call this if you know that this.right is defined.
-
getLeft
public Item getLeft()
-
setLeft
public void setLeft(Item left)
-
getRight
public Item getRight()
-
setRight
public void setRight(Item right)
-
getIndex
public int getIndex()
-
setIndex
public void setIndex(int index)
-
getCurrentAttributes
public java.util.Map<java.lang.String,java.lang.Object> getCurrentAttributes()
-
-