Skip to content

Instantly share code, notes, and snippets.

@lacolaco
Created December 19, 2012 16:14
Show Gist options
  • Save lacolaco/4337913 to your computer and use it in GitHub Desktop.
Save lacolaco/4337913 to your computer and use it in GitHub Desktop.
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