HandyTapestry navigations

The plugin adds helpful navigations in the HTML template:
  1. jwcid attribute value (component type)
  2. jwcid attribute value (component reference)
  3. OGNL expressions
  4. listener name
  5. page attribute value
  6. script attribute value
  7. asset
  8. message key
  9. key attribute value
  10. constant in OGNL
  11. component: expression
Most navigations are available in the attribute values of the Tapestry component (tag with jwcid attribute). But the key attribute value navigation is available for all tags.
  1. Navigation from component type to the component template, or to the class for components without template:
    jwcid (component type)
  2. Navigation from component reference to the component declaration:
    jwcid (component reference)
  3. Navigation from OGNL expression to the property or method in the Java class:
    Ognl expression to Property declaration
  4. Navigation from listener name to the listener method in the Java class:
    Listener name to Listener declaration
  5. Navigation from page name in the link to the page template:
    Page attribute value
  6. Navigation from script name to the script file:
    Script attribute value
  7. Navigation from asset property name to the asset property in the java file:
    Asset property name to Asset property
  8. Navigation from message key to the property in the properties file:
    Message key to Property
  9. Navigation from key attribute value to the property in the properties file:
    Key attribute value to Property
  10. Navigation from constant in OGNL to the property in the java file:
    Constant in OGNL to property