public interface NumberNetServiceAsync
| Modifier and Type | Method and Description |
|---|---|
void |
addExpectedTable(java.lang.String name,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Adds the expected table.
|
void |
addNameToTable(java.lang.String name,
java.lang.String table,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Adds the name to table.
|
void |
getAllParticipants(com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<Participant>> callback)
Gets the all participants.
|
void |
getAllTargetsThatHaveOneOrMoreExpressions(com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<java.lang.Double>> callback)
Gets the all targets that have one or more expressions.
|
void |
getCalculatorAllKeyStatesForTable(java.lang.String tableName,
com.google.gwt.user.client.rpc.AsyncCallback<java.util.Map<CalculatorKey,java.lang.Boolean>> callback)
Gets the calculator all key states for table.
|
void |
getCalculatorKeyStateForTable(java.lang.String tableName,
CalculatorKey key,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Boolean> callback)
Gets the calculator key state for table.
|
void |
getExpectedTables(com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<java.lang.String>> callback)
Gets the expected tables.
|
void |
getExpressionsForPerson(java.lang.String person,
com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<Expression>> callback)
Gets the expressions for person.
|
void |
getExpressionsForTable(java.lang.String table,
com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<Expression>> callback)
Gets the expressions for table.
|
void |
getExpressionsForTarget(double target,
com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<Expression>> callback)
Gets the expressions for target.
|
void |
getNamesForTable(java.lang.String table,
com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<Participant>> callback)
Gets the names for table.
|
void |
getTableTargets(com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<TableTarget>> callback)
Gets the table targets.
|
void |
projectTable(java.lang.String table,
java.lang.String projector,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Project table.
|
void |
removeFromTable(java.lang.String name,
java.lang.String table,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Removes the from table.
|
void |
rotateTableContentAndTargets(java.util.List<TableTarget> to,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Rotate table content and targets.
|
void |
setCalculatorKeyStateForAllTables(CalculatorKey key,
boolean state,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Sets the calculator key state for all tables.
|
void |
setCalculatorKeyStateForTable(java.lang.String tableName,
CalculatorKey key,
boolean state,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Sets the calculator key state for table.
|
void |
setCalculatorVisibility(boolean visible,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Sets the calculator visibility.
|
void |
setCorrectExpressionsVisibleForAllTables(boolean shouldBeVisible,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Sets the correct expressions visible for all tables.
|
void |
setGraphingModeEnabled(boolean graphingModeOn,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Sets the graphing mode enabled.
|
void |
setIncorrectExpressionsVisibleForAllTables(boolean shouldBeVisible,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Sets the incorrect expressions visible for all tables.
|
void |
setOthersCorrectExpressionsVisibleForAllTables(boolean shouldBeVisible,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Sets the others correct expressions visible for all tables.
|
void |
setOthersIncorrectExpressionsVisibleForAllTables(boolean shouldBeVisible,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Sets the others incorrect expressions visible for all tables.
|
void |
setProjectorDisplayMode(java.lang.String projector,
ProjectionDisplayMode mode,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Sets the projector display mode.
|
void |
setScoresVisibleForAllTables(boolean shouldBeVisible,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> asyncCallback)
Sets the scores visible for all tables.
|
void |
setTableInputEnabled(boolean enabled,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Sets the table input enabled.
|
void |
setTableTargets(java.util.List<TableTarget> targets,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Sets the table targets.
|
void |
setUnifyRotationModeEnabled(java.lang.String projector,
boolean enabled,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Sets the unify rotation mode enabled.
|
void |
updatePositionInformationFromProjector(java.lang.String projector,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Update position information from projector.
|
void addExpectedTable(java.lang.String name,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
name - the namecallback - the callbackvoid addNameToTable(java.lang.String name,
java.lang.String table,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
name - the nametable - the tablecallback - the callbackvoid getAllParticipants(com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<Participant>> callback)
callback - the callbackvoid getAllTargetsThatHaveOneOrMoreExpressions(com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<java.lang.Double>> callback)
callback - the callbackvoid getCalculatorAllKeyStatesForTable(java.lang.String tableName,
com.google.gwt.user.client.rpc.AsyncCallback<java.util.Map<CalculatorKey,java.lang.Boolean>> callback)
tableName - the table namecallback - the callbackvoid getCalculatorKeyStateForTable(java.lang.String tableName,
CalculatorKey key,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Boolean> callback)
tableName - the table namekey - the keycallback - the callbackvoid getExpectedTables(com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<java.lang.String>> callback)
callback - the callbackvoid getExpressionsForPerson(java.lang.String person,
com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<Expression>> callback)
person - the personcallback - the callbackvoid getExpressionsForTable(java.lang.String table,
com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<Expression>> callback)
table - the tablecallback - the callbackvoid getExpressionsForTarget(double target,
com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<Expression>> callback)
target - the targetcallback - the callbackvoid getNamesForTable(java.lang.String table,
com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<Participant>> callback)
table - the tablecallback - the callbackvoid getTableTargets(com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<TableTarget>> callback)
callback - the callbackvoid projectTable(java.lang.String table,
java.lang.String projector,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
table - the tableprojector - the projectorcallback - the callbackvoid removeFromTable(java.lang.String name,
java.lang.String table,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
name - the nametable - the tablecallback - the callbackvoid rotateTableContentAndTargets(java.util.List<TableTarget> to, com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
to - the tocallback - the callbackvoid setCalculatorKeyStateForAllTables(CalculatorKey key, boolean state, com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
key - the keystate - the statecallback - the callbackvoid setCalculatorKeyStateForTable(java.lang.String tableName,
CalculatorKey key,
boolean state,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
tableName - the table namekey - the keystate - the statecallback - the callbackvoid setCalculatorVisibility(boolean visible,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
visible - the visiblecallback - the callbackvoid setCorrectExpressionsVisibleForAllTables(boolean shouldBeVisible,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
shouldBeVisible - the should be visiblecallback - the callbackvoid setGraphingModeEnabled(boolean graphingModeOn,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
graphingModeOn - the graphing mode oncallback - the callbackvoid setIncorrectExpressionsVisibleForAllTables(boolean shouldBeVisible,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
shouldBeVisible - the should be visiblecallback - the callbackvoid setOthersCorrectExpressionsVisibleForAllTables(boolean shouldBeVisible,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
shouldBeVisible - the should be visiblecallback - the callbackvoid setOthersIncorrectExpressionsVisibleForAllTables(boolean shouldBeVisible,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
shouldBeVisible - the should be visiblecallback - the callbackvoid setProjectorDisplayMode(java.lang.String projector,
ProjectionDisplayMode mode,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
projector - the projectormode - the modecallback - the callbackvoid setScoresVisibleForAllTables(boolean shouldBeVisible,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> asyncCallback)
shouldBeVisible - the should be visibleasyncCallback - the async callbackvoid setTableInputEnabled(boolean enabled,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
enabled - the enabledcallback - the callbackvoid setTableTargets(java.util.List<TableTarget> targets, com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
targets - the targetscallback - the callbackvoid setUnifyRotationModeEnabled(java.lang.String projector,
boolean enabled,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
projector - the projectorenabled - the enabledcallback - the callbackvoid updatePositionInformationFromProjector(java.lang.String projector,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
projector - the projectorcallback - the callback