|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XmlElement | |
org.apache.ibatis.abator.api | Provides the main classes and interfaces used by clients of Abator. |
org.apache.ibatis.abator.api.dom.xml | |
org.apache.ibatis.abator.config | |
org.apache.ibatis.abator.internal | |
org.apache.ibatis.abator.internal.sqlmap |
Uses of XmlElement in org.apache.ibatis.abator.api |
Methods in org.apache.ibatis.abator.api with parameters of type XmlElement | |
void |
CommentGenerator.addComment(XmlElement xmlElement)
This method should add a suitable comment as a child element of the specified xmlElement to warn users that the element was generated and is subject to regeneration. |
void |
CommentGenerator.addRootComment(XmlElement rootElement)
This method is called to add a comment as the first child of the root element. |
Uses of XmlElement in org.apache.ibatis.abator.api.dom.xml |
Methods in org.apache.ibatis.abator.api.dom.xml that return XmlElement | |
XmlElement |
Document.getRootElement()
|
Methods in org.apache.ibatis.abator.api.dom.xml with parameters of type XmlElement | |
void |
Document.setRootElement(XmlElement rootElement)
|
Uses of XmlElement in org.apache.ibatis.abator.config |
Methods in org.apache.ibatis.abator.config that return XmlElement | |
XmlElement |
TableConfiguration.toXmlElement()
|
XmlElement |
SqlMapGeneratorConfiguration.toXmlElement()
|
XmlElement |
JavaTypeResolverConfiguration.toXmlElement()
|
XmlElement |
JavaModelGeneratorConfiguration.toXmlElement()
|
XmlElement |
JDBCConnectionConfiguration.toXmlElement()
|
XmlElement |
IgnoredColumn.toXmlElement()
|
XmlElement |
GeneratedKey.toXmlElement()
|
XmlElement |
DAOGeneratorConfiguration.toXmlElement()
|
XmlElement |
CommentGeneratorConfiguration.toXmlElement()
|
XmlElement |
ColumnRenamingRule.toXmlElement()
|
XmlElement |
ColumnOverride.toXmlElement()
|
XmlElement |
AbatorContext.toXmlElement()
Builds an XmlElement representation of this context. |
Methods in org.apache.ibatis.abator.config with parameters of type XmlElement | |
protected void |
PropertyHolder.addPropertyXmlElements(XmlElement xmlElement)
|
Uses of XmlElement in org.apache.ibatis.abator.internal |
Methods in org.apache.ibatis.abator.internal with parameters of type XmlElement | |
void |
DefaultCommentGenerator.addComment(XmlElement xmlElement)
Adds a suitable comment to warn users that the element was generated, and when it was generated. |
void |
DefaultCommentGenerator.addRootComment(XmlElement rootElement)
|
Uses of XmlElement in org.apache.ibatis.abator.internal.sqlmap |
Methods in org.apache.ibatis.abator.internal.sqlmap that return XmlElement | |
protected XmlElement |
SqlMapGeneratorLegacyImpl.getDeleteByExample(IntrospectedTable introspectedTable)
This method should return an XmlElement for the delete by example statement. |
protected XmlElement |
SqlMapGeneratorLegacyImpl.getCountByExample(IntrospectedTable introspectedTable)
This method should return an XmlElement for the count by example statement. |
protected XmlElement |
SqlMapGeneratorLegacyImpl.getByExampleWhereClauseFragment(IntrospectedTable introspectedTable)
This method should return an XmlElement for the example where clause SQL fragment (an sql fragment). |
protected XmlElement |
SqlMapGeneratorLegacyImpl.getSelectByExample(IntrospectedTable introspectedTable)
This method should return an XmlElement for the select by example statement that returns all fields in the table (except BLOB fields). |
protected XmlElement |
SqlMapGeneratorLegacyImpl.getSelectByExampleWithBLOBs(IntrospectedTable introspectedTable)
This method should return an XmlElement for the select by example statement that returns all fields in the table (including BLOB fields). |
protected XmlElement |
SqlMapGeneratorLegacyImpl.getUpdateByExampleSelective(IntrospectedTable introspectedTable)
|
protected XmlElement |
SqlMapGeneratorLegacyImpl.getUpdateByExampleWithBLOBs(IntrospectedTable introspectedTable)
|
protected XmlElement |
SqlMapGeneratorLegacyImpl.getUpdateByExampleWithoutBLOBs(IntrospectedTable introspectedTable)
|
protected XmlElement |
SqlMapGeneratorIterateImpl.getSqlMapElement(IntrospectedTable introspectedTable)
Creates the sqlMap element (the root element, and all child elements). |
protected XmlElement |
SqlMapGeneratorIterateImpl.getBaseResultMapElement(IntrospectedTable introspectedTable)
This method should return an XmlElement which is the result map (without any BLOBs if they exist in the table). |
protected XmlElement |
SqlMapGeneratorIterateImpl.getResultMapWithBLOBsElement(IntrospectedTable introspectedTable)
This method should return an XmlElement which is the result map (with any BLOBs if they exist in the table). |
protected XmlElement |
SqlMapGeneratorIterateImpl.getInsertElement(IntrospectedTable introspectedTable)
This method should return an XmlElement which the insert statement. |
protected XmlElement |
SqlMapGeneratorIterateImpl.getUpdateByPrimaryKeyWithBLOBs(IntrospectedTable introspectedTable)
This method should return an XmlElement for the update by primary key statement that updates all fields in the table (including BLOB fields). |
protected XmlElement |
SqlMapGeneratorIterateImpl.getUpdateByPrimaryKeyWithoutBLOBs(IntrospectedTable introspectedTable)
This method should return an XmlElement for the update by primary key statement that updates all fields in the table (excluding BLOB fields). |
protected XmlElement |
SqlMapGeneratorIterateImpl.getDeleteByPrimaryKey(IntrospectedTable introspectedTable)
This method should return an XmlElement for the delete by primary key statement. |
protected XmlElement |
SqlMapGeneratorIterateImpl.getDeleteByExample(IntrospectedTable introspectedTable)
This method should return an XmlElement for the delete by example statement. |
protected XmlElement |
SqlMapGeneratorIterateImpl.getCountByExample(IntrospectedTable introspectedTable)
This method should return an XmlElement for the count by example statement. |
protected XmlElement |
SqlMapGeneratorIterateImpl.getSelectByPrimaryKey(IntrospectedTable introspectedTable)
This method should return an XmlElement for the select by primary key statement. |
protected XmlElement |
SqlMapGeneratorIterateImpl.getSelectKey(ColumnDefinition columnDefinition,
GeneratedKey generatedKey)
This method should return an XmlElement for the select key used to automatically generate keys. |
protected XmlElement |
SqlMapGeneratorIterateImpl.getByExampleWhereClauseFragment(IntrospectedTable introspectedTable)
This method should return an XmlElement for the example where clause SQL fragment (an sql fragment). |
protected XmlElement |
SqlMapGeneratorIterateImpl.getSelectByExample(IntrospectedTable introspectedTable)
This method should an XmlElement for the select by example statement that returns all fields in the table (except BLOB fields). |
protected XmlElement |
SqlMapGeneratorIterateImpl.getSelectByExampleWithBLOBs(IntrospectedTable introspectedTable)
This method should return an XmlElement for the select by example statement that returns all fields in the table (including BLOB fields). |
protected XmlElement |
SqlMapGeneratorIterateImpl.getUpdateByPrimaryKeySelective(IntrospectedTable introspectedTable)
This method should return an XmlElement for the update by primary key statement that updates all fields in the table - but only if the field is not null in the parameter object. |
protected XmlElement |
SqlMapGeneratorIterateImpl.getUpdateByExampleSelective(IntrospectedTable introspectedTable)
This method should return an XmlElement for the update by example statement that updates all fields in the table - but only if the field is not null in the parameter object. |
protected XmlElement |
SqlMapGeneratorIterateImpl.getUpdateByExampleWithBLOBs(IntrospectedTable introspectedTable)
|
protected XmlElement |
SqlMapGeneratorIterateImpl.getUpdateByExampleWithoutBLOBs(IntrospectedTable introspectedTable)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |