Generate model classes for release 1.0b
This commit is contained in:
parent
fc12e4af25
commit
5ddb2d4b34
|
@ -78,7 +78,7 @@ public class CalloutInventory extends CalloutEngine
|
||||||
} else {
|
} else {
|
||||||
mTab.setValue("M_AttributeSetInstance_ID", null);
|
mTab.setValue("M_AttributeSetInstance_ID", null);
|
||||||
}
|
}
|
||||||
if (MDocType.DOCSUBTYPEInv_PhysicalInventory.equals(docSubTypeInv)) {
|
if (MDocType.DOCSUBTYPEINV_PhysicalInventory.equals(docSubTypeInv)) {
|
||||||
try {
|
try {
|
||||||
bd = setQtyBook(M_AttributeSetInstance_ID, M_Product_ID, M_Locator_ID);
|
bd = setQtyBook(M_AttributeSetInstance_ID, M_Product_ID, M_Locator_ID);
|
||||||
mTab.setValue("QtyBook", bd);
|
mTab.setValue("QtyBook", bd);
|
||||||
|
@ -128,7 +128,7 @@ public class CalloutInventory extends CalloutEngine
|
||||||
|
|
||||||
// Set QtyBook from first storage location
|
// Set QtyBook from first storage location
|
||||||
// kviiksaar: Call's now the extracted function
|
// kviiksaar: Call's now the extracted function
|
||||||
if (MDocType.DOCSUBTYPEInv_PhysicalInventory.equals(docSubTypeInv)) {
|
if (MDocType.DOCSUBTYPEINV_PhysicalInventory.equals(docSubTypeInv)) {
|
||||||
try {
|
try {
|
||||||
bd = setQtyBook(M_AttributeSetInstance_ID, M_Product_ID, M_Locator_ID);
|
bd = setQtyBook(M_AttributeSetInstance_ID, M_Product_ID, M_Locator_ID);
|
||||||
mTab.setValue("QtyBook", bd);
|
mTab.setValue("QtyBook", bd);
|
||||||
|
|
|
@ -191,7 +191,7 @@ public class ModelInterfaceGenerator
|
||||||
.append(" * @version ").append(Adempiere.MAIN_VERSION).append(NL) //.append(" - ").append(s_run).append("\n")
|
.append(" * @version ").append(Adempiere.MAIN_VERSION).append(NL) //.append(" - ").append(s_run).append("\n")
|
||||||
.append(" */\n");
|
.append(" */\n");
|
||||||
if (!packageName.equals("org.compiere.model")) {
|
if (!packageName.equals("org.compiere.model")) {
|
||||||
start.append("@SuppressWarnings(\"unused\")\n");
|
start.append("@SuppressWarnings(\"all\")\n");
|
||||||
}
|
}
|
||||||
start.append("public interface ").append(className).append(" {").append("\n")
|
start.append("public interface ").append(className).append(" {").append("\n")
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,6 @@ import java.util.Iterator;
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
|
|
||||||
import org.adempiere.exceptions.AverageCostingNegativeQtyException;
|
|
||||||
import org.compiere.model.MAccount;
|
import org.compiere.model.MAccount;
|
||||||
import org.compiere.model.MAcctSchema;
|
import org.compiere.model.MAcctSchema;
|
||||||
import org.compiere.model.MConversionRate;
|
import org.compiere.model.MConversionRate;
|
||||||
|
|
|
@ -97,18 +97,18 @@ public class Doc_Inventory extends Doc
|
||||||
if (Util.isEmpty(parentDocSubTypeInv)) {
|
if (Util.isEmpty(parentDocSubTypeInv)) {
|
||||||
// IDEMPIERE-675: for backward compatibility - to post old documents that could have subtypeinv empty
|
// IDEMPIERE-675: for backward compatibility - to post old documents that could have subtypeinv empty
|
||||||
if (line.getQtyInternalUse().signum() != 0) {
|
if (line.getQtyInternalUse().signum() != 0) {
|
||||||
docSubTypeInv = MDocType.DOCSUBTYPEInv_InternalUseInventory;
|
docSubTypeInv = MDocType.DOCSUBTYPEINV_InternalUseInventory;
|
||||||
} else {
|
} else {
|
||||||
docSubTypeInv = MDocType.DOCSUBTYPEInv_PhysicalInventory;
|
docSubTypeInv = MDocType.DOCSUBTYPEINV_PhysicalInventory;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
docSubTypeInv = parentDocSubTypeInv;
|
docSubTypeInv = parentDocSubTypeInv;
|
||||||
}
|
}
|
||||||
|
|
||||||
BigDecimal qtyDiff = Env.ZERO;
|
BigDecimal qtyDiff = Env.ZERO;
|
||||||
if (MDocType.DOCSUBTYPEInv_InternalUseInventory.equals(docSubTypeInv))
|
if (MDocType.DOCSUBTYPEINV_InternalUseInventory.equals(docSubTypeInv))
|
||||||
qtyDiff = line.getQtyInternalUse().negate();
|
qtyDiff = line.getQtyInternalUse().negate();
|
||||||
else if (MDocType.DOCSUBTYPEInv_PhysicalInventory.equals(docSubTypeInv))
|
else if (MDocType.DOCSUBTYPEINV_PhysicalInventory.equals(docSubTypeInv))
|
||||||
qtyDiff = line.getQtyCount().subtract(line.getQtyBook());
|
qtyDiff = line.getQtyCount().subtract(line.getQtyBook());
|
||||||
// nothing to post
|
// nothing to post
|
||||||
if (qtyDiff.signum() == 0)
|
if (qtyDiff.signum() == 0)
|
||||||
|
|
|
@ -22,9 +22,7 @@ import java.sql.ResultSet;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
|
|
||||||
import org.compiere.model.MAccount;
|
|
||||||
import org.compiere.model.MAcctSchema;
|
import org.compiere.model.MAcctSchema;
|
||||||
import org.compiere.model.MAcctSchemaDefault;
|
|
||||||
import org.compiere.model.MCostDetail;
|
import org.compiere.model.MCostDetail;
|
||||||
import org.compiere.model.ProductCost;
|
import org.compiere.model.ProductCost;
|
||||||
import org.compiere.model.X_M_Production;
|
import org.compiere.model.X_M_Production;
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_AccessLog
|
/** Generated Interface for AD_AccessLog
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_AccessLog
|
public interface I_AD_AccessLog
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Alert
|
/** Generated Interface for AD_Alert
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Alert
|
public interface I_AD_Alert
|
||||||
{
|
{
|
||||||
|
@ -45,12 +45,12 @@ public interface I_AD_Alert
|
||||||
public static final String COLUMNNAME_AD_Alert_ID = "AD_Alert_ID";
|
public static final String COLUMNNAME_AD_Alert_ID = "AD_Alert_ID";
|
||||||
|
|
||||||
/** Set Alert.
|
/** Set Alert.
|
||||||
* Adempiere Alert
|
* iDempiere Alert
|
||||||
*/
|
*/
|
||||||
public void setAD_Alert_ID (int AD_Alert_ID);
|
public void setAD_Alert_ID (int AD_Alert_ID);
|
||||||
|
|
||||||
/** Get Alert.
|
/** Get Alert.
|
||||||
* Adempiere Alert
|
* iDempiere Alert
|
||||||
*/
|
*/
|
||||||
public int getAD_Alert_ID();
|
public int getAD_Alert_ID();
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_AlertProcessor
|
/** Generated Interface for AD_AlertProcessor
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_AlertProcessor
|
public interface I_AD_AlertProcessor
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_AlertProcessorLog
|
/** Generated Interface for AD_AlertProcessorLog
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_AlertProcessorLog
|
public interface I_AD_AlertProcessorLog
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_AlertRecipient
|
/** Generated Interface for AD_AlertRecipient
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_AlertRecipient
|
public interface I_AD_AlertRecipient
|
||||||
{
|
{
|
||||||
|
@ -45,12 +45,12 @@ public interface I_AD_AlertRecipient
|
||||||
public static final String COLUMNNAME_AD_Alert_ID = "AD_Alert_ID";
|
public static final String COLUMNNAME_AD_Alert_ID = "AD_Alert_ID";
|
||||||
|
|
||||||
/** Set Alert.
|
/** Set Alert.
|
||||||
* Adempiere Alert
|
* iDempiere Alert
|
||||||
*/
|
*/
|
||||||
public void setAD_Alert_ID (int AD_Alert_ID);
|
public void setAD_Alert_ID (int AD_Alert_ID);
|
||||||
|
|
||||||
/** Get Alert.
|
/** Get Alert.
|
||||||
* Adempiere Alert
|
* iDempiere Alert
|
||||||
*/
|
*/
|
||||||
public int getAD_Alert_ID();
|
public int getAD_Alert_ID();
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_AlertRule
|
/** Generated Interface for AD_AlertRule
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_AlertRule
|
public interface I_AD_AlertRule
|
||||||
{
|
{
|
||||||
|
@ -45,12 +45,12 @@ public interface I_AD_AlertRule
|
||||||
public static final String COLUMNNAME_AD_Alert_ID = "AD_Alert_ID";
|
public static final String COLUMNNAME_AD_Alert_ID = "AD_Alert_ID";
|
||||||
|
|
||||||
/** Set Alert.
|
/** Set Alert.
|
||||||
* Adempiere Alert
|
* iDempiere Alert
|
||||||
*/
|
*/
|
||||||
public void setAD_Alert_ID (int AD_Alert_ID);
|
public void setAD_Alert_ID (int AD_Alert_ID);
|
||||||
|
|
||||||
/** Get Alert.
|
/** Get Alert.
|
||||||
* Adempiere Alert
|
* iDempiere Alert
|
||||||
*/
|
*/
|
||||||
public int getAD_Alert_ID();
|
public int getAD_Alert_ID();
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Archive
|
/** Generated Interface for AD_Archive
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Archive
|
public interface I_AD_Archive
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Attachment
|
/** Generated Interface for AD_Attachment
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Attachment
|
public interface I_AD_Attachment
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_AttachmentNote
|
/** Generated Interface for AD_AttachmentNote
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_AttachmentNote
|
public interface I_AD_AttachmentNote
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Attribute
|
/** Generated Interface for AD_Attribute
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Attribute
|
public interface I_AD_Attribute
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Attribute_Value
|
/** Generated Interface for AD_Attribute_Value
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Attribute_Value
|
public interface I_AD_Attribute_Value
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_BroadcastMessage
|
/** Generated Interface for AD_BroadcastMessage
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_BroadcastMessage
|
public interface I_AD_BroadcastMessage
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_ChangeLog
|
/** Generated Interface for AD_ChangeLog
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_ChangeLog
|
public interface I_AD_ChangeLog
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Client
|
/** Generated Interface for AD_Client
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Client
|
public interface I_AD_Client
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_ClientInfo
|
/** Generated Interface for AD_ClientInfo
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_ClientInfo
|
public interface I_AD_ClientInfo
|
||||||
{
|
{
|
||||||
|
@ -258,6 +258,22 @@ public interface I_AD_ClientInfo
|
||||||
|
|
||||||
public org.compiere.model.I_C_Charge getC_ChargeFreight() throws RuntimeException;
|
public org.compiere.model.I_C_Charge getC_ChargeFreight() throws RuntimeException;
|
||||||
|
|
||||||
|
/** Column name Created */
|
||||||
|
public static final String COLUMNNAME_Created = "Created";
|
||||||
|
|
||||||
|
/** Get Created.
|
||||||
|
* Date this record was created
|
||||||
|
*/
|
||||||
|
public Timestamp getCreated();
|
||||||
|
|
||||||
|
/** Column name CreatedBy */
|
||||||
|
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
|
||||||
|
|
||||||
|
/** Get Created By.
|
||||||
|
* User who created this records
|
||||||
|
*/
|
||||||
|
public int getCreatedBy();
|
||||||
|
|
||||||
/** Column name C_UOM_Length_ID */
|
/** Column name C_UOM_Length_ID */
|
||||||
public static final String COLUMNNAME_C_UOM_Length_ID = "C_UOM_Length_ID";
|
public static final String COLUMNNAME_C_UOM_Length_ID = "C_UOM_Length_ID";
|
||||||
|
|
||||||
|
@ -318,21 +334,14 @@ public interface I_AD_ClientInfo
|
||||||
|
|
||||||
public org.compiere.model.I_C_UOM getC_UOM_Weight() throws RuntimeException;
|
public org.compiere.model.I_C_UOM getC_UOM_Weight() throws RuntimeException;
|
||||||
|
|
||||||
/** Column name Created */
|
/** Column name FY_StartDate */
|
||||||
public static final String COLUMNNAME_Created = "Created";
|
public static final String COLUMNNAME_FY_StartDate = "FY_StartDate";
|
||||||
|
|
||||||
/** Get Created.
|
/** Set Financial Year Start Date */
|
||||||
* Date this record was created
|
public void setFY_StartDate (Timestamp FY_StartDate);
|
||||||
*/
|
|
||||||
public Timestamp getCreated();
|
|
||||||
|
|
||||||
/** Column name CreatedBy */
|
/** Get Financial Year Start Date */
|
||||||
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
|
public Timestamp getFY_StartDate();
|
||||||
|
|
||||||
/** Get Created By.
|
|
||||||
* User who created this records
|
|
||||||
*/
|
|
||||||
public int getCreatedBy();
|
|
||||||
|
|
||||||
/** Column name IsActive */
|
/** Column name IsActive */
|
||||||
public static final String COLUMNNAME_IsActive = "IsActive";
|
public static final String COLUMNNAME_IsActive = "IsActive";
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_ClientShare
|
/** Generated Interface for AD_ClientShare
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_ClientShare
|
public interface I_AD_ClientShare
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Color
|
/** Generated Interface for AD_Color
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Color
|
public interface I_AD_Color
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Column
|
/** Generated Interface for AD_Column
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Column
|
public interface I_AD_Column
|
||||||
{
|
{
|
||||||
|
@ -311,19 +311,6 @@ public interface I_AD_Column
|
||||||
*/
|
*/
|
||||||
public String getHelp();
|
public String getHelp();
|
||||||
|
|
||||||
/** Column name InfoFactoryClass */
|
|
||||||
public static final String COLUMNNAME_InfoFactoryClass = "InfoFactoryClass";
|
|
||||||
|
|
||||||
/** Set Info Factory Class.
|
|
||||||
* Fully qualified class name that implements the InfoFactory interface
|
|
||||||
*/
|
|
||||||
public void setInfoFactoryClass (String InfoFactoryClass);
|
|
||||||
|
|
||||||
/** Get Info Factory Class.
|
|
||||||
* Fully qualified class name that implements the InfoFactory interface
|
|
||||||
*/
|
|
||||||
public String getInfoFactoryClass();
|
|
||||||
|
|
||||||
/** Column name IsActive */
|
/** Column name IsActive */
|
||||||
public static final String COLUMNNAME_IsActive = "IsActive";
|
public static final String COLUMNNAME_IsActive = "IsActive";
|
||||||
|
|
||||||
|
@ -366,12 +353,12 @@ public interface I_AD_Column
|
||||||
/** Column name IsAlwaysUpdateable */
|
/** Column name IsAlwaysUpdateable */
|
||||||
public static final String COLUMNNAME_IsAlwaysUpdateable = "IsAlwaysUpdateable";
|
public static final String COLUMNNAME_IsAlwaysUpdateable = "IsAlwaysUpdateable";
|
||||||
|
|
||||||
/** Set Always Updateable.
|
/** Set Always Updatable.
|
||||||
* The column is always updateable, even if the record is not active or processed
|
* The column is always updateable, even if the record is not active or processed
|
||||||
*/
|
*/
|
||||||
public void setIsAlwaysUpdateable (boolean IsAlwaysUpdateable);
|
public void setIsAlwaysUpdateable (boolean IsAlwaysUpdateable);
|
||||||
|
|
||||||
/** Get Always Updateable.
|
/** Get Always Updatable.
|
||||||
* The column is always updateable, even if the record is not active or processed
|
* The column is always updateable, even if the record is not active or processed
|
||||||
*/
|
*/
|
||||||
public boolean isAlwaysUpdateable();
|
public boolean isAlwaysUpdateable();
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Column_Access
|
/** Generated Interface for AD_Column_Access
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Column_Access
|
public interface I_AD_Column_Access
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_CtxHelp
|
/** Generated Interface for AD_CtxHelp
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_CtxHelp
|
public interface I_AD_CtxHelp
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_CtxHelpMsg
|
/** Generated Interface for AD_CtxHelpMsg
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_CtxHelpMsg
|
public interface I_AD_CtxHelpMsg
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Desktop
|
/** Generated Interface for AD_Desktop
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Desktop
|
public interface I_AD_Desktop
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_DesktopWorkbench
|
/** Generated Interface for AD_DesktopWorkbench
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_DesktopWorkbench
|
public interface I_AD_DesktopWorkbench
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Document_Action_Access
|
/** Generated Interface for AD_Document_Action_Access
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Document_Action_Access
|
public interface I_AD_Document_Action_Access
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Element
|
/** Generated Interface for AD_Element
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Element
|
public interface I_AD_Element
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_EntityType
|
/** Generated Interface for AD_EntityType
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_EntityType
|
public interface I_AD_EntityType
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Error
|
/** Generated Interface for AD_Error
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Error
|
public interface I_AD_Error
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Field
|
/** Generated Interface for AD_Field
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Field
|
public interface I_AD_Field
|
||||||
{
|
{
|
||||||
|
@ -300,19 +300,6 @@ public interface I_AD_Field
|
||||||
|
|
||||||
public org.compiere.model.I_AD_Tab getIncluded_Tab() throws RuntimeException;
|
public org.compiere.model.I_AD_Tab getIncluded_Tab() throws RuntimeException;
|
||||||
|
|
||||||
/** Column name InfoFactoryClass */
|
|
||||||
public static final String COLUMNNAME_InfoFactoryClass = "InfoFactoryClass";
|
|
||||||
|
|
||||||
/** Set Info Factory Class.
|
|
||||||
* Fully qualified class name that implements the InfoFactory interface
|
|
||||||
*/
|
|
||||||
public void setInfoFactoryClass (String InfoFactoryClass);
|
|
||||||
|
|
||||||
/** Get Info Factory Class.
|
|
||||||
* Fully qualified class name that implements the InfoFactory interface
|
|
||||||
*/
|
|
||||||
public String getInfoFactoryClass();
|
|
||||||
|
|
||||||
/** Column name IsActive */
|
/** Column name IsActive */
|
||||||
public static final String COLUMNNAME_IsActive = "IsActive";
|
public static final String COLUMNNAME_IsActive = "IsActive";
|
||||||
|
|
||||||
|
@ -342,12 +329,12 @@ public interface I_AD_Field
|
||||||
/** Column name IsAlwaysUpdateable */
|
/** Column name IsAlwaysUpdateable */
|
||||||
public static final String COLUMNNAME_IsAlwaysUpdateable = "IsAlwaysUpdateable";
|
public static final String COLUMNNAME_IsAlwaysUpdateable = "IsAlwaysUpdateable";
|
||||||
|
|
||||||
/** Set Always Updateable.
|
/** Set Always Updatable.
|
||||||
* The column is always updateable, even if the record is not active or processed
|
* The column is always updateable, even if the record is not active or processed
|
||||||
*/
|
*/
|
||||||
public void setIsAlwaysUpdateable (String IsAlwaysUpdateable);
|
public void setIsAlwaysUpdateable (String IsAlwaysUpdateable);
|
||||||
|
|
||||||
/** Get Always Updateable.
|
/** Get Always Updatable.
|
||||||
* The column is always updateable, even if the record is not active or processed
|
* The column is always updateable, even if the record is not active or processed
|
||||||
*/
|
*/
|
||||||
public String getIsAlwaysUpdateable();
|
public String getIsAlwaysUpdateable();
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_FieldGroup
|
/** Generated Interface for AD_FieldGroup
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_FieldGroup
|
public interface I_AD_FieldGroup
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Find
|
/** Generated Interface for AD_Find
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Find
|
public interface I_AD_Find
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Form
|
/** Generated Interface for AD_Form
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Form
|
public interface I_AD_Form
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Form_Access
|
/** Generated Interface for AD_Form_Access
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Form_Access
|
public interface I_AD_Form_Access
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_HouseKeeping
|
/** Generated Interface for AD_HouseKeeping
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_HouseKeeping
|
public interface I_AD_HouseKeeping
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Image
|
/** Generated Interface for AD_Image
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Image
|
public interface I_AD_Image
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_ImpFormat
|
/** Generated Interface for AD_ImpFormat
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_ImpFormat
|
public interface I_AD_ImpFormat
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_ImpFormat_Row
|
/** Generated Interface for AD_ImpFormat_Row
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_ImpFormat_Row
|
public interface I_AD_ImpFormat_Row
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_InfoColumn
|
/** Generated Interface for AD_InfoColumn
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_InfoColumn
|
public interface I_AD_InfoColumn
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_InfoWindow
|
/** Generated Interface for AD_InfoWindow
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_InfoWindow
|
public interface I_AD_InfoWindow
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_InfoWindow_Access
|
/** Generated Interface for AD_InfoWindow_Access
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_InfoWindow_Access
|
public interface I_AD_InfoWindow_Access
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Issue
|
/** Generated Interface for AD_Issue
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Issue
|
public interface I_AD_Issue
|
||||||
{
|
{
|
||||||
|
@ -459,12 +459,12 @@ public interface I_AD_Issue
|
||||||
public static final String COLUMNNAME_RequestDocumentNo = "RequestDocumentNo";
|
public static final String COLUMNNAME_RequestDocumentNo = "RequestDocumentNo";
|
||||||
|
|
||||||
/** Set Request Document No.
|
/** Set Request Document No.
|
||||||
* Adempiere Request Document No
|
* iDempiere Request Document No
|
||||||
*/
|
*/
|
||||||
public void setRequestDocumentNo (String RequestDocumentNo);
|
public void setRequestDocumentNo (String RequestDocumentNo);
|
||||||
|
|
||||||
/** Get Request Document No.
|
/** Get Request Document No.
|
||||||
* Adempiere Request Document No
|
* iDempiere Request Document No
|
||||||
*/
|
*/
|
||||||
public String getRequestDocumentNo();
|
public String getRequestDocumentNo();
|
||||||
|
|
||||||
|
@ -653,14 +653,10 @@ public interface I_AD_Issue
|
||||||
/** Column name UserName */
|
/** Column name UserName */
|
||||||
public static final String COLUMNNAME_UserName = "UserName";
|
public static final String COLUMNNAME_UserName = "UserName";
|
||||||
|
|
||||||
/** Set Registered EMail.
|
/** Set User Name */
|
||||||
* Email of the responsible for the System
|
|
||||||
*/
|
|
||||||
public void setUserName (String UserName);
|
public void setUserName (String UserName);
|
||||||
|
|
||||||
/** Get Registered EMail.
|
/** Get User Name */
|
||||||
* Email of the responsible for the System
|
|
||||||
*/
|
|
||||||
public String getUserName();
|
public String getUserName();
|
||||||
|
|
||||||
/** Column name Version */
|
/** Column name Version */
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_LabelPrinter
|
/** Generated Interface for AD_LabelPrinter
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_LabelPrinter
|
public interface I_AD_LabelPrinter
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_LabelPrinterFunction
|
/** Generated Interface for AD_LabelPrinterFunction
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_LabelPrinterFunction
|
public interface I_AD_LabelPrinterFunction
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Language
|
/** Generated Interface for AD_Language
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Language
|
public interface I_AD_Language
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_LdapAccess
|
/** Generated Interface for AD_LdapAccess
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_LdapAccess
|
public interface I_AD_LdapAccess
|
||||||
{
|
{
|
||||||
|
@ -75,12 +75,12 @@ public interface I_AD_LdapAccess
|
||||||
public static final String COLUMNNAME_AD_LdapProcessor_ID = "AD_LdapProcessor_ID";
|
public static final String COLUMNNAME_AD_LdapProcessor_ID = "AD_LdapProcessor_ID";
|
||||||
|
|
||||||
/** Set Ldap Processor.
|
/** Set Ldap Processor.
|
||||||
* LDAP Server to authenticate and authorize external systems based on Adempiere
|
* LDAP Server to authenticate and authorize external systems based on iDempiere
|
||||||
*/
|
*/
|
||||||
public void setAD_LdapProcessor_ID (int AD_LdapProcessor_ID);
|
public void setAD_LdapProcessor_ID (int AD_LdapProcessor_ID);
|
||||||
|
|
||||||
/** Get Ldap Processor.
|
/** Get Ldap Processor.
|
||||||
* LDAP Server to authenticate and authorize external systems based on Adempiere
|
* LDAP Server to authenticate and authorize external systems based on iDempiere
|
||||||
*/
|
*/
|
||||||
public int getAD_LdapProcessor_ID();
|
public int getAD_LdapProcessor_ID();
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_LdapProcessor
|
/** Generated Interface for AD_LdapProcessor
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_LdapProcessor
|
public interface I_AD_LdapProcessor
|
||||||
{
|
{
|
||||||
|
@ -53,12 +53,12 @@ public interface I_AD_LdapProcessor
|
||||||
public static final String COLUMNNAME_AD_LdapProcessor_ID = "AD_LdapProcessor_ID";
|
public static final String COLUMNNAME_AD_LdapProcessor_ID = "AD_LdapProcessor_ID";
|
||||||
|
|
||||||
/** Set Ldap Processor.
|
/** Set Ldap Processor.
|
||||||
* LDAP Server to authenticate and authorize external systems based on Adempiere
|
* LDAP Server to authenticate and authorize external systems based on iDempiere
|
||||||
*/
|
*/
|
||||||
public void setAD_LdapProcessor_ID (int AD_LdapProcessor_ID);
|
public void setAD_LdapProcessor_ID (int AD_LdapProcessor_ID);
|
||||||
|
|
||||||
/** Get Ldap Processor.
|
/** Get Ldap Processor.
|
||||||
* LDAP Server to authenticate and authorize external systems based on Adempiere
|
* LDAP Server to authenticate and authorize external systems based on iDempiere
|
||||||
*/
|
*/
|
||||||
public int getAD_LdapProcessor_ID();
|
public int getAD_LdapProcessor_ID();
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_LdapProcessorLog
|
/** Generated Interface for AD_LdapProcessorLog
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_LdapProcessorLog
|
public interface I_AD_LdapProcessorLog
|
||||||
{
|
{
|
||||||
|
@ -53,12 +53,12 @@ public interface I_AD_LdapProcessorLog
|
||||||
public static final String COLUMNNAME_AD_LdapProcessor_ID = "AD_LdapProcessor_ID";
|
public static final String COLUMNNAME_AD_LdapProcessor_ID = "AD_LdapProcessor_ID";
|
||||||
|
|
||||||
/** Set Ldap Processor.
|
/** Set Ldap Processor.
|
||||||
* LDAP Server to authenticate and authorize external systems based on Adempiere
|
* LDAP Server to authenticate and authorize external systems based on iDempiere
|
||||||
*/
|
*/
|
||||||
public void setAD_LdapProcessor_ID (int AD_LdapProcessor_ID);
|
public void setAD_LdapProcessor_ID (int AD_LdapProcessor_ID);
|
||||||
|
|
||||||
/** Get Ldap Processor.
|
/** Get Ldap Processor.
|
||||||
* LDAP Server to authenticate and authorize external systems based on Adempiere
|
* LDAP Server to authenticate and authorize external systems based on iDempiere
|
||||||
*/
|
*/
|
||||||
public int getAD_LdapProcessor_ID();
|
public int getAD_LdapProcessor_ID();
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Menu
|
/** Generated Interface for AD_Menu
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Menu
|
public interface I_AD_Menu
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Message
|
/** Generated Interface for AD_Message
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Message
|
public interface I_AD_Message
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_MigrationScript
|
/** Generated Interface for AD_MigrationScript
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_MigrationScript
|
public interface I_AD_MigrationScript
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_ModelValidator
|
/** Generated Interface for AD_ModelValidator
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_ModelValidator
|
public interface I_AD_ModelValidator
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Modification
|
/** Generated Interface for AD_Modification
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Modification
|
public interface I_AD_Modification
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Note
|
/** Generated Interface for AD_Note
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Note
|
public interface I_AD_Note
|
||||||
{
|
{
|
||||||
|
@ -41,33 +41,20 @@ public interface I_AD_Note
|
||||||
|
|
||||||
/** Load Meta Data */
|
/** Load Meta Data */
|
||||||
|
|
||||||
/** Column name AcknowledgeDateTime */
|
/** Column name AD_BroadcastMessage_ID */
|
||||||
public static final String COLUMNNAME_AcknowledgeDateTime = "AcknowledgeDateTime";
|
public static final String COLUMNNAME_AD_BroadcastMessage_ID = "AD_BroadcastMessage_ID";
|
||||||
|
|
||||||
/** Set Acknowledgement Time.
|
|
||||||
* Acknowledgement Time of message
|
|
||||||
*/
|
|
||||||
public void setAcknowledgeDateTime (Timestamp AcknowledgeDateTime);
|
|
||||||
|
|
||||||
/** Get Acknowledgement Time.
|
|
||||||
* Acknowledgement Time of message
|
|
||||||
*/
|
|
||||||
public Timestamp getAcknowledgeDateTime();
|
|
||||||
|
|
||||||
/** Column name AD_Broadcastmessage_ID */
|
|
||||||
public static final String COLUMNNAME_AD_Broadcastmessage_ID = "AD_Broadcastmessage_ID";
|
|
||||||
|
|
||||||
/** Set Broadcast Message.
|
/** Set Broadcast Message.
|
||||||
* Broadcast Message
|
* Broadcast Message
|
||||||
*/
|
*/
|
||||||
public void setAD_Broadcastmessage_ID (int AD_Broadcastmessage_ID);
|
public void setAD_BroadcastMessage_ID (int AD_BroadcastMessage_ID);
|
||||||
|
|
||||||
/** Get Broadcast Message.
|
/** Get Broadcast Message.
|
||||||
* Broadcast Message
|
* Broadcast Message
|
||||||
*/
|
*/
|
||||||
public int getAD_Broadcastmessage_ID();
|
public int getAD_BroadcastMessage_ID();
|
||||||
|
|
||||||
public I_AD_BroadcastMessage getAD_Broadcastmessage() throws RuntimeException;
|
public org.compiere.model.I_AD_BroadcastMessage getAD_BroadcastMessage() throws RuntimeException;
|
||||||
|
|
||||||
/** Column name AD_Client_ID */
|
/** Column name AD_Client_ID */
|
||||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Org
|
/** Generated Interface for AD_Org
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Org
|
public interface I_AD_Org
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_OrgInfo
|
/** Generated Interface for AD_OrgInfo
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_OrgInfo
|
public interface I_AD_OrgInfo
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_OrgType
|
/** Generated Interface for AD_OrgType
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_OrgType
|
public interface I_AD_OrgType
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PInstance
|
/** Generated Interface for AD_PInstance
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PInstance
|
public interface I_AD_PInstance
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PInstance_Log
|
/** Generated Interface for AD_PInstance_Log
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PInstance_Log
|
public interface I_AD_PInstance_Log
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PInstance_Para
|
/** Generated Interface for AD_PInstance_Para
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PInstance_Para
|
public interface I_AD_PInstance_Para
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Package_Exp
|
/** Generated Interface for AD_Package_Exp
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Package_Exp
|
public interface I_AD_Package_Exp
|
||||||
{
|
{
|
||||||
|
@ -251,14 +251,10 @@ public interface I_AD_Package_Exp
|
||||||
/** Column name UserName */
|
/** Column name UserName */
|
||||||
public static final String COLUMNNAME_UserName = "UserName";
|
public static final String COLUMNNAME_UserName = "UserName";
|
||||||
|
|
||||||
/** Set Registered EMail.
|
/** Set User Name */
|
||||||
* Email of the responsible for the System
|
|
||||||
*/
|
|
||||||
public void setUserName (String UserName);
|
public void setUserName (String UserName);
|
||||||
|
|
||||||
/** Get Registered EMail.
|
/** Get User Name */
|
||||||
* Email of the responsible for the System
|
|
||||||
*/
|
|
||||||
public String getUserName();
|
public String getUserName();
|
||||||
|
|
||||||
/** Column name Version */
|
/** Column name Version */
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Package_Exp_Detail
|
/** Generated Interface for AD_Package_Exp_Detail
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Package_Exp_Detail
|
public interface I_AD_Package_Exp_Detail
|
||||||
{
|
{
|
||||||
|
@ -294,6 +294,8 @@ public interface I_AD_Package_Exp_Detail
|
||||||
*/
|
*/
|
||||||
public int getAD_Val_Rule_ID();
|
public int getAD_Val_Rule_ID();
|
||||||
|
|
||||||
|
public org.compiere.model.I_AD_Val_Rule getAD_Val_Rule() throws RuntimeException;
|
||||||
|
|
||||||
/** Column name AD_Window_ID */
|
/** Column name AD_Window_ID */
|
||||||
public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID";
|
public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID";
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Package_Imp
|
/** Generated Interface for AD_Package_Imp
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Package_Imp
|
public interface I_AD_Package_Imp
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Package_Imp_Backup
|
/** Generated Interface for AD_Package_Imp_Backup
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Package_Imp_Backup
|
public interface I_AD_Package_Imp_Backup
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Package_Imp_Detail
|
/** Generated Interface for AD_Package_Imp_Detail
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Package_Imp_Detail
|
public interface I_AD_Package_Imp_Detail
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Package_Imp_Inst
|
/** Generated Interface for AD_Package_Imp_Inst
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Package_Imp_Inst
|
public interface I_AD_Package_Imp_Inst
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Package_Imp_Proc
|
/** Generated Interface for AD_Package_Imp_Proc
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Package_Imp_Proc
|
public interface I_AD_Package_Imp_Proc
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PasswordRule
|
/** Generated Interface for AD_PasswordRule
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PasswordRule
|
public interface I_AD_PasswordRule
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Preference
|
/** Generated Interface for AD_Preference
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Preference
|
public interface I_AD_Preference
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PrintColor
|
/** Generated Interface for AD_PrintColor
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PrintColor
|
public interface I_AD_PrintColor
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PrintFont
|
/** Generated Interface for AD_PrintFont
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PrintFont
|
public interface I_AD_PrintFont
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PrintForm
|
/** Generated Interface for AD_PrintForm
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PrintForm
|
public interface I_AD_PrintForm
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PrintFormat
|
/** Generated Interface for AD_PrintFormat
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PrintFormat
|
public interface I_AD_PrintFormat
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PrintFormatItem
|
/** Generated Interface for AD_PrintFormatItem
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PrintFormatItem
|
public interface I_AD_PrintFormatItem
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PrintGraph
|
/** Generated Interface for AD_PrintGraph
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PrintGraph
|
public interface I_AD_PrintGraph
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PrintLabel
|
/** Generated Interface for AD_PrintLabel
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PrintLabel
|
public interface I_AD_PrintLabel
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PrintLabelLine
|
/** Generated Interface for AD_PrintLabelLine
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PrintLabelLine
|
public interface I_AD_PrintLabelLine
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PrintPaper
|
/** Generated Interface for AD_PrintPaper
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PrintPaper
|
public interface I_AD_PrintPaper
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_PrintTableFormat
|
/** Generated Interface for AD_PrintTableFormat
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_PrintTableFormat
|
public interface I_AD_PrintTableFormat
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Private_Access
|
/** Generated Interface for AD_Private_Access
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Private_Access
|
public interface I_AD_Private_Access
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Process
|
/** Generated Interface for AD_Process
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Process
|
public interface I_AD_Process
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Process_Access
|
/** Generated Interface for AD_Process_Access
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Process_Access
|
public interface I_AD_Process_Access
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Process_Para
|
/** Generated Interface for AD_Process_Para
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Process_Para
|
public interface I_AD_Process_Para
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_RecentItem
|
/** Generated Interface for AD_RecentItem
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_RecentItem
|
public interface I_AD_RecentItem
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Record_Access
|
/** Generated Interface for AD_Record_Access
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Record_Access
|
public interface I_AD_Record_Access
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Ref_List
|
/** Generated Interface for AD_Ref_List
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Ref_List
|
public interface I_AD_Ref_List
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Ref_Table
|
/** Generated Interface for AD_Ref_Table
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Ref_Table
|
public interface I_AD_Ref_Table
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Reference
|
/** Generated Interface for AD_Reference
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Reference
|
public interface I_AD_Reference
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Registration
|
/** Generated Interface for AD_Registration
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Registration
|
public interface I_AD_Registration
|
||||||
{
|
{
|
||||||
|
@ -327,12 +327,12 @@ public interface I_AD_Registration
|
||||||
public static final String COLUMNNAME_StartProductionDate = "StartProductionDate";
|
public static final String COLUMNNAME_StartProductionDate = "StartProductionDate";
|
||||||
|
|
||||||
/** Set Start Implementation/Production.
|
/** Set Start Implementation/Production.
|
||||||
* The day you started the implementation (if implementing) - or production (went life) with Adempiere
|
* The day you started the implementation (if implementing) - or production (went life) with iDempiere
|
||||||
*/
|
*/
|
||||||
public void setStartProductionDate (Timestamp StartProductionDate);
|
public void setStartProductionDate (Timestamp StartProductionDate);
|
||||||
|
|
||||||
/** Get Start Implementation/Production.
|
/** Get Start Implementation/Production.
|
||||||
* The day you started the implementation (if implementing) - or production (went life) with Adempiere
|
* The day you started the implementation (if implementing) - or production (went life) with iDempiere
|
||||||
*/
|
*/
|
||||||
public Timestamp getStartProductionDate();
|
public Timestamp getStartProductionDate();
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_RelationType
|
/** Generated Interface for AD_RelationType
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_RelationType
|
public interface I_AD_RelationType
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Replication
|
/** Generated Interface for AD_Replication
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Replication
|
public interface I_AD_Replication
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_ReplicationDocument
|
/** Generated Interface for AD_ReplicationDocument
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_ReplicationDocument
|
public interface I_AD_ReplicationDocument
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_ReplicationStrategy
|
/** Generated Interface for AD_ReplicationStrategy
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_ReplicationStrategy
|
public interface I_AD_ReplicationStrategy
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_ReplicationTable
|
/** Generated Interface for AD_ReplicationTable
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_ReplicationTable
|
public interface I_AD_ReplicationTable
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Replication_Log
|
/** Generated Interface for AD_Replication_Log
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Replication_Log
|
public interface I_AD_Replication_Log
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_Replication_Run
|
/** Generated Interface for AD_Replication_Run
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_Replication_Run
|
public interface I_AD_Replication_Run
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,7 +22,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
|
|
||||||
/** Generated Interface for AD_ReportView
|
/** Generated Interface for AD_ReportView
|
||||||
* @author iDempiere (generated)
|
* @author iDempiere (generated)
|
||||||
* @version Release 1.0a
|
* @version Release 1.0b
|
||||||
*/
|
*/
|
||||||
public interface I_AD_ReportView
|
public interface I_AD_ReportView
|
||||||
{
|
{
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue