Class OMColumnTransformer


  • public class OMColumnTransformer
    extends Object
    Sets the class names and packages for the OM model. The id method attribute must already be set on the parent table element when this transformer is called.
    • Constructor Detail

      • OMColumnTransformer

        public OMColumnTransformer()
    • Method Detail

      • setAttributeDefaultValues

        protected void setAttributeDefaultValues​(SourceElement columnElement)
        Sets default values for attributes of the column element if the attribute is not set. The following attributes are checked: autoIncrement, protected, inheritance, required, primaryKey
        Parameters:
        columnElement - the column element, not null.
      • setAccessModifierAttributes

        protected void setAccessModifierAttributes​(SourceElement columnElement)
        Sets the attributes getterAccessModifier and setterAccessModifer on the column element.
        Parameters:
        columnElement - the column element, not null.
      • checkElementName

        protected void checkElementName​(SourceElement columnElement)
        Checks that the name of the column element is correct.
        Parameters:
        columnElement - the column element, not null.
        Throws:
        IllegalArgumentException - if the element name is wrong.
      • setFieldNameAttribute

        protected void setFieldNameAttribute​(SourceElement columnElement)
        Sets the fieldName attribute of the column element if it is not already set. The javaName attribute of the column must be set.
        Parameters:
        columnElement - the column element, not null.
      • setPeerColumnNameAttribute

        protected void setPeerColumnNameAttribute​(SourceElement columnElement)
        Sets the peerColumnName attribute of the column element if it is not already set.
        Parameters:
        columnElement - the column element, not null.
      • setQualifiedColumnNameAttribute

        protected void setQualifiedColumnNameAttribute​(SourceElement columnElement)
        Sets the qualifiedColumnName attribute of the column element if it is not already set.
        Parameters:
        columnElement - the column element, not null.
      • setGetterNameAttribute

        protected void setGetterNameAttribute​(SourceElement columnElement,
                                              JavaType javaType,
                                              ControllerState controllerState)
        Sets the getterName attribute of the column element if it is not already set. The fieldName attribute of the column element must already be set.
        Parameters:
        columnElement - the column element, not null.
        javaType - the java type of the column, not null.
        controllerState - the controller state, not null.
      • setSetterNameAttribute

        protected void setSetterNameAttribute​(SourceElement columnElement)
        Sets the setterName attribute of the column element if it is not already set. The fieldName attribute of the column element must already be set.
        Parameters:
        columnElement - the column element, not null.
      • setPrimitiveTypeAttribute

        protected void setPrimitiveTypeAttribute​(SourceElement columnElement,
                                                 JavaType javaType)
        Sets the primitiveType attribute of the column element if it is not already set.
        Parameters:
        columnElement - the column element, not null.
        javaType - the type of the java field corresponding to the column, not null.
      • setNumberTypeAttribute

        protected void setNumberTypeAttribute​(SourceElement columnElement,
                                              JavaType javaType)
        Sets the numberType attribute of the column element if it is not already set.
        Parameters:
        columnElement - the column element, not null.
        javaType - the type of the java field corresponding to the column, not null.
      • setDefaultValueAttribute

        protected void setDefaultValueAttribute​(SourceElement columnElement,
                                                JavaType javaType,
                                                ControllerState controllerState)
                                         throws SourceTransformerException
        Sets the defaultValue attribute of the column element if it is not already set.
        Parameters:
        columnElement - the column element, not null.
        javaType - the type of the java field corresponding to the column, not null.
        controllerState - the ControllerState, not null.
        Throws:
        SourceTransformerException - if an unknown primitive type is encountered
      • setUseDatabaseDefaultValueAttribute

        protected void setUseDatabaseDefaultValueAttribute​(SourceElement columnElement)
        Sets the useDatabaseDefaultValue attribute of the column element to its default "false" if it is not already set.
        Parameters:
        columnElement - the column element, not null.
      • setResultSetGetterAttribute

        protected void setResultSetGetterAttribute​(SourceElement columnElement,
                                                   SchemaType schemaType)
        Sets the resultSetGetter attribute of the column element if it is not already set. If the resultSetGetter is a string value, it is converted to a ResultSetGetter value.
        Parameters:
        columnElement - the column element, not null.
        schemaType - the schema type of the column, not null.
      • setSampleObjectAttribute

        protected void setSampleObjectAttribute​(SourceElement columnElement,
                                                SchemaType schemaType)
        Sets the sampleObject attribute of the column element if it is not already set.
        Parameters:
        columnElement - the column element, not null.
        schemaType - the schema type of the column, not null.