Skip to content
This repository has been archived by the owner on Mar 21, 2021. It is now read-only.

Commit

Permalink
Fix javadoc issue in ui
Browse files Browse the repository at this point in the history
  • Loading branch information
cxcorp committed Feb 24, 2017
1 parent 5c5cfc1 commit 37d7902
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public void fillData(long offset, long length) {
}

/**
* Fills a buffer of length {@code length} with the byte {@byte b}, then writes
* Fills a buffer of length {@code length} with the byte {@code b}, then writes
* it to the offset {@code offset}.
* {@inheritDoc}
* @throws MemoryAccessException if memory writing fails. See {@link MemoryWriter#write}.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
package cx.corp.lacuna.ui.view;

/**
* Represents a view in the MVP pattern.
* @param <TCallbacks> the type of the callbacks used by the view.
*/
public interface View<TCallbacks> {
/**
* Attaches the provided callbacks to this view.
* @param callbacks the callbacks.
*/
void attach(TCallbacks callbacks);
}

0 comments on commit 37d7902

Please sign in to comment.