name_ = name; value_ = null;
name_ = name; value_ = value;
boolean equal = false; if( other instanceof ResourceProperty ) { ResourceProperty otherProp = (ResourceProperty) other; equal = this.name_.equals(otherProp.getName()); } return equal;
return name_;
return value_;
return name_.hashCode();
value_ = value;
return "ResourceProperty : < " + getName() + " , " + getValue() + " >";