Created
December 19, 2012 16:14
-
-
Save lacolaco/4337913 to your computer and use it in GitHub Desktop.
This file contains 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 MainActivityModel | |
{ | |
public StringObservable message = new StringObservable(); | |
public MainActivityModel() | |
{ | |
message.set(""); | |
} | |
public Command hello = new Command() | |
{ | |
@Override | |
public void Invoke(View arg0, Object... arg1) | |
{ | |
} | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment