Added "@since 0.8.13" tags to the only two methods in WizardBean

This commit is contained in:
str4d
2012-02-03 17:10:44 +00:00
parent 8cbf94f9eb
commit 7461d8c1f1

View File

@ -13,11 +13,12 @@ public class WizardBean extends EditBean {
/**
* Whether the tunnel being set up is a client tunnel or not.
*
* @since 0.8.13
*/
public void setIsClient(String isClient) {
_isClient = Boolean.valueOf(isClient);
}
/** @since 0.8.13 */
public boolean getIsClient() {
return _isClient;
}