Class View


  • public class View
    extends Object
    The model of the view tag in a Torque schema file.
    Version:
    $Id: $
    • Field Detail

      • parent

        public Database parent
        The database to which this view belongs.
      • optionList

        public List<Option> optionList
        The options for this view.
      • columnList

        public List<ViewColumn> columnList
        The columns of this view.
      • name

        public String name
        The view's name.
      • baseClass

        public String baseClass
        The base class of the data object class.
      • basePeer

        public String basePeer
        The base class of the peer class.
      • _abstract

        public Boolean _abstract
        Whether the data object class is abstract.
      • javaName

        public String javaName
        The unqualified name of the data object class. If null, the class name will be determined from the name attribute.
      • sqlSuffix

        public String sqlSuffix
        The remainder of the sql for the view after column definitions.
      • createSql

        public String createSql
        The complete SQL for creating the view. If set, overrides all other means of generating the SQL for view creation.
      • skipSql

        public Boolean skipSql
        Whether sql generation should be skipped.
      • description

        public String description
        A description of the view.
    • Constructor Detail

      • View

        public View()