Browse Source

Add documentation for BookmarkUiModel

master
anthony restaino 7 years ago
parent
commit
6ca31c61cf
  1. 18
      app/src/main/java/acr/browser/lightning/activity/BookmarkUiModel.java

18
app/src/main/java/acr/browser/lightning/activity/BookmarkUiModel.java

@ -14,14 +14,32 @@ public class BookmarkUiModel { @@ -14,14 +14,32 @@ public class BookmarkUiModel {
@Nullable private String mCurrentFolder;
/**
* Sets the current folder that is being shown.
* Use null as the root folder.
*
* @param folder the current folder, null for root.
*/
public void setCurrentFolder(@Nullable String folder) {
mCurrentFolder = folder;
}
/**
* Determines if the current folder is
* the root folder.
*
* @return true if the current folder is
* the root, false otherwise.
*/
public boolean isRootFolder() {
return mCurrentFolder == null;
}
/**
* Gets the current folder that is being shown.
*
* @return the current folder, null for root.
*/
@Nullable
public String getCurrentFolder() {
return mCurrentFolder;

Loading…
Cancel
Save