This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class LinkedList { | |
| Node nodeObject; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Node { | |
| int value; | |
| Node nextNode; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| synchronized (MainActivity.this) | |
| { | |
| if(eventCallback!=null) | |
| { | |
| Log.d(TAG, "onCreate: "+"callback triggered "); | |
| eventCallback.showMessage(); | |
| } | |
| } |
NewerOlder