}
/**
- * Returns whether this comment is visible.
+ * Sets whether this comment is visible.
*
* @param visible <code>true</code> if the comment is visible, <code>false</code> otherwise
*/
}
/**
- * Sets whether this comment is visible.
+ * Returns whether this comment is visible.
*
* @return <code>true</code> if the comment is visible, <code>false</code> otherwise
*/
public interface Comment {
/**
- * Returns whether this comment is visible.
+ * Sets whether this comment is visible.
*
* @param visible <code>true</code> if the comment is visible, <code>false</code> otherwise
*/
void setVisible(boolean visible);
/**
- * Sets whether this comment is visible.
+ * Returns whether this comment is visible.
*
* @return <code>true</code> if the comment is visible, <code>false</code> otherwise
*/
}
/**
- * @return whether the comment is visible
+ * Returns whether this comment is visible.
+ *
+ * @return <code>true</code> if the comment is visible, <code>false</code> otherwise
*/
@Override
public boolean isVisible() {
}
/**
- * @param visible whether the comment is visible
+ * Sets whether this comment is visible.
+ *
+ * @param visible <code>true</code> if the comment is visible, <code>false</code> otherwise
*/
@Override
public void setVisible(boolean visible) {