|
|
@ -45,6 +45,7 @@ import java.util.List;
|
|
|
|
@XmlType(name = "Feature", propOrder = {
|
|
|
|
@XmlType(name = "Feature", propOrder = {
|
|
|
|
"name",
|
|
|
|
"name",
|
|
|
|
"description",
|
|
|
|
"description",
|
|
|
|
|
|
|
|
"tooltip",
|
|
|
|
"operation",
|
|
|
|
"operation",
|
|
|
|
"metaData"
|
|
|
|
"metaData"
|
|
|
|
})
|
|
|
|
})
|
|
|
@ -56,6 +57,9 @@ public class Feature {
|
|
|
|
@XmlElement(name = "Description", required = true)
|
|
|
|
@XmlElement(name = "Description", required = true)
|
|
|
|
protected String description;
|
|
|
|
protected String description;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@XmlElement(name = "Tooltip", required = false)
|
|
|
|
|
|
|
|
protected String tooltip;
|
|
|
|
|
|
|
|
|
|
|
|
@XmlElement(name = "Operation")
|
|
|
|
@XmlElement(name = "Operation")
|
|
|
|
protected Operation operation;
|
|
|
|
protected Operation operation;
|
|
|
|
|
|
|
|
|
|
|
@ -117,6 +121,31 @@ public class Feature {
|
|
|
|
this.description = value;
|
|
|
|
this.description = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Gets the value of the tooltip property.
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @return
|
|
|
|
|
|
|
|
* possible object is
|
|
|
|
|
|
|
|
* {@link String }
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public String getTooltip() {
|
|
|
|
|
|
|
|
return tooltip;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Sets the value of the tooltip property.
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param value
|
|
|
|
|
|
|
|
* allowed object is
|
|
|
|
|
|
|
|
* {@link String }
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public void setTooltip(String value) {
|
|
|
|
|
|
|
|
this.tooltip = value;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Gets the value of the operation property.
|
|
|
|
* Gets the value of the operation property.
|
|
|
|
*
|
|
|
|
*
|
|
|
|