Class AuthorTableArguments
- java.lang.Object
-
- ro.sync.ecss.extensions.api.table.operations.AuthorTableArguments
-
@API(type=NOT_EXTENDABLE, src=PUBLIC) public class AuthorTableArguments extends java.lang.Object
Holds the arguments forAuthorTableOperationsHandler.handleCreateTable(AuthorTableArguments)
method.- Since:
- 21.1
-
-
Constructor Summary
Constructors Constructor Description AuthorTableArguments(AuthorAccess authorAccess, int insertOffset, int rows, int columns)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorAccess
getAuthorAccess()
int
getColumns()
int
getInsertOffset()
int
getRows()
-
-
-
Constructor Detail
-
AuthorTableArguments
public AuthorTableArguments(AuthorAccess authorAccess, int insertOffset, int rows, int columns)
Constructor.- Parameters:
authorAccess
- The Author access.insertOffset
- The offset where the rows are inserted.rows
- number of rows needed for the new table.columns
- number of columns needed for the new table.
-
-
Method Detail
-
getAuthorAccess
public AuthorAccess getAuthorAccess()
- Returns:
- Returns the access to Author operation.
-
getInsertOffset
public int getInsertOffset()
- Returns:
- Returns the offset where the rows are inserted.
-
getRows
public int getRows()
- Returns:
- Returns the rows.
-
getColumns
public int getColumns()
- Returns:
- Returns the columns.
-
-