Versions Compared

Key

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

...

CustomElement.java

Code Block
themeEclipse

/**
 * Returns the author of the custom element.
 * @return the author of the custom element
 */
String getAuthor();

/**
 * Sets the author of the custom element.
 * @param author the author of the custom element to set
 */
void setAuthor(String author);

...

Note

In this example we do not persist the author. If we do did want to persist the value, we would define a business object (which has nothing to do with this panel) and persist the entered value in the onSubmit of the tab controller.

...