Interface SectionAction

All Superinterfaces:
Action
All Known Implementing Classes:
IncludeContentSectionFactory.Section, SectionBean

public interface SectionAction extends Action
Action that inserts a new section in a jsp page.
Since:
3.2
Author:
Nicklas
Last modified
$Date$
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the (HTML) contents of the section.
    Extra CSS style attributes that will be added to the style attribute of the content section tag.
    Additional class attribute of the main section tag that is used when the section is hidden.
    ID attribute of the main section tag.
    Additional class attribute of the main section tag that is used when the section is visible.
    Extra CSS style attributes that will be added to the style attribute of the main section tag.
    Get the title of the section.
  • Method Details

    • getId

      String getId()
      ID attribute of the main section tag. You need to set this value to reference the tab in a javascript.
      Returns:
      The ID, or null
    • getShowClazz

      String getShowClazz()
      Additional class attribute of the main section tag that is used when the section is visible.
      Returns:
      Class attribute, or null to not use any additional class
    • getHideClazz

      String getHideClazz()
      Additional class attribute of the main section tag that is used when the section is hidden.
      Returns:
      Class attribute, or null to not use any additional class
    • getStyle

      String getStyle()
      Extra CSS style attributes that will be added to the style attribute of the main section tag.
      Returns:
      Style attributes, or null
    • getContentStyle

      String getContentStyle()
      Extra CSS style attributes that will be added to the style attribute of the content section tag.
      Returns:
      Style attributes, or null
    • getTitle

      String getTitle()
      Get the title of the section.
    • getContent

      String getContent()
      Get the (HTML) contents of the section.