Exemplo n.º 1
0
 /**
  * @return the type for the record with BLOBs class. Note that the value will be calculated
  *     regardless of whether the table has BLOB columns or not.
  */
 public String getRecordWithBLOBsType() {
   return internalAttributes.get(InternalAttribute.ATTR_RECORD_WITH_BLOBS_TYPE);
 }
Exemplo n.º 2
0
 public String getDeleteByPrimaryKeyStatementId() {
   return internalAttributes.get(InternalAttribute.ATTR_DELETE_BY_PRIMARY_KEY_STATEMENT_ID);
 }
Exemplo n.º 3
0
 public String getCountByExampleStatementId() {
   return internalAttributes.get(InternalAttribute.ATTR_COUNT_BY_EXAMPLE_STATEMENT_ID);
 }
Exemplo n.º 4
0
 public String getSelectByPrimaryKeyStatementId() {
   return internalAttributes.get(InternalAttribute.ATTR_SELECT_BY_PRIMARY_KEY_STATEMENT_ID);
 }
Exemplo n.º 5
0
 public String getSelectByExampleStatementId() {
   return internalAttributes.get(InternalAttribute.ATTR_SELECT_BY_EXAMPLE_STATEMENT_ID);
 }
Exemplo n.º 6
0
 public String getUpdateByPrimaryKeyWithBLOBsStatementId() {
   return internalAttributes.get(
       InternalAttribute.ATTR_UPDATE_BY_PRIMARY_KEY_WITH_BLOBS_STATEMENT_ID);
 }
Exemplo n.º 7
0
 public String getUpdateByExampleWithBLOBsStatementId() {
   return internalAttributes.get(InternalAttribute.ATTR_UPDATE_BY_EXAMPLE_WITH_BLOBS_STATEMENT_ID);
 }
Exemplo n.º 8
0
 public String getIbatis2SqlMapNamespace() {
   return internalAttributes.get(InternalAttribute.ATTR_IBATIS2_SQL_MAP_NAMESPACE);
 }
Exemplo n.º 9
0
 public String getMyBatis3FallbackSqlMapNamespace() {
   return internalAttributes.get(InternalAttribute.ATTR_MYBATIS3_FALLBACK_SQL_MAP_NAMESPACE);
 }
Exemplo n.º 10
0
 public String getExtjsControllerType() {
   return internalAttributes.get(InternalAttribute.ATTR_EXTJS_CONTROLLER_TYPE);
 }
Exemplo n.º 11
0
 /**
  * Calculates an SQL Map file name for the table. Typically the name is "XXXX_SqlMap.xml" where
  * XXXX is the fully qualified table name (delimited with underscores).
  *
  * @return the name of the SqlMap file
  */
 public String getIbatis2SqlMapFileName() {
   return internalAttributes.get(InternalAttribute.ATTR_IBATIS2_SQL_MAP_FILE_NAME);
 }
Exemplo n.º 12
0
 public String getExtjsGridType() {
   return internalAttributes.get(InternalAttribute.ATTR_EXTJS_GRID_TYPE);
 }
Exemplo n.º 13
0
 public String getExtjsStoreType() {
   return internalAttributes.get(InternalAttribute.ATTR_EXTJS_STORE_TYPE);
 }
Exemplo n.º 14
0
 public String getExtjsModelType() {
   return internalAttributes.get(InternalAttribute.ATTR_EXTJS_MODEL_TYPE);
 }
Exemplo n.º 15
0
 public String getResultMapWithBLOBsId() {
   return internalAttributes.get(InternalAttribute.ATTR_RESULT_MAP_WITH_BLOBS_ID);
 }
Exemplo n.º 16
0
 /**
  * Calculates the package for the current table.
  *
  * @return the package for the SqlMap for the current table
  */
 public String getIbatis2SqlMapPackage() {
   return internalAttributes.get(InternalAttribute.ATTR_IBATIS2_SQL_MAP_PACKAGE);
 }
Exemplo n.º 17
0
 public String getBaseResultMapId() {
   return internalAttributes.get(InternalAttribute.ATTR_BASE_RESULT_MAP_ID);
 }
Exemplo n.º 18
0
 public String getDAOImplementationType() {
   return internalAttributes.get(InternalAttribute.ATTR_DAO_IMPLEMENTATION_TYPE);
 }
Exemplo n.º 19
0
 public String getUpdateByPrimaryKeySelectiveStatementId() {
   return internalAttributes.get(
       InternalAttribute.ATTR_UPDATE_BY_PRIMARY_KEY_SELECTIVE_STATEMENT_ID);
 }
Exemplo n.º 20
0
 public String getDAOInterfaceType() {
   return internalAttributes.get(InternalAttribute.ATTR_DAO_INTERFACE_TYPE);
 }
Exemplo n.º 21
0
 public String getUpdateByExampleSelectiveStatementId() {
   return internalAttributes.get(InternalAttribute.ATTR_UPDATE_BY_EXAMPLE_SELECTIVE_STATEMENT_ID);
 }
Exemplo n.º 22
0
 public Object getAttribute(String name) {
   return attributes.get(name);
 }
Exemplo n.º 23
0
 public String getSelectAllStatementId() {
   return internalAttributes.get(InternalAttribute.ATTR_SELECT_ALL_STATEMENT_ID);
 }
Exemplo n.º 24
0
 public String getBaseColumnListId() {
   return internalAttributes.get(InternalAttribute.ATTR_BASE_COLUMN_LIST_ID);
 }
Exemplo n.º 25
0
 public String getInsertStatementId() {
   return internalAttributes.get(InternalAttribute.ATTR_INSERT_STATEMENT_ID);
 }
Exemplo n.º 26
0
 public String getExampleWhereClauseId() {
   return internalAttributes.get(InternalAttribute.ATTR_EXAMPLE_WHERE_CLAUSE_ID);
 }
Exemplo n.º 27
0
 public String getDeleteByExampleStatementId() {
   return internalAttributes.get(InternalAttribute.ATTR_DELETE_BY_EXAMPLE_STATEMENT_ID);
 }
Exemplo n.º 28
0
 public String getMyBatis3UpdateByExampleWhereClauseId() {
   return internalAttributes.get(
       InternalAttribute.ATTR_MYBATIS3_UPDATE_BY_EXAMPLE_WHERE_CLAUSE_ID);
 }
Exemplo n.º 29
0
 public String getAliasedFullyQualifiedTableNameAtRuntime() {
   return internalAttributes.get(
       InternalAttribute.ATTR_ALIASED_FULLY_QUALIFIED_TABLE_NAME_AT_RUNTIME);
 }
Exemplo n.º 30
0
 /** @return the type for the example class. */
 public String getExampleType() {
   return internalAttributes.get(InternalAttribute.ATTR_EXAMPLE_TYPE);
 }