Class InlineListConfig


  • public class InlineListConfig
    extends java.lang.Object
    Represents an inline list to be shown on a Report page
    Author:
    radek
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Integer getLineLength()  
      java.lang.String getPath()  
      java.lang.Boolean getShowInHeader()  
      java.lang.Boolean getShowLinksToObjects()  
      void setLineLength​(java.lang.Integer lineLength)
      Sets the amount of entries to show based on their total length
      void setPath​(java.lang.String path)
      Path set from WebConfig, ie "probeSets.primaryIdentifier"
      void setShowInHeader​(java.lang.Boolean showInHeader)
      Show this list in the header?
      void setShowLinksToObjects​(java.lang.Boolean showLinksToObjects)
      Shall we show links to the objects's report pages?
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • InlineListConfig

        public InlineListConfig()
    • Method Detail

      • setPath

        public void setPath​(java.lang.String path)
        Path set from WebConfig, ie "probeSets.primaryIdentifier"
        Parameters:
        path - String
      • setShowLinksToObjects

        public void setShowLinksToObjects​(java.lang.Boolean showLinksToObjects)
        Shall we show links to the objects's report pages?
        Parameters:
        showLinksToObjects - set from WebConfig
      • setShowInHeader

        public void setShowInHeader​(java.lang.Boolean showInHeader)
        Show this list in the header?
        Parameters:
        showInHeader - Passed from WebConfig
      • setLineLength

        public void setLineLength​(java.lang.Integer lineLength)
        Sets the amount of entries to show based on their total length
        Parameters:
        lineLength - total character length (spaces, commas included!)
        See Also:
        number is approximate as we do not break inside the text
      • getLineLength

        public java.lang.Integer getLineLength()
        Returns:
        total character length (spaces, commas included) to show
        See Also:
        JavaScript (jQuery) expects non set values to be "0"
      • getPath

        public java.lang.String getPath()
        Returns:
        String path so that ReportObject can resolve the actual Objects
      • getShowLinksToObjects

        public java.lang.Boolean getShowLinksToObjects()
        Returns:
        are we to show links to the objects'? report page? the JSP asks...
      • getShowInHeader

        public java.lang.Boolean getShowInHeader()
        Returns:
        are we to show this inline list in the header of the report page?