Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

A calculated attribute is read only and based on other attributes inside the same element. 
Inside the java class create Customization Java Class create the following method:

Code Block
languagejava
@CalculatedAttr
public String getFullName(XMLDCElement employee) {
	return employee.get("firstName") + " " + employee.get("lastName");
}

...