[#1211] Enforce method name disambiguation also when using custom strategies (regression of #182)

[#1212] Enforce identifier disambiguation also when using custom strategies (regression)
This commit is contained in:
Lukas Eder 2012-03-03 20:51:57 +00:00
parent 8663000e96
commit bbe57773dd
17 changed files with 0 additions and 784 deletions

View File

@ -1,27 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class ufnGetAccountingEndDate extends org.jooq.impl.AbstractRoutine<java.sql.Timestamp> {
private static final long serialVersionUID = 131486399;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.sql.Timestamp> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.TIMESTAMP);
/**
* Create a new routine call instance
*/
public ufnGetAccountingEndDate() {
super("ufnGetAccountingEndDate", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo, org.jooq.impl.SQLDataType.TIMESTAMP);
setReturnParameter(RETURN_VALUE);
}
}

View File

@ -1,27 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class ufnGetAccountingStartDate extends org.jooq.impl.AbstractRoutine<java.sql.Timestamp> {
private static final long serialVersionUID = -640932634;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.sql.Timestamp> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.TIMESTAMP);
/**
* Create a new routine call instance
*/
public ufnGetAccountingStartDate() {
super("ufnGetAccountingStartDate", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo, org.jooq.impl.SQLDataType.TIMESTAMP);
setReturnParameter(RETURN_VALUE);
}
}

View File

@ -1,52 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class ufnGetContactInformation extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
private static final long serialVersionUID = 183074089;
/**
* An uncommented item
*
* The SQL type of this item (TABLE) could not be mapped.<br/>
* Deserialising this field might not work!
*/
public static final org.jooq.Parameter<java.lang.Object> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.util.sqlserver.SQLServerDataType.getDefaultDataType("TABLE"));
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> ContactID = createParameter("ContactID", org.jooq.impl.SQLDataType.INTEGER);
/**
* Create a new routine call instance
*/
public ufnGetContactInformation() {
super("ufnGetContactInformation", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo, org.jooq.util.sqlserver.SQLServerDataType.getDefaultDataType("TABLE"));
setReturnParameter(RETURN_VALUE);
addInParameter(ContactID);
}
/**
* Set the <code>ContactID</code> parameter to the routine
*/
public void setContactID(java.lang.Integer value) {
setValue(ContactID, value);
}
/**
* Set the <code>ContactID</code> parameter to the function
* <p>
* Use this method only, if the function is called as a {@link org.jooq.Field} in a {@link org.jooq.Select} statement!
*/
public void setContactID(org.jooq.Field<java.lang.Integer> field) {
setField(ContactID, field);
}
}

View File

@ -1,49 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class ufnGetDocumentStatusText extends org.jooq.impl.AbstractRoutine<java.lang.String> {
private static final long serialVersionUID = 1541722634;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.String> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.NVARCHAR);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Byte> Status = createParameter("Status", org.jooq.impl.SQLDataType.TINYINT);
/**
* Create a new routine call instance
*/
public ufnGetDocumentStatusText() {
super("ufnGetDocumentStatusText", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo, org.jooq.impl.SQLDataType.NVARCHAR);
setReturnParameter(RETURN_VALUE);
addInParameter(Status);
}
/**
* Set the <code>Status</code> parameter to the routine
*/
public void setStatus(java.lang.Byte value) {
setValue(Status, value);
}
/**
* Set the <code>Status</code> parameter to the function
* <p>
* Use this method only, if the function is called as a {@link org.jooq.Field} in a {@link org.jooq.Select} statement!
*/
public void setStatus(org.jooq.Field<java.lang.Byte> field) {
setField(Status, field);
}
}

View File

