Class AuthorTableInsertRowArguments
- java.lang.Object
-
- ro.sync.ecss.extensions.api.table.operations.AuthorTableInsertRowArguments
-
@API(type=NOT_EXTENDABLE, src=PUBLIC) public class AuthorTableInsertRowArguments extends java.lang.Object
Holds the arguments forAuthorTableOperationsHandler.handlePasteRows(AuthorTableInsertRowArguments)
method.- Since:
- 21
-
-
Constructor Summary
Constructors Constructor Description AuthorTableInsertRowArguments(AuthorAccess authorAccess, AuthorDocumentFragment[] rowFragments, int insertOffset)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorAccess
getAuthorAccess()
int
getInsertOffset()
AuthorDocumentFragment[]
getRowFragments()
-
-
-
Constructor Detail
-
AuthorTableInsertRowArguments
public AuthorTableInsertRowArguments(AuthorAccess authorAccess, AuthorDocumentFragment[] rowFragments, int insertOffset)
Constructor.- Parameters:
authorAccess
- The Author access.rowFragments
- The array containing the rows nodes that are insertedinsertOffset
- The offset where the rows are inserted.
-
-
Method Detail
-
getAuthorAccess
public AuthorAccess getAuthorAccess()
- Returns:
- Returns the access to Author operation.
-
getRowFragments
public AuthorDocumentFragment[] getRowFragments()
- Returns:
- Returns the array containing the row nodes that are inserted.
-
getInsertOffset
public int getInsertOffset()
- Returns:
- Returns the offset where the rows are inserted.
-
-