Skip to content

Commit

Permalink
Update javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavpandey committed Jun 27, 2023
1 parent c5789ae commit ff31624
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,10 +291,20 @@ public void onDestroy() {
super.onDestroy();
}

/**
* Returns the dynamic hinge state.
*
* @return The dynamic hinge state.
*/
public @DynamicHinge int getHinge() {
return mHinge;
}

/**
* Set the dynamic hinge state.
*
* @param hinge The hinge state to be set.
*/
public void setHinge(@DynamicHinge int hinge) {
if (hinge != getHinge()) {
this.mHinge = hinge;
Expand Down

0 comments on commit ff31624

Please sign in to comment.