@ -1,71 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class ufnGetProductDealerPrice extends org.jooq.impl.AbstractRoutine<java.math.BigDecimal> {
private static final long serialVersionUID = -687962638;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.math.BigDecimal> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.NUMERIC);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> ProductID = createParameter("ProductID", org.jooq.impl.SQLDataType.INTEGER);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.sql.Timestamp> OrderDate = createParameter("OrderDate", org.jooq.impl.SQLDataType.TIMESTAMP);
/**
* Create a new routine call instance
*/
public ufnGetProductDealerPrice() {
super("ufnGetProductDealerPrice", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo, org.jooq.impl.SQLDataType.NUMERIC);
setReturnParameter(RETURN_VALUE);
addInParameter(ProductID);
addInParameter(OrderDate);
}
/**
* Set the <code>ProductID</code> parameter to the routine
*/
public void setProductID(java.lang.Integer value) {
setValue(ProductID, value);
}
/**
* Set the <code>ProductID</code> parameter to the function
* <p>
* Use this method only, if the function is called as a {@link org.jooq.Field} in a {@link org.jooq.Select} statement!
*/
public void setProductID(org.jooq.Field<java.lang.Integer> field) {
setField(ProductID, field);
}
/**
* Set the <code>OrderDate</code> parameter to the routine
*/
public void setOrderDate(java.sql.Timestamp value) {
setValue(OrderDate, value);
}
/**
* Set the <code>OrderDate</code> parameter to the function
* <p>
* Use this method only, if the function is called as a {@link org.jooq.Field} in a {@link org.jooq.Select} statement!
*/
public void setOrderDate(org.jooq.Field<java.sql.Timestamp> field) {
setField(OrderDate, field);
}
}

View File

@ -1,71 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class ufnGetProductListPrice extends org.jooq.impl.AbstractRoutine<java.math.BigDecimal> {
private static final long serialVersionUID = -1190140735;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.math.BigDecimal> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.NUMERIC);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> ProductID = createParameter("ProductID", org.jooq.impl.SQLDataType.INTEGER);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.sql.Timestamp> OrderDate = createParameter("OrderDate", org.jooq.impl.SQLDataType.TIMESTAMP);
/**
* Create a new routine call instance
*/
public ufnGetProductListPrice() {
super("ufnGetProductListPrice", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo, org.jooq.impl.SQLDataType.NUMERIC);
setReturnParameter(RETURN_VALUE);
addInParameter(ProductID);
addInParameter(OrderDate);
}
/**
* Set the <code>ProductID</code> parameter to the routine
*/
public void setProductID(java.lang.Integer value) {
setValue(ProductID, value);
}
/**
* Set the <code>ProductID</code> parameter to the function
* <p>
* Use this method only, if the function is called as a {@link org.jooq.Field} in a {@link org.jooq.Select} statement!
*/
public void setProductID(org.jooq.Field<java.lang.Integer> field) {
setField(ProductID, field);
}
/**
* Set the <code>OrderDate</code> parameter to the routine
*/
public void setOrderDate(java.sql.Timestamp value) {
setValue(OrderDate, value);
}
/**
* Set the <code>OrderDate</code> parameter to the function
* <p>
* Use this method only, if the function is called as a {@link org.jooq.Field} in a {@link org.jooq.Select} statement!
*/
public void setOrderDate(org.jooq.Field<java.sql.Timestamp> field) {
setField(OrderDate, field);
}
}

View File

@ -1,71 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class ufnGetProductStandardCost extends org.jooq.impl.AbstractRoutine<java.math.BigDecimal> {
private static final long serialVersionUID = 816686856;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.math.BigDecimal> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.NUMERIC);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> ProductID = createParameter("ProductID", org.jooq.impl.SQLDataType.INTEGER);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.sql.Timestamp> OrderDate = createParameter("OrderDate", org.jooq.impl.SQLDataType.TIMESTAMP);
/**
* Create a new routine call instance
*/
public ufnGetProductStandardCost() {
super("ufnGetProductStandardCost", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo, org.jooq.impl.SQLDataType.NUMERIC);
setReturnParameter(RETURN_VALUE);
addInParameter(ProductID);
addInParameter(OrderDate);
}
/**
* Set the <code>ProductID</code> parameter to the routine
*/
public void setProductID(java.lang.Integer value) {
setValue(ProductID, value);
}
/**
* Set the <code>ProductID</code> parameter to the function
* <p>
* Use this method only, if the function is called as a {@link org.jooq.Field} in a {@link org.jooq.Select} statement!
*/
public void setProductID(org.jooq.Field<java.lang.Integer> field) {
setField(ProductID, field);
}
/**
* Set the <code>OrderDate</code> parameter to the routine
*/
public void setOrderDate(java.sql.Timestamp value) {
setValue(OrderDate, value);
}
/**
* Set the <code>OrderDate</code> parameter to the function
* <p>
* Use this method only, if the function is called as a {@link org.jooq.Field} in a {@link org.jooq.Select} statement!
*/
public void setOrderDate(org.jooq.Field<java.sql.Timestamp> field) {
setField(OrderDate, field);
}
}

