Class DatabaseObjectRenderingDescription

java.lang.Object
net.sf.jailer.configuration.DatabaseObjectRenderingDescription

public class DatabaseObjectRenderingDescription extends Object
Describes how generic database objects are rendered (Functions, Procedures etc).
Author:
Ralf Wisser
  • Constructor Details

    • DatabaseObjectRenderingDescription

      public DatabaseObjectRenderingDescription()
      Constructor.
    • DatabaseObjectRenderingDescription

      public DatabaseObjectRenderingDescription(DatabaseObjectRenderingDescription other)
      Copy constructor.
      Parameters:
      other - the instance to copy from
  • Method Details

    • getListQuery

      public String getListQuery()
      Gets query for a list of all objects.
      Returns:
      query for a list of all objects
    • setListQuery

      public void setListQuery(String listQuery)
      Sets query for a list of all objects.
      Parameters:
      listQuery - query for a list of all objects
    • getItemDescription

      public DatabaseObjectRenderingDescription getItemDescription()
      Gets description of a list item.
      Returns:
      description of a list item
    • setItemDescription

      public void setItemDescription(DatabaseObjectRenderingDescription itemDescription)
      Sets description of a list item.
      Parameters:
      itemDescription - description of a list item
    • getTextQuery

      public String getTextQuery()
      Gets query for a textual representation of all objects.
      Returns:
      query for a textual representation of all objects
    • setTextQuery

      public void setTextQuery(String textQuery)
      Sets query for a textual representation of all objects.
      Parameters:
      textQuery - query for a textual representation of all objects
    • getName

      public String getName()
      Gets the name.
      Returns:
      the name
    • setName

      public void setName(String name)
      Sets the name.
      Parameters:
      name - the name
    • getIconURL

      public String getIconURL()
      Gets the icon URL.
      Returns:
      the icon URL
    • setIconURL

      public void setIconURL(String iconURL)
      Sets the icon URL.
      Parameters:
      iconURL - the icon URL to set
    • isCheap

      public boolean isCheap()
      Returns whether retrieving this object's details is considered cheap (not expensive).
      Returns:
      true if retrieving details is not expensive
    • setCheap

      public void setCheap(boolean cheap)
      Sets whether retrieving this object's details is considered cheap (not expensive).
      Parameters:
      cheap - true if retrieving details is not expensive