Revision b36227cd
Added by Leszek Koltunski about 3 years ago
src/main/java/org/distorted/library/main/InternalStackFrame.java | ||
---|---|---|
27 | 27 |
|
28 | 28 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
29 | 29 |
/** |
30 |
* Implements a single 'frame' of all varaibles needed to remember the internal state of the library.
|
|
30 |
* Implements a single 'frame' of all variables needed to remember the internal state of the library.
|
|
31 | 31 |
* Such a frame must be remembered in a list whenever current Activity using the library fires off |
32 | 32 |
* another Activity which also wants to use the library. When that happens, we create a new 'frame', |
33 | 33 |
* remember the old one. When the second Activity ends and we come back to the first, we destroy the |
src/main/java/org/distorted/library/main/InternalStackFrameList.java | ||
---|---|---|
23 | 23 |
|
24 | 24 |
import java.util.ArrayList; |
25 | 25 |
import java.util.HashMap; |
26 |
import java.util.Set; |
|
27 | 26 |
|
28 | 27 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
29 | 28 |
/** |
Also available in: Unified diff
Minor.