View File

@ -1,49 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class ufnGetPurchaseOrderStatusText extends org.jooq.impl.AbstractRoutine<java.lang.String> {
private static final long serialVersionUID = 52488376;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.String> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.NVARCHAR);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Byte> Status = createParameter("Status", org.jooq.impl.SQLDataType.TINYINT);
/**
* Create a new routine call instance
*/
public ufnGetPurchaseOrderStatusText() {
super("ufnGetPurchaseOrderStatusText", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo, org.jooq.impl.SQLDataType.NVARCHAR);
setReturnParameter(RETURN_VALUE);
addInParameter(Status);
}
/**
* Set the <code>Status</code> parameter to the routine
*/
public void setStatus(java.lang.Byte value) {
setValue(Status, value);
}
/**
* Set the <code>Status</code> parameter to the function
* <p>
* Use this method only, if the function is called as a {@link org.jooq.Field} in a {@link org.jooq.Select} statement!
*/
public void setStatus(org.jooq.Field<java.lang.Byte> field) {
setField(Status, field);
}
}

View File

@ -1,49 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class ufnGetSalesOrderStatusText extends org.jooq.impl.AbstractRoutine<java.lang.String> {
private static final long serialVersionUID = -1070125931;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.String> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.NVARCHAR);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Byte> Status = createParameter("Status", org.jooq.impl.SQLDataType.TINYINT);
/**
* Create a new routine call instance
*/
public ufnGetSalesOrderStatusText() {
super("ufnGetSalesOrderStatusText", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo, org.jooq.impl.SQLDataType.NVARCHAR);
setReturnParameter(RETURN_VALUE);
addInParameter(Status);
}
/**
* Set the <code>Status</code> parameter to the routine
*/
public void setStatus(java.lang.Byte value) {
setValue(Status, value);
}
/**
* Set the <code>Status</code> parameter to the function
* <p>
* Use this method only, if the function is called as a {@link org.jooq.Field} in a {@link org.jooq.Select} statement!
*/
public void setStatus(org.jooq.Field<java.lang.Byte> field) {
setField(Status, field);
}
}

View File

@ -1,49 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class ufnGetStock extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
private static final long serialVersionUID = -139422745;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.INTEGER);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> ProductID = createParameter("ProductID", org.jooq.impl.SQLDataType.INTEGER);
/**
* Create a new routine call instance
*/
public ufnGetStock() {
super("ufnGetStock", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo, org.jooq.impl.SQLDataType.INTEGER);
setReturnParameter(RETURN_VALUE);
addInParameter(ProductID);
}
/**
* Set the <code>ProductID</code> parameter to the routine
*/
public void setProductID(java.lang.Integer value) {
setValue(ProductID, value);
}
/**
* Set the <code>ProductID</code> parameter to the function
* <p>
* Use this method only, if the function is called as a {@link org.jooq.Field} in a {@link org.jooq.Select} statement!
*/
public void setProductID(org.jooq.Field<java.lang.Integer> field) {
setField(ProductID, field);
}
}

View File

@ -1,49 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class ufnLeadingZeros extends org.jooq.impl.AbstractRoutine<java.lang.String> {
private static final long serialVersionUID = 499090239;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.String> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.VARCHAR);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> Value = createParameter("Value", org.jooq.impl.SQLDataType.INTEGER);
/**
* Create a new routine call instance
*/
public ufnLeadingZeros() {
super("ufnLeadingZeros", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo, org.jooq.impl.SQLDataType.VARCHAR);
setReturnParameter(RETURN_VALUE);
addInParameter(Value);
}
/**
* Set the <code>Value</code> parameter to the routine
*/
public void setValue(java.lang.Integer value) {
setValue(Value, value);
}
/**
* Set the <code>Value</code> parameter to the function
* <p>
* Use this method only, if the function is called as a {@link org.jooq.Field} in a {@link org.jooq.Select} statement!
*/
public void setValue(org.jooq.Field<java.lang.Integer> field) {
setField(Value, field);
}
}

