Labyrinth
A labyrinth game assignment
|
Class to create ranges of numbers. More...
Protected Attributes | |
protected data types | |
ArrayList< Integer > | numbers |
handle to range More... | |
Package Functions | |
Range (int begin, int end) | |
Create the range [begin, end) More... | |
Range (int begin, int end, int step) | |
Create the range [begin, end) using step as interval between items. More... | |
int | get () |
Extract and return the first item from the range. More... | |
Private Member Functions | |
void | init (int begin, int end, int step) |
Common utility to create the range for all constructors. More... | |
Class to create ranges of numbers.
Definition at line 164 of file Common.java.
|
package |
Create the range [begin, end)
begin | The first item on the range |
end | The item after the last on the range |
Definition at line 170 of file Common.java.
|
package |
Create the range [begin, end) using step as interval between items.
begin | The first item on the range |
end | The item after the last on the range |
step | The interval between items |
Definition at line 180 of file Common.java.
|
package |
Extract and return the first item from the range.
Definition at line 197 of file Common.java.
|
private |
Common utility to create the range for all constructors.
Definition at line 188 of file Common.java.
|
protected |
handle to range
Definition at line 205 of file Common.java.