You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,10 +15,10 @@ How to implement
15
15
1. Create an interface for your <b>View</b> by extending [IView](library/src/main/java/eu/inloop/viewmodel/IView.java). We will call it IUserListView for this example.
16
16
17
17
```java
18
-
19
-
publicinterfaceIUserListViewextendsIView {
20
-
publicvoidshowUsers(List<User>users);
21
-
}
18
+
publicinterfaceIUserListViewextendsIView {
19
+
publicvoidshowUsers(List<User>users);
20
+
}
21
+
22
22
```
23
23
2. Create your <b>ViewModel</b> class by extending [AbstractViewModel](library/src/main/java/eu/inloop/viewmodel/AbstractViewModel.java). For example: <br/>
0 commit comments