View File

@ -1,47 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class uspGetBillOfMaterials extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
private static final long serialVersionUID = 2139682679;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> StartProductID = createParameter("StartProductID", org.jooq.impl.SQLDataType.INTEGER);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.sql.Timestamp> CheckDate = createParameter("CheckDate", org.jooq.impl.SQLDataType.TIMESTAMP);
/**
* Create a new routine call instance
*/
public uspGetBillOfMaterials() {
super("uspGetBillOfMaterials", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo);
addInParameter(StartProductID);
addInParameter(CheckDate);
}
/**
* Set the <code>StartProductID</code> parameter to the routine
*/
public void setStartProductID(java.lang.Integer value) {
setValue(StartProductID, value);
}
/**
* Set the <code>CheckDate</code> parameter to the routine
*/
public void setCheckDate(java.sql.Timestamp value) {
setValue(CheckDate, value);
}
}

View File

@ -1,34 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class uspGetEmployeeManagers extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
private static final long serialVersionUID = -735141192;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> EmployeeID = createParameter("EmployeeID", org.jooq.impl.SQLDataType.INTEGER);
/**
* Create a new routine call instance
*/
public uspGetEmployeeManagers() {
super("uspGetEmployeeManagers", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo);
addInParameter(EmployeeID);
}
/**
* Set the <code>EmployeeID</code> parameter to the routine
*/
public void setEmployeeID(java.lang.Integer value) {
setValue(EmployeeID, value);
}
}

View File

@ -1,34 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class uspGetManagerEmployees extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
private static final long serialVersionUID = 1109212494;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> ManagerID = createParameter("ManagerID", org.jooq.impl.SQLDataType.INTEGER);
/**
* Create a new routine call instance
*/
public uspGetManagerEmployees() {
super("uspGetManagerEmployees", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo);
addInParameter(ManagerID);
}
/**
* Set the <code>ManagerID</code> parameter to the routine
*/
public void setManagerID(java.lang.Integer value) {
setValue(ManagerID, value);
}
}

View File

@ -1,47 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class uspGetWhereUsedProductID extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
private static final long serialVersionUID = -223017989;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> StartProductID = createParameter("StartProductID", org.jooq.impl.SQLDataType.INTEGER);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.sql.Timestamp> CheckDate = createParameter("CheckDate", org.jooq.impl.SQLDataType.TIMESTAMP);
/**
* Create a new routine call instance
*/
public uspGetWhereUsedProductID() {
super("uspGetWhereUsedProductID", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo);
addInParameter(StartProductID);
addInParameter(CheckDate);
}
/**
* Set the <code>StartProductID</code> parameter to the routine
*/
public void setStartProductID(java.lang.Integer value) {
setValue(StartProductID, value);
}
/**
* Set the <code>CheckDate</code> parameter to the routine
*/
public void setCheckDate(java.sql.Timestamp value) {
setValue(CheckDate, value);
}
}

View File

@ -1,38 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class uspLogError extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
private static final long serialVersionUID = 1625709489;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> ErrorLogID = createParameter("ErrorLogID", org.jooq.impl.SQLDataType.INTEGER);
/**
* Create a new routine call instance
*/
public uspLogError() {
super("uspLogError", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo);
addInOutParameter(ErrorLogID);
}
/**
* Set the <code>ErrorLogID</code> parameter to the routine
*/
public void setErrorLogID(java.lang.Integer value) {
setValue(ErrorLogID, value);
}
public java.lang.Integer getErrorLogID() {
return getValue(ErrorLogID);
}
}

View File

@ -1,20 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
/**
* This class is generated by jOOQ.
*/
public class uspPrintError extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
private static final long serialVersionUID = -1092155720;
/**
* Create a new routine call instance
*/
public uspPrintError() {
super("uspPrintError", org.jooq.examples.sqlserver.adventureworks.dbo.dbo.dbo);
}
}