Class FilterDetailsFormattingEditorTransform

    • Constructor Detail

      • FilterDetailsFormattingEditorTransform

        public FilterDetailsFormattingEditorTransform()
    • Method Detail

      • getSupportedBeanType

        public java.lang.Class getSupportedBeanType()
        Description copied from class: AbstractAppTransform
        Returns the supported bean type. This abstract Transform supports all WebComponents so every sub-class should override this method to return the class of the Bean the Transform is expecting, for example:
         public class CustomReportClass extends AbstractAppTransform {
        
            public Class getSupportedBeanType() {
                //This Transform is expected to work only with a ReportBean,
                //therefore this method needs to return this class:
                return ReportBean.class;
            }
        
         }
         
        Specified by:
        getSupportedBeanType in interface Transform
        Overrides:
        getSupportedBeanType in class AbstractAppTransform
        Returns:
        a root class/interface supported by this transform.
      • renderShowANForList

        public void renderShowANForList​(MarkupOutput out)
      • renderShowANForAEPrompts

        public void renderShowANForAEPrompts​(MarkupOutput out)
      • renderShowCarriageReturnAfterAN

        public void renderShowCarriageReturnAfterAN​(MarkupOutput out)
      • renderShowCarriageReturnBetweenElements

        public void renderShowCarriageReturnBetweenElements​(MarkupOutput out)
      • renderTrimElements

        public void renderTrimElements​(MarkupOutput out)
      • renderUseNamesOrSymbols

        public void renderUseNamesOrSymbols​(MarkupOutput out)
      • renderIncludeAFNamesInAQConditions

        public void renderIncludeAFNamesInAQConditions​(MarkupOutput out)
      • renderParanthesisAroundConditions

        public void renderParanthesisAroundConditions​(MarkupOutput out)
      • renderCarriageReturnBetweenConditions

        public void renderCarriageReturnBetweenConditions​(MarkupOutput out)
      • renderLogicalOperatorBetweenConditions

        public void renderLogicalOperatorBetweenConditions​(MarkupOutput out)
      • renderExpandShortcutFilters

        public void renderExpandShortcutFilters​(MarkupOutput out)
      • renderUseDelimitersAroundMDObjNames

        public void renderUseDelimitersAroundMDObjNames​(MarkupOutput out)
      • getDescription

        public java.lang.String getDescription()
        Description copied from interface: Transform
        Returns a textual description of the transform.
        Specified by:
        getDescription in interface Transform
        Returns:
        The textual description of the transform.