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
    String getContent()
    Get the (HTML) contents of the section.
    String getContentStyle()
    Extra CSS style attributes that will be added to the style attribute of the content section tag.
    String getHideClazz()
    Additional class attribute of the main section tag that is used when the section is hidden.
    String getId()
    ID attribute of the main section tag.
    String getShowClazz()
    Additional class attribute of the main section tag that is used when the section is visible.
    String getStyle()
    Extra CSS style attributes that will be added to the style attribute of the main section tag.
    String getTitle()
    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.