Add missing Javadocs to License, Media, and Utils classes (#1965)

* Add missing Javadocs to License, Media, and Utils classes
This commit is contained in:
Reid 2018-12-20 16:12:18 -05:00 committed by Adam Jones
parent f521e8886d
commit 809c0c32d7
6 changed files with 43 additions and 2 deletions

View file

@ -414,10 +414,17 @@ public class Media implements Parcelable {
parcel.writeMap(descriptions);
}
/**
* Set requested deletion to true
*/
public void setRequestedDeletion(){
requestedDeletion = true;
}
/**
* Get the value of requested deletion
* @return boolean requestedDeletion
*/
public boolean getRequestedDeletion(){
return requestedDeletion;
}