-
-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Array2DTracer
Jason Park edited this page Jul 13, 2018
·
1 revision
Visualize a two-dimensional array into a table. Usage
Name | Description | |
---|---|---|
Array2DTracer | Create an Array2DTracer object. | Usage |
new Array2DTracer(String title = "Array2DTracer") |
||
set | Set array2d to visualize. |
Usage |
Array2DTracer set(Object[][] array2d = []) |
||
reset | Reset data. | Usage |
Array2DTracer reset() |
||
delay | Pause to show changes in all tracers. | Usage |
Array2DTracer delay() |
||
patch | Notify that the value at (x , y ) has been changed to v . |
Usage |
Array2DTracer patch(int x, int y, Object v) |
||
depatch | Stop notifying that the value at (x , y ) has been changed. |
Usage |
Array2DTracer depatch(int x, int y) |
||
select | Select (x , y ). |
Usage |
Array2DTracer select(int x, int y) |
||
select | Select from (sx , sy ) to (ex , ey ). |
Usage |
Array2DTracer select(int sx, int sy, int ex, int ey) |
||
selectRow | Select from (x , sy ) to (x , ey ). |
Usage |
Array2DTracer selectRow(int x, int sy, int ey) |
||
selectCol | Select from (sx , y ) to (ex , y ). |
Usage |
Array2DTracer selectCol(int y, int sx, int ex) |
||
deselect | Stop selecting (x , y ). |
Usage |
Array2DTracer deselect(int x, int y) |
||
deselect | Stop selecting from (sx , sy ) to (ex , ey ). |
Usage |
Array2DTracer deselect(int sx, int sy, int ex, int ey) |
||
deselectRow | Stop selecting from (x , sy ) to (x , ey ). |
Usage |
Array2DTracer deselectRow(int x, int sy, int ey) |
||
deselectCol | Stop selecting from (sx , y ) to (ex , y ). |
Usage |
Array2DTracer deselectCol(int y, int sx, int ex) |