Skip to content

Commit

Permalink
Fixed javadoc issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Zaiats committed May 16, 2016
1 parent 92ed558 commit bbe8cf6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

/**
* A delegate for Activities lifecycle.
* <p/>
* <p>
* The following methods must be invoked from the corresponding Activities lifecycle methods:
* <ul>
* <li>{@link #onCreate()}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,14 @@

/**
* The MvvmDelegate callback for activity.
* <p/>
* <p>
* This callback will be called from {@link ActivityDelegate}.
* It must be implemented by all Activities that you want to support library's mvvm.
* <p/>
*
* @param <T> the type of {@link ViewDataBinding}
* @param <S> the type of binded {@link MvvmViewModel}
* @author Andrei Zaiats
* @see {@link io.github.azaiats.androidmvvm.core.MvvmActivity} for example of implementation.
* @see io.github.azaiats.androidmvvm.core.MvvmActivity for example of implementation.
* @since 0.1.0
*/
public interface ActivityDelegateCallback<T extends ViewDataBinding, S extends MvvmViewModel>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

/**
* A base delegate for Activities/Fragments lifecycle.
* <p/>
* <p>
* The following methods must be invoked from the corresponding Activities lifecycle methods:
* <ul>
* <li>{@link #onCreate()}
Expand Down Expand Up @@ -62,7 +62,7 @@ public MvvmDelegate(DelegateCallback<T, S> callback) {

/**
* This method must be called from {@link android.app.Activity#onCreate(android.os.Bundle)}
* <p/>
* <p>
* Create a ViewDataBinding and a MvvmViewModel, attach them to the processed view.
*/
public void onCreate() {
Expand Down

0 comments on commit bbe8cf6

Please sign in to comment.