Fixed errors on javadoc

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/vre-management/smart-executor-client@157669 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2017-10-27 12:08:59 +00:00
parent a32bd84997
commit e1d5fee844
1 changed files with 4 additions and 4 deletions

View File

@ -20,28 +20,28 @@ public class Tuple<Name,Value> {
} }
/** /**
* @return the a * @return the name
*/ */
public Name getName() { public Name getName() {
return name; return name;
} }
/** /**
* @param a the a to set * @param name the name to set
*/ */
public void setName(Name name) { public void setName(Name name) {
this.name = name; this.name = name;
} }
/** /**
* @return the b * @return the value
*/ */
public Value getValue() { public Value getValue() {
return value; return value;
} }
/** /**
* @param b the b to set * @param value the value to set
*/ */
public void setValue(Value value) { public void setValue(Value value) {
this.value = value; this.value = value;