diff options
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/transport/CredentialItem.java')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/transport/CredentialItem.java | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/CredentialItem.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/CredentialItem.java index 2b09424526..32852890c0 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/CredentialItem.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/CredentialItem.java @@ -109,14 +109,20 @@ public abstract class CredentialItem { value = null; } - /** @return the current value */ + /** + * Get value + * + * @return the current value + */ public String getValue() { return value; } /** + * Set value * * @param newValue + * the new value */ public void setValue(String newValue) { value = newValue; @@ -214,7 +220,11 @@ public abstract class CredentialItem { value = false; } - /** @return the current value */ + /** + * Get value + * + * @return the current value + */ public boolean getValue() { return value; } @@ -223,6 +233,7 @@ public abstract class CredentialItem { * Set the new value. * * @param newValue + * the new value */ public void setValue(boolean newValue) { value = newValue; |