public static class ExprModelTest.User extends Object implements Observable
Modifier and Type | Class and Description |
---|---|
static class |
ExprModelTest.User.InnerStaticClass |
Observable.OnPropertyChangedCallback
Modifier and Type | Field and Description |
---|---|
String |
comment |
int |
finalField |
static ExprModelTest.User.InnerStaticClass |
innerFinalStaticInstance |
static ExprModelTest.User.InnerStaticClass |
innerStaticInstance |
ExprModelTest.SubObj |
subObj |
Constructor and Description |
---|
User() |
Modifier and Type | Method and Description |
---|---|
void |
addOnPropertyChangedCallback(Observable.OnPropertyChangedCallback callback)
Adds a callback to listen for changes to the Observable.
|
ExprModelTest.SubObj |
getAnotherSubObj() |
boolean |
getCond(int i) |
String |
getLastName() |
String |
getName() |
boolean |
getUseComment() |
static boolean |
ourStaticMethod() |
void |
removeOnPropertyChangedCallback(Observable.OnPropertyChangedCallback callback)
Removes a callback from those listening for changes.
|
public final int finalField
public static ExprModelTest.User.InnerStaticClass innerStaticInstance
public static final ExprModelTest.User.InnerStaticClass innerFinalStaticInstance
public ExprModelTest.SubObj subObj
public String comment
public String getName()
public String getLastName()
public boolean getCond(int i)
public ExprModelTest.SubObj getAnotherSubObj()
public static boolean ourStaticMethod()
public boolean getUseComment()
public void addOnPropertyChangedCallback(Observable.OnPropertyChangedCallback callback)
Observable
addOnPropertyChangedCallback
in interface Observable
callback
- The callback to start listening.public void removeOnPropertyChangedCallback(Observable.OnPropertyChangedCallback callback)
Observable
removeOnPropertyChangedCallback
in interface Observable
callback
- The callback that should stop listening.