[ 1772015 ] Generate java Interface and implementation instead of X_ class

This commit is contained in:
Heng Sin Low 2007-08-24 04:15:30 +00:00
parent b2e684169d
commit f30db41702
1092 changed files with 313266 additions and 166026 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/base/src/org/compiere/util/GenerateModel.java"/>
<listEntry value="/base/src/org/adempiere/util/GenerateModel.java"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="1"/>
@ -11,7 +11,7 @@
<listEntry value="org.eclipse.debug.ui.launchGroup.run"/>
<listEntry value="org.eclipse.debug.ui.launchGroup.debug"/>
</listAttribute>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.compiere.util.GenerateModel"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.adempiere.util.GenerateModel"/>
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="${workspace_loc:base}/src/org/compiere/model/&#13;&#10;org.compiere.model&#13;&#10;'D'"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="base"/>
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-DPropertyFile=${workspace_loc}/adempiere/Adempiere/Adempiere.properties"/>

View File

@ -0,0 +1,177 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_AccessLog
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:19.968
*/
public interface I_AD_AccessLog
{
/** TableName=AD_AccessLog */
public static final String Table_Name = "AD_AccessLog";
/** AD_Table_ID=717 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_AccessLog_ID */
public static final String COLUMNNAME_AD_AccessLog_ID = "AD_AccessLog_ID";
/** Set Access Log.
* Log of Access to the System
*/
public void setAD_AccessLog_ID (int AD_AccessLog_ID);
/** Get Access Log.
* Log of Access to the System
*/
public int getAD_AccessLog_ID();
/** Column name AD_Column_ID */
public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID";
/** Set Column.
* Column in the table
*/
public void setAD_Column_ID (int AD_Column_ID);
/** Get Column.
* Column in the table
*/
public int getAD_Column_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
/** Column name Remote_Addr */
public static final String COLUMNNAME_Remote_Addr = "Remote_Addr";
/** Set Remote Addr.
* Remote Address
*/
public void setRemote_Addr (String Remote_Addr);
/** Get Remote Addr.
* Remote Address
*/
public String getRemote_Addr();
/** Column name Remote_Host */
public static final String COLUMNNAME_Remote_Host = "Remote_Host";
/** Set Remote Host.
* Remote host Info
*/
public void setRemote_Host (String Remote_Host);
/** Get Remote Host.
* Remote host Info
*/
public String getRemote_Host();
/** Column name Reply */
public static final String COLUMNNAME_Reply = "Reply";
/** Set Reply.
* Reply or Answer
*/
public void setReply (String Reply);
/** Get Reply.
* Reply or Answer
*/
public String getReply();
/** Column name TextMsg */
public static final String COLUMNNAME_TextMsg = "TextMsg";
/** Set Text Message.
* Text Message
*/
public void setTextMsg (String TextMsg);
/** Get Text Message.
* Text Message
*/
public String getTextMsg();
}

View File

@ -0,0 +1,192 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Alert
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:20.328
*/
public interface I_AD_Alert
{
/** TableName=AD_Alert */
public static final String Table_Name = "AD_Alert";
/** AD_Table_ID=594 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_AlertProcessor_ID */
public static final String COLUMNNAME_AD_AlertProcessor_ID = "AD_AlertProcessor_ID";
/** Set Alert Processor.
* Alert Processor/Server Parameter
*/
public void setAD_AlertProcessor_ID (int AD_AlertProcessor_ID);
/** Get Alert Processor.
* Alert Processor/Server Parameter
*/
public int getAD_AlertProcessor_ID();
public I_AD_AlertProcessor getI_AD_AlertProcessor() throws Exception;
/** Column name AD_Alert_ID */
public static final String COLUMNNAME_AD_Alert_ID = "AD_Alert_ID";
/** Set Alert.
* Adempiere Alert
*/
public void setAD_Alert_ID (int AD_Alert_ID);
/** Get Alert.
* Adempiere Alert
*/
public int getAD_Alert_ID();
/** Column name AlertMessage */
public static final String COLUMNNAME_AlertMessage = "AlertMessage";
/** Set Alert Message.
* Message of the Alert
*/
public void setAlertMessage (String AlertMessage);
/** Get Alert Message.
* Message of the Alert
*/
public String getAlertMessage();
/** Column name AlertSubject */
public static final String COLUMNNAME_AlertSubject = "AlertSubject";
/** Set Alert Subject.
* Subject of the Alert
*/
public void setAlertSubject (String AlertSubject);
/** Get Alert Subject.
* Subject of the Alert
*/
public String getAlertSubject();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EnforceClientSecurity */
public static final String COLUMNNAME_EnforceClientSecurity = "EnforceClientSecurity";
/** Set Enforce Client Security.
* Send alerts to recipient only if the client security rules of the role allows
*/
public void setEnforceClientSecurity (boolean EnforceClientSecurity);
/** Get Enforce Client Security.
* Send alerts to recipient only if the client security rules of the role allows
*/
public boolean isEnforceClientSecurity();
/** Column name EnforceRoleSecurity */
public static final String COLUMNNAME_EnforceRoleSecurity = "EnforceRoleSecurity";
/** Set Enforce Role Security.
* Send alerts to recipient only if the data security rules of the role allows
*/
public void setEnforceRoleSecurity (boolean EnforceRoleSecurity);
/** Get Enforce Role Security.
* Send alerts to recipient only if the data security rules of the role allows
*/
public boolean isEnforceRoleSecurity();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name IsValid */
public static final String COLUMNNAME_IsValid = "IsValid";
/** Set Valid.
* Element is valid
*/
public void setIsValid (boolean IsValid);
/** Get Valid.
* Element is valid
*/
public boolean isValid();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,186 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_AlertProcessor
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:20.39
*/
public interface I_AD_AlertProcessor
{
/** TableName=AD_AlertProcessor */
public static final String Table_Name = "AD_AlertProcessor";
/** AD_Table_ID=700 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_AlertProcessor_ID */
public static final String COLUMNNAME_AD_AlertProcessor_ID = "AD_AlertProcessor_ID";
/** Set Alert Processor.
* Alert Processor/Server Parameter
*/
public void setAD_AlertProcessor_ID (int AD_AlertProcessor_ID);
/** Get Alert Processor.
* Alert Processor/Server Parameter
*/
public int getAD_AlertProcessor_ID();
/** Column name DateLastRun */
public static final String COLUMNNAME_DateLastRun = "DateLastRun";
/** Set Date last run.
* Date the process was last run.
*/
public void setDateLastRun (Timestamp DateLastRun);
/** Get Date last run.
* Date the process was last run.
*/
public Timestamp getDateLastRun();
/** Column name DateNextRun */
public static final String COLUMNNAME_DateNextRun = "DateNextRun";
/** Set Date next run.
* Date the process will run next
*/
public void setDateNextRun (Timestamp DateNextRun);
/** Get Date next run.
* Date the process will run next
*/
public Timestamp getDateNextRun();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Frequency */
public static final String COLUMNNAME_Frequency = "Frequency";
/** Set Frequency.
* Frequency of events
*/
public void setFrequency (int Frequency);
/** Get Frequency.
* Frequency of events
*/
public int getFrequency();
/** Column name FrequencyType */
public static final String COLUMNNAME_FrequencyType = "FrequencyType";
/** Set Frequency Type.
* Frequency of event
*/
public void setFrequencyType (String FrequencyType);
/** Get Frequency Type.
* Frequency of event
*/
public String getFrequencyType();
/** Column name KeepLogDays */
public static final String COLUMNNAME_KeepLogDays = "KeepLogDays";
/** Set Days to keep Log.
* Number of days to keep the log entries
*/
public void setKeepLogDays (int KeepLogDays);
/** Get Days to keep Log.
* Number of days to keep the log entries
*/
public int getKeepLogDays();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name Supervisor_ID */
public static final String COLUMNNAME_Supervisor_ID = "Supervisor_ID";
/** Set Supervisor.
* Supervisor for this user/organization - used for escalation and approval
*/
public void setSupervisor_ID (int Supervisor_ID);
/** Get Supervisor.
* Supervisor for this user/organization - used for escalation and approval
*/
public int getSupervisor_ID();
}

View File

@ -0,0 +1,166 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_AlertProcessorLog
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:20.453
*/
public interface I_AD_AlertProcessorLog
{
/** TableName=AD_AlertProcessorLog */
public static final String Table_Name = "AD_AlertProcessorLog";
/** AD_Table_ID=699 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_AlertProcessorLog_ID */
public static final String COLUMNNAME_AD_AlertProcessorLog_ID = "AD_AlertProcessorLog_ID";
/** Set Alert Processor Log.
* Result of the execution of the Alert Processor
*/
public void setAD_AlertProcessorLog_ID (int AD_AlertProcessorLog_ID);
/** Get Alert Processor Log.
* Result of the execution of the Alert Processor
*/
public int getAD_AlertProcessorLog_ID();
/** Column name AD_AlertProcessor_ID */
public static final String COLUMNNAME_AD_AlertProcessor_ID = "AD_AlertProcessor_ID";
/** Set Alert Processor.
* Alert Processor/Server Parameter
*/
public void setAD_AlertProcessor_ID (int AD_AlertProcessor_ID);
/** Get Alert Processor.
* Alert Processor/Server Parameter
*/
public int getAD_AlertProcessor_ID();
public I_AD_AlertProcessor getI_AD_AlertProcessor() throws Exception;
/** Column name BinaryData */
public static final String COLUMNNAME_BinaryData = "BinaryData";
/** Set BinaryData.
* Binary Data
*/
public void setBinaryData (byte[] BinaryData);
/** Get BinaryData.
* Binary Data
*/
public byte[] getBinaryData();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name IsError */
public static final String COLUMNNAME_IsError = "IsError";
/** Set Error.
* An Error occured in the execution
*/
public void setIsError (boolean IsError);
/** Get Error.
* An Error occured in the execution
*/
public boolean isError();
/** Column name Reference */
public static final String COLUMNNAME_Reference = "Reference";
/** Set Reference.
* Reference for this record
*/
public void setReference (String Reference);
/** Get Reference.
* Reference for this record
*/
public String getReference();
/** Column name Summary */
public static final String COLUMNNAME_Summary = "Summary";
/** Set Summary.
* Textual summary of this request
*/
public void setSummary (String Summary);
/** Get Summary.
* Textual summary of this request
*/
public String getSummary();
/** Column name TextMsg */
public static final String COLUMNNAME_TextMsg = "TextMsg";
/** Set Text Message.
* Text Message
*/
public void setTextMsg (String TextMsg);
/** Get Text Message.
* Text Message
*/
public String getTextMsg();
}

View File

@ -0,0 +1,116 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_AlertRecipient
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:20.484
*/
public interface I_AD_AlertRecipient
{
/** TableName=AD_AlertRecipient */
public static final String Table_Name = "AD_AlertRecipient";
/** AD_Table_ID=592 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_AlertRecipient_ID */
public static final String COLUMNNAME_AD_AlertRecipient_ID = "AD_AlertRecipient_ID";
/** Set Alert Recipient.
* Recipient of the Alert Notification
*/
public void setAD_AlertRecipient_ID (int AD_AlertRecipient_ID);
/** Get Alert Recipient.
* Recipient of the Alert Notification
*/
public int getAD_AlertRecipient_ID();
/** Column name AD_Alert_ID */
public static final String COLUMNNAME_AD_Alert_ID = "AD_Alert_ID";
/** Set Alert.
* Adempiere Alert
*/
public void setAD_Alert_ID (int AD_Alert_ID);
/** Get Alert.
* Adempiere Alert
*/
public int getAD_Alert_ID();
public I_AD_Alert getI_AD_Alert() throws Exception;
/** Column name AD_Role_ID */
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
/** Set Role.
* Responsibility Role
*/
public void setAD_Role_ID (int AD_Role_ID);
/** Get Role.
* Responsibility Role
*/
public int getAD_Role_ID();
public I_AD_Role getI_AD_Role() throws Exception;
/** Column name AD_User_ID */
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
/** Set User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public void setAD_User_ID (int AD_User_ID);
/** Get User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public int getAD_User_ID();
}

View File

@ -0,0 +1,216 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_AlertRule
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:20.562
*/
public interface I_AD_AlertRule
{
/** TableName=AD_AlertRule */
public static final String Table_Name = "AD_AlertRule";
/** AD_Table_ID=593 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_AlertRule_ID */
public static final String COLUMNNAME_AD_AlertRule_ID = "AD_AlertRule_ID";
/** Set Alert Rule.
* Definition of the alert element
*/
public void setAD_AlertRule_ID (int AD_AlertRule_ID);
/** Get Alert Rule.
* Definition of the alert element
*/
public int getAD_AlertRule_ID();
/** Column name AD_Alert_ID */
public static final String COLUMNNAME_AD_Alert_ID = "AD_Alert_ID";
/** Set Alert.
* Adempiere Alert
*/
public void setAD_Alert_ID (int AD_Alert_ID);
/** Get Alert.
* Adempiere Alert
*/
public int getAD_Alert_ID();
public I_AD_Alert getI_AD_Alert() throws Exception;
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name ErrorMsg */
public static final String COLUMNNAME_ErrorMsg = "ErrorMsg";
/** Set Error Msg */
public void setErrorMsg (String ErrorMsg);
/** Get Error Msg */
public String getErrorMsg();
/** Column name FromClause */
public static final String COLUMNNAME_FromClause = "FromClause";
/** Set Sql FROM.
* SQL FROM clause
*/
public void setFromClause (String FromClause);
/** Get Sql FROM.
* SQL FROM clause
*/
public String getFromClause();
/** Column name IsValid */
public static final String COLUMNNAME_IsValid = "IsValid";
/** Set Valid.
* Element is valid
*/
public void setIsValid (boolean IsValid);
/** Get Valid.
* Element is valid
*/
public boolean isValid();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name OtherClause */
public static final String COLUMNNAME_OtherClause = "OtherClause";
/** Set Other SQL Clause.
* Other SQL Clause
*/
public void setOtherClause (String OtherClause);
/** Get Other SQL Clause.
* Other SQL Clause
*/
public String getOtherClause();
/** Column name PostProcessing */
public static final String COLUMNNAME_PostProcessing = "PostProcessing";
/** Set Post Processing.
* Process SQL after executing the query
*/
public void setPostProcessing (String PostProcessing);
/** Get Post Processing.
* Process SQL after executing the query
*/
public String getPostProcessing();
/** Column name PreProcessing */
public static final String COLUMNNAME_PreProcessing = "PreProcessing";
/** Set Pre Processing.
* Process SQL before executing the query
*/
public void setPreProcessing (String PreProcessing);
/** Get Pre Processing.
* Process SQL before executing the query
*/
public String getPreProcessing();
/** Column name SelectClause */
public static final String COLUMNNAME_SelectClause = "SelectClause";
/** Set Sql SELECT.
* SQL SELECT clause
*/
public void setSelectClause (String SelectClause);
/** Get Sql SELECT.
* SQL SELECT clause
*/
public String getSelectClause();
/** Column name WhereClause */
public static final String COLUMNNAME_WhereClause = "WhereClause";
/** Set Sql WHERE.
* Fully qualified SQL WHERE clause
*/
public void setWhereClause (String WhereClause);
/** Get Sql WHERE.
* Fully qualified SQL WHERE clause
*/
public String getWhereClause();
}

View File

@ -0,0 +1,190 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Archive
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:20.625
*/
public interface I_AD_Archive
{
/** TableName=AD_Archive */
public static final String Table_Name = "AD_Archive";
/** AD_Table_ID=754 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 7 - System - Client - Org
*/
BigDecimal accessLevel = new BigDecimal(7);
/** Load Meta Data */
/** Column name AD_Archive_ID */
public static final String COLUMNNAME_AD_Archive_ID = "AD_Archive_ID";
/** Set Archive.
* Document and Report Archive
*/
public void setAD_Archive_ID (int AD_Archive_ID);
/** Get Archive.
* Document and Report Archive
*/
public int getAD_Archive_ID();
/** Column name AD_Process_ID */
public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID";
/** Set Process.
* Process or Report
*/
public void setAD_Process_ID (int AD_Process_ID);
/** Get Process.
* Process or Report
*/
public int getAD_Process_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
/** Column name BinaryData */
public static final String COLUMNNAME_BinaryData = "BinaryData";
/** Set BinaryData.
* Binary Data
*/
public void setBinaryData (byte[] BinaryData);
/** Get BinaryData.
* Binary Data
*/
public byte[] getBinaryData();
/** Column name C_BPartner_ID */
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
/** Set Business Partner .
* Identifies a Business Partner
*/
public void setC_BPartner_ID (int C_BPartner_ID);
/** Get Business Partner .
* Identifies a Business Partner
*/
public int getC_BPartner_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name IsReport */
public static final String COLUMNNAME_IsReport = "IsReport";
/** Set Report.
* Indicates a Report record
*/
public void setIsReport (boolean IsReport);
/** Get Report.
* Indicates a Report record
*/
public boolean isReport();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
}

View File

@ -0,0 +1,140 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Attachment
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:20.718
*/
public interface I_AD_Attachment
{
/** TableName=AD_Attachment */
public static final String Table_Name = "AD_Attachment";
/** AD_Table_ID=254 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Attachment_ID */
public static final String COLUMNNAME_AD_Attachment_ID = "AD_Attachment_ID";
/** Set Attachment.
* Attachment for the document
*/
public void setAD_Attachment_ID (int AD_Attachment_ID);
/** Get Attachment.
* Attachment for the document
*/
public int getAD_Attachment_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name BinaryData */
public static final String COLUMNNAME_BinaryData = "BinaryData";
/** Set BinaryData.
* Binary Data
*/
public void setBinaryData (byte[] BinaryData);
/** Get BinaryData.
* Binary Data
*/
public byte[] getBinaryData();
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
/** Column name TextMsg */
public static final String COLUMNNAME_TextMsg = "TextMsg";
/** Set Text Message.
* Text Message
*/
public void setTextMsg (String TextMsg);
/** Get Text Message.
* Text Message
*/
public String getTextMsg();
/** Column name Title */
public static final String COLUMNNAME_Title = "Title";
/** Set Title.
* Name this entity is referred to as
*/
public void setTitle (String Title);
/** Get Title.
* Name this entity is referred to as
*/
public String getTitle();
}

View File

@ -0,0 +1,127 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_AttachmentNote
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:20.781
*/
public interface I_AD_AttachmentNote
{
/** TableName=AD_AttachmentNote */
public static final String Table_Name = "AD_AttachmentNote";
/** AD_Table_ID=705 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_AttachmentNote_ID */
public static final String COLUMNNAME_AD_AttachmentNote_ID = "AD_AttachmentNote_ID";
/** Set Attachment Note.
* Personal Attachment Note
*/
public void setAD_AttachmentNote_ID (int AD_AttachmentNote_ID);
/** Get Attachment Note.
* Personal Attachment Note
*/
public int getAD_AttachmentNote_ID();
/** Column name AD_Attachment_ID */
public static final String COLUMNNAME_AD_Attachment_ID = "AD_Attachment_ID";
/** Set Attachment.
* Attachment for the document
*/
public void setAD_Attachment_ID (int AD_Attachment_ID);
/** Get Attachment.
* Attachment for the document
*/
public int getAD_Attachment_ID();
public I_AD_Attachment getI_AD_Attachment() throws Exception;
/** Column name AD_User_ID */
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
/** Set User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public void setAD_User_ID (int AD_User_ID);
/** Get User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public int getAD_User_ID();
/** Column name TextMsg */
public static final String COLUMNNAME_TextMsg = "TextMsg";
/** Set Text Message.
* Text Message
*/
public void setTextMsg (String TextMsg);
/** Get Text Message.
* Text Message
*/
public String getTextMsg();
/** Column name Title */
public static final String COLUMNNAME_Title = "Title";
/** Set Title.
* Name this entity is referred to as
*/
public void setTitle (String Title);
/** Get Title.
* Name this entity is referred to as
*/
public String getTitle();
}

View File

@ -0,0 +1,378 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Attribute
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:20.906
*/
public interface I_AD_Attribute
{
/** TableName=AD_Attribute */
public static final String Table_Name = "AD_Attribute";
/** AD_Table_ID=405 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 7 - System - Client - Org
*/
BigDecimal accessLevel = new BigDecimal(7);
/** Load Meta Data */
/** Column name AD_Attribute_ID */
public static final String COLUMNNAME_AD_Attribute_ID = "AD_Attribute_ID";
/** Set System Attribute */
public void setAD_Attribute_ID (int AD_Attribute_ID);
/** Get System Attribute */
public int getAD_Attribute_ID();
/** Column name AD_Reference_ID */
public static final String COLUMNNAME_AD_Reference_ID = "AD_Reference_ID";
/** Set Reference.
* System Reference and Validation
*/
public void setAD_Reference_ID (int AD_Reference_ID);
/** Get Reference.
* System Reference and Validation
*/
public int getAD_Reference_ID();
/** Column name AD_Reference_Value_ID */
public static final String COLUMNNAME_AD_Reference_Value_ID = "AD_Reference_Value_ID";
/** Set Reference Key.
* Required to specify, if data type is Table or List
*/
public void setAD_Reference_Value_ID (int AD_Reference_Value_ID);
/** Get Reference Key.
* Required to specify, if data type is Table or List
*/
public int getAD_Reference_Value_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name AD_Val_Rule_ID */
public static final String COLUMNNAME_AD_Val_Rule_ID = "AD_Val_Rule_ID";
/** Set Dynamic Validation.
* Dynamic Validation Rule
*/
public void setAD_Val_Rule_ID (int AD_Val_Rule_ID);
/** Get Dynamic Validation.
* Dynamic Validation Rule
*/
public int getAD_Val_Rule_ID();
public I_AD_Val_Rule getI_AD_Val_Rule() throws Exception;
/** Column name Callout */
public static final String COLUMNNAME_Callout = "Callout";
/** Set Callout.
* Fully qualified class names and method - separated by semicolons
*/
public void setCallout (String Callout);
/** Get Callout.
* Fully qualified class names and method - separated by semicolons
*/
public String getCallout();
/** Column name DefaultValue */
public static final String COLUMNNAME_DefaultValue = "DefaultValue";
/** Set Default Logic.
* Default value hierarchy, separated by ;
*/
public void setDefaultValue (String DefaultValue);
/** Get Default Logic.
* Default value hierarchy, separated by ;
*/
public String getDefaultValue();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name DisplayLength */
public static final String COLUMNNAME_DisplayLength = "DisplayLength";
/** Set Display Length.
* Length of the display in characters
*/
public void setDisplayLength (int DisplayLength);
/** Get Display Length.
* Length of the display in characters
*/
public int getDisplayLength();
/** Column name DisplayLogic */
public static final String COLUMNNAME_DisplayLogic = "DisplayLogic";
/** Set Display Logic.
* If the Field is displayed, the result determines if the field is actually displayed
*/
public void setDisplayLogic (String DisplayLogic);
/** Get Display Logic.
* If the Field is displayed, the result determines if the field is actually displayed
*/
public String getDisplayLogic();
/** Column name FieldLength */
public static final String COLUMNNAME_FieldLength = "FieldLength";
/** Set Length.
* Length of the column in the database
*/
public void setFieldLength (int FieldLength);
/** Get Length.
* Length of the column in the database
*/
public int getFieldLength();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name IsEncrypted */
public static final String COLUMNNAME_IsEncrypted = "IsEncrypted";
/** Set Encrypted.
* Display or Storage is encrypted
*/
public void setIsEncrypted (boolean IsEncrypted);
/** Get Encrypted.
* Display or Storage is encrypted
*/
public boolean isEncrypted();
/** Column name IsFieldOnly */
public static final String COLUMNNAME_IsFieldOnly = "IsFieldOnly";
/** Set Field Only.
* Label is not displayed
*/
public void setIsFieldOnly (boolean IsFieldOnly);
/** Get Field Only.
* Label is not displayed
*/
public boolean isFieldOnly();
/** Column name IsHeading */
public static final String COLUMNNAME_IsHeading = "IsHeading";
/** Set Heading only.
* Field without Column - Only label is displayed
*/
public void setIsHeading (boolean IsHeading);
/** Get Heading only.
* Field without Column - Only label is displayed
*/
public boolean isHeading();
/** Column name IsMandatory */
public static final String COLUMNNAME_IsMandatory = "IsMandatory";
/** Set Mandatory.
* Data entry is required in this column
*/
public void setIsMandatory (boolean IsMandatory);
/** Get Mandatory.
* Data entry is required in this column
*/
public boolean isMandatory();
/** Column name IsReadOnly */
public static final String COLUMNNAME_IsReadOnly = "IsReadOnly";
/** Set Read Only.
* Field is read only
*/
public void setIsReadOnly (boolean IsReadOnly);
/** Get Read Only.
* Field is read only
*/
public boolean isReadOnly();
/** Column name IsSameLine */
public static final String COLUMNNAME_IsSameLine = "IsSameLine";
/** Set Same Line.
* Displayed on same line as previous field
*/
public void setIsSameLine (boolean IsSameLine);
/** Get Same Line.
* Displayed on same line as previous field
*/
public boolean isSameLine();
/** Column name IsUpdateable */
public static final String COLUMNNAME_IsUpdateable = "IsUpdateable";
/** Set Updateable.
* Determines, if the field can be updated
*/
public void setIsUpdateable (boolean IsUpdateable);
/** Get Updateable.
* Determines, if the field can be updated
*/
public boolean isUpdateable();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name SeqNo */
public static final String COLUMNNAME_SeqNo = "SeqNo";
/** Set Sequence.
* Method of ordering records;
lowest number comes first
*/
public void setSeqNo (int SeqNo);
/** Get Sequence.
* Method of ordering records;
lowest number comes first
*/
public int getSeqNo();
/** Column name VFormat */
public static final String COLUMNNAME_VFormat = "VFormat";
/** Set Value Format.
* Format of the value;
Can contain fixed format elements, Variables: "_lLoOaAcCa09"
*/
public void setVFormat (String VFormat);
/** Get Value Format.
* Format of the value;
Can contain fixed format elements, Variables: "_lLoOaAcCa09"
*/
public String getVFormat();
/** Column name ValueMax */
public static final String COLUMNNAME_ValueMax = "ValueMax";
/** Set Max. Value.
* Maximum Value for a field
*/
public void setValueMax (String ValueMax);
/** Get Max. Value.
* Maximum Value for a field
*/
public String getValueMax();
/** Column name ValueMin */
public static final String COLUMNNAME_ValueMin = "ValueMin";
/** Set Min. Value.
* Minimum Value for a field
*/
public void setValueMin (String ValueMin);
/** Get Min. Value.
* Minimum Value for a field
*/
public String getValueMin();
}

View File

@ -0,0 +1,109 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Attribute_Value
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:20.968
*/
public interface I_AD_Attribute_Value
{
/** TableName=AD_Attribute_Value */
public static final String Table_Name = "AD_Attribute_Value";
/** AD_Table_ID=406 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 7 - System - Client - Org
*/
BigDecimal accessLevel = new BigDecimal(7);
/** Load Meta Data */
/** Column name AD_Attribute_ID */
public static final String COLUMNNAME_AD_Attribute_ID = "AD_Attribute_ID";
/** Set System Attribute */
public void setAD_Attribute_ID (int AD_Attribute_ID);
/** Get System Attribute */
public int getAD_Attribute_ID();
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
/** Column name V_Date */
public static final String COLUMNNAME_V_Date = "V_Date";
/** Set V_Date */
public void setV_Date (Timestamp V_Date);
/** Get V_Date */
public Timestamp getV_Date();
/** Column name V_Number */
public static final String COLUMNNAME_V_Number = "V_Number";
/** Set V_Number */
public void setV_Number (String V_Number);
/** Get V_Number */
public String getV_Number();
/** Column name V_String */
public static final String COLUMNNAME_V_String = "V_String";
/** Set V_String */
public void setV_String (String V_String);
/** Get V_String */
public String getV_String();
}

View File

@ -0,0 +1,214 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_ChangeLog
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.015
*/
public interface I_AD_ChangeLog
{
/** TableName=AD_ChangeLog */
public static final String Table_Name = "AD_ChangeLog";
/** AD_Table_ID=580 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_ChangeLog_ID */
public static final String COLUMNNAME_AD_ChangeLog_ID = "AD_ChangeLog_ID";
/** Set Change Log.
* Log of data changes
*/
public void setAD_ChangeLog_ID (int AD_ChangeLog_ID);
/** Get Change Log.
* Log of data changes
*/
public int getAD_ChangeLog_ID();
/** Column name AD_Column_ID */
public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID";
/** Set Column.
* Column in the table
*/
public void setAD_Column_ID (int AD_Column_ID);
/** Get Column.
* Column in the table
*/
public int getAD_Column_ID();
public I_AD_Column getI_AD_Column() throws Exception;
/** Column name AD_Session_ID */
public static final String COLUMNNAME_AD_Session_ID = "AD_Session_ID";
/** Set Session.
* User Session Online or Web
*/
public void setAD_Session_ID (int AD_Session_ID);
/** Get Session.
* User Session Online or Web
*/
public int getAD_Session_ID();
public I_AD_Session getI_AD_Session() throws Exception;
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name IsCustomization */
public static final String COLUMNNAME_IsCustomization = "IsCustomization";
/** Set Customization.
* The change is a customization of the data dictionary and can be applied after Migration
*/
public void setIsCustomization (boolean IsCustomization);
/** Get Customization.
* The change is a customization of the data dictionary and can be applied after Migration
*/
public boolean isCustomization();
/** Column name NewValue */
public static final String COLUMNNAME_NewValue = "NewValue";
/** Set New Value.
* New field value
*/
public void setNewValue (String NewValue);
/** Get New Value.
* New field value
*/
public String getNewValue();
/** Column name OldValue */
public static final String COLUMNNAME_OldValue = "OldValue";
/** Set Old Value.
* The old file data
*/
public void setOldValue (String OldValue);
/** Get Old Value.
* The old file data
*/
public String getOldValue();
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
/** Column name Redo */
public static final String COLUMNNAME_Redo = "Redo";
/** Set Redo */
public void setRedo (String Redo);
/** Get Redo */
public String getRedo();
/** Column name TrxName */
public static final String COLUMNNAME_TrxName = "TrxName";
/** Set Transaction.
* Name of the transaction
*/
public void setTrxName (String TrxName);
/** Get Transaction.
* Name of the transaction
*/
public String getTrxName();
/** Column name Undo */
public static final String COLUMNNAME_Undo = "Undo";
/** Set Undo */
public void setUndo (String Undo);
/** Get Undo */
public String getUndo();
}

View File

@ -0,0 +1,378 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Client
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.078
*/
public interface I_AD_Client
{
/** TableName=AD_Client */
public static final String Table_Name = "AD_Client";
/** AD_Table_ID=112 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Language */
public static final String COLUMNNAME_AD_Language = "AD_Language";
/** Set Language.
* Language for this entity
*/
public void setAD_Language (String AD_Language);
/** Get Language.
* Language for this entity
*/
public String getAD_Language();
/** Column name AutoArchive */
public static final String COLUMNNAME_AutoArchive = "AutoArchive";
/** Set Auto Archive.
* Enable and level of automatic Archive of documents
*/
public void setAutoArchive (String AutoArchive);
/** Get Auto Archive.
* Enable and level of automatic Archive of documents
*/
public String getAutoArchive();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name DocumentDir */
public static final String COLUMNNAME_DocumentDir = "DocumentDir";
/** Set Document Directory.
* Directory for documents from the application server
*/
public void setDocumentDir (String DocumentDir);
/** Get Document Directory.
* Directory for documents from the application server
*/
public String getDocumentDir();
/** Column name EMailTest */
public static final String COLUMNNAME_EMailTest = "EMailTest";
/** Set EMail Test.
* Test EMail
*/
public void setEMailTest (String EMailTest);
/** Get EMail Test.
* Test EMail
*/
public String getEMailTest();
/** Column name IsCostImmediate */
public static final String COLUMNNAME_IsCostImmediate = "IsCostImmediate";
/** Set Cost Immediately.
* Update Costs immediately for testing
*/
public void setIsCostImmediate (boolean IsCostImmediate);
/** Get Cost Immediately.
* Update Costs immediately for testing
*/
public boolean isCostImmediate();
/** Column name IsMultiLingualDocument */
public static final String COLUMNNAME_IsMultiLingualDocument = "IsMultiLingualDocument";
/** Set Multi Lingual Documents.
* Documents are Multi Lingual
*/
public void setIsMultiLingualDocument (boolean IsMultiLingualDocument);
/** Get Multi Lingual Documents.
* Documents are Multi Lingual
*/
public boolean isMultiLingualDocument();
/** Column name IsPostImmediate */
public static final String COLUMNNAME_IsPostImmediate = "IsPostImmediate";
/** Set Post Immediately.
* Post the accounting immediately for testing
*/
public void setIsPostImmediate (boolean IsPostImmediate);
/** Get Post Immediately.
* Post the accounting immediately for testing
*/
public boolean isPostImmediate();
/** Column name IsServerEMail */
public static final String COLUMNNAME_IsServerEMail = "IsServerEMail";
/** Set Server EMail.
* Send EMail from Server
*/
public void setIsServerEMail (boolean IsServerEMail);
/** Get Server EMail.
* Send EMail from Server
*/
public boolean isServerEMail();
/** Column name IsSmtpAuthorization */
public static final String COLUMNNAME_IsSmtpAuthorization = "IsSmtpAuthorization";
/** Set SMTP Authentication.
* Your mail server requires Authentication
*/
public void setIsSmtpAuthorization (boolean IsSmtpAuthorization);
/** Get SMTP Authentication.
* Your mail server requires Authentication
*/
public boolean isSmtpAuthorization();
/** Column name IsUseBetaFunctions */
public static final String COLUMNNAME_IsUseBetaFunctions = "IsUseBetaFunctions";
/** Set Use Beta Functions.
* Enable the use of Beta Functionality
*/
public void setIsUseBetaFunctions (boolean IsUseBetaFunctions);
/** Get Use Beta Functions.
* Enable the use of Beta Functionality
*/
public boolean isUseBetaFunctions();
/** Column name MMPolicy */
public static final String COLUMNNAME_MMPolicy = "MMPolicy";
/** Set Material Policy.
* Material Movement Policy
*/
public void setMMPolicy (String MMPolicy);
/** Get Material Policy.
* Material Movement Policy
*/
public String getMMPolicy();
/** Column name ModelValidationClasses */
public static final String COLUMNNAME_ModelValidationClasses = "ModelValidationClasses";
/** Set Model Validation Classes.
* List of data model validation classes separated by ;
*/
public void setModelValidationClasses (String ModelValidationClasses);
/** Get Model Validation Classes.
* List of data model validation classes separated by ;
*/
public String getModelValidationClasses();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name RequestEMail */
public static final String COLUMNNAME_RequestEMail = "RequestEMail";
/** Set Request EMail.
* EMail address to send automated mails from or receive mails for automated processing (fully qualified)
*/
public void setRequestEMail (String RequestEMail);
/** Get Request EMail.
* EMail address to send automated mails from or receive mails for automated processing (fully qualified)
*/
public String getRequestEMail();
/** Column name RequestFolder */
public static final String COLUMNNAME_RequestFolder = "RequestFolder";
/** Set Request Folder.
* EMail folder to process incoming emails;
if empty INBOX is used
*/
public void setRequestFolder (String RequestFolder);
/** Get Request Folder.
* EMail folder to process incoming emails;
if empty INBOX is used
*/
public String getRequestFolder();
/** Column name RequestUser */
public static final String COLUMNNAME_RequestUser = "RequestUser";
/** Set Request User.
* User Name (ID) of the email owner
*/
public void setRequestUser (String RequestUser);
/** Get Request User.
* User Name (ID) of the email owner
*/
public String getRequestUser();
/** Column name RequestUserPW */
public static final String COLUMNNAME_RequestUserPW = "RequestUserPW";
/** Set Request User Password.
* Password of the user name (ID) for mail processing
*/
public void setRequestUserPW (String RequestUserPW);
/** Get Request User Password.
* Password of the user name (ID) for mail processing
*/
public String getRequestUserPW();
/** Column name SMTPHost */
public static final String COLUMNNAME_SMTPHost = "SMTPHost";
/** Set Mail Host.
* Hostname of Mail Server for SMTP and IMAP
*/
public void setSMTPHost (String SMTPHost);
/** Get Mail Host.
* Hostname of Mail Server for SMTP and IMAP
*/
public String getSMTPHost();
/** Column name StoreArchiveOnFileSystem */
public static final String COLUMNNAME_StoreArchiveOnFileSystem = "StoreArchiveOnFileSystem";
/** Set Store Archive On File System */
public void setStoreArchiveOnFileSystem (boolean StoreArchiveOnFileSystem);
/** Get Store Archive On File System */
public boolean isStoreArchiveOnFileSystem();
/** Column name StoreAttachmentsOnFileSystem */
public static final String COLUMNNAME_StoreAttachmentsOnFileSystem = "StoreAttachmentsOnFileSystem";
/** Set Store Attachments On File System */
public void setStoreAttachmentsOnFileSystem (boolean StoreAttachmentsOnFileSystem);
/** Get Store Attachments On File System */
public boolean isStoreAttachmentsOnFileSystem();
/** Column name UnixArchivePath */
public static final String COLUMNNAME_UnixArchivePath = "UnixArchivePath";
/** Set Unix Archive Path */
public void setUnixArchivePath (String UnixArchivePath);
/** Get Unix Archive Path */
public String getUnixArchivePath();
/** Column name UnixAttachmentPath */
public static final String COLUMNNAME_UnixAttachmentPath = "UnixAttachmentPath";
/** Set Unix Attachment Path */
public void setUnixAttachmentPath (String UnixAttachmentPath);
/** Get Unix Attachment Path */
public String getUnixAttachmentPath();
/** Column name Value */
public static final String COLUMNNAME_Value = "Value";
/** Set Search Key.
* Search key for the record in the format required - must be unique
*/
public void setValue (String Value);
/** Get Search Key.
* Search key for the record in the format required - must be unique
*/
public String getValue();
/** Column name WindowsArchivePath */
public static final String COLUMNNAME_WindowsArchivePath = "WindowsArchivePath";
/** Set Windows Archive Path */
public void setWindowsArchivePath (String WindowsArchivePath);
/** Get Windows Archive Path */
public String getWindowsArchivePath();
/** Column name WindowsAttachmentPath */
public static final String COLUMNNAME_WindowsAttachmentPath = "WindowsAttachmentPath";
/** Set Windows Attachment Path */
public void setWindowsAttachmentPath (String WindowsAttachmentPath);
/** Get Windows Attachment Path */
public String getWindowsAttachmentPath();
}

View File

@ -0,0 +1,292 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_ClientInfo
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.203
*/
public interface I_AD_ClientInfo
{
/** TableName=AD_ClientInfo */
public static final String Table_Name = "AD_ClientInfo";
/** AD_Table_ID=227 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Tree_Activity_ID */
public static final String COLUMNNAME_AD_Tree_Activity_ID = "AD_Tree_Activity_ID";
/** Set Activity Tree.
* Tree to determine activity hierarchy
*/
public void setAD_Tree_Activity_ID (int AD_Tree_Activity_ID);
/** Get Activity Tree.
* Tree to determine activity hierarchy
*/
public int getAD_Tree_Activity_ID();
/** Column name AD_Tree_BPartner_ID */
public static final String COLUMNNAME_AD_Tree_BPartner_ID = "AD_Tree_BPartner_ID";
/** Set BPartner Tree.
* Tree to determine business partner hierarchy
*/
public void setAD_Tree_BPartner_ID (int AD_Tree_BPartner_ID);
/** Get BPartner Tree.
* Tree to determine business partner hierarchy
*/
public int getAD_Tree_BPartner_ID();
/** Column name AD_Tree_Campaign_ID */
public static final String COLUMNNAME_AD_Tree_Campaign_ID = "AD_Tree_Campaign_ID";
/** Set Campaign Tree.
* Tree to determine marketing campaign hierarchy
*/
public void setAD_Tree_Campaign_ID (int AD_Tree_Campaign_ID);
/** Get Campaign Tree.
* Tree to determine marketing campaign hierarchy
*/
public int getAD_Tree_Campaign_ID();
/** Column name AD_Tree_Menu_ID */
public static final String COLUMNNAME_AD_Tree_Menu_ID = "AD_Tree_Menu_ID";
/** Set Menu Tree.
* Tree of the menu
*/
public void setAD_Tree_Menu_ID (int AD_Tree_Menu_ID);
/** Get Menu Tree.
* Tree of the menu
*/
public int getAD_Tree_Menu_ID();
/** Column name AD_Tree_Org_ID */
public static final String COLUMNNAME_AD_Tree_Org_ID = "AD_Tree_Org_ID";
/** Set Organization Tree.
* Tree to determine organizational hierarchy
*/
public void setAD_Tree_Org_ID (int AD_Tree_Org_ID);
/** Get Organization Tree.
* Tree to determine organizational hierarchy
*/
public int getAD_Tree_Org_ID();
/** Column name AD_Tree_Product_ID */
public static final String COLUMNNAME_AD_Tree_Product_ID = "AD_Tree_Product_ID";
/** Set Product Tree.
* Tree to determine product hierarchy
*/
public void setAD_Tree_Product_ID (int AD_Tree_Product_ID);
/** Get Product Tree.
* Tree to determine product hierarchy
*/
public int getAD_Tree_Product_ID();
/** Column name AD_Tree_Project_ID */
public static final String COLUMNNAME_AD_Tree_Project_ID = "AD_Tree_Project_ID";
/** Set Project Tree.
* Tree to determine project hierarchy
*/
public void setAD_Tree_Project_ID (int AD_Tree_Project_ID);
/** Get Project Tree.
* Tree to determine project hierarchy
*/
public int getAD_Tree_Project_ID();
/** Column name AD_Tree_SalesRegion_ID */
public static final String COLUMNNAME_AD_Tree_SalesRegion_ID = "AD_Tree_SalesRegion_ID";
/** Set Sales Region Tree.
* Tree to determine sales regional hierarchy
*/
public void setAD_Tree_SalesRegion_ID (int AD_Tree_SalesRegion_ID);
/** Get Sales Region Tree.
* Tree to determine sales regional hierarchy
*/
public int getAD_Tree_SalesRegion_ID();
/** Column name C_AcctSchema1_ID */
public static final String COLUMNNAME_C_AcctSchema1_ID = "C_AcctSchema1_ID";
/** Set Primary Accounting Schema.
* Primary rules for accounting
*/
public void setC_AcctSchema1_ID (int C_AcctSchema1_ID);
/** Get Primary Accounting Schema.
* Primary rules for accounting
*/
public int getC_AcctSchema1_ID();
/** Column name C_BPartnerCashTrx_ID */
public static final String COLUMNNAME_C_BPartnerCashTrx_ID = "C_BPartnerCashTrx_ID";
/** Set Template B.Partner.
* Business Partner used for creating new Business Partners on the fly
*/
public void setC_BPartnerCashTrx_ID (int C_BPartnerCashTrx_ID);
/** Get Template B.Partner.
* Business Partner used for creating new Business Partners on the fly
*/
public int getC_BPartnerCashTrx_ID();
/** Column name C_Calendar_ID */
public static final String COLUMNNAME_C_Calendar_ID = "C_Calendar_ID";
/** Set Calendar.
* Accounting Calendar Name
*/
public void setC_Calendar_ID (int C_Calendar_ID);
/** Get Calendar.
* Accounting Calendar Name
*/
public int getC_Calendar_ID();
public I_C_Calendar getI_C_Calendar() throws Exception;
/** Column name C_UOM_Length_ID */
public static final String COLUMNNAME_C_UOM_Length_ID = "C_UOM_Length_ID";
/** Set UOM for Length.
* Standard Unit of Measure for Length
*/
public void setC_UOM_Length_ID (int C_UOM_Length_ID);
/** Get UOM for Length.
* Standard Unit of Measure for Length
*/
public int getC_UOM_Length_ID();
/** Column name C_UOM_Time_ID */
public static final String COLUMNNAME_C_UOM_Time_ID = "C_UOM_Time_ID";
/** Set UOM for Time.
* Standard Unit of Measure for Time
*/
public void setC_UOM_Time_ID (int C_UOM_Time_ID);
/** Get UOM for Time.
* Standard Unit of Measure for Time
*/
public int getC_UOM_Time_ID();
/** Column name C_UOM_Volume_ID */
public static final String COLUMNNAME_C_UOM_Volume_ID = "C_UOM_Volume_ID";
/** Set UOM for Volume.
* Standard Unit of Measure for Volume
*/
public void setC_UOM_Volume_ID (int C_UOM_Volume_ID);
/** Get UOM for Volume.
* Standard Unit of Measure for Volume
*/
public int getC_UOM_Volume_ID();
/** Column name C_UOM_Weight_ID */
public static final String COLUMNNAME_C_UOM_Weight_ID = "C_UOM_Weight_ID";
/** Set UOM for Weight.
* Standard Unit of Measure for Weight
*/
public void setC_UOM_Weight_ID (int C_UOM_Weight_ID);
/** Get UOM for Weight.
* Standard Unit of Measure for Weight
*/
public int getC_UOM_Weight_ID();
/** Column name IsDiscountLineAmt */
public static final String COLUMNNAME_IsDiscountLineAmt = "IsDiscountLineAmt";
/** Set Discount calculated from Line Amounts.
* Payment Discount calculation does not include Taxes and Charges
*/
public void setIsDiscountLineAmt (boolean IsDiscountLineAmt);
/** Get Discount calculated from Line Amounts.
* Payment Discount calculation does not include Taxes and Charges
*/
public boolean isDiscountLineAmt();
/** Column name KeepLogDays */
public static final String COLUMNNAME_KeepLogDays = "KeepLogDays";
/** Set Days to keep Log.
* Number of days to keep the log entries
*/
public void setKeepLogDays (int KeepLogDays);
/** Get Days to keep Log.
* Number of days to keep the log entries
*/
public int getKeepLogDays();
/** Column name M_ProductFreight_ID */
public static final String COLUMNNAME_M_ProductFreight_ID = "M_ProductFreight_ID";
/** Set Product for Freight */
public void setM_ProductFreight_ID (int M_ProductFreight_ID);
/** Get Product for Freight */
public int getM_ProductFreight_ID();
}

View File

@ -0,0 +1,127 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_ClientShare
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.25
*/
public interface I_AD_ClientShare
{
/** TableName=AD_ClientShare */
public static final String Table_Name = "AD_ClientShare";
/** AD_Table_ID=827 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 2 - Client
*/
BigDecimal accessLevel = new BigDecimal(2);
/** Load Meta Data */
/** Column name AD_ClientShare_ID */
public static final String COLUMNNAME_AD_ClientShare_ID = "AD_ClientShare_ID";
/** Set Client Share.
* Force (not) sharing of client/org entities
*/
public void setAD_ClientShare_ID (int AD_ClientShare_ID);
/** Get Client Share.
* Force (not) sharing of client/org entities
*/
public int getAD_ClientShare_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name ShareType */
public static final String COLUMNNAME_ShareType = "ShareType";
/** Set Share Type.
* Type of sharing
*/
public void setShareType (String ShareType);
/** Get Share Type.
* Type of sharing
*/
public String getShareType();
}

View File

@ -0,0 +1,296 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Color
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.281
*/
public interface I_AD_Color
{
/** TableName=AD_Color */
public static final String Table_Name = "AD_Color";
/** AD_Table_ID=457 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Color_ID */
public static final String COLUMNNAME_AD_Color_ID = "AD_Color_ID";
/** Set System Color.
* Color for backgrounds or indicators
*/
public void setAD_Color_ID (int AD_Color_ID);
/** Get System Color.
* Color for backgrounds or indicators
*/
public int getAD_Color_ID();
/** Column name AD_Image_ID */
public static final String COLUMNNAME_AD_Image_ID = "AD_Image_ID";
/** Set Image.
* Image or Icon
*/
public void setAD_Image_ID (int AD_Image_ID);
/** Get Image.
* Image or Icon
*/
public int getAD_Image_ID();
public I_AD_Image getI_AD_Image() throws Exception;
/** Column name Alpha */
public static final String COLUMNNAME_Alpha = "Alpha";
/** Set Alpha.
* Color Alpha value 0-255
*/
public void setAlpha (int Alpha);
/** Get Alpha.
* Color Alpha value 0-255
*/
public int getAlpha();
/** Column name Alpha_1 */
public static final String COLUMNNAME_Alpha_1 = "Alpha_1";
/** Set 2nd Alpha.
* Alpha value for second color
*/
public void setAlpha_1 (int Alpha_1);
/** Get 2nd Alpha.
* Alpha value for second color
*/
public int getAlpha_1();
/** Column name Blue */
public static final String COLUMNNAME_Blue = "Blue";
/** Set Blue.
* Color RGB blue value
*/
public void setBlue (int Blue);
/** Get Blue.
* Color RGB blue value
*/
public int getBlue();
/** Column name Blue_1 */
public static final String COLUMNNAME_Blue_1 = "Blue_1";
/** Set 2nd Blue.
* RGB value for second color
*/
public void setBlue_1 (int Blue_1);
/** Get 2nd Blue.
* RGB value for second color
*/
public int getBlue_1();
/** Column name ColorType */
public static final String COLUMNNAME_ColorType = "ColorType";
/** Set Color Type.
* Color presentation for this color
*/
public void setColorType (String ColorType);
/** Get Color Type.
* Color presentation for this color
*/
public String getColorType();
/** Column name Green */
public static final String COLUMNNAME_Green = "Green";
/** Set Green.
* RGB value
*/
public void setGreen (int Green);
/** Get Green.
* RGB value
*/
public int getGreen();
/** Column name Green_1 */
public static final String COLUMNNAME_Green_1 = "Green_1";
/** Set 2nd Green.
* RGB value for second color
*/
public void setGreen_1 (int Green_1);
/** Get 2nd Green.
* RGB value for second color
*/
public int getGreen_1();
/** Column name ImageAlpha */
public static final String COLUMNNAME_ImageAlpha = "ImageAlpha";
/** Set Image Alpha .
* Image Texture Composite Alpha
*/
public void setImageAlpha (BigDecimal ImageAlpha);
/** Get Image Alpha .
* Image Texture Composite Alpha
*/
public BigDecimal getImageAlpha();
/** Column name IsDefault */
public static final String COLUMNNAME_IsDefault = "IsDefault";
/** Set Default.
* Default value
*/
public void setIsDefault (boolean IsDefault);
/** Get Default.
* Default value
*/
public boolean isDefault();
/** Column name LineDistance */
public static final String COLUMNNAME_LineDistance = "LineDistance";
/** Set Line Distance.
* Distance between lines
*/
public void setLineDistance (int LineDistance);
/** Get Line Distance.
* Distance between lines
*/
public int getLineDistance();
/** Column name LineWidth */
public static final String COLUMNNAME_LineWidth = "LineWidth";
/** Set Line Width.
* Width of the lines
*/
public void setLineWidth (int LineWidth);
/** Get Line Width.
* Width of the lines
*/
public int getLineWidth();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Red */
public static final String COLUMNNAME_Red = "Red";
/** Set Red.
* RGB value
*/
public void setRed (int Red);
/** Get Red.
* RGB value
*/
public int getRed();
/** Column name Red_1 */
public static final String COLUMNNAME_Red_1 = "Red_1";
/** Set 2nd Red.
* RGB value for second color
*/
public void setRed_1 (int Red_1);
/** Get 2nd Red.
* RGB value for second color
*/
public int getRed_1();
/** Column name RepeatDistance */
public static final String COLUMNNAME_RepeatDistance = "RepeatDistance";
/** Set Repeat Distance.
* Distance in points to repeat gradient color - or zero
*/
public void setRepeatDistance (int RepeatDistance);
/** Get Repeat Distance.
* Distance in points to repeat gradient color - or zero
*/
public int getRepeatDistance();
/** Column name StartPoint */
public static final String COLUMNNAME_StartPoint = "StartPoint";
/** Set Start Point.
* Start point of the gradient colors
*/
public void setStartPoint (String StartPoint);
/** Get Start Point.
* Start point of the gradient colors
*/
public String getStartPoint();
}

View File

@ -0,0 +1,499 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Column
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.375
*/
public interface I_AD_Column
{
/** TableName=AD_Column */
public static final String Table_Name = "AD_Column";
/** AD_Table_ID=101 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Column_ID */
public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID";
/** Set Column.
* Column in the table
*/
public void setAD_Column_ID (int AD_Column_ID);
/** Get Column.
* Column in the table
*/
public int getAD_Column_ID();
/** Column name AD_Element_ID */
public static final String COLUMNNAME_AD_Element_ID = "AD_Element_ID";
/** Set System Element.
* System Element enables the central maintenance of column description and help.
*/
public void setAD_Element_ID (int AD_Element_ID);
/** Get System Element.
* System Element enables the central maintenance of column description and help.
*/
public int getAD_Element_ID();
/** Column name AD_Process_ID */
public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID";
/** Set Process.
* Process or Report
*/
public void setAD_Process_ID (int AD_Process_ID);
/** Get Process.
* Process or Report
*/
public int getAD_Process_ID();
public I_AD_Process getI_AD_Process() throws Exception;
/** Column name AD_Reference_ID */
public static final String COLUMNNAME_AD_Reference_ID = "AD_Reference_ID";
/** Set Reference.
* System Reference and Validation
*/
public void setAD_Reference_ID (int AD_Reference_ID);
/** Get Reference.
* System Reference and Validation
*/
public int getAD_Reference_ID();
/** Column name AD_Reference_Value_ID */
public static final String COLUMNNAME_AD_Reference_Value_ID = "AD_Reference_Value_ID";
/** Set Reference Key.
* Required to specify, if data type is Table or List
*/
public void setAD_Reference_Value_ID (int AD_Reference_Value_ID);
/** Get Reference Key.
* Required to specify, if data type is Table or List
*/
public int getAD_Reference_Value_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name AD_Val_Rule_ID */
public static final String COLUMNNAME_AD_Val_Rule_ID = "AD_Val_Rule_ID";
/** Set Dynamic Validation.
* Dynamic Validation Rule
*/
public void setAD_Val_Rule_ID (int AD_Val_Rule_ID);
/** Get Dynamic Validation.
* Dynamic Validation Rule
*/
public int getAD_Val_Rule_ID();
public I_AD_Val_Rule getI_AD_Val_Rule() throws Exception;
/** Column name Callout */
public static final String COLUMNNAME_Callout = "Callout";
/** Set Callout.
* Fully qualified class names and method - separated by semicolons
*/
public void setCallout (String Callout);
/** Get Callout.
* Fully qualified class names and method - separated by semicolons
*/
public String getCallout();
/** Column name ColumnName */
public static final String COLUMNNAME_ColumnName = "ColumnName";
/** Set DB Column Name.
* Name of the column in the database
*/
public void setColumnName (String ColumnName);
/** Get DB Column Name.
* Name of the column in the database
*/
public String getColumnName();
/** Column name ColumnSQL */
public static final String COLUMNNAME_ColumnSQL = "ColumnSQL";
/** Set Column SQL.
* Virtual Column (r/o)
*/
public void setColumnSQL (String ColumnSQL);
/** Get Column SQL.
* Virtual Column (r/o)
*/
public String getColumnSQL();
/** Column name DefaultValue */
public static final String COLUMNNAME_DefaultValue = "DefaultValue";
/** Set Default Logic.
* Default value hierarchy, separated by ;
*/
public void setDefaultValue (String DefaultValue);
/** Get Default Logic.
* Default value hierarchy, separated by ;
*/
public String getDefaultValue();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name FieldLength */
public static final String COLUMNNAME_FieldLength = "FieldLength";
/** Set Length.
* Length of the column in the database
*/
public void setFieldLength (int FieldLength);
/** Get Length.
* Length of the column in the database
*/
public int getFieldLength();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name IsAlwaysUpdateable */
public static final String COLUMNNAME_IsAlwaysUpdateable = "IsAlwaysUpdateable";
/** Set Always Updateable.
* The column is always updateable, even if the record is not active or processed
*/
public void setIsAlwaysUpdateable (boolean IsAlwaysUpdateable);
/** Get Always Updateable.
* The column is always updateable, even if the record is not active or processed
*/
public boolean isAlwaysUpdateable();
/** Column name IsEncrypted */
public static final String COLUMNNAME_IsEncrypted = "IsEncrypted";
/** Set Encrypted.
* Display or Storage is encrypted
*/
public void setIsEncrypted (String IsEncrypted);
/** Get Encrypted.
* Display or Storage is encrypted
*/
public String getIsEncrypted();
/** Column name IsIdentifier */
public static final String COLUMNNAME_IsIdentifier = "IsIdentifier";
/** Set Identifier.
* This column is part of the record identifier
*/
public void setIsIdentifier (boolean IsIdentifier);
/** Get Identifier.
* This column is part of the record identifier
*/
public boolean isIdentifier();
/** Column name IsKey */
public static final String COLUMNNAME_IsKey = "IsKey";
/** Set Key column.
* This column is the key in this table
*/
public void setIsKey (boolean IsKey);
/** Get Key column.
* This column is the key in this table
*/
public boolean isKey();
/** Column name IsMandatory */
public static final String COLUMNNAME_IsMandatory = "IsMandatory";
/** Set Mandatory.
* Data entry is required in this column
*/
public void setIsMandatory (boolean IsMandatory);
/** Get Mandatory.
* Data entry is required in this column
*/
public boolean isMandatory();
/** Column name IsParent */
public static final String COLUMNNAME_IsParent = "IsParent";
/** Set Parent link column.
* This column is a link to the parent table (e.g. header from lines) - incl. Association key columns
*/
public void setIsParent (boolean IsParent);
/** Get Parent link column.
* This column is a link to the parent table (e.g. header from lines) - incl. Association key columns
*/
public boolean isParent();
/** Column name IsSelectionColumn */
public static final String COLUMNNAME_IsSelectionColumn = "IsSelectionColumn";
/** Set Selection Column.
* Is this column used for finding rows in windows
*/
public void setIsSelectionColumn (boolean IsSelectionColumn);
/** Get Selection Column.
* Is this column used for finding rows in windows
*/
public boolean isSelectionColumn();
/** Column name IsSyncDatabase */
public static final String COLUMNNAME_IsSyncDatabase = "IsSyncDatabase";
/** Set Synchronize Database.
* Change database table definition when changing dictionary definition
*/
public void setIsSyncDatabase (String IsSyncDatabase);
/** Get Synchronize Database.
* Change database table definition when changing dictionary definition
*/
public String getIsSyncDatabase();
/** Column name IsTranslated */
public static final String COLUMNNAME_IsTranslated = "IsTranslated";
/** Set Translated.
* This column is translated
*/
public void setIsTranslated (boolean IsTranslated);
/** Get Translated.
* This column is translated
*/
public boolean isTranslated();
/** Column name IsUpdateable */
public static final String COLUMNNAME_IsUpdateable = "IsUpdateable";
/** Set Updateable.
* Determines, if the field can be updated
*/
public void setIsUpdateable (boolean IsUpdateable);
/** Get Updateable.
* Determines, if the field can be updated
*/
public boolean isUpdateable();
/** Column name MandatoryLogic */
public static final String COLUMNNAME_MandatoryLogic = "MandatoryLogic";
/** Set Mandatory Logic */
public void setMandatoryLogic (String MandatoryLogic);
/** Get Mandatory Logic */
public String getMandatoryLogic();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name ReadOnlyLogic */
public static final String COLUMNNAME_ReadOnlyLogic = "ReadOnlyLogic";
/** Set Read Only Logic.
* Logic to determine if field is read only (applies only when field is read-write)
*/
public void setReadOnlyLogic (String ReadOnlyLogic);
/** Get Read Only Logic.
* Logic to determine if field is read only (applies only when field is read-write)
*/
public String getReadOnlyLogic();
/** Column name SeqNo */
public static final String COLUMNNAME_SeqNo = "SeqNo";
/** Set Sequence.
* Method of ordering records;
lowest number comes first
*/
public void setSeqNo (int SeqNo);
/** Get Sequence.
* Method of ordering records;
lowest number comes first
*/
public int getSeqNo();
/** Column name VFormat */
public static final String COLUMNNAME_VFormat = "VFormat";
/** Set Value Format.
* Format of the value;
Can contain fixed format elements, Variables: "_lLoOaAcCa09"
*/
public void setVFormat (String VFormat);
/** Get Value Format.
* Format of the value;
Can contain fixed format elements, Variables: "_lLoOaAcCa09"
*/
public String getVFormat();
/** Column name ValueMax */
public static final String COLUMNNAME_ValueMax = "ValueMax";
/** Set Max. Value.
* Maximum Value for a field
*/
public void setValueMax (String ValueMax);
/** Get Max. Value.
* Maximum Value for a field
*/
public String getValueMax();
/** Column name ValueMin */
public static final String COLUMNNAME_ValueMin = "ValueMin";
/** Set Min. Value.
* Minimum Value for a field
*/
public void setValueMin (String ValueMin);
/** Get Min. Value.
* Minimum Value for a field
*/
public String getValueMin();
/** Column name Version */
public static final String COLUMNNAME_Version = "Version";
/** Set Version.
* Version of the table definition
*/
public void setVersion (BigDecimal Version);
/** Get Version.
* Version of the table definition
*/
public BigDecimal getVersion();
}

View File

@ -0,0 +1,131 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Column_Access
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.515
*/
public interface I_AD_Column_Access
{
/** TableName=AD_Column_Access */
public static final String Table_Name = "AD_Column_Access";
/** AD_Table_ID=571 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Column_ID */
public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID";
/** Set Column.
* Column in the table
*/
public void setAD_Column_ID (int AD_Column_ID);
/** Get Column.
* Column in the table
*/
public int getAD_Column_ID();
public I_AD_Column getI_AD_Column() throws Exception;
/** Column name AD_Role_ID */
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
/** Set Role.
* Responsibility Role
*/
public void setAD_Role_ID (int AD_Role_ID);
/** Get Role.
* Responsibility Role
*/
public int getAD_Role_ID();
public I_AD_Role getI_AD_Role() throws Exception;
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name IsExclude */
public static final String COLUMNNAME_IsExclude = "IsExclude";
/** Set Exclude.
* Exclude access to the data - if not selected Include access to the data
*/
public void setIsExclude (boolean IsExclude);
/** Get Exclude.
* Exclude access to the data - if not selected Include access to the data
*/
public boolean isExclude();
/** Column name IsReadOnly */
public static final String COLUMNNAME_IsReadOnly = "IsReadOnly";
/** Set Read Only.
* Field is read only
*/
public void setIsReadOnly (boolean IsReadOnly);
/** Get Read Only.
* Field is read only
*/
public boolean isReadOnly();
}

View File

@ -0,0 +1,138 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Desktop
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.562
*/
public interface I_AD_Desktop
{
/** TableName=AD_Desktop */
public static final String Table_Name = "AD_Desktop";
/** AD_Table_ID=458 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Color_ID */
public static final String COLUMNNAME_AD_Color_ID = "AD_Color_ID";
/** Set System Color.
* Color for backgrounds or indicators
*/
public void setAD_Color_ID (int AD_Color_ID);
/** Get System Color.
* Color for backgrounds or indicators
*/
public int getAD_Color_ID();
/** Column name AD_Desktop_ID */
public static final String COLUMNNAME_AD_Desktop_ID = "AD_Desktop_ID";
/** Set Desktop.
* Collection of Workbenches
*/
public void setAD_Desktop_ID (int AD_Desktop_ID);
/** Get Desktop.
* Collection of Workbenches
*/
public int getAD_Desktop_ID();
/** Column name AD_Image_ID */
public static final String COLUMNNAME_AD_Image_ID = "AD_Image_ID";
/** Set Image.
* Image or Icon
*/
public void setAD_Image_ID (int AD_Image_ID);
/** Get Image.
* Image or Icon
*/
public int getAD_Image_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,114 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_DesktopWorkbench
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.64
*/
public interface I_AD_DesktopWorkbench
{
/** TableName=AD_DesktopWorkbench */
public static final String Table_Name = "AD_DesktopWorkbench";
/** AD_Table_ID=459 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_DesktopWorkbench_ID */
public static final String COLUMNNAME_AD_DesktopWorkbench_ID = "AD_DesktopWorkbench_ID";
/** Set Desktop Workbench */
public void setAD_DesktopWorkbench_ID (int AD_DesktopWorkbench_ID);
/** Get Desktop Workbench */
public int getAD_DesktopWorkbench_ID();
/** Column name AD_Desktop_ID */
public static final String COLUMNNAME_AD_Desktop_ID = "AD_Desktop_ID";
/** Set Desktop.
* Collection of Workbenches
*/
public void setAD_Desktop_ID (int AD_Desktop_ID);
/** Get Desktop.
* Collection of Workbenches
*/
public int getAD_Desktop_ID();
public I_AD_Desktop getI_AD_Desktop() throws Exception;
/** Column name AD_Workbench_ID */
public static final String COLUMNNAME_AD_Workbench_ID = "AD_Workbench_ID";
/** Set Workbench.
* Collection of windows, reports
*/
public void setAD_Workbench_ID (int AD_Workbench_ID);
/** Get Workbench.
* Collection of windows, reports
*/
public int getAD_Workbench_ID();
public I_AD_Workbench getI_AD_Workbench() throws Exception;
/** Column name SeqNo */
public static final String COLUMNNAME_SeqNo = "SeqNo";
/** Set Sequence.
* Method of ordering records;
lowest number comes first
*/
public void setSeqNo (int SeqNo);
/** Get Sequence.
* Method of ordering records;
lowest number comes first
*/
public int getSeqNo();
}

View File

@ -0,0 +1,205 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Element
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.703
*/
public interface I_AD_Element
{
/** TableName=AD_Element */
public static final String Table_Name = "AD_Element";
/** AD_Table_ID=276 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Element_ID */
public static final String COLUMNNAME_AD_Element_ID = "AD_Element_ID";
/** Set System Element.
* System Element enables the central maintenance of column description and help.
*/
public void setAD_Element_ID (int AD_Element_ID);
/** Get System Element.
* System Element enables the central maintenance of column description and help.
*/
public int getAD_Element_ID();
/** Column name ColumnName */
public static final String COLUMNNAME_ColumnName = "ColumnName";
/** Set DB Column Name.
* Name of the column in the database
*/
public void setColumnName (String ColumnName);
/** Get DB Column Name.
* Name of the column in the database
*/
public String getColumnName();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name PO_Description */
public static final String COLUMNNAME_PO_Description = "PO_Description";
/** Set PO Description.
* Description in PO Screens
*/
public void setPO_Description (String PO_Description);
/** Get PO Description.
* Description in PO Screens
*/
public String getPO_Description();
/** Column name PO_Help */
public static final String COLUMNNAME_PO_Help = "PO_Help";
/** Set PO Help.
* Help for PO Screens
*/
public void setPO_Help (String PO_Help);
/** Get PO Help.
* Help for PO Screens
*/
public String getPO_Help();
/** Column name PO_Name */
public static final String COLUMNNAME_PO_Name = "PO_Name";
/** Set PO Name.
* Name on PO Screens
*/
public void setPO_Name (String PO_Name);
/** Get PO Name.
* Name on PO Screens
*/
public String getPO_Name();
/** Column name PO_PrintName */
public static final String COLUMNNAME_PO_PrintName = "PO_PrintName";
/** Set PO Print name.
* Print name on PO Screens/Reports
*/
public void setPO_PrintName (String PO_PrintName);
/** Get PO Print name.
* Print name on PO Screens/Reports
*/
public String getPO_PrintName();
/** Column name PrintName */
public static final String COLUMNNAME_PrintName = "PrintName";
/** Set Print Text.
* The label text to be printed on a document or correspondence.
*/
public void setPrintName (String PrintName);
/** Get Print Text.
* The label text to be printed on a document or correspondence.
*/
public String getPrintName();
}

View File

@ -0,0 +1,175 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_EntityType
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.812
*/
public interface I_AD_EntityType
{
/** TableName=AD_EntityType */
public static final String Table_Name = "AD_EntityType";
/** AD_Table_ID=882 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_EntityType_ID */
public static final String COLUMNNAME_AD_EntityType_ID = "AD_EntityType_ID";
/** Set Entity Type.
* System Entity Type
*/
public void setAD_EntityType_ID (int AD_EntityType_ID);
/** Get Entity Type.
* System Entity Type
*/
public int getAD_EntityType_ID();
/** Column name Classpath */
public static final String COLUMNNAME_Classpath = "Classpath";
/** Set Classpath.
* Extension Classpath
*/
public void setClasspath (String Classpath);
/** Get Classpath.
* Extension Classpath
*/
public String getClasspath();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name ModelPackage */
public static final String COLUMNNAME_ModelPackage = "ModelPackage";
/** Set ModelPackage.
* Java Package of the model classes
*/
public void setModelPackage (String ModelPackage);
/** Get ModelPackage.
* Java Package of the model classes
*/
public String getModelPackage();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name Version */
public static final String COLUMNNAME_Version = "Version";
/** Set Version.
* Version of the table definition
*/
public void setVersion (String Version);
/** Get Version.
* Version of the table definition
*/
public String getVersion();
}

View File

@ -0,0 +1,108 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Error
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.875
*/
public interface I_AD_Error
{
/** TableName=AD_Error */
public static final String Table_Name = "AD_Error";
/** AD_Table_ID=380 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Error_ID */
public static final String COLUMNNAME_AD_Error_ID = "AD_Error_ID";
/** Set Error */
public void setAD_Error_ID (int AD_Error_ID);
/** Get Error */
public int getAD_Error_ID();
/** Column name AD_Language */
public static final String COLUMNNAME_AD_Language = "AD_Language";
/** Set Language.
* Language for this entity
*/
public void setAD_Language (String AD_Language);
/** Get Language.
* Language for this entity
*/
public String getAD_Language();
/** Column name Code */
public static final String COLUMNNAME_Code = "Code";
/** Set Validation code.
* Validation Code
*/
public void setCode (String Code);
/** Get Validation code.
* Validation Code
*/
public String getCode();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,356 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Field
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.921
*/
public interface I_AD_Field
{
/** TableName=AD_Field */
public static final String Table_Name = "AD_Field";
/** AD_Table_ID=107 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Column_ID */
public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID";
/** Set Column.
* Column in the table
*/
public void setAD_Column_ID (int AD_Column_ID);
/** Get Column.
* Column in the table
*/
public int getAD_Column_ID();
public I_AD_Column getI_AD_Column() throws Exception;
/** Column name AD_FieldGroup_ID */
public static final String COLUMNNAME_AD_FieldGroup_ID = "AD_FieldGroup_ID";
/** Set Field Group.
* Logical grouping of fields
*/
public void setAD_FieldGroup_ID (int AD_FieldGroup_ID);
/** Get Field Group.
* Logical grouping of fields
*/
public int getAD_FieldGroup_ID();
public I_AD_FieldGroup getI_AD_FieldGroup() throws Exception;
/** Column name AD_Field_ID */
public static final String COLUMNNAME_AD_Field_ID = "AD_Field_ID";
/** Set Field.
* Field on a database table
*/
public void setAD_Field_ID (int AD_Field_ID);
/** Get Field.
* Field on a database table
*/
public int getAD_Field_ID();
/** Column name AD_Reference_ID */
public static final String COLUMNNAME_AD_Reference_ID = "AD_Reference_ID";
/** Set Reference.
* System Reference and Validation
*/
public void setAD_Reference_ID (int AD_Reference_ID);
/** Get Reference.
* System Reference and Validation
*/
public int getAD_Reference_ID();
/** Column name AD_Tab_ID */
public static final String COLUMNNAME_AD_Tab_ID = "AD_Tab_ID";
/** Set Tab.
* Tab within a Window
*/
public void setAD_Tab_ID (int AD_Tab_ID);
/** Get Tab.
* Tab within a Window
*/
public int getAD_Tab_ID();
public I_AD_Tab getI_AD_Tab() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name DisplayLength */
public static final String COLUMNNAME_DisplayLength = "DisplayLength";
/** Set Display Length.
* Length of the display in characters
*/
public void setDisplayLength (int DisplayLength);
/** Get Display Length.
* Length of the display in characters
*/
public int getDisplayLength();
/** Column name DisplayLogic */
public static final String COLUMNNAME_DisplayLogic = "DisplayLogic";
/** Set Display Logic.
* If the Field is displayed, the result determines if the field is actually displayed
*/
public void setDisplayLogic (String DisplayLogic);
/** Get Display Logic.
* If the Field is displayed, the result determines if the field is actually displayed
*/
public String getDisplayLogic();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name IsCentrallyMaintained */
public static final String COLUMNNAME_IsCentrallyMaintained = "IsCentrallyMaintained";
/** Set Centrally maintained.
* Information maintained in System Element table
*/
public void setIsCentrallyMaintained (boolean IsCentrallyMaintained);
/** Get Centrally maintained.
* Information maintained in System Element table
*/
public boolean isCentrallyMaintained();
/** Column name IsDisplayed */
public static final String COLUMNNAME_IsDisplayed = "IsDisplayed";
/** Set Displayed.
* Determines, if this field is displayed
*/
public void setIsDisplayed (boolean IsDisplayed);
/** Get Displayed.
* Determines, if this field is displayed
*/
public boolean isDisplayed();
/** Column name IsEncrypted */
public static final String COLUMNNAME_IsEncrypted = "IsEncrypted";
/** Set Encrypted.
* Display or Storage is encrypted
*/
public void setIsEncrypted (boolean IsEncrypted);
/** Get Encrypted.
* Display or Storage is encrypted
*/
public boolean isEncrypted();
/** Column name IsFieldOnly */
public static final String COLUMNNAME_IsFieldOnly = "IsFieldOnly";
/** Set Field Only.
* Label is not displayed
*/
public void setIsFieldOnly (boolean IsFieldOnly);
/** Get Field Only.
* Label is not displayed
*/
public boolean isFieldOnly();
/** Column name IsHeading */
public static final String COLUMNNAME_IsHeading = "IsHeading";
/** Set Heading only.
* Field without Column - Only label is displayed
*/
public void setIsHeading (boolean IsHeading);
/** Get Heading only.
* Field without Column - Only label is displayed
*/
public boolean isHeading();
/** Column name IsMandatory */
public static final String COLUMNNAME_IsMandatory = "IsMandatory";
/** Set Mandatory.
* Data entry is required in this column
*/
public void setIsMandatory (String IsMandatory);
/** Get Mandatory.
* Data entry is required in this column
*/
public String getIsMandatory();
/** Column name IsReadOnly */
public static final String COLUMNNAME_IsReadOnly = "IsReadOnly";
/** Set Read Only.
* Field is read only
*/
public void setIsReadOnly (boolean IsReadOnly);
/** Get Read Only.
* Field is read only
*/
public boolean isReadOnly();
/** Column name IsSameLine */
public static final String COLUMNNAME_IsSameLine = "IsSameLine";
/** Set Same Line.
* Displayed on same line as previous field
*/
public void setIsSameLine (boolean IsSameLine);
/** Get Same Line.
* Displayed on same line as previous field
*/
public boolean isSameLine();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name ObscureType */
public static final String COLUMNNAME_ObscureType = "ObscureType";
/** Set Obscure.
* Type of obscuring the data (limiting the display)
*/
public void setObscureType (String ObscureType);
/** Get Obscure.
* Type of obscuring the data (limiting the display)
*/
public String getObscureType();
/** Column name SeqNo */
public static final String COLUMNNAME_SeqNo = "SeqNo";
/** Set Sequence.
* Method of ordering records;
lowest number comes first
*/
public void setSeqNo (int SeqNo);
/** Get Sequence.
* Method of ordering records;
lowest number comes first
*/
public int getSeqNo();
/** Column name SortNo */
public static final String COLUMNNAME_SortNo = "SortNo";
/** Set Record Sort No.
* Determines in what order the records are displayed
*/
public void setSortNo (BigDecimal SortNo);
/** Get Record Sort No.
* Determines in what order the records are displayed
*/
public BigDecimal getSortNo();
}

View File

@ -0,0 +1,101 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_FieldGroup
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:21.984
*/
public interface I_AD_FieldGroup
{
/** TableName=AD_FieldGroup */
public static final String Table_Name = "AD_FieldGroup";
/** AD_Table_ID=414 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_FieldGroup_ID */
public static final String COLUMNNAME_AD_FieldGroup_ID = "AD_FieldGroup_ID";
/** Set Field Group.
* Logical grouping of fields
*/
public void setAD_FieldGroup_ID (int AD_FieldGroup_ID);
/** Get Field Group.
* Logical grouping of fields
*/
public int getAD_FieldGroup_ID();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,143 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Find
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:22.109
*/
public interface I_AD_Find
{
/** TableName=AD_Find */
public static final String Table_Name = "AD_Find";
/** AD_Table_ID=404 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 7 - System - Client - Org
*/
BigDecimal accessLevel = new BigDecimal(7);
/** Load Meta Data */
/** Column name AD_Column_ID */
public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID";
/** Set Column.
* Column in the table
*/
public void setAD_Column_ID (int AD_Column_ID);
/** Get Column.
* Column in the table
*/
public int getAD_Column_ID();
/** Column name AD_Find_ID */
public static final String COLUMNNAME_AD_Find_ID = "AD_Find_ID";
/** Set Find */
public void setAD_Find_ID (int AD_Find_ID);
/** Get Find */
public int getAD_Find_ID();
/** Column name AndOr */
public static final String COLUMNNAME_AndOr = "AndOr";
/** Set And/Or.
* Logical operation: AND or OR
*/
public void setAndOr (String AndOr);
/** Get And/Or.
* Logical operation: AND or OR
*/
public String getAndOr();
/** Column name Find_ID */
public static final String COLUMNNAME_Find_ID = "Find_ID";
/** Set Find_ID */
public void setFind_ID (BigDecimal Find_ID);
/** Get Find_ID */
public BigDecimal getFind_ID();
/** Column name Operation */
public static final String COLUMNNAME_Operation = "Operation";
/** Set Operation.
* Compare Operation
*/
public void setOperation (String Operation);
/** Get Operation.
* Compare Operation
*/
public String getOperation();
/** Column name Value */
public static final String COLUMNNAME_Value = "Value";
/** Set Search Key.
* Search key for the record in the format required - must be unique
*/
public void setValue (String Value);
/** Get Search Key.
* Search key for the record in the format required - must be unique
*/
public String getValue();
/** Column name Value2 */
public static final String COLUMNNAME_Value2 = "Value2";
/** Set Value To.
* Value To
*/
public void setValue2 (String Value2);
/** Get Value To.
* Value To
*/
public String getValue2();
}

View File

@ -0,0 +1,179 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Form
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:22.14
*/
public interface I_AD_Form
{
/** TableName=AD_Form */
public static final String Table_Name = "AD_Form";
/** AD_Table_ID=376 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Form_ID */
public static final String COLUMNNAME_AD_Form_ID = "AD_Form_ID";
/** Set Special Form.
* Special Form
*/
public void setAD_Form_ID (int AD_Form_ID);
/** Get Special Form.
* Special Form
*/
public int getAD_Form_ID();
/** Column name AccessLevel */
public static final String COLUMNNAME_AccessLevel = "AccessLevel";
/** Set Data Access Level.
* Access Level required
*/
public void setAccessLevel (String AccessLevel);
/** Get Data Access Level.
* Access Level required
*/
public String getAccessLevel();
/** Column name Classname */
public static final String COLUMNNAME_Classname = "Classname";
/** Set Classname.
* Java Classname
*/
public void setClassname (String Classname);
/** Get Classname.
* Java Classname
*/
public String getClassname();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name IsBetaFunctionality */
public static final String COLUMNNAME_IsBetaFunctionality = "IsBetaFunctionality";
/** Set Beta Functionality.
* This functionality is considered Beta
*/
public void setIsBetaFunctionality (boolean IsBetaFunctionality);
/** Get Beta Functionality.
* This functionality is considered Beta
*/
public boolean isBetaFunctionality();
/** Column name JSPURL */
public static final String COLUMNNAME_JSPURL = "JSPURL";
/** Set jsp URL.
* Web URL of the jsp function
*/
public void setJSPURL (String JSPURL);
/** Get jsp URL.
* Web URL of the jsp function
*/
public String getJSPURL();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,103 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Form_Access
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:22.156
*/
public interface I_AD_Form_Access
{
/** TableName=AD_Form_Access */
public static final String Table_Name = "AD_Form_Access";
/** AD_Table_ID=378 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Form_ID */
public static final String COLUMNNAME_AD_Form_ID = "AD_Form_ID";
/** Set Special Form.
* Special Form
*/
public void setAD_Form_ID (int AD_Form_ID);
/** Get Special Form.
* Special Form
*/
public int getAD_Form_ID();
public I_AD_Form getI_AD_Form() throws Exception;
/** Column name AD_Role_ID */
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
/** Set Role.
* Responsibility Role
*/
public void setAD_Role_ID (int AD_Role_ID);
/** Get Role.
* Responsibility Role
*/
public int getAD_Role_ID();
public I_AD_Role getI_AD_Role() throws Exception;
/** Column name IsReadWrite */
public static final String COLUMNNAME_IsReadWrite = "IsReadWrite";
/** Set Read Write.
* Field is read / write
*/
public void setIsReadWrite (boolean IsReadWrite);
/** Get Read Write.
* Field is read / write
*/
public boolean isReadWrite();
}

View File

@ -0,0 +1,140 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Image
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:22.203
*/
public interface I_AD_Image
{
/** TableName=AD_Image */
public static final String Table_Name = "AD_Image";
/** AD_Table_ID=461 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Image_ID */
public static final String COLUMNNAME_AD_Image_ID = "AD_Image_ID";
/** Set Image.
* Image or Icon
*/
public void setAD_Image_ID (int AD_Image_ID);
/** Get Image.
* Image or Icon
*/
public int getAD_Image_ID();
/** Column name BinaryData */
public static final String COLUMNNAME_BinaryData = "BinaryData";
/** Set BinaryData.
* Binary Data
*/
public void setBinaryData (byte[] BinaryData);
/** Get BinaryData.
* Binary Data
*/
public byte[] getBinaryData();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name ImageURL */
public static final String COLUMNNAME_ImageURL = "ImageURL";
/** Set Image URL.
* URL of image
*/
public void setImageURL (String ImageURL);
/** Get Image URL.
* URL of image
*/
public String getImageURL();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,132 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_ImpFormat
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:22.312
*/
public interface I_AD_ImpFormat
{
/** TableName=AD_ImpFormat */
public static final String Table_Name = "AD_ImpFormat";
/** AD_Table_ID=381 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_ImpFormat_ID */
public static final String COLUMNNAME_AD_ImpFormat_ID = "AD_ImpFormat_ID";
/** Set Import Format */
public void setAD_ImpFormat_ID (int AD_ImpFormat_ID);
/** Get Import Format */
public int getAD_ImpFormat_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name FormatType */
public static final String COLUMNNAME_FormatType = "FormatType";
/** Set Format.
* Format of the data
*/
public void setFormatType (String FormatType);
/** Get Format.
* Format of the data
*/
public String getFormatType();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
}

View File

@ -0,0 +1,236 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_ImpFormat_Row
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:22.406
*/
public interface I_AD_ImpFormat_Row
{
/** TableName=AD_ImpFormat_Row */
public static final String Table_Name = "AD_ImpFormat_Row";
/** AD_Table_ID=382 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Column_ID */
public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID";
/** Set Column.
* Column in the table
*/
public void setAD_Column_ID (int AD_Column_ID);
/** Get Column.
* Column in the table
*/
public int getAD_Column_ID();
public I_AD_Column getI_AD_Column() throws Exception;
/** Column name AD_ImpFormat_ID */
public static final String COLUMNNAME_AD_ImpFormat_ID = "AD_ImpFormat_ID";
/** Set Import Format */
public void setAD_ImpFormat_ID (int AD_ImpFormat_ID);
/** Get Import Format */
public int getAD_ImpFormat_ID();
public I_AD_ImpFormat getI_AD_ImpFormat() throws Exception;
/** Column name AD_ImpFormat_Row_ID */
public static final String COLUMNNAME_AD_ImpFormat_Row_ID = "AD_ImpFormat_Row_ID";
/** Set Format Field */
public void setAD_ImpFormat_Row_ID (int AD_ImpFormat_Row_ID);
/** Get Format Field */
public int getAD_ImpFormat_Row_ID();
/** Column name Callout */
public static final String COLUMNNAME_Callout = "Callout";
/** Set Callout.
* Fully qualified class names and method - separated by semicolons
*/
public void setCallout (String Callout);
/** Get Callout.
* Fully qualified class names and method - separated by semicolons
*/
public String getCallout();
/** Column name ConstantValue */
public static final String COLUMNNAME_ConstantValue = "ConstantValue";
/** Set Constant Value.
* Constant value
*/
public void setConstantValue (String ConstantValue);
/** Get Constant Value.
* Constant value
*/
public String getConstantValue();
/** Column name DataFormat */
public static final String COLUMNNAME_DataFormat = "DataFormat";
/** Set Data Format.
* Format String in Java Notation, e.g. ddMMyy
*/
public void setDataFormat (String DataFormat);
/** Get Data Format.
* Format String in Java Notation, e.g. ddMMyy
*/
public String getDataFormat();
/** Column name DataType */
public static final String COLUMNNAME_DataType = "DataType";
/** Set Data Type.
* Type of data
*/
public void setDataType (String DataType);
/** Get Data Type.
* Type of data
*/
public String getDataType();
/** Column name DecimalPoint */
public static final String COLUMNNAME_DecimalPoint = "DecimalPoint";
/** Set Decimal Point.
* Decimal Point in the data file - if any
*/
public void setDecimalPoint (String DecimalPoint);
/** Get Decimal Point.
* Decimal Point in the data file - if any
*/
public String getDecimalPoint();
/** Column name DivideBy100 */
public static final String COLUMNNAME_DivideBy100 = "DivideBy100";
/** Set Divide by 100.
* Divide number by 100 to get correct amount
*/
public void setDivideBy100 (boolean DivideBy100);
/** Get Divide by 100.
* Divide number by 100 to get correct amount
*/
public boolean isDivideBy100();
/** Column name EndNo */
public static final String COLUMNNAME_EndNo = "EndNo";
/** Set End No */
public void setEndNo (int EndNo);
/** Get End No */
public int getEndNo();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Script */
public static final String COLUMNNAME_Script = "Script";
/** Set Script.
* Dynamic Java Language Script to calculate result
*/
public void setScript (String Script);
/** Get Script.
* Dynamic Java Language Script to calculate result
*/
public String getScript();
/** Column name SeqNo */
public static final String COLUMNNAME_SeqNo = "SeqNo";
/** Set Sequence.
* Method of ordering records;
lowest number comes first
*/
public void setSeqNo (int SeqNo);
/** Get Sequence.
* Method of ordering records;
lowest number comes first
*/
public int getSeqNo();
/** Column name StartNo */
public static final String COLUMNNAME_StartNo = "StartNo";
/** Set Start No.
* Starting number/position
*/
public void setStartNo (int StartNo);
/** Get Start No.
* Starting number/position
*/
public int getStartNo();
}

View File

@ -0,0 +1,224 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_InfoColumn
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:22.453
*/
public interface I_AD_InfoColumn
{
/** TableName=AD_InfoColumn */
public static final String Table_Name = "AD_InfoColumn";
/** AD_Table_ID=897 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Element_ID */
public static final String COLUMNNAME_AD_Element_ID = "AD_Element_ID";
/** Set System Element.
* System Element enables the central maintenance of column description and help.
*/
public void setAD_Element_ID (int AD_Element_ID);
/** Get System Element.
* System Element enables the central maintenance of column description and help.
*/
public int getAD_Element_ID();
public I_AD_Element getI_AD_Element() throws Exception;
/** Column name AD_InfoColumn_ID */
public static final String COLUMNNAME_AD_InfoColumn_ID = "AD_InfoColumn_ID";
/** Set Info Column.
* Info Window Column
*/
public void setAD_InfoColumn_ID (int AD_InfoColumn_ID);
/** Get Info Column.
* Info Window Column
*/
public int getAD_InfoColumn_ID();
/** Column name AD_InfoWindow_ID */
public static final String COLUMNNAME_AD_InfoWindow_ID = "AD_InfoWindow_ID";
/** Set Info Window.
* Info and search/select Window
*/
public void setAD_InfoWindow_ID (int AD_InfoWindow_ID);
/** Get Info Window.
* Info and search/select Window
*/
public int getAD_InfoWindow_ID();
public I_AD_InfoWindow getI_AD_InfoWindow() throws Exception;
/** Column name AD_Reference_ID */
public static final String COLUMNNAME_AD_Reference_ID = "AD_Reference_ID";
/** Set Reference.
* System Reference and Validation
*/
public void setAD_Reference_ID (int AD_Reference_ID);
/** Get Reference.
* System Reference and Validation
*/
public int getAD_Reference_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name IsDisplayed */
public static final String COLUMNNAME_IsDisplayed = "IsDisplayed";
/** Set Displayed.
* Determines, if this field is displayed
*/
public void setIsDisplayed (boolean IsDisplayed);
/** Get Displayed.
* Determines, if this field is displayed
*/
public boolean isDisplayed();
/** Column name IsQueryCriteria */
public static final String COLUMNNAME_IsQueryCriteria = "IsQueryCriteria";
/** Set Query Criteria.
* The column is also used as a query criteria
*/
public void setIsQueryCriteria (boolean IsQueryCriteria);
/** Get Query Criteria.
* The column is also used as a query criteria
*/
public boolean isQueryCriteria();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name SelectClause */
public static final String COLUMNNAME_SelectClause = "SelectClause";
/** Set Sql SELECT.
* SQL SELECT clause
*/
public void setSelectClause (String SelectClause);
/** Get Sql SELECT.
* SQL SELECT clause
*/
public String getSelectClause();
/** Column name SeqNo */
public static final String COLUMNNAME_SeqNo = "SeqNo";
/** Set Sequence.
* Method of ordering records;
lowest number comes first
*/
public void setSeqNo (int SeqNo);
/** Get Sequence.
* Method of ordering records;
lowest number comes first
*/
public int getSeqNo();
}

View File

@ -0,0 +1,177 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_InfoWindow
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:22.484
*/
public interface I_AD_InfoWindow
{
/** TableName=AD_InfoWindow */
public static final String Table_Name = "AD_InfoWindow";
/** AD_Table_ID=895 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_InfoWindow_ID */
public static final String COLUMNNAME_AD_InfoWindow_ID = "AD_InfoWindow_ID";
/** Set Info Window.
* Info and search/select Window
*/
public void setAD_InfoWindow_ID (int AD_InfoWindow_ID);
/** Get Info Window.
* Info and search/select Window
*/
public int getAD_InfoWindow_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name FromClause */
public static final String COLUMNNAME_FromClause = "FromClause";
/** Set Sql FROM.
* SQL FROM clause
*/
public void setFromClause (String FromClause);
/** Get Sql FROM.
* SQL FROM clause
*/
public String getFromClause();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name OtherClause */
public static final String COLUMNNAME_OtherClause = "OtherClause";
/** Set Other SQL Clause.
* Other SQL Clause
*/
public void setOtherClause (String OtherClause);
/** Get Other SQL Clause.
* Other SQL Clause
*/
public String getOtherClause();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
}

View File

@ -0,0 +1,606 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Issue
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:22.625
*/
public interface I_AD_Issue
{
/** TableName=AD_Issue */
public static final String Table_Name = "AD_Issue";
/** AD_Table_ID=828 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Form_ID */
public static final String COLUMNNAME_AD_Form_ID = "AD_Form_ID";
/** Set Special Form.
* Special Form
*/
public void setAD_Form_ID (int AD_Form_ID);
/** Get Special Form.
* Special Form
*/
public int getAD_Form_ID();
public I_AD_Form getI_AD_Form() throws Exception;
/** Column name AD_Issue_ID */
public static final String COLUMNNAME_AD_Issue_ID = "AD_Issue_ID";
/** Set System Issue.
* Automatically created or manually entered System Issue
*/
public void setAD_Issue_ID (int AD_Issue_ID);
/** Get System Issue.
* Automatically created or manually entered System Issue
*/
public int getAD_Issue_ID();
/** Column name AD_Process_ID */
public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID";
/** Set Process.
* Process or Report
*/
public void setAD_Process_ID (int AD_Process_ID);
/** Get Process.
* Process or Report
*/
public int getAD_Process_ID();
/** Column name AD_Window_ID */
public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID";
/** Set Window.
* Data entry or display window
*/
public void setAD_Window_ID (int AD_Window_ID);
/** Get Window.
* Data entry or display window
*/
public int getAD_Window_ID();
/** Column name A_Asset_ID */
public static final String COLUMNNAME_A_Asset_ID = "A_Asset_ID";
/** Set Asset.
* Asset used internally or by customers
*/
public void setA_Asset_ID (int A_Asset_ID);
/** Get Asset.
* Asset used internally or by customers
*/
public int getA_Asset_ID();
public I_A_Asset getI_A_Asset() throws Exception;
/** Column name Comments */
public static final String COLUMNNAME_Comments = "Comments";
/** Set Comments.
* Comments or additional information
*/
public void setComments (String Comments);
/** Get Comments.
* Comments or additional information
*/
public String getComments();
/** Column name DBAddress */
public static final String COLUMNNAME_DBAddress = "DBAddress";
/** Set DB Address.
* JDBC URL of the database server
*/
public void setDBAddress (String DBAddress);
/** Get DB Address.
* JDBC URL of the database server
*/
public String getDBAddress();
/** Column name DatabaseInfo */
public static final String COLUMNNAME_DatabaseInfo = "DatabaseInfo";
/** Set Database.
* Database Information
*/
public void setDatabaseInfo (String DatabaseInfo);
/** Get Database.
* Database Information
*/
public String getDatabaseInfo();
/** Column name ErrorTrace */
public static final String COLUMNNAME_ErrorTrace = "ErrorTrace";
/** Set Error Trace.
* System Error Trace
*/
public void setErrorTrace (String ErrorTrace);
/** Get Error Trace.
* System Error Trace
*/
public String getErrorTrace();
/** Column name IsReproducible */
public static final String COLUMNNAME_IsReproducible = "IsReproducible";
/** Set Reproducible.
* Problem can re reproduced in Gardenworld
*/
public void setIsReproducible (String IsReproducible);
/** Get Reproducible.
* Problem can re reproduced in Gardenworld
*/
public String getIsReproducible();
/** Column name IsVanillaSystem */
public static final String COLUMNNAME_IsVanillaSystem = "IsVanillaSystem";
/** Set Vanilla System.
* The system was NOT compiled from Source - i.e. standard distribution
*/
public void setIsVanillaSystem (String IsVanillaSystem);
/** Get Vanilla System.
* The system was NOT compiled from Source - i.e. standard distribution
*/
public String getIsVanillaSystem();
/** Column name IssueSource */
public static final String COLUMNNAME_IssueSource = "IssueSource";
/** Set Source.
* Issue Source
*/
public void setIssueSource (String IssueSource);
/** Get Source.
* Issue Source
*/
public String getIssueSource();
/** Column name IssueSummary */
public static final String COLUMNNAME_IssueSummary = "IssueSummary";
/** Set Issue Summary.
* Issue Summary
*/
public void setIssueSummary (String IssueSummary);
/** Get Issue Summary.
* Issue Summary
*/
public String getIssueSummary();
/** Column name JavaInfo */
public static final String COLUMNNAME_JavaInfo = "JavaInfo";
/** Set Java Info.
* Java Version Info
*/
public void setJavaInfo (String JavaInfo);
/** Get Java Info.
* Java Version Info
*/
public String getJavaInfo();
/** Column name LineNo */
public static final String COLUMNNAME_LineNo = "LineNo";
/** Set Line.
* Line No
*/
public void setLineNo (int LineNo);
/** Get Line.
* Line No
*/
public int getLineNo();
/** Column name Local_Host */
public static final String COLUMNNAME_Local_Host = "Local_Host";
/** Set Local Host.
* Local Host Info
*/
public void setLocal_Host (String Local_Host);
/** Get Local Host.
* Local Host Info
*/
public String getLocal_Host();
/** Column name LoggerName */
public static final String COLUMNNAME_LoggerName = "LoggerName";
/** Set Logger.
* Logger Name
*/
public void setLoggerName (String LoggerName);
/** Get Logger.
* Logger Name
*/
public String getLoggerName();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name OperatingSystemInfo */
public static final String COLUMNNAME_OperatingSystemInfo = "OperatingSystemInfo";
/** Set Operating System.
* Operating System Info
*/
public void setOperatingSystemInfo (String OperatingSystemInfo);
/** Get Operating System.
* Operating System Info
*/
public String getOperatingSystemInfo();
/** Column name Processed */
public static final String COLUMNNAME_Processed = "Processed";
/** Set Processed.
* The document has been processed
*/
public void setProcessed (boolean Processed);
/** Get Processed.
* The document has been processed
*/
public boolean isProcessed();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name ProfileInfo */
public static final String COLUMNNAME_ProfileInfo = "ProfileInfo";
/** Set Profile.
* Information to help profiling the system for solving support issues
*/
public void setProfileInfo (String ProfileInfo);
/** Get Profile.
* Information to help profiling the system for solving support issues
*/
public String getProfileInfo();
/** Column name R_IssueKnown_ID */
public static final String COLUMNNAME_R_IssueKnown_ID = "R_IssueKnown_ID";
/** Set Known Issue.
* Known Issue
*/
public void setR_IssueKnown_ID (int R_IssueKnown_ID);
/** Get Known Issue.
* Known Issue
*/
public int getR_IssueKnown_ID();
/** Column name R_IssueProject_ID */
public static final String COLUMNNAME_R_IssueProject_ID = "R_IssueProject_ID";
/** Set Issue Project.
* Implementation Projects
*/
public void setR_IssueProject_ID (int R_IssueProject_ID);
/** Get Issue Project.
* Implementation Projects
*/
public int getR_IssueProject_ID();
/** Column name R_IssueSystem_ID */
public static final String COLUMNNAME_R_IssueSystem_ID = "R_IssueSystem_ID";
/** Set Issue System.
* System creating the issue
*/
public void setR_IssueSystem_ID (int R_IssueSystem_ID);
/** Get Issue System.
* System creating the issue
*/
public int getR_IssueSystem_ID();
/** Column name R_IssueUser_ID */
public static final String COLUMNNAME_R_IssueUser_ID = "R_IssueUser_ID";
/** Set IssueUser.
* User who reported issues
*/
public void setR_IssueUser_ID (int R_IssueUser_ID);
/** Get IssueUser.
* User who reported issues
*/
public int getR_IssueUser_ID();
/** Column name R_Request_ID */
public static final String COLUMNNAME_R_Request_ID = "R_Request_ID";
/** Set Request.
* Request from a Business Partner or Prospect
*/
public void setR_Request_ID (int R_Request_ID);
/** Get Request.
* Request from a Business Partner or Prospect
*/
public int getR_Request_ID();
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
/** Column name ReleaseNo */
public static final String COLUMNNAME_ReleaseNo = "ReleaseNo";
/** Set Release No.
* Internal Release Number
*/
public void setReleaseNo (String ReleaseNo);
/** Get Release No.
* Internal Release Number
*/
public String getReleaseNo();
/** Column name ReleaseTag */
public static final String COLUMNNAME_ReleaseTag = "ReleaseTag";
/** Set Release Tag.
* Release Tag
*/
public void setReleaseTag (String ReleaseTag);
/** Get Release Tag.
* Release Tag
*/
public String getReleaseTag();
/** Column name Remote_Addr */
public static final String COLUMNNAME_Remote_Addr = "Remote_Addr";
/** Set Remote Addr.
* Remote Address
*/
public void setRemote_Addr (String Remote_Addr);
/** Get Remote Addr.
* Remote Address
*/
public String getRemote_Addr();
/** Column name Remote_Host */
public static final String COLUMNNAME_Remote_Host = "Remote_Host";
/** Set Remote Host.
* Remote host Info
*/
public void setRemote_Host (String Remote_Host);
/** Get Remote Host.
* Remote host Info
*/
public String getRemote_Host();
/** Column name RequestDocumentNo */
public static final String COLUMNNAME_RequestDocumentNo = "RequestDocumentNo";
/** Set Request Document No.
* Adempiere Request Document No
*/
public void setRequestDocumentNo (String RequestDocumentNo);
/** Get Request Document No.
* Adempiere Request Document No
*/
public String getRequestDocumentNo();
/** Column name ResponseText */
public static final String COLUMNNAME_ResponseText = "ResponseText";
/** Set Response Text.
* Request Response Text
*/
public void setResponseText (String ResponseText);
/** Get Response Text.
* Request Response Text
*/
public String getResponseText();
/** Column name SourceClassName */
public static final String COLUMNNAME_SourceClassName = "SourceClassName";
/** Set Source Class.
* Source Class Name
*/
public void setSourceClassName (String SourceClassName);
/** Get Source Class.
* Source Class Name
*/
public String getSourceClassName();
/** Column name SourceMethodName */
public static final String COLUMNNAME_SourceMethodName = "SourceMethodName";
/** Set Source Method.
* Source Method Name
*/
public void setSourceMethodName (String SourceMethodName);
/** Get Source Method.
* Source Method Name
*/
public String getSourceMethodName();
/** Column name StackTrace */
public static final String COLUMNNAME_StackTrace = "StackTrace";
/** Set Stack Trace.
* System Log Trace
*/
public void setStackTrace (String StackTrace);
/** Get Stack Trace.
* System Log Trace
*/
public String getStackTrace();
/** Column name StatisticsInfo */
public static final String COLUMNNAME_StatisticsInfo = "StatisticsInfo";
/** Set Statistics.
* Information to help profiling the system for solving support issues
*/
public void setStatisticsInfo (String StatisticsInfo);
/** Get Statistics.
* Information to help profiling the system for solving support issues
*/
public String getStatisticsInfo();
/** Column name SupportEMail */
public static final String COLUMNNAME_SupportEMail = "SupportEMail";
/** Set Support EMail.
* EMail address to send support information and updates to
*/
public void setSupportEMail (String SupportEMail);
/** Get Support EMail.
* EMail address to send support information and updates to
*/
public String getSupportEMail();
/** Column name SystemStatus */
public static final String COLUMNNAME_SystemStatus = "SystemStatus";
/** Set System Status.
* Status of the system - Support priority depends on system status
*/
public void setSystemStatus (String SystemStatus);
/** Get System Status.
* Status of the system - Support priority depends on system status
*/
public String getSystemStatus();
/** Column name UserName */
public static final String COLUMNNAME_UserName = "UserName";
/** Set Registered EMail.
* Email of the responsible for the System
*/
public void setUserName (String UserName);
/** Get Registered EMail.
* Email of the responsible for the System
*/
public String getUserName();
/** Column name Version */
public static final String COLUMNNAME_Version = "Version";
/** Set Version.
* Version of the table definition
*/
public void setVersion (String Version);
/** Get Version.
* Version of the table definition
*/
public String getVersion();
}

View File

@ -0,0 +1,99 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_LabelPrinter
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:23.171
*/
public interface I_AD_LabelPrinter
{
/** TableName=AD_LabelPrinter */
public static final String Table_Name = "AD_LabelPrinter";
/** AD_Table_ID=626 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_LabelPrinter_ID */
public static final String COLUMNNAME_AD_LabelPrinter_ID = "AD_LabelPrinter_ID";
/** Set Label printer.
* Label Printer Definition
*/
public void setAD_LabelPrinter_ID (int AD_LabelPrinter_ID);
/** Get Label printer.
* Label Printer Definition
*/
public int getAD_LabelPrinter_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,166 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_LabelPrinterFunction
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:23.265
*/
public interface I_AD_LabelPrinterFunction
{
/** TableName=AD_LabelPrinterFunction */
public static final String Table_Name = "AD_LabelPrinterFunction";
/** AD_Table_ID=624 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_LabelPrinterFunction_ID */
public static final String COLUMNNAME_AD_LabelPrinterFunction_ID = "AD_LabelPrinterFunction_ID";
/** Set Label printer Function.
* Function of Label Printer
*/
public void setAD_LabelPrinterFunction_ID (int AD_LabelPrinterFunction_ID);
/** Get Label printer Function.
* Function of Label Printer
*/
public int getAD_LabelPrinterFunction_ID();
/** Column name AD_LabelPrinter_ID */
public static final String COLUMNNAME_AD_LabelPrinter_ID = "AD_LabelPrinter_ID";
/** Set Label printer.
* Label Printer Definition
*/
public void setAD_LabelPrinter_ID (int AD_LabelPrinter_ID);
/** Get Label printer.
* Label Printer Definition
*/
public int getAD_LabelPrinter_ID();
public I_AD_LabelPrinter getI_AD_LabelPrinter() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name FunctionPrefix */
public static final String COLUMNNAME_FunctionPrefix = "FunctionPrefix";
/** Set Function Prefix.
* Data sent before the function
*/
public void setFunctionPrefix (String FunctionPrefix);
/** Get Function Prefix.
* Data sent before the function
*/
public String getFunctionPrefix();
/** Column name FunctionSuffix */
public static final String COLUMNNAME_FunctionSuffix = "FunctionSuffix";
/** Set Function Suffix.
* Data sent after the function
*/
public void setFunctionSuffix (String FunctionSuffix);
/** Get Function Suffix.
* Data sent after the function
*/
public String getFunctionSuffix();
/** Column name IsXYPosition */
public static final String COLUMNNAME_IsXYPosition = "IsXYPosition";
/** Set XY Position.
* The Function is XY position
*/
public void setIsXYPosition (boolean IsXYPosition);
/** Get XY Position.
* The Function is XY position
*/
public boolean isXYPosition();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name XYSeparator */
public static final String COLUMNNAME_XYSeparator = "XYSeparator";
/** Set XY Separator.
* The separator between the X and Y function.
*/
public void setXYSeparator (String XYSeparator);
/** Get XY Separator.
* The separator between the X and Y function.
*/
public String getXYSeparator();
}

View File

@ -0,0 +1,195 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Language
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:23.312
*/
public interface I_AD_Language
{
/** TableName=AD_Language */
public static final String Table_Name = "AD_Language";
/** AD_Table_ID=111 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Language */
public static final String COLUMNNAME_AD_Language = "AD_Language";
/** Set Language.
* Language for this entity
*/
public void setAD_Language (String AD_Language);
/** Get Language.
* Language for this entity
*/
public String getAD_Language();
/** Column name AD_Language_ID */
public static final String COLUMNNAME_AD_Language_ID = "AD_Language_ID";
/** Set Language ID */
public void setAD_Language_ID (int AD_Language_ID);
/** Get Language ID */
public int getAD_Language_ID();
/** Column name CountryCode */
public static final String COLUMNNAME_CountryCode = "CountryCode";
/** Set ISO Country Code.
* Upper-case two-letter alphanumeric ISO Country code according to ISO 3166-1 - http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html
*/
public void setCountryCode (String CountryCode);
/** Get ISO Country Code.
* Upper-case two-letter alphanumeric ISO Country code according to ISO 3166-1 - http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html
*/
public String getCountryCode();
/** Column name DatePattern */
public static final String COLUMNNAME_DatePattern = "DatePattern";
/** Set Date Pattern.
* Java Date Pattern
*/
public void setDatePattern (String DatePattern);
/** Get Date Pattern.
* Java Date Pattern
*/
public String getDatePattern();
/** Column name IsBaseLanguage */
public static final String COLUMNNAME_IsBaseLanguage = "IsBaseLanguage";
/** Set Base Language.
* The system information is maintained in this language
*/
public void setIsBaseLanguage (boolean IsBaseLanguage);
/** Get Base Language.
* The system information is maintained in this language
*/
public boolean isBaseLanguage();
/** Column name IsDecimalPoint */
public static final String COLUMNNAME_IsDecimalPoint = "IsDecimalPoint";
/** Set Decimal Point.
* The number notation has a decimal point (no decimal comma)
*/
public void setIsDecimalPoint (boolean IsDecimalPoint);
/** Get Decimal Point.
* The number notation has a decimal point (no decimal comma)
*/
public boolean isDecimalPoint();
/** Column name IsSystemLanguage */
public static final String COLUMNNAME_IsSystemLanguage = "IsSystemLanguage";
/** Set System Language.
* The screens, etc. are maintained in this Language
*/
public void setIsSystemLanguage (boolean IsSystemLanguage);
/** Get System Language.
* The screens, etc. are maintained in this Language
*/
public boolean isSystemLanguage();
/** Column name LanguageISO */
public static final String COLUMNNAME_LanguageISO = "LanguageISO";
/** Set ISO Language Code.
* Lower-case two-letter ISO-3166 code - http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt
*/
public void setLanguageISO (String LanguageISO);
/** Get ISO Language Code.
* Lower-case two-letter ISO-3166 code - http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt
*/
public String getLanguageISO();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name TimePattern */
public static final String COLUMNNAME_TimePattern = "TimePattern";
/** Set Time Pattern.
* Java Time Pattern
*/
public void setTimePattern (String TimePattern);
/** Get Time Pattern.
* Java Time Pattern
*/
public String getTimePattern();
}

View File

@ -0,0 +1,157 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_LdapAccess
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:23.484
*/
public interface I_AD_LdapAccess
{
/** TableName=AD_LdapAccess */
public static final String Table_Name = "AD_LdapAccess";
/** AD_Table_ID=904 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 7 - System - Client - Org
*/
BigDecimal accessLevel = new BigDecimal(7);
/** Load Meta Data */
/** Column name AD_LdapAccess_ID */
public static final String COLUMNNAME_AD_LdapAccess_ID = "AD_LdapAccess_ID";
/** Set Ldap Access.
* Ldap Access Log
*/
public void setAD_LdapAccess_ID (int AD_LdapAccess_ID);
/** Get Ldap Access.
* Ldap Access Log
*/
public int getAD_LdapAccess_ID();
/** Column name AD_LdapProcessor_ID */
public static final String COLUMNNAME_AD_LdapProcessor_ID = "AD_LdapProcessor_ID";
/** Set Ldap Processor.
* LDAP Server to authenticate and authorize external systems based on Adempiere
*/
public void setAD_LdapProcessor_ID (int AD_LdapProcessor_ID);
/** Get Ldap Processor.
* LDAP Server to authenticate and authorize external systems based on Adempiere
*/
public int getAD_LdapProcessor_ID();
public I_AD_LdapProcessor getI_AD_LdapProcessor() throws Exception;
/** Column name AD_User_ID */
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
/** Set User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public void setAD_User_ID (int AD_User_ID);
/** Get User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public int getAD_User_ID();
public I_AD_User getI_AD_User() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name IsError */
public static final String COLUMNNAME_IsError = "IsError";
/** Set Error.
* An Error occured in the execution
*/
public void setIsError (boolean IsError);
/** Get Error.
* An Error occured in the execution
*/
public boolean isError();
/** Column name R_InterestArea_ID */
public static final String COLUMNNAME_R_InterestArea_ID = "R_InterestArea_ID";
/** Set Interest Area.
* Interest Area or Topic
*/
public void setR_InterestArea_ID (int R_InterestArea_ID);
/** Get Interest Area.
* Interest Area or Topic
*/
public int getR_InterestArea_ID();
public I_R_InterestArea getI_R_InterestArea() throws Exception;
/** Column name Summary */
public static final String COLUMNNAME_Summary = "Summary";
/** Set Summary.
* Textual summary of this request
*/
public void setSummary (String Summary);
/** Get Summary.
* Textual summary of this request
*/
public String getSummary();
}

View File

@ -0,0 +1,173 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_LdapProcessor
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:23.625
*/
public interface I_AD_LdapProcessor
{
/** TableName=AD_LdapProcessor */
public static final String Table_Name = "AD_LdapProcessor";
/** AD_Table_ID=902 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_LdapProcessor_ID */
public static final String COLUMNNAME_AD_LdapProcessor_ID = "AD_LdapProcessor_ID";
/** Set Ldap Processor.
* LDAP Server to authenticate and authorize external systems based on Adempiere
*/
public void setAD_LdapProcessor_ID (int AD_LdapProcessor_ID);
/** Get Ldap Processor.
* LDAP Server to authenticate and authorize external systems based on Adempiere
*/
public int getAD_LdapProcessor_ID();
/** Column name DateLastRun */
public static final String COLUMNNAME_DateLastRun = "DateLastRun";
/** Set Date last run.
* Date the process was last run.
*/
public void setDateLastRun (Timestamp DateLastRun);
/** Get Date last run.
* Date the process was last run.
*/
public Timestamp getDateLastRun();
/** Column name DateNextRun */
public static final String COLUMNNAME_DateNextRun = "DateNextRun";
/** Set Date next run.
* Date the process will run next
*/
public void setDateNextRun (Timestamp DateNextRun);
/** Get Date next run.
* Date the process will run next
*/
public Timestamp getDateNextRun();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name KeepLogDays */
public static final String COLUMNNAME_KeepLogDays = "KeepLogDays";
/** Set Days to keep Log.
* Number of days to keep the log entries
*/
public void setKeepLogDays (int KeepLogDays);
/** Get Days to keep Log.
* Number of days to keep the log entries
*/
public int getKeepLogDays();
/** Column name LdapPort */
public static final String COLUMNNAME_LdapPort = "LdapPort";
/** Set Ldap Port.
* The port the server is listening
*/
public void setLdapPort (int LdapPort);
/** Get Ldap Port.
* The port the server is listening
*/
public int getLdapPort();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name Supervisor_ID */
public static final String COLUMNNAME_Supervisor_ID = "Supervisor_ID";
/** Set Supervisor.
* Supervisor for this user/organization - used for escalation and approval
*/
public void setSupervisor_ID (int Supervisor_ID);
/** Get Supervisor.
* Supervisor for this user/organization - used for escalation and approval
*/
public int getSupervisor_ID();
}

View File

@ -0,0 +1,166 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_LdapProcessorLog
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:23.687
*/
public interface I_AD_LdapProcessorLog
{
/** TableName=AD_LdapProcessorLog */
public static final String Table_Name = "AD_LdapProcessorLog";
/** AD_Table_ID=903 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_LdapProcessorLog_ID */
public static final String COLUMNNAME_AD_LdapProcessorLog_ID = "AD_LdapProcessorLog_ID";
/** Set Ldap Processor Log.
* LDAP Server Log
*/
public void setAD_LdapProcessorLog_ID (int AD_LdapProcessorLog_ID);
/** Get Ldap Processor Log.
* LDAP Server Log
*/
public int getAD_LdapProcessorLog_ID();
/** Column name AD_LdapProcessor_ID */
public static final String COLUMNNAME_AD_LdapProcessor_ID = "AD_LdapProcessor_ID";
/** Set Ldap Processor.
* LDAP Server to authenticate and authorize external systems based on Adempiere
*/
public void setAD_LdapProcessor_ID (int AD_LdapProcessor_ID);
/** Get Ldap Processor.
* LDAP Server to authenticate and authorize external systems based on Adempiere
*/
public int getAD_LdapProcessor_ID();
public I_AD_LdapProcessor getI_AD_LdapProcessor() throws Exception;
/** Column name BinaryData */
public static final String COLUMNNAME_BinaryData = "BinaryData";
/** Set BinaryData.
* Binary Data
*/
public void setBinaryData (byte[] BinaryData);
/** Get BinaryData.
* Binary Data
*/
public byte[] getBinaryData();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name IsError */
public static final String COLUMNNAME_IsError = "IsError";
/** Set Error.
* An Error occured in the execution
*/
public void setIsError (boolean IsError);
/** Get Error.
* An Error occured in the execution
*/
public boolean isError();
/** Column name Reference */
public static final String COLUMNNAME_Reference = "Reference";
/** Set Reference.
* Reference for this record
*/
public void setReference (String Reference);
/** Get Reference.
* Reference for this record
*/
public String getReference();
/** Column name Summary */
public static final String COLUMNNAME_Summary = "Summary";
/** Set Summary.
* Textual summary of this request
*/
public void setSummary (String Summary);
/** Get Summary.
* Textual summary of this request
*/
public String getSummary();
/** Column name TextMsg */
public static final String COLUMNNAME_TextMsg = "TextMsg";
/** Set Text Message.
* Text Message
*/
public void setTextMsg (String TextMsg);
/** Get Text Message.
* Text Message
*/
public String getTextMsg();
}

View File

@ -0,0 +1,256 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Menu
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:23.906
*/
public interface I_AD_Menu
{
/** TableName=AD_Menu */
public static final String Table_Name = "AD_Menu";
/** AD_Table_ID=116 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Form_ID */
public static final String COLUMNNAME_AD_Form_ID = "AD_Form_ID";
/** Set Special Form.
* Special Form
*/
public void setAD_Form_ID (int AD_Form_ID);
/** Get Special Form.
* Special Form
*/
public int getAD_Form_ID();
public I_AD_Form getI_AD_Form() throws Exception;
/** Column name AD_Menu_ID */
public static final String COLUMNNAME_AD_Menu_ID = "AD_Menu_ID";
/** Set Menu.
* Identifies a Menu
*/
public void setAD_Menu_ID (int AD_Menu_ID);
/** Get Menu.
* Identifies a Menu
*/
public int getAD_Menu_ID();
/** Column name AD_Process_ID */
public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID";
/** Set Process.
* Process or Report
*/
public void setAD_Process_ID (int AD_Process_ID);
/** Get Process.
* Process or Report
*/
public int getAD_Process_ID();
public I_AD_Process getI_AD_Process() throws Exception;
/** Column name AD_Task_ID */
public static final String COLUMNNAME_AD_Task_ID = "AD_Task_ID";
/** Set OS Task.
* Operation System Task
*/
public void setAD_Task_ID (int AD_Task_ID);
/** Get OS Task.
* Operation System Task
*/
public int getAD_Task_ID();
public I_AD_Task getI_AD_Task() throws Exception;
/** Column name AD_Window_ID */
public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID";
/** Set Window.
* Data entry or display window
*/
public void setAD_Window_ID (int AD_Window_ID);
/** Get Window.
* Data entry or display window
*/
public int getAD_Window_ID();
public I_AD_Window getI_AD_Window() throws Exception;
/** Column name AD_Workbench_ID */
public static final String COLUMNNAME_AD_Workbench_ID = "AD_Workbench_ID";
/** Set Workbench.
* Collection of windows, reports
*/
public void setAD_Workbench_ID (int AD_Workbench_ID);
/** Get Workbench.
* Collection of windows, reports
*/
public int getAD_Workbench_ID();
public I_AD_Workbench getI_AD_Workbench() throws Exception;
/** Column name AD_Workflow_ID */
public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID";
/** Set Workflow.
* Workflow or combination of tasks
*/
public void setAD_Workflow_ID (int AD_Workflow_ID);
/** Get Workflow.
* Workflow or combination of tasks
*/
public int getAD_Workflow_ID();
public I_AD_Workflow getI_AD_Workflow() throws Exception;
/** Column name Action */
public static final String COLUMNNAME_Action = "Action";
/** Set Action.
* Indicates the Action to be performed
*/
public void setAction (String Action);
/** Get Action.
* Indicates the Action to be performed
*/
public String getAction();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name IsReadOnly */
public static final String COLUMNNAME_IsReadOnly = "IsReadOnly";
/** Set Read Only.
* Field is read only
*/
public void setIsReadOnly (boolean IsReadOnly);
/** Get Read Only.
* Field is read only
*/
public boolean isReadOnly();
/** Column name IsSOTrx */
public static final String COLUMNNAME_IsSOTrx = "IsSOTrx";
/** Set Sales Transaction.
* This is a Sales Transaction
*/
public void setIsSOTrx (boolean IsSOTrx);
/** Get Sales Transaction.
* This is a Sales Transaction
*/
public boolean isSOTrx();
/** Column name IsSummary */
public static final String COLUMNNAME_IsSummary = "IsSummary";
/** Set Summary Level.
* This is a summary entity
*/
public void setIsSummary (boolean IsSummary);
/** Get Summary Level.
* This is a summary entity
*/
public boolean isSummary();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,140 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Message
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:24.062
*/
public interface I_AD_Message
{
/** TableName=AD_Message */
public static final String Table_Name = "AD_Message";
/** AD_Table_ID=109 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Message_ID */
public static final String COLUMNNAME_AD_Message_ID = "AD_Message_ID";
/** Set Message.
* System Message
*/
public void setAD_Message_ID (int AD_Message_ID);
/** Get Message.
* System Message
*/
public int getAD_Message_ID();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name MsgText */
public static final String COLUMNNAME_MsgText = "MsgText";
/** Set Message Text.
* Textual Informational, Menu or Error Message
*/
public void setMsgText (String MsgText);
/** Get Message Text.
* Textual Informational, Menu or Error Message
*/
public String getMsgText();
/** Column name MsgTip */
public static final String COLUMNNAME_MsgTip = "MsgTip";
/** Set Message Tip.
* Additional tip or help for this message
*/
public void setMsgTip (String MsgTip);
/** Get Message Tip.
* Additional tip or help for this message
*/
public String getMsgTip();
/** Column name MsgType */
public static final String COLUMNNAME_MsgType = "MsgType";
/** Set Message Type.
* Type of message (Informational, Menu or Error)
*/
public void setMsgType (String MsgType);
/** Get Message Type.
* Type of message (Informational, Menu or Error)
*/
public String getMsgType();
/** Column name Value */
public static final String COLUMNNAME_Value = "Value";
/** Set Search Key.
* Search key for the record in the format required - must be unique
*/
public void setValue (String Value);
/** Get Search Key.
* Search key for the record in the format required - must be unique
*/
public String getValue();
}

View File

@ -0,0 +1,155 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Modification
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:24.109
*/
public interface I_AD_Modification
{
/** TableName=AD_Modification */
public static final String Table_Name = "AD_Modification";
/** AD_Table_ID=883 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Modification_ID */
public static final String COLUMNNAME_AD_Modification_ID = "AD_Modification_ID";
/** Set Modification.
* System Modification or Extension
*/
public void setAD_Modification_ID (int AD_Modification_ID);
/** Get Modification.
* System Modification or Extension
*/
public int getAD_Modification_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name SeqNo */
public static final String COLUMNNAME_SeqNo = "SeqNo";
/** Set Sequence.
* Method of ordering records;
lowest number comes first
*/
public void setSeqNo (int SeqNo);
/** Get Sequence.
* Method of ordering records;
lowest number comes first
*/
public int getSeqNo();
/** Column name Version */
public static final String COLUMNNAME_Version = "Version";
/** Set Version.
* Version of the table definition
*/
public void setVersion (String Version);
/** Get Version.
* Version of the table definition
*/
public String getVersion();
}

View File

@ -0,0 +1,205 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Note
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:24.203
*/
public interface I_AD_Note
{
/** TableName=AD_Note */
public static final String Table_Name = "AD_Note";
/** AD_Table_ID=389 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 7 - System - Client - Org
*/
BigDecimal accessLevel = new BigDecimal(7);
/** Load Meta Data */
/** Column name AD_Message_ID */
public static final String COLUMNNAME_AD_Message_ID = "AD_Message_ID";
/** Set Message.
* System Message
*/
public void setAD_Message_ID (int AD_Message_ID);
/** Get Message.
* System Message
*/
public int getAD_Message_ID();
/** Column name AD_Note_ID */
public static final String COLUMNNAME_AD_Note_ID = "AD_Note_ID";
/** Set Notice.
* System Notice
*/
public void setAD_Note_ID (int AD_Note_ID);
/** Get Notice.
* System Notice
*/
public int getAD_Note_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name AD_User_ID */
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
/** Set User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public void setAD_User_ID (int AD_User_ID);
/** Get User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public int getAD_User_ID();
public I_AD_User getI_AD_User() throws Exception;
/** Column name AD_WF_Activity_ID */
public static final String COLUMNNAME_AD_WF_Activity_ID = "AD_WF_Activity_ID";
/** Set Workflow Activity.
* Workflow Activity
*/
public void setAD_WF_Activity_ID (int AD_WF_Activity_ID);
/** Get Workflow Activity.
* Workflow Activity
*/
public int getAD_WF_Activity_ID();
public I_AD_WF_Activity getI_AD_WF_Activity() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Processed */
public static final String COLUMNNAME_Processed = "Processed";
/** Set Processed.
* The document has been processed
*/
public void setProcessed (boolean Processed);
/** Get Processed.
* The document has been processed
*/
public boolean isProcessed();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
/** Column name Reference */
public static final String COLUMNNAME_Reference = "Reference";
/** Set Reference.
* Reference for this record
*/
public void setReference (String Reference);
/** Get Reference.
* Reference for this record
*/
public String getReference();
/** Column name TextMsg */
public static final String COLUMNNAME_TextMsg = "TextMsg";
/** Set Text Message.
* Text Message
*/
public void setTextMsg (String TextMsg);
/** Get Text Message.
* Text Message
*/
public String getTextMsg();
}

View File

@ -0,0 +1,112 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Org
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:24.25
*/
public interface I_AD_Org
{
/** TableName=AD_Org */
public static final String Table_Name = "AD_Org";
/** AD_Table_ID=155 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 7 - System - Client - Org
*/
BigDecimal accessLevel = new BigDecimal(7);
/** Load Meta Data */
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name IsSummary */
public static final String COLUMNNAME_IsSummary = "IsSummary";
/** Set Summary Level.
* This is a summary entity
*/
public void setIsSummary (boolean IsSummary);
/** Get Summary Level.
* This is a summary entity
*/
public boolean isSummary();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Value */
public static final String COLUMNNAME_Value = "Value";
/** Set Search Key.
* Search key for the record in the format required - must be unique
*/
public void setValue (String Value);
/** Get Search Key.
* Search key for the record in the format required - must be unique
*/
public String getValue();
}

View File

@ -0,0 +1,155 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_OrgInfo
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:24.296
*/
public interface I_AD_OrgInfo
{
/** TableName=AD_OrgInfo */
public static final String Table_Name = "AD_OrgInfo";
/** AD_Table_ID=228 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 7 - System - Client - Org
*/
BigDecimal accessLevel = new BigDecimal(7);
/** Load Meta Data */
/** Column name AD_OrgType_ID */
public static final String COLUMNNAME_AD_OrgType_ID = "AD_OrgType_ID";
/** Set Organization Type.
* Organization Type allows you to categorize your organizations
*/
public void setAD_OrgType_ID (int AD_OrgType_ID);
/** Get Organization Type.
* Organization Type allows you to categorize your organizations
*/
public int getAD_OrgType_ID();
public I_AD_OrgType getI_AD_OrgType() throws Exception;
/** Column name C_Location_ID */
public static final String COLUMNNAME_C_Location_ID = "C_Location_ID";
/** Set Address.
* Location or Address
*/
public void setC_Location_ID (int C_Location_ID);
/** Get Address.
* Location or Address
*/
public int getC_Location_ID();
/** Column name DUNS */
public static final String COLUMNNAME_DUNS = "DUNS";
/** Set D-U-N-S.
* Dun & Bradstreet Number
*/
public void setDUNS (String DUNS);
/** Get D-U-N-S.
* Dun & Bradstreet Number
*/
public String getDUNS();
/** Column name M_Warehouse_ID */
public static final String COLUMNNAME_M_Warehouse_ID = "M_Warehouse_ID";
/** Set Warehouse.
* Storage Warehouse and Service Point
*/
public void setM_Warehouse_ID (int M_Warehouse_ID);
/** Get Warehouse.
* Storage Warehouse and Service Point
*/
public int getM_Warehouse_ID();
public I_M_Warehouse getI_M_Warehouse() throws Exception;
/** Column name Parent_Org_ID */
public static final String COLUMNNAME_Parent_Org_ID = "Parent_Org_ID";
/** Set Parent Organization.
* Parent (superior) Organization
*/
public void setParent_Org_ID (int Parent_Org_ID);
/** Get Parent Organization.
* Parent (superior) Organization
*/
public int getParent_Org_ID();
/** Column name Supervisor_ID */
public static final String COLUMNNAME_Supervisor_ID = "Supervisor_ID";
/** Set Supervisor.
* Supervisor for this user/organization - used for escalation and approval
*/
public void setSupervisor_ID (int Supervisor_ID);
/** Get Supervisor.
* Supervisor for this user/organization - used for escalation and approval
*/
public int getSupervisor_ID();
/** Column name TaxID */
public static final String COLUMNNAME_TaxID = "TaxID";
/** Set Tax ID.
* Tax Identification
*/
public void setTaxID (String TaxID);
/** Get Tax ID.
* Tax Identification
*/
public String getTaxID();
}

View File

@ -0,0 +1,114 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_OrgType
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:24.343
*/
public interface I_AD_OrgType
{
/** TableName=AD_OrgType */
public static final String Table_Name = "AD_OrgType";
/** AD_Table_ID=689 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_OrgType_ID */
public static final String COLUMNNAME_AD_OrgType_ID = "AD_OrgType_ID";
/** Set Organization Type.
* Organization Type allows you to categorize your organizations
*/
public void setAD_OrgType_ID (int AD_OrgType_ID);
/** Get Organization Type.
* Organization Type allows you to categorize your organizations
*/
public int getAD_OrgType_ID();
/** Column name AD_PrintColor_ID */
public static final String COLUMNNAME_AD_PrintColor_ID = "AD_PrintColor_ID";
/** Set Print Color.
* Color used for printing and display
*/
public void setAD_PrintColor_ID (int AD_PrintColor_ID);
/** Get Print Color.
* Color used for printing and display
*/
public int getAD_PrintColor_ID();
public I_AD_PrintColor getI_AD_PrintColor() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,147 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PInstance
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:24.406
*/
public interface I_AD_PInstance
{
/** TableName=AD_PInstance */
public static final String Table_Name = "AD_PInstance";
/** AD_Table_ID=282 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_PInstance_ID */
public static final String COLUMNNAME_AD_PInstance_ID = "AD_PInstance_ID";
/** Set Process Instance.
* Instance of the process
*/
public void setAD_PInstance_ID (int AD_PInstance_ID);
/** Get Process Instance.
* Instance of the process
*/
public int getAD_PInstance_ID();
/** Column name AD_Process_ID */
public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID";
/** Set Process.
* Process or Report
*/
public void setAD_Process_ID (int AD_Process_ID);
/** Get Process.
* Process or Report
*/
public int getAD_Process_ID();
public I_AD_Process getI_AD_Process() throws Exception;
/** Column name AD_User_ID */
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
/** Set User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public void setAD_User_ID (int AD_User_ID);
/** Get User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public int getAD_User_ID();
public I_AD_User getI_AD_User() throws Exception;
/** Column name ErrorMsg */
public static final String COLUMNNAME_ErrorMsg = "ErrorMsg";
/** Set Error Msg */
public void setErrorMsg (String ErrorMsg);
/** Get Error Msg */
public String getErrorMsg();
/** Column name IsProcessing */
public static final String COLUMNNAME_IsProcessing = "IsProcessing";
/** Set Processing */
public void setIsProcessing (boolean IsProcessing);
/** Get Processing */
public boolean isProcessing();
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
/** Column name Result */
public static final String COLUMNNAME_Result = "Result";
/** Set Result.
* Result of the action taken
*/
public void setResult (int Result);
/** Get Result.
* Result of the action taken
*/
public int getResult();
}

View File

@ -0,0 +1,128 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PInstance_Log
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:24.64
*/
public interface I_AD_PInstance_Log
{
/** TableName=AD_PInstance_Log */
public static final String Table_Name = "AD_PInstance_Log";
/** AD_Table_ID=578 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_PInstance_ID */
public static final String COLUMNNAME_AD_PInstance_ID = "AD_PInstance_ID";
/** Set Process Instance.
* Instance of the process
*/
public void setAD_PInstance_ID (int AD_PInstance_ID);
/** Get Process Instance.
* Instance of the process
*/
public int getAD_PInstance_ID();
public I_AD_PInstance getI_AD_PInstance() throws Exception;
/** Column name Log_ID */
public static final String COLUMNNAME_Log_ID = "Log_ID";
/** Set Log */
public void setLog_ID (int Log_ID);
/** Get Log */
public int getLog_ID();
/** Column name P_Date */
public static final String COLUMNNAME_P_Date = "P_Date";
/** Set Process Date.
* Process Parameter
*/
public void setP_Date (Timestamp P_Date);
/** Get Process Date.
* Process Parameter
*/
public Timestamp getP_Date();
/** Column name P_ID */
public static final String COLUMNNAME_P_ID = "P_ID";
/** Set Process ID */
public void setP_ID (int P_ID);
/** Get Process ID */
public int getP_ID();
/** Column name P_Msg */
public static final String COLUMNNAME_P_Msg = "P_Msg";
/** Set Process Message */
public void setP_Msg (String P_Msg);
/** Get Process Message */
public String getP_Msg();
/** Column name P_Number */
public static final String COLUMNNAME_P_Number = "P_Number";
/** Set Process Number.
* Process Parameter
*/
public void setP_Number (BigDecimal P_Number);
/** Get Process Number.
* Process Parameter
*/
public BigDecimal getP_Number();
}

View File

@ -0,0 +1,199 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PInstance_Para
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:24.687
*/
public interface I_AD_PInstance_Para
{
/** TableName=AD_PInstance_Para */
public static final String Table_Name = "AD_PInstance_Para";
/** AD_Table_ID=283 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_PInstance_ID */
public static final String COLUMNNAME_AD_PInstance_ID = "AD_PInstance_ID";
/** Set Process Instance.
* Instance of the process
*/
public void setAD_PInstance_ID (int AD_PInstance_ID);
/** Get Process Instance.
* Instance of the process
*/
public int getAD_PInstance_ID();
public I_AD_PInstance getI_AD_PInstance() throws Exception;
/** Column name Info */
public static final String COLUMNNAME_Info = "Info";
/** Set Info.
* Information
*/
public void setInfo (String Info);
/** Get Info.
* Information
*/
public String getInfo();
/** Column name Info_To */
public static final String COLUMNNAME_Info_To = "Info_To";
/** Set Info To */
public void setInfo_To (String Info_To);
/** Get Info To */
public String getInfo_To();
/** Column name P_Date */
public static final String COLUMNNAME_P_Date = "P_Date";
/** Set Process Date.
* Process Parameter
*/
public void setP_Date (Timestamp P_Date);
/** Get Process Date.
* Process Parameter
*/
public Timestamp getP_Date();
/** Column name P_Date_To */
public static final String COLUMNNAME_P_Date_To = "P_Date_To";
/** Set Process Date To.
* Process Parameter
*/
public void setP_Date_To (Timestamp P_Date_To);
/** Get Process Date To.
* Process Parameter
*/
public Timestamp getP_Date_To();
/** Column name P_Number */
public static final String COLUMNNAME_P_Number = "P_Number";
/** Set Process Number.
* Process Parameter
*/
public void setP_Number (BigDecimal P_Number);
/** Get Process Number.
* Process Parameter
*/
public BigDecimal getP_Number();
/** Column name P_Number_To */
public static final String COLUMNNAME_P_Number_To = "P_Number_To";
/** Set Process Number To.
* Process Parameter
*/
public void setP_Number_To (BigDecimal P_Number_To);
/** Get Process Number To.
* Process Parameter
*/
public BigDecimal getP_Number_To();
/** Column name P_String */
public static final String COLUMNNAME_P_String = "P_String";
/** Set Process String.
* Process Parameter
*/
public void setP_String (String P_String);
/** Get Process String.
* Process Parameter
*/
public String getP_String();
/** Column name P_String_To */
public static final String COLUMNNAME_P_String_To = "P_String_To";
/** Set Process String To.
* Process Parameter
*/
public void setP_String_To (String P_String_To);
/** Get Process String To.
* Process Parameter
*/
public String getP_String_To();
/** Column name ParameterName */
public static final String COLUMNNAME_ParameterName = "ParameterName";
/** Set Parameter Name */
public void setParameterName (String ParameterName);
/** Get Parameter Name */
public String getParameterName();
/** Column name SeqNo */
public static final String COLUMNNAME_SeqNo = "SeqNo";
/** Set Sequence.
* Method of ordering records;
lowest number comes first
*/
public void setSeqNo (int SeqNo);
/** Get Sequence.
* Method of ordering records;
lowest number comes first
*/
public int getSeqNo();
}

View File

@ -0,0 +1,205 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Package_Exp
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:24.734
*/
public interface I_AD_Package_Exp
{
/** TableName=AD_Package_Exp */
public static final String Table_Name = "AD_Package_Exp";
/** AD_Table_ID=50005 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Package_Exp_ID */
public static final String COLUMNNAME_AD_Package_Exp_ID = "AD_Package_Exp_ID";
/** Set AD_Package_Exp_ID */
public void setAD_Package_Exp_ID (int AD_Package_Exp_ID);
/** Get AD_Package_Exp_ID */
public int getAD_Package_Exp_ID();
/** Column name AD_Package_Type */
public static final String COLUMNNAME_AD_Package_Type = "AD_Package_Type";
/** Set AD_Package_Type */
public void setAD_Package_Type (String AD_Package_Type);
/** Get AD_Package_Type */
public String getAD_Package_Type();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EMail */
public static final String COLUMNNAME_EMail = "EMail";
/** Set EMail Address.
* Electronic Mail Address
*/
public void setEMail (String EMail);
/** Get EMail Address.
* Electronic Mail Address
*/
public String getEMail();
/** Column name File_Directory */
public static final String COLUMNNAME_File_Directory = "File_Directory";
/** Set File_Directory */
public void setFile_Directory (String File_Directory);
/** Get File_Directory */
public String getFile_Directory();
/** Column name Instructions */
public static final String COLUMNNAME_Instructions = "Instructions";
/** Set Instructions */
public void setInstructions (String Instructions);
/** Get Instructions */
public String getInstructions();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name PK_Version */
public static final String COLUMNNAME_PK_Version = "PK_Version";
/** Set Package Version */
public void setPK_Version (String PK_Version);
/** Get Package Version */
public String getPK_Version();
/** Column name Processed */
public static final String COLUMNNAME_Processed = "Processed";
/** Set Processed.
* The document has been processed
*/
public void setProcessed (boolean Processed);
/** Get Processed.
* The document has been processed
*/
public boolean isProcessed();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name ReleaseNo */
public static final String COLUMNNAME_ReleaseNo = "ReleaseNo";
/** Set Release No.
* Internal Release Number
*/
public void setReleaseNo (String ReleaseNo);
/** Get Release No.
* Internal Release Number
*/
public String getReleaseNo();
/** Column name UserName */
public static final String COLUMNNAME_UserName = "UserName";
/** Set Registered EMail.
* Email of the responsible for the System
*/
public void setUserName (String UserName);
/** Get Registered EMail.
* Email of the responsible for the System
*/
public String getUserName();
/** Column name Version */
public static final String COLUMNNAME_Version = "Version";
/** Set Version.
* Version of the table definition
*/
public void setVersion (String Version);
/** Get Version.
* Version of the table definition
*/
public String getVersion();
}

View File

@ -0,0 +1,346 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Package_Exp_Common
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:24.875
*/
public interface I_AD_Package_Exp_Common
{
/** TableName=AD_Package_Exp_Common */
public static final String Table_Name = "AD_Package_Exp_Common";
/** AD_Table_ID=50007 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Form_ID */
public static final String COLUMNNAME_AD_Form_ID = "AD_Form_ID";
/** Set Special Form.
* Special Form
*/
public void setAD_Form_ID (int AD_Form_ID);
/** Get Special Form.
* Special Form
*/
public int getAD_Form_ID();
/** Column name AD_ImpFormat_ID */
public static final String COLUMNNAME_AD_ImpFormat_ID = "AD_ImpFormat_ID";
/** Set Import Format */
public void setAD_ImpFormat_ID (int AD_ImpFormat_ID);
/** Get Import Format */
public int getAD_ImpFormat_ID();
public I_AD_ImpFormat getI_AD_ImpFormat() throws Exception;
/** Column name AD_Menu_ID */
public static final String COLUMNNAME_AD_Menu_ID = "AD_Menu_ID";
/** Set Menu.
* Identifies a Menu
*/
public void setAD_Menu_ID (int AD_Menu_ID);
/** Get Menu.
* Identifies a Menu
*/
public int getAD_Menu_ID();
public I_AD_Menu getI_AD_Menu() throws Exception;
/** Column name AD_Package_Exp_Common_ID */
public static final String COLUMNNAME_AD_Package_Exp_Common_ID = "AD_Package_Exp_Common_ID";
/** Set AD_Package_Exp_Common_ID */
public void setAD_Package_Exp_Common_ID (int AD_Package_Exp_Common_ID);
/** Get AD_Package_Exp_Common_ID */
public int getAD_Package_Exp_Common_ID();
/** Column name AD_Process_ID */
public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID";
/** Set Process.
* Process or Report
*/
public void setAD_Process_ID (int AD_Process_ID);
/** Get Process.
* Process or Report
*/
public int getAD_Process_ID();
/** Column name AD_ReportView_ID */
public static final String COLUMNNAME_AD_ReportView_ID = "AD_ReportView_ID";
/** Set Report View.
* View used to generate this report
*/
public void setAD_ReportView_ID (int AD_ReportView_ID);
/** Get Report View.
* View used to generate this report
*/
public int getAD_ReportView_ID();
/** Column name AD_Role_ID */
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
/** Set Role.
* Responsibility Role
*/
public void setAD_Role_ID (int AD_Role_ID);
/** Get Role.
* Responsibility Role
*/
public int getAD_Role_ID();
public I_AD_Role getI_AD_Role() throws Exception;
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
/** Column name AD_Window_ID */
public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID";
/** Set Window.
* Data entry or display window
*/
public void setAD_Window_ID (int AD_Window_ID);
/** Get Window.
* Data entry or display window
*/
public int getAD_Window_ID();
/** Column name AD_Workbench_ID */
public static final String COLUMNNAME_AD_Workbench_ID = "AD_Workbench_ID";
/** Set Workbench.
* Collection of windows, reports
*/
public void setAD_Workbench_ID (int AD_Workbench_ID);
/** Get Workbench.
* Collection of windows, reports
*/
public int getAD_Workbench_ID();
/** Column name AD_Workflow_ID */
public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID";
/** Set Workflow.
* Workflow or combination of tasks
*/
public void setAD_Workflow_ID (int AD_Workflow_ID);
/** Get Workflow.
* Workflow or combination of tasks
*/
public int getAD_Workflow_ID();
/** Column name DBType */
public static final String COLUMNNAME_DBType = "DBType";
/** Set DBType */
public void setDBType (String DBType);
/** Get DBType */
public String getDBType();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Destination_Directory */
public static final String COLUMNNAME_Destination_Directory = "Destination_Directory";
/** Set Destination_Directory */
public void setDestination_Directory (String Destination_Directory);
/** Get Destination_Directory */
public String getDestination_Directory();
/** Column name FileName */
public static final String COLUMNNAME_FileName = "FileName";
/** Set File Name.
* Name of the local file or URL
*/
public void setFileName (String FileName);
/** Get File Name.
* Name of the local file or URL
*/
public String getFileName();
/** Column name File_Directory */
public static final String COLUMNNAME_File_Directory = "File_Directory";
/** Set File_Directory */
public void setFile_Directory (String File_Directory);
/** Get File_Directory */
public String getFile_Directory();
/** Column name Line */
public static final String COLUMNNAME_Line = "Line";
/** Set Line No.
* Unique line for this document
*/
public void setLine (int Line);
/** Get Line No.
* Unique line for this document
*/
public int getLine();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Name2 */
public static final String COLUMNNAME_Name2 = "Name2";
/** Set Name 2.
* Additional Name
*/
public void setName2 (String Name2);
/** Get Name 2.
* Additional Name
*/
public String getName2();
/** Column name Processed */
public static final String COLUMNNAME_Processed = "Processed";
/** Set Processed.
* The document has been processed
*/
public void setProcessed (boolean Processed);
/** Get Processed.
* The document has been processed
*/
public boolean isProcessed();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name SQLStatement */
public static final String COLUMNNAME_SQLStatement = "SQLStatement";
/** Set SQLStatement */
public void setSQLStatement (String SQLStatement);
/** Get SQLStatement */
public String getSQLStatement();
/** Column name Target_Directory */
public static final String COLUMNNAME_Target_Directory = "Target_Directory";
/** Set Target_Directory */
public void setTarget_Directory (String Target_Directory);
/** Get Target_Directory */
public String getTarget_Directory();
/** Column name Type */
public static final String COLUMNNAME_Type = "Type";
/** Set Type.
* Type of Validation (SQL, Java Script, Java Language)
*/
public void setType (String Type);
/** Get Type.
* Type of Validation (SQL, Java Script, Java Language)
*/
public String getType();
}

View File

@ -0,0 +1,425 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Package_Exp_Detail
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.031
*/
public interface I_AD_Package_Exp_Detail
{
/** TableName=AD_Package_Exp_Detail */
public static final String Table_Name = "AD_Package_Exp_Detail";
/** AD_Table_ID=50006 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Form_ID */
public static final String COLUMNNAME_AD_Form_ID = "AD_Form_ID";
/** Set Special Form.
* Special Form
*/
public void setAD_Form_ID (int AD_Form_ID);
/** Get Special Form.
* Special Form
*/
public int getAD_Form_ID();
/** Column name AD_ImpFormat_ID */
public static final String COLUMNNAME_AD_ImpFormat_ID = "AD_ImpFormat_ID";
/** Set Import Format */
public void setAD_ImpFormat_ID (int AD_ImpFormat_ID);
/** Get Import Format */
public int getAD_ImpFormat_ID();
public I_AD_ImpFormat getI_AD_ImpFormat() throws Exception;
/** Column name AD_Menu_ID */
public static final String COLUMNNAME_AD_Menu_ID = "AD_Menu_ID";
/** Set Menu.
* Identifies a Menu
*/
public void setAD_Menu_ID (int AD_Menu_ID);
/** Get Menu.
* Identifies a Menu
*/
public int getAD_Menu_ID();
public I_AD_Menu getI_AD_Menu() throws Exception;
/** Column name AD_Message_ID */
public static final String COLUMNNAME_AD_Message_ID = "AD_Message_ID";
/** Set Message.
* System Message
*/
public void setAD_Message_ID (int AD_Message_ID);
/** Get Message.
* System Message
*/
public int getAD_Message_ID();
public I_AD_Message getI_AD_Message() throws Exception;
/** Column name AD_Package_Code_New */
public static final String COLUMNNAME_AD_Package_Code_New = "AD_Package_Code_New";
/** Set AD_Package_Code_New */
public void setAD_Package_Code_New (String AD_Package_Code_New);
/** Get AD_Package_Code_New */
public String getAD_Package_Code_New();
/** Column name AD_Package_Code_Old */
public static final String COLUMNNAME_AD_Package_Code_Old = "AD_Package_Code_Old";
/** Set AD_Package_Code_Old */
public void setAD_Package_Code_Old (String AD_Package_Code_Old);
/** Get AD_Package_Code_Old */
public String getAD_Package_Code_Old();
/** Column name AD_Package_Exp_Detail_ID */
public static final String COLUMNNAME_AD_Package_Exp_Detail_ID = "AD_Package_Exp_Detail_ID";
/** Set AD_Package_Exp_Detail_ID */
public void setAD_Package_Exp_Detail_ID (int AD_Package_Exp_Detail_ID);
/** Get AD_Package_Exp_Detail_ID */
public int getAD_Package_Exp_Detail_ID();
/** Column name AD_Package_Exp_ID */
public static final String COLUMNNAME_AD_Package_Exp_ID = "AD_Package_Exp_ID";
/** Set AD_Package_Exp_ID */
public void setAD_Package_Exp_ID (int AD_Package_Exp_ID);
/** Get AD_Package_Exp_ID */
public int getAD_Package_Exp_ID();
/** Column name AD_PrintFormat_ID */
public static final String COLUMNNAME_AD_PrintFormat_ID = "AD_PrintFormat_ID";
/** Set Print Format.
* Data Print Format
*/
public void setAD_PrintFormat_ID (int AD_PrintFormat_ID);
/** Get Print Format.
* Data Print Format
*/
public int getAD_PrintFormat_ID();
public I_AD_PrintFormat getI_AD_PrintFormat() throws Exception;
/** Column name AD_Process_ID */
public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID";
/** Set Process.
* Process or Report
*/
public void setAD_Process_ID (int AD_Process_ID);
/** Get Process.
* Process or Report
*/
public int getAD_Process_ID();
/** Column name AD_ReportView_ID */
public static final String COLUMNNAME_AD_ReportView_ID = "AD_ReportView_ID";
/** Set Report View.
* View used to generate this report
*/
public void setAD_ReportView_ID (int AD_ReportView_ID);
/** Get Report View.
* View used to generate this report
*/
public int getAD_ReportView_ID();
/** Column name AD_Role_ID */
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
/** Set Role.
* Responsibility Role
*/
public void setAD_Role_ID (int AD_Role_ID);
/** Get Role.
* Responsibility Role
*/
public int getAD_Role_ID();
public I_AD_Role getI_AD_Role() throws Exception;
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
/** Column name AD_Val_Rule_ID */
public static final String COLUMNNAME_AD_Val_Rule_ID = "AD_Val_Rule_ID";
/** Set Dynamic Validation.
* Dynamic Validation Rule
*/
public void setAD_Val_Rule_ID (int AD_Val_Rule_ID);
/** Get Dynamic Validation.
* Dynamic Validation Rule
*/
public int getAD_Val_Rule_ID();
/** Column name AD_Window_ID */
public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID";
/** Set Window.
* Data entry or display window
*/
public void setAD_Window_ID (int AD_Window_ID);
/** Get Window.
* Data entry or display window
*/
public int getAD_Window_ID();
/** Column name AD_Workbench_ID */
public static final String COLUMNNAME_AD_Workbench_ID = "AD_Workbench_ID";
/** Set Workbench.
* Collection of windows, reports
*/
public void setAD_Workbench_ID (int AD_Workbench_ID);
/** Get Workbench.
* Collection of windows, reports
*/
public int getAD_Workbench_ID();
/** Column name AD_Workflow_ID */
public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID";
/** Set Workflow.
* Workflow or combination of tasks
*/
public void setAD_Workflow_ID (int AD_Workflow_ID);
/** Get Workflow.
* Workflow or combination of tasks
*/
public int getAD_Workflow_ID();
/** Column name DBType */
public static final String COLUMNNAME_DBType = "DBType";
/** Set DBType */
public void setDBType (String DBType);
/** Get DBType */
public String getDBType();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Destination_Directory */
public static final String COLUMNNAME_Destination_Directory = "Destination_Directory";
/** Set Destination_Directory */
public void setDestination_Directory (String Destination_Directory);
/** Get Destination_Directory */
public String getDestination_Directory();
/** Column name Destination_FileName */
public static final String COLUMNNAME_Destination_FileName = "Destination_FileName";
/** Set Destination_FileName */
public void setDestination_FileName (String Destination_FileName);
/** Get Destination_FileName */
public String getDestination_FileName();
/** Column name FileName */
public static final String COLUMNNAME_FileName = "FileName";
/** Set File Name.
* Name of the local file or URL
*/
public void setFileName (String FileName);
/** Get File Name.
* Name of the local file or URL
*/
public String getFileName();
/** Column name File_Directory */
public static final String COLUMNNAME_File_Directory = "File_Directory";
/** Set File_Directory */
public void setFile_Directory (String File_Directory);
/** Get File_Directory */
public String getFile_Directory();
/** Column name Line */
public static final String COLUMNNAME_Line = "Line";
/** Set Line No.
* Unique line for this document
*/
public void setLine (int Line);
/** Get Line No.
* Unique line for this document
*/
public int getLine();
/** Column name Name2 */
public static final String COLUMNNAME_Name2 = "Name2";
/** Set Name 2.
* Additional Name
*/
public void setName2 (String Name2);
/** Get Name 2.
* Additional Name
*/
public String getName2();
/** Column name Processed */
public static final String COLUMNNAME_Processed = "Processed";
/** Set Processed.
* The document has been processed
*/
public void setProcessed (boolean Processed);
/** Get Processed.
* The document has been processed
*/
public boolean isProcessed();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name ReleaseNo */
public static final String COLUMNNAME_ReleaseNo = "ReleaseNo";
/** Set Release No.
* Internal Release Number
*/
public void setReleaseNo (String ReleaseNo);
/** Get Release No.
* Internal Release Number
*/
public String getReleaseNo();
/** Column name SQLStatement */
public static final String COLUMNNAME_SQLStatement = "SQLStatement";
/** Set SQLStatement */
public void setSQLStatement (String SQLStatement);
/** Get SQLStatement */
public String getSQLStatement();
/** Column name Target_Directory */
public static final String COLUMNNAME_Target_Directory = "Target_Directory";
/** Set Target_Directory */
public void setTarget_Directory (String Target_Directory);
/** Get Target_Directory */
public String getTarget_Directory();
/** Column name Type */
public static final String COLUMNNAME_Type = "Type";
/** Set Type.
* Type of Validation (SQL, Java Script, Java Language)
*/
public void setType (String Type);
/** Get Type.
* Type of Validation (SQL, Java Script, Java Language)
*/
public String getType();
}

View File

@ -0,0 +1,201 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Package_Imp
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.109
*/
public interface I_AD_Package_Imp
{
/** TableName=AD_Package_Imp */
public static final String Table_Name = "AD_Package_Imp";
/** AD_Table_ID=50003 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Package_Imp_ID */
public static final String COLUMNNAME_AD_Package_Imp_ID = "AD_Package_Imp_ID";
/** Set AD_Package_Imp_ID */
public void setAD_Package_Imp_ID (int AD_Package_Imp_ID);
/** Get AD_Package_Imp_ID */
public int getAD_Package_Imp_ID();
/** Column name Creator */
public static final String COLUMNNAME_Creator = "Creator";
/** Set Creator */
public void setCreator (String Creator);
/** Get Creator */
public String getCreator();
/** Column name CreatorContact */
public static final String COLUMNNAME_CreatorContact = "CreatorContact";
/** Set CreatorContact */
public void setCreatorContact (String CreatorContact);
/** Get CreatorContact */
public String getCreatorContact();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EMail */
public static final String COLUMNNAME_EMail = "EMail";
/** Set EMail Address.
* Electronic Mail Address
*/
public void setEMail (String EMail);
/** Get EMail Address.
* Electronic Mail Address
*/
public String getEMail();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name PK_Status */
public static final String COLUMNNAME_PK_Status = "PK_Status";
/** Set PK_Status */
public void setPK_Status (String PK_Status);
/** Get PK_Status */
public String getPK_Status();
/** Column name PK_Version */
public static final String COLUMNNAME_PK_Version = "PK_Version";
/** Set Package Version */
public void setPK_Version (String PK_Version);
/** Get Package Version */
public String getPK_Version();
/** Column name Processed */
public static final String COLUMNNAME_Processed = "Processed";
/** Set Processed.
* The document has been processed
*/
public void setProcessed (boolean Processed);
/** Get Processed.
* The document has been processed
*/
public boolean isProcessed();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name ReleaseNo */
public static final String COLUMNNAME_ReleaseNo = "ReleaseNo";
/** Set Release No.
* Internal Release Number
*/
public void setReleaseNo (String ReleaseNo);
/** Get Release No.
* Internal Release Number
*/
public String getReleaseNo();
/** Column name Uninstall */
public static final String COLUMNNAME_Uninstall = "Uninstall";
/** Set Uninstall */
public void setUninstall (boolean Uninstall);
/** Get Uninstall */
public boolean isUninstall();
/** Column name Version */
public static final String COLUMNNAME_Version = "Version";
/** Set Version.
* Version of the table definition
*/
public void setVersion (String Version);
/** Get Version.
* Version of the table definition
*/
public String getVersion();
}

View File

@ -0,0 +1,162 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Package_Imp_Backup
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.156
*/
public interface I_AD_Package_Imp_Backup
{
/** TableName=AD_Package_Imp_Backup */
public static final String Table_Name = "AD_Package_Imp_Backup";
/** AD_Table_ID=50002 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Column_ID */
public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID";
/** Set Column.
* Column in the table
*/
public void setAD_Column_ID (int AD_Column_ID);
/** Get Column.
* Column in the table
*/
public int getAD_Column_ID();
/** Column name AD_Package_Imp_Backup_ID */
public static final String COLUMNNAME_AD_Package_Imp_Backup_ID = "AD_Package_Imp_Backup_ID";
/** Set AD_Package_Imp_Backup_ID */
public void setAD_Package_Imp_Backup_ID (int AD_Package_Imp_Backup_ID);
/** Get AD_Package_Imp_Backup_ID */
public int getAD_Package_Imp_Backup_ID();
/** Column name AD_Package_Imp_Bck_Dir */
public static final String COLUMNNAME_AD_Package_Imp_Bck_Dir = "AD_Package_Imp_Bck_Dir";
/** Set AD_Package_Imp_Bck_Dir */
public void setAD_Package_Imp_Bck_Dir (String AD_Package_Imp_Bck_Dir);
/** Get AD_Package_Imp_Bck_Dir */
public String getAD_Package_Imp_Bck_Dir();
/** Column name AD_Package_Imp_Detail_ID */
public static final String COLUMNNAME_AD_Package_Imp_Detail_ID = "AD_Package_Imp_Detail_ID";
/** Set AD_Package_Imp_Detail_ID */
public void setAD_Package_Imp_Detail_ID (int AD_Package_Imp_Detail_ID);
/** Get AD_Package_Imp_Detail_ID */
public int getAD_Package_Imp_Detail_ID();
/** Column name AD_Package_Imp_ID */
public static final String COLUMNNAME_AD_Package_Imp_ID = "AD_Package_Imp_ID";
/** Set AD_Package_Imp_ID */
public void setAD_Package_Imp_ID (int AD_Package_Imp_ID);
/** Get AD_Package_Imp_ID */
public int getAD_Package_Imp_ID();
/** Column name AD_Package_Imp_Org_Dir */
public static final String COLUMNNAME_AD_Package_Imp_Org_Dir = "AD_Package_Imp_Org_Dir";
/** Set AD_Package_Imp_Org_Dir */
public void setAD_Package_Imp_Org_Dir (String AD_Package_Imp_Org_Dir);
/** Get AD_Package_Imp_Org_Dir */
public String getAD_Package_Imp_Org_Dir();
/** Column name AD_Reference_ID */
public static final String COLUMNNAME_AD_Reference_ID = "AD_Reference_ID";
/** Set Reference.
* System Reference and Validation
*/
public void setAD_Reference_ID (int AD_Reference_ID);
/** Get Reference.
* System Reference and Validation
*/
public int getAD_Reference_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
/** Column name ColValue */
public static final String COLUMNNAME_ColValue = "ColValue";
/** Set ColValue */
public void setColValue (String ColValue);
/** Get ColValue */
public String getColValue();
/** Column name Uninstall */
public static final String COLUMNNAME_Uninstall = "Uninstall";
/** Set Uninstall */
public void setUninstall (boolean Uninstall);
/** Get Uninstall */
public boolean isUninstall();
}

View File

@ -0,0 +1,179 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Package_Imp_Detail
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.218
*/
public interface I_AD_Package_Imp_Detail
{
/** TableName=AD_Package_Imp_Detail */
public static final String Table_Name = "AD_Package_Imp_Detail";
/** AD_Table_ID=50004 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Original_ID */
public static final String COLUMNNAME_AD_Original_ID = "AD_Original_ID";
/** Set AD_Original_ID */
public void setAD_Original_ID (int AD_Original_ID);
/** Get AD_Original_ID */
public int getAD_Original_ID();
/** Column name AD_Package_Imp_Detail_ID */
public static final String COLUMNNAME_AD_Package_Imp_Detail_ID = "AD_Package_Imp_Detail_ID";
/** Set AD_Package_Imp_Detail_ID */
public void setAD_Package_Imp_Detail_ID (int AD_Package_Imp_Detail_ID);
/** Get AD_Package_Imp_Detail_ID */
public int getAD_Package_Imp_Detail_ID();
/** Column name AD_Package_Imp_ID */
public static final String COLUMNNAME_AD_Package_Imp_ID = "AD_Package_Imp_ID";
/** Set AD_Package_Imp_ID */
public void setAD_Package_Imp_ID (int AD_Package_Imp_ID);
/** Get AD_Package_Imp_ID */
public int getAD_Package_Imp_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
/** Column name Action */
public static final String COLUMNNAME_Action = "Action";
/** Set Action.
* Indicates the Action to be performed
*/
public void setAction (String Action);
/** Get Action.
* Indicates the Action to be performed
*/
public String getAction();
/** Column name Ad_Backup_ID */
public static final String COLUMNNAME_Ad_Backup_ID = "Ad_Backup_ID";
/** Set Ad_Backup_ID */
public void setAd_Backup_ID (int Ad_Backup_ID);
/** Get Ad_Backup_ID */
public int getAd_Backup_ID();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Success */
public static final String COLUMNNAME_Success = "Success";
/** Set Success */
public void setSuccess (String Success);
/** Get Success */
public String getSuccess();
/** Column name TableName */
public static final String COLUMNNAME_TableName = "TableName";
/** Set DB Table Name.
* Name of the table in the database
*/
public void setTableName (String TableName);
/** Get DB Table Name.
* Name of the table in the database
*/
public String getTableName();
/** Column name Type */
public static final String COLUMNNAME_Type = "Type";
/** Set Type.
* Type of Validation (SQL, Java Script, Java Language)
*/
public void setType (String Type);
/** Get Type.
* Type of Validation (SQL, Java Script, Java Language)
*/
public String getType();
/** Column name Uninstall */
public static final String COLUMNNAME_Uninstall = "Uninstall";
/** Set Uninstall */
public void setUninstall (boolean Uninstall);
/** Get Uninstall */
public boolean isUninstall();
}

View File

@ -0,0 +1,201 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Package_Imp_Inst
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.265
*/
public interface I_AD_Package_Imp_Inst
{
/** TableName=AD_Package_Imp_Inst */
public static final String Table_Name = "AD_Package_Imp_Inst";
/** AD_Table_ID=50001 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_PACKAGE_IMP_INST_ID */
public static final String COLUMNNAME_AD_PACKAGE_IMP_INST_ID = "AD_PACKAGE_IMP_INST_ID";
/** Set AD_PACKAGE_IMP_INST_ID */
public void setAD_PACKAGE_IMP_INST_ID (int AD_PACKAGE_IMP_INST_ID);
/** Get AD_PACKAGE_IMP_INST_ID */
public int getAD_PACKAGE_IMP_INST_ID();
/** Column name Creator */
public static final String COLUMNNAME_Creator = "Creator";
/** Set Creator */
public void setCreator (String Creator);
/** Get Creator */
public String getCreator();
/** Column name CreatorContact */
public static final String COLUMNNAME_CreatorContact = "CreatorContact";
/** Set CreatorContact */
public void setCreatorContact (String CreatorContact);
/** Get CreatorContact */
public String getCreatorContact();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EMail */
public static final String COLUMNNAME_EMail = "EMail";
/** Set EMail Address.
* Electronic Mail Address
*/
public void setEMail (String EMail);
/** Get EMail Address.
* Electronic Mail Address
*/
public String getEMail();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name PK_Status */
public static final String COLUMNNAME_PK_Status = "PK_Status";
/** Set PK_Status */
public void setPK_Status (String PK_Status);
/** Get PK_Status */
public String getPK_Status();
/** Column name PK_Version */
public static final String COLUMNNAME_PK_Version = "PK_Version";
/** Set Package Version */
public void setPK_Version (String PK_Version);
/** Get Package Version */
public String getPK_Version();
/** Column name Processed */
public static final String COLUMNNAME_Processed = "Processed";
/** Set Processed.
* The document has been processed
*/
public void setProcessed (boolean Processed);
/** Get Processed.
* The document has been processed
*/
public boolean isProcessed();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name ReleaseNo */
public static final String COLUMNNAME_ReleaseNo = "ReleaseNo";
/** Set Release No.
* Internal Release Number
*/
public void setReleaseNo (String ReleaseNo);
/** Get Release No.
* Internal Release Number
*/
public String getReleaseNo();
/** Column name Uninstall */
public static final String COLUMNNAME_Uninstall = "Uninstall";
/** Set Uninstall */
public void setUninstall (boolean Uninstall);
/** Get Uninstall */
public boolean isUninstall();
/** Column name Version */
public static final String COLUMNNAME_Version = "Version";
/** Set Version.
* Version of the table definition
*/
public void setVersion (String Version);
/** Get Version.
* Version of the table definition
*/
public String getVersion();
}

View File

@ -0,0 +1,126 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Package_Imp_Proc
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.312
*/
public interface I_AD_Package_Imp_Proc
{
/** TableName=AD_Package_Imp_Proc */
public static final String Table_Name = "AD_Package_Imp_Proc";
/** AD_Table_ID=50008 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Override_Dict */
public static final String COLUMNNAME_AD_Override_Dict = "AD_Override_Dict";
/** Set Update System Maintained Application Dictionary */
public void setAD_Override_Dict (boolean AD_Override_Dict);
/** Get Update System Maintained Application Dictionary */
public boolean isAD_Override_Dict();
/** Column name AD_Package_Dir */
public static final String COLUMNNAME_AD_Package_Dir = "AD_Package_Dir";
/** Set Package Directory.
* Package directory, default to AdempiereHome/packages
*/
public void setAD_Package_Dir (String AD_Package_Dir);
/** Get Package Directory.
* Package directory, default to AdempiereHome/packages
*/
public String getAD_Package_Dir();
/** Column name AD_Package_Imp_Proc_ID */
public static final String COLUMNNAME_AD_Package_Imp_Proc_ID = "AD_Package_Imp_Proc_ID";
/** Set AD_Package_Imp_Proc_ID */
public void setAD_Package_Imp_Proc_ID (int AD_Package_Imp_Proc_ID);
/** Get AD_Package_Imp_Proc_ID */
public int getAD_Package_Imp_Proc_ID();
/** Column name AD_Package_Source */
public static final String COLUMNNAME_AD_Package_Source = "AD_Package_Source";
/** Set Package Source.
* Fully qualified package source file name
*/
public void setAD_Package_Source (String AD_Package_Source);
/** Get Package Source.
* Fully qualified package source file name
*/
public String getAD_Package_Source();
/** Column name AD_Package_Source_Type */
public static final String COLUMNNAME_AD_Package_Source_Type = "AD_Package_Source_Type";
/** Set Package Source Type.
* Type of package source - file, ftp, webservice etc
*/
public void setAD_Package_Source_Type (String AD_Package_Source_Type);
/** Get Package Source Type.
* Type of package source - file, ftp, webservice etc
*/
public String getAD_Package_Source_Type();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
}

View File

@ -0,0 +1,125 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Preference
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.343
*/
public interface I_AD_Preference
{
/** TableName=AD_Preference */
public static final String Table_Name = "AD_Preference";
/** AD_Table_ID=195 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 7 - System - Client - Org
*/
BigDecimal accessLevel = new BigDecimal(7);
/** Load Meta Data */
/** Column name AD_Preference_ID */
public static final String COLUMNNAME_AD_Preference_ID = "AD_Preference_ID";
/** Set Preference.
* Personal Value Preference
*/
public void setAD_Preference_ID (int AD_Preference_ID);
/** Get Preference.
* Personal Value Preference
*/
public int getAD_Preference_ID();
/** Column name AD_User_ID */
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
/** Set User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public void setAD_User_ID (int AD_User_ID);
/** Get User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public int getAD_User_ID();
public I_AD_User getI_AD_User() throws Exception;
/** Column name AD_Window_ID */
public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID";
/** Set Window.
* Data entry or display window
*/
public void setAD_Window_ID (int AD_Window_ID);
/** Get Window.
* Data entry or display window
*/
public int getAD_Window_ID();
public I_AD_Window getI_AD_Window() throws Exception;
/** Column name Attribute */
public static final String COLUMNNAME_Attribute = "Attribute";
/** Set Attribute */
public void setAttribute (String Attribute);
/** Get Attribute */
public String getAttribute();
/** Column name Value */
public static final String COLUMNNAME_Value = "Value";
/** Set Search Key.
* Search key for the record in the format required - must be unique
*/
public void setValue (String Value);
/** Get Search Key.
* Search key for the record in the format required - must be unique
*/
public String getValue();
}

View File

@ -0,0 +1,112 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PrintColor
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.359
*/
public interface I_AD_PrintColor
{
/** TableName=AD_PrintColor */
public static final String Table_Name = "AD_PrintColor";
/** AD_Table_ID=490 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_PrintColor_ID */
public static final String COLUMNNAME_AD_PrintColor_ID = "AD_PrintColor_ID";
/** Set Print Color.
* Color used for printing and display
*/
public void setAD_PrintColor_ID (int AD_PrintColor_ID);
/** Get Print Color.
* Color used for printing and display
*/
public int getAD_PrintColor_ID();
/** Column name Code */
public static final String COLUMNNAME_Code = "Code";
/** Set Validation code.
* Validation Code
*/
public void setCode (String Code);
/** Get Validation code.
* Validation Code
*/
public String getCode();
/** Column name IsDefault */
public static final String COLUMNNAME_IsDefault = "IsDefault";
/** Set Default.
* Default value
*/
public void setIsDefault (boolean IsDefault);
/** Get Default.
* Default value
*/
public boolean isDefault();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,112 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PrintFont
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.406
*/
public interface I_AD_PrintFont
{
/** TableName=AD_PrintFont */
public static final String Table_Name = "AD_PrintFont";
/** AD_Table_ID=491 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_PrintFont_ID */
public static final String COLUMNNAME_AD_PrintFont_ID = "AD_PrintFont_ID";
/** Set Print Font.
* Maintain Print Font
*/
public void setAD_PrintFont_ID (int AD_PrintFont_ID);
/** Get Print Font.
* Maintain Print Font
*/
public int getAD_PrintFont_ID();
/** Column name Code */
public static final String COLUMNNAME_Code = "Code";
/** Set Validation code.
* Validation Code
*/
public void setCode (String Code);
/** Get Validation code.
* Validation Code
*/
public String getCode();
/** Column name IsDefault */
public static final String COLUMNNAME_IsDefault = "IsDefault";
/** Set Default.
* Default value
*/
public void setIsDefault (boolean IsDefault);
/** Get Default.
* Default value
*/
public boolean isDefault();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,229 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PrintForm
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.453
*/
public interface I_AD_PrintForm
{
/** TableName=AD_PrintForm */
public static final String Table_Name = "AD_PrintForm";
/** AD_Table_ID=454 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_PrintForm_ID */
public static final String COLUMNNAME_AD_PrintForm_ID = "AD_PrintForm_ID";
/** Set Print Form.
* Form
*/
public void setAD_PrintForm_ID (int AD_PrintForm_ID);
/** Get Print Form.
* Form
*/
public int getAD_PrintForm_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Invoice_MailText_ID */
public static final String COLUMNNAME_Invoice_MailText_ID = "Invoice_MailText_ID";
/** Set Invoice Mail Text.
* Email text used for sending invoices
*/
public void setInvoice_MailText_ID (int Invoice_MailText_ID);
/** Get Invoice Mail Text.
* Email text used for sending invoices
*/
public int getInvoice_MailText_ID();
/** Column name Invoice_PrintFormat_ID */
public static final String COLUMNNAME_Invoice_PrintFormat_ID = "Invoice_PrintFormat_ID";
/** Set Invoice Print Format.
* Print Format for printing Invoices
*/
public void setInvoice_PrintFormat_ID (int Invoice_PrintFormat_ID);
/** Get Invoice Print Format.
* Print Format for printing Invoices
*/
public int getInvoice_PrintFormat_ID();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Order_MailText_ID */
public static final String COLUMNNAME_Order_MailText_ID = "Order_MailText_ID";
/** Set Order Mail Text.
* Email text used for sending order acknowledgements or quotations
*/
public void setOrder_MailText_ID (int Order_MailText_ID);
/** Get Order Mail Text.
* Email text used for sending order acknowledgements or quotations
*/
public int getOrder_MailText_ID();
/** Column name Order_PrintFormat_ID */
public static final String COLUMNNAME_Order_PrintFormat_ID = "Order_PrintFormat_ID";
/** Set Order Print Format.
* Print Format for Orders, Quotes, Offers
*/
public void setOrder_PrintFormat_ID (int Order_PrintFormat_ID);
/** Get Order Print Format.
* Print Format for Orders, Quotes, Offers
*/
public int getOrder_PrintFormat_ID();
/** Column name Project_MailText_ID */
public static final String COLUMNNAME_Project_MailText_ID = "Project_MailText_ID";
/** Set Project Mail Text.
* Standard text for Project EMails
*/
public void setProject_MailText_ID (int Project_MailText_ID);
/** Get Project Mail Text.
* Standard text for Project EMails
*/
public int getProject_MailText_ID();
/** Column name Project_PrintFormat_ID */
public static final String COLUMNNAME_Project_PrintFormat_ID = "Project_PrintFormat_ID";
/** Set Project Print Format.
* Standard Project Print Format
*/
public void setProject_PrintFormat_ID (int Project_PrintFormat_ID);
/** Get Project Print Format.
* Standard Project Print Format
*/
public int getProject_PrintFormat_ID();
/** Column name Remittance_MailText_ID */
public static final String COLUMNNAME_Remittance_MailText_ID = "Remittance_MailText_ID";
/** Set Remittance Mail Text.
* Email text used for sending payment remittances
*/
public void setRemittance_MailText_ID (int Remittance_MailText_ID);
/** Get Remittance Mail Text.
* Email text used for sending payment remittances
*/
public int getRemittance_MailText_ID();
/** Column name Remittance_PrintFormat_ID */
public static final String COLUMNNAME_Remittance_PrintFormat_ID = "Remittance_PrintFormat_ID";
/** Set Remittance Print Format.
* Print Format for separate Remittances
*/
public void setRemittance_PrintFormat_ID (int Remittance_PrintFormat_ID);
/** Get Remittance Print Format.
* Print Format for separate Remittances
*/
public int getRemittance_PrintFormat_ID();
/** Column name Shipment_MailText_ID */
public static final String COLUMNNAME_Shipment_MailText_ID = "Shipment_MailText_ID";
/** Set Shipment Mail Text.
* Email text used for sending delivery notes
*/
public void setShipment_MailText_ID (int Shipment_MailText_ID);
/** Get Shipment Mail Text.
* Email text used for sending delivery notes
*/
public int getShipment_MailText_ID();
/** Column name Shipment_PrintFormat_ID */
public static final String COLUMNNAME_Shipment_PrintFormat_ID = "Shipment_PrintFormat_ID";
/** Set Shipment Print Format.
* Print Format for Shipments, Receipts, Pick Lists
*/
public void setShipment_PrintFormat_ID (int Shipment_PrintFormat_ID);
/** Get Shipment Print Format.
* Print Format for Shipments, Receipts, Pick Lists
*/
public int getShipment_PrintFormat_ID();
}

View File

@ -0,0 +1,302 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PrintFormat
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.484
*/
public interface I_AD_PrintFormat
{
/** TableName=AD_PrintFormat */
public static final String Table_Name = "AD_PrintFormat";
/** AD_Table_ID=493 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 7 - System - Client - Org
*/
BigDecimal accessLevel = new BigDecimal(7);
/** Load Meta Data */
/** Column name AD_PrintColor_ID */
public static final String COLUMNNAME_AD_PrintColor_ID = "AD_PrintColor_ID";
/** Set Print Color.
* Color used for printing and display
*/
public void setAD_PrintColor_ID (int AD_PrintColor_ID);
/** Get Print Color.
* Color used for printing and display
*/
public int getAD_PrintColor_ID();
public I_AD_PrintColor getI_AD_PrintColor() throws Exception;
/** Column name AD_PrintFont_ID */
public static final String COLUMNNAME_AD_PrintFont_ID = "AD_PrintFont_ID";
/** Set Print Font.
* Maintain Print Font
*/
public void setAD_PrintFont_ID (int AD_PrintFont_ID);
/** Get Print Font.
* Maintain Print Font
*/
public int getAD_PrintFont_ID();
public I_AD_PrintFont getI_AD_PrintFont() throws Exception;
/** Column name AD_PrintFormat_ID */
public static final String COLUMNNAME_AD_PrintFormat_ID = "AD_PrintFormat_ID";
/** Set Print Format.
* Data Print Format
*/
public void setAD_PrintFormat_ID (int AD_PrintFormat_ID);
/** Get Print Format.
* Data Print Format
*/
public int getAD_PrintFormat_ID();
/** Column name AD_PrintPaper_ID */
public static final String COLUMNNAME_AD_PrintPaper_ID = "AD_PrintPaper_ID";
/** Set Print Paper.
* Printer paper definition
*/
public void setAD_PrintPaper_ID (int AD_PrintPaper_ID);
/** Get Print Paper.
* Printer paper definition
*/
public int getAD_PrintPaper_ID();
public I_AD_PrintPaper getI_AD_PrintPaper() throws Exception;
/** Column name AD_PrintTableFormat_ID */
public static final String COLUMNNAME_AD_PrintTableFormat_ID = "AD_PrintTableFormat_ID";
/** Set Print Table Format.
* Table Format in Reports
*/
public void setAD_PrintTableFormat_ID (int AD_PrintTableFormat_ID);
/** Get Print Table Format.
* Table Format in Reports
*/
public int getAD_PrintTableFormat_ID();
public I_AD_PrintTableFormat getI_AD_PrintTableFormat() throws Exception;
/** Column name AD_ReportView_ID */
public static final String COLUMNNAME_AD_ReportView_ID = "AD_ReportView_ID";
/** Set Report View.
* View used to generate this report
*/
public void setAD_ReportView_ID (int AD_ReportView_ID);
/** Get Report View.
* View used to generate this report
*/
public int getAD_ReportView_ID();
public I_AD_ReportView getI_AD_ReportView() throws Exception;
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name CreateCopy */
public static final String COLUMNNAME_CreateCopy = "CreateCopy";
/** Set Create Copy */
public void setCreateCopy (String CreateCopy);
/** Get Create Copy */
public String getCreateCopy();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name FooterMargin */
public static final String COLUMNNAME_FooterMargin = "FooterMargin";
/** Set Footer Margin.
* Margin of the Footer in 1/72 of an inch
*/
public void setFooterMargin (int FooterMargin);
/** Get Footer Margin.
* Margin of the Footer in 1/72 of an inch
*/
public int getFooterMargin();
/** Column name HeaderMargin */
public static final String COLUMNNAME_HeaderMargin = "HeaderMargin";
/** Set Header Margin.
* Margin of the Header in 1/72 of an inch
*/
public void setHeaderMargin (int HeaderMargin);
/** Get Header Margin.
* Margin of the Header in 1/72 of an inch
*/
public int getHeaderMargin();
/** Column name IsDefault */
public static final String COLUMNNAME_IsDefault = "IsDefault";
/** Set Default.
* Default value
*/
public void setIsDefault (boolean IsDefault);
/** Get Default.
* Default value
*/
public boolean isDefault();
/** Column name IsForm */
public static final String COLUMNNAME_IsForm = "IsForm";
/** Set Form.
* If Selected, a Form is printed, if not selected a columnar List report
*/
public void setIsForm (boolean IsForm);
/** Get Form.
* If Selected, a Form is printed, if not selected a columnar List report
*/
public boolean isForm();
/** Column name IsStandardHeaderFooter */
public static final String COLUMNNAME_IsStandardHeaderFooter = "IsStandardHeaderFooter";
/** Set Standard Header/Footer.
* The standard Header and Footer is used
*/
public void setIsStandardHeaderFooter (boolean IsStandardHeaderFooter);
/** Get Standard Header/Footer.
* The standard Header and Footer is used
*/
public boolean isStandardHeaderFooter();
/** Column name IsTableBased */
public static final String COLUMNNAME_IsTableBased = "IsTableBased";
/** Set Table Based.
* Table based List Reporting
*/
public void setIsTableBased (boolean IsTableBased);
/** Get Table Based.
* Table based List Reporting
*/
public boolean isTableBased();
/** Column name JasperProcess_ID */
public static final String COLUMNNAME_JasperProcess_ID = "JasperProcess_ID";
/** Set Jasper Process.
* The Jasper Process used by the printengine if any process defined
*/
public void setJasperProcess_ID (int JasperProcess_ID);
/** Get Jasper Process.
* The Jasper Process used by the printengine if any process defined
*/
public int getJasperProcess_ID();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name PrinterName */
public static final String COLUMNNAME_PrinterName = "PrinterName";
/** Set Printer Name.
* Name of the Printer
*/
public void setPrinterName (String PrinterName);
/** Get Printer Name.
* Name of the Printer
*/
public String getPrinterName();
}

View File

@ -0,0 +1,748 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PrintFormatItem
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.593
*/
public interface I_AD_PrintFormatItem
{
/** TableName=AD_PrintFormatItem */
public static final String Table_Name = "AD_PrintFormatItem";
/** AD_Table_ID=489 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 7 - System - Client - Org
*/
BigDecimal accessLevel = new BigDecimal(7);
/** Load Meta Data */
/** Column name AD_Column_ID */
public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID";
/** Set Column.
* Column in the table
*/
public void setAD_Column_ID (int AD_Column_ID);
/** Get Column.
* Column in the table
*/
public int getAD_Column_ID();
public I_AD_Column getI_AD_Column() throws Exception;
/** Column name AD_PrintColor_ID */
public static final String COLUMNNAME_AD_PrintColor_ID = "AD_PrintColor_ID";
/** Set Print Color.
* Color used for printing and display
*/
public void setAD_PrintColor_ID (int AD_PrintColor_ID);
/** Get Print Color.
* Color used for printing and display
*/
public int getAD_PrintColor_ID();
public I_AD_PrintColor getI_AD_PrintColor() throws Exception;
/** Column name AD_PrintFont_ID */
public static final String COLUMNNAME_AD_PrintFont_ID = "AD_PrintFont_ID";
/** Set Print Font.
* Maintain Print Font
*/
public void setAD_PrintFont_ID (int AD_PrintFont_ID);
/** Get Print Font.
* Maintain Print Font
*/
public int getAD_PrintFont_ID();
public I_AD_PrintFont getI_AD_PrintFont() throws Exception;
/** Column name AD_PrintFormatChild_ID */
public static final String COLUMNNAME_AD_PrintFormatChild_ID = "AD_PrintFormatChild_ID";
/** Set Included Print Format.
* Print format that is included here.
*/
public void setAD_PrintFormatChild_ID (int AD_PrintFormatChild_ID);
/** Get Included Print Format.
* Print format that is included here.
*/
public int getAD_PrintFormatChild_ID();
/** Column name AD_PrintFormatItem_ID */
public static final String COLUMNNAME_AD_PrintFormatItem_ID = "AD_PrintFormatItem_ID";
/** Set Print Format Item.
* Item/Column in the Print format
*/
public void setAD_PrintFormatItem_ID (int AD_PrintFormatItem_ID);
/** Get Print Format Item.
* Item/Column in the Print format
*/
public int getAD_PrintFormatItem_ID();
/** Column name AD_PrintFormat_ID */
public static final String COLUMNNAME_AD_PrintFormat_ID = "AD_PrintFormat_ID";
/** Set Print Format.
* Data Print Format
*/
public void setAD_PrintFormat_ID (int AD_PrintFormat_ID);
/** Get Print Format.
* Data Print Format
*/
public int getAD_PrintFormat_ID();
public I_AD_PrintFormat getI_AD_PrintFormat() throws Exception;
/** Column name AD_PrintGraph_ID */
public static final String COLUMNNAME_AD_PrintGraph_ID = "AD_PrintGraph_ID";
/** Set Graph.
* Graph included in Reports
*/
public void setAD_PrintGraph_ID (int AD_PrintGraph_ID);
/** Get Graph.
* Graph included in Reports
*/
public int getAD_PrintGraph_ID();
public I_AD_PrintGraph getI_AD_PrintGraph() throws Exception;
/** Column name ArcDiameter */
public static final String COLUMNNAME_ArcDiameter = "ArcDiameter";
/** Set Arc Diameter.
* Arc Diameter for rounded Rectangles
*/
public void setArcDiameter (int ArcDiameter);
/** Get Arc Diameter.
* Arc Diameter for rounded Rectangles
*/
public int getArcDiameter();
/** Column name BarcodeType */
public static final String COLUMNNAME_BarcodeType = "BarcodeType";
/** Set Barcode Type.
* Type of barcode
*/
public void setBarcodeType (String BarcodeType);
/** Get Barcode Type.
* Type of barcode
*/
public String getBarcodeType();
/** Column name BelowColumn */
public static final String COLUMNNAME_BelowColumn = "BelowColumn";
/** Set Below Column.
* Print this column below the column index entered
*/
public void setBelowColumn (int BelowColumn);
/** Get Below Column.
* Print this column below the column index entered
*/
public int getBelowColumn();
/** Column name FieldAlignmentType */
public static final String COLUMNNAME_FieldAlignmentType = "FieldAlignmentType";
/** Set Field Alignment.
* Field Text Alignment
*/
public void setFieldAlignmentType (String FieldAlignmentType);
/** Get Field Alignment.
* Field Text Alignment
*/
public String getFieldAlignmentType();
/** Column name ImageIsAttached */
public static final String COLUMNNAME_ImageIsAttached = "ImageIsAttached";
/** Set Image attached.
* The image to be printed is attached to the record
*/
public void setImageIsAttached (boolean ImageIsAttached);
/** Get Image attached.
* The image to be printed is attached to the record
*/
public boolean isImageIsAttached();
/** Column name ImageURL */
public static final String COLUMNNAME_ImageURL = "ImageURL";
/** Set Image URL.
* URL of image
*/
public void setImageURL (String ImageURL);
/** Get Image URL.
* URL of image
*/
public String getImageURL();
/** Column name IsAveraged */
public static final String COLUMNNAME_IsAveraged = "IsAveraged";
/** Set Calculate Mean (?).
* Calculate Average of numeric content or length
*/
public void setIsAveraged (boolean IsAveraged);
/** Get Calculate Mean (?).
* Calculate Average of numeric content or length
*/
public boolean isAveraged();
/** Column name IsCentrallyMaintained */
public static final String COLUMNNAME_IsCentrallyMaintained = "IsCentrallyMaintained";
/** Set Centrally maintained.
* Information maintained in System Element table
*/
public void setIsCentrallyMaintained (boolean IsCentrallyMaintained);
/** Get Centrally maintained.
* Information maintained in System Element table
*/
public boolean isCentrallyMaintained();
/** Column name IsCounted */
public static final String COLUMNNAME_IsCounted = "IsCounted";
/** Set Calculate Count (?).
* Count number of not empty elements
*/
public void setIsCounted (boolean IsCounted);
/** Get Calculate Count (?).
* Count number of not empty elements
*/
public boolean isCounted();
/** Column name IsDeviationCalc */
public static final String COLUMNNAME_IsDeviationCalc = "IsDeviationCalc";
/** Set Calculate Deviation (?).
* Calculate Standard Deviation
*/
public void setIsDeviationCalc (boolean IsDeviationCalc);
/** Get Calculate Deviation (?).
* Calculate Standard Deviation
*/
public boolean isDeviationCalc();
/** Column name IsFilledRectangle */
public static final String COLUMNNAME_IsFilledRectangle = "IsFilledRectangle";
/** Set Fill Shape.
* Fill the shape with the color selected
*/
public void setIsFilledRectangle (boolean IsFilledRectangle);
/** Get Fill Shape.
* Fill the shape with the color selected
*/
public boolean isFilledRectangle();
/** Column name IsFixedWidth */
public static final String COLUMNNAME_IsFixedWidth = "IsFixedWidth";
/** Set Fixed Width.
* Column has a fixed width
*/
public void setIsFixedWidth (boolean IsFixedWidth);
/** Get Fixed Width.
* Column has a fixed width
*/
public boolean isFixedWidth();
/** Column name IsGroupBy */
public static final String COLUMNNAME_IsGroupBy = "IsGroupBy";
/** Set Group by.
* After a group change, totals, etc. are printed
*/
public void setIsGroupBy (boolean IsGroupBy);
/** Get Group by.
* After a group change, totals, etc. are printed
*/
public boolean isGroupBy();
/** Column name IsHeightOneLine */
public static final String COLUMNNAME_IsHeightOneLine = "IsHeightOneLine";
/** Set One Line Only.
* If selected, only one line is printed
*/
public void setIsHeightOneLine (boolean IsHeightOneLine);
/** Get One Line Only.
* If selected, only one line is printed
*/
public boolean isHeightOneLine();
/** Column name IsImageField */
public static final String COLUMNNAME_IsImageField = "IsImageField";
/** Set Image Field.
* The image is retrieved from the data column
*/
public void setIsImageField (boolean IsImageField);
/** Get Image Field.
* The image is retrieved from the data column
*/
public boolean isImageField();
/** Column name IsMaxCalc */
public static final String COLUMNNAME_IsMaxCalc = "IsMaxCalc";
/** Set Calculate Maximim (?).
* Calculate the maximim amount
*/
public void setIsMaxCalc (boolean IsMaxCalc);
/** Get Calculate Maximim (?).
* Calculate the maximim amount
*/
public boolean isMaxCalc();
/** Column name IsMinCalc */
public static final String COLUMNNAME_IsMinCalc = "IsMinCalc";
/** Set Calculate Minimum (?).
* Calculate the minimum amount
*/
public void setIsMinCalc (boolean IsMinCalc);
/** Get Calculate Minimum (?).
* Calculate the minimum amount
*/
public boolean isMinCalc();
/** Column name IsNextLine */
public static final String COLUMNNAME_IsNextLine = "IsNextLine";
/** Set Next Line.
* Print item on next line
*/
public void setIsNextLine (boolean IsNextLine);
/** Get Next Line.
* Print item on next line
*/
public boolean isNextLine();
/** Column name IsNextPage */
public static final String COLUMNNAME_IsNextPage = "IsNextPage";
/** Set Next Page.
* The column is printed on the next page
*/
public void setIsNextPage (boolean IsNextPage);
/** Get Next Page.
* The column is printed on the next page
*/
public boolean isNextPage();
/** Column name IsOrderBy */
public static final String COLUMNNAME_IsOrderBy = "IsOrderBy";
/** Set Order by.
* Include in sort order
*/
public void setIsOrderBy (boolean IsOrderBy);
/** Get Order by.
* Include in sort order
*/
public boolean isOrderBy();
/** Column name IsPageBreak */
public static final String COLUMNNAME_IsPageBreak = "IsPageBreak";
/** Set Page break.
* Start with new page
*/
public void setIsPageBreak (boolean IsPageBreak);
/** Get Page break.
* Start with new page
*/
public boolean isPageBreak();
/** Column name IsPrinted */
public static final String COLUMNNAME_IsPrinted = "IsPrinted";
/** Set Printed.
* Indicates if this document / line is printed
*/
public void setIsPrinted (boolean IsPrinted);
/** Get Printed.
* Indicates if this document / line is printed
*/
public boolean isPrinted();
/** Column name IsRelativePosition */
public static final String COLUMNNAME_IsRelativePosition = "IsRelativePosition";
/** Set Relative Position.
* The item is relative positioned (not absolute)
*/
public void setIsRelativePosition (boolean IsRelativePosition);
/** Get Relative Position.
* The item is relative positioned (not absolute)
*/
public boolean isRelativePosition();
/** Column name IsRunningTotal */
public static final String COLUMNNAME_IsRunningTotal = "IsRunningTotal";
/** Set Running Total.
* Create a running total (sum)
*/
public void setIsRunningTotal (boolean IsRunningTotal);
/** Get Running Total.
* Create a running total (sum)
*/
public boolean isRunningTotal();
/** Column name IsSetNLPosition */
public static final String COLUMNNAME_IsSetNLPosition = "IsSetNLPosition";
/** Set Set NL Position.
* Set New Line Position
*/
public void setIsSetNLPosition (boolean IsSetNLPosition);
/** Get Set NL Position.
* Set New Line Position
*/
public boolean isSetNLPosition();
/** Column name IsSummarized */
public static final String COLUMNNAME_IsSummarized = "IsSummarized";
/** Set Calculate Sum (?).
* Calculate the Sum of numeric content or length
*/
public void setIsSummarized (boolean IsSummarized);
/** Get Calculate Sum (?).
* Calculate the Sum of numeric content or length
*/
public boolean isSummarized();
/** Column name IsSuppressNull */
public static final String COLUMNNAME_IsSuppressNull = "IsSuppressNull";
/** Set Suppress Null.
* Suppress columns or elements with NULL value
*/
public void setIsSuppressNull (boolean IsSuppressNull);
/** Get Suppress Null.
* Suppress columns or elements with NULL value
*/
public boolean isSuppressNull();
/** Column name IsVarianceCalc */
public static final String COLUMNNAME_IsVarianceCalc = "IsVarianceCalc";
/** Set Calculate Variance (??).
* Calculate Variance
*/
public void setIsVarianceCalc (boolean IsVarianceCalc);
/** Get Calculate Variance (??).
* Calculate Variance
*/
public boolean isVarianceCalc();
/** Column name LineAlignmentType */
public static final String COLUMNNAME_LineAlignmentType = "LineAlignmentType";
/** Set Line Alignment.
* Line Alignment
*/
public void setLineAlignmentType (String LineAlignmentType);
/** Get Line Alignment.
* Line Alignment
*/
public String getLineAlignmentType();
/** Column name LineWidth */
public static final String COLUMNNAME_LineWidth = "LineWidth";
/** Set Line Width.
* Width of the lines
*/
public void setLineWidth (int LineWidth);
/** Get Line Width.
* Width of the lines
*/
public int getLineWidth();
/** Column name MaxHeight */
public static final String COLUMNNAME_MaxHeight = "MaxHeight";
/** Set Max Height.
* Maximum Height in 1/72 if an inch - 0 = no restriction
*/
public void setMaxHeight (int MaxHeight);
/** Get Max Height.
* Maximum Height in 1/72 if an inch - 0 = no restriction
*/
public int getMaxHeight();
/** Column name MaxWidth */
public static final String COLUMNNAME_MaxWidth = "MaxWidth";
/** Set Max Width.
* Maximum Width in 1/72 if an inch - 0 = no restriction
*/
public void setMaxWidth (int MaxWidth);
/** Get Max Width.
* Maximum Width in 1/72 if an inch - 0 = no restriction
*/
public int getMaxWidth();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name PrintAreaType */
public static final String COLUMNNAME_PrintAreaType = "PrintAreaType";
/** Set Area.
* Print Area
*/
public void setPrintAreaType (String PrintAreaType);
/** Get Area.
* Print Area
*/
public String getPrintAreaType();
/** Column name PrintFormatType */
public static final String COLUMNNAME_PrintFormatType = "PrintFormatType";
/** Set Format Type.
* Print Format Type
*/
public void setPrintFormatType (String PrintFormatType);
/** Get Format Type.
* Print Format Type
*/
public String getPrintFormatType();
/** Column name PrintName */
public static final String COLUMNNAME_PrintName = "PrintName";
/** Set Print Text.
* The label text to be printed on a document or correspondence.
*/
public void setPrintName (String PrintName);
/** Get Print Text.
* The label text to be printed on a document or correspondence.
*/
public String getPrintName();
/** Column name PrintNameSuffix */
public static final String COLUMNNAME_PrintNameSuffix = "PrintNameSuffix";
/** Set Print Label Suffix.
* The label text to be printed on a document or correspondence after the field
*/
public void setPrintNameSuffix (String PrintNameSuffix);
/** Get Print Label Suffix.
* The label text to be printed on a document or correspondence after the field
*/
public String getPrintNameSuffix();
/** Column name RunningTotalLines */
public static final String COLUMNNAME_RunningTotalLines = "RunningTotalLines";
/** Set Running Total Lines.
* Create Running Total Lines (page break) every x lines
*/
public void setRunningTotalLines (int RunningTotalLines);
/** Get Running Total Lines.
* Create Running Total Lines (page break) every x lines
*/
public int getRunningTotalLines();
/** Column name SeqNo */
public static final String COLUMNNAME_SeqNo = "SeqNo";
/** Set Sequence.
* Method of ordering records;
lowest number comes first
*/
public void setSeqNo (int SeqNo);
/** Get Sequence.
* Method of ordering records;
lowest number comes first
*/
public int getSeqNo();
/** Column name ShapeType */
public static final String COLUMNNAME_ShapeType = "ShapeType";
/** Set Shape Type.
* Type of the shape to be painted
*/
public void setShapeType (String ShapeType);
/** Get Shape Type.
* Type of the shape to be painted
*/
public String getShapeType();
/** Column name SortNo */
public static final String COLUMNNAME_SortNo = "SortNo";
/** Set Record Sort No.
* Determines in what order the records are displayed
*/
public void setSortNo (int SortNo);
/** Get Record Sort No.
* Determines in what order the records are displayed
*/
public int getSortNo();
/** Column name XPosition */
public static final String COLUMNNAME_XPosition = "XPosition";
/** Set X Position.
* Absolute X (horizontal) position in 1/72 of an inch
*/
public void setXPosition (int XPosition);
/** Get X Position.
* Absolute X (horizontal) position in 1/72 of an inch
*/
public int getXPosition();
/** Column name XSpace */
public static final String COLUMNNAME_XSpace = "XSpace";
/** Set X Space.
* Relative X (horizontal) space in 1/72 of an inch
*/
public void setXSpace (int XSpace);
/** Get X Space.
* Relative X (horizontal) space in 1/72 of an inch
*/
public int getXSpace();
/** Column name YPosition */
public static final String COLUMNNAME_YPosition = "YPosition";
/** Set Y Position.
* Absolute Y (vertical) position in 1/72 of an inch
*/
public void setYPosition (int YPosition);
/** Get Y Position.
* Absolute Y (vertical) position in 1/72 of an inch
*/
public int getYPosition();
/** Column name YSpace */
public static final String COLUMNNAME_YSpace = "YSpace";
/** Set Y Space.
* Relative Y (vertical) space in 1/72 of an inch
*/
public void setYSpace (int YSpace);
/** Get Y Space.
* Relative Y (vertical) space in 1/72 of an inch
*/
public int getYSpace();
}

View File

@ -0,0 +1,205 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PrintGraph
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.75
*/
public interface I_AD_PrintGraph
{
/** TableName=AD_PrintGraph */
public static final String Table_Name = "AD_PrintGraph";
/** AD_Table_ID=521 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 7 - System - Client - Org
*/
BigDecimal accessLevel = new BigDecimal(7);
/** Load Meta Data */
/** Column name AD_PrintFormat_ID */
public static final String COLUMNNAME_AD_PrintFormat_ID = "AD_PrintFormat_ID";
/** Set Print Format.
* Data Print Format
*/
public void setAD_PrintFormat_ID (int AD_PrintFormat_ID);
/** Get Print Format.
* Data Print Format
*/
public int getAD_PrintFormat_ID();
public I_AD_PrintFormat getI_AD_PrintFormat() throws Exception;
/** Column name AD_PrintGraph_ID */
public static final String COLUMNNAME_AD_PrintGraph_ID = "AD_PrintGraph_ID";
/** Set Graph.
* Graph included in Reports
*/
public void setAD_PrintGraph_ID (int AD_PrintGraph_ID);
/** Get Graph.
* Graph included in Reports
*/
public int getAD_PrintGraph_ID();
/** Column name Data1_PrintFormatItem_ID */
public static final String COLUMNNAME_Data1_PrintFormatItem_ID = "Data1_PrintFormatItem_ID";
/** Set Data Column 2.
* Data Column for Line Charts
*/
public void setData1_PrintFormatItem_ID (int Data1_PrintFormatItem_ID);
/** Get Data Column 2.
* Data Column for Line Charts
*/
public int getData1_PrintFormatItem_ID();
/** Column name Data2_PrintFormatItem_ID */
public static final String COLUMNNAME_Data2_PrintFormatItem_ID = "Data2_PrintFormatItem_ID";
/** Set Data Column 3.
* Data Column for Line Charts
*/
public void setData2_PrintFormatItem_ID (int Data2_PrintFormatItem_ID);
/** Get Data Column 3.
* Data Column for Line Charts
*/
public int getData2_PrintFormatItem_ID();
/** Column name Data3_PrintFormatItem_ID */
public static final String COLUMNNAME_Data3_PrintFormatItem_ID = "Data3_PrintFormatItem_ID";
/** Set Data Column 4.
* Data Column for Line Charts
*/
public void setData3_PrintFormatItem_ID (int Data3_PrintFormatItem_ID);
/** Get Data Column 4.
* Data Column for Line Charts
*/
public int getData3_PrintFormatItem_ID();
/** Column name Data4_PrintFormatItem_ID */
public static final String COLUMNNAME_Data4_PrintFormatItem_ID = "Data4_PrintFormatItem_ID";
/** Set Data Column 5.
* Data Column for Line Charts
*/
public void setData4_PrintFormatItem_ID (int Data4_PrintFormatItem_ID);
/** Get Data Column 5.
* Data Column for Line Charts
*/
public int getData4_PrintFormatItem_ID();
/** Column name Data_PrintFormatItem_ID */
public static final String COLUMNNAME_Data_PrintFormatItem_ID = "Data_PrintFormatItem_ID";
/** Set Data Column.
* Data Column for Pie and Line Charts
*/
public void setData_PrintFormatItem_ID (int Data_PrintFormatItem_ID);
/** Get Data Column.
* Data Column for Pie and Line Charts
*/
public int getData_PrintFormatItem_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Description_PrintFormatItem_ID */
public static final String COLUMNNAME_Description_PrintFormatItem_ID = "Description_PrintFormatItem_ID";
/** Set Description Column.
* Description Column for Pie/Line/Bar Charts
*/
public void setDescription_PrintFormatItem_ID (int Description_PrintFormatItem_ID);
/** Get Description Column.
* Description Column for Pie/Line/Bar Charts
*/
public int getDescription_PrintFormatItem_ID();
/** Column name GraphType */
public static final String COLUMNNAME_GraphType = "GraphType";
/** Set Graph Type.
* Type of graph to be painted
*/
public void setGraphType (String GraphType);
/** Get Graph Type.
* Type of graph to be painted
*/
public String getGraphType();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,179 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PrintLabel
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:25.796
*/
public interface I_AD_PrintLabel
{
/** TableName=AD_PrintLabel */
public static final String Table_Name = "AD_PrintLabel";
/** AD_Table_ID=570 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_LabelPrinter_ID */
public static final String COLUMNNAME_AD_LabelPrinter_ID = "AD_LabelPrinter_ID";
/** Set Label printer.
* Label Printer Definition
*/
public void setAD_LabelPrinter_ID (int AD_LabelPrinter_ID);
/** Get Label printer.
* Label Printer Definition
*/
public int getAD_LabelPrinter_ID();
/** Column name AD_PrintLabel_ID */
public static final String COLUMNNAME_AD_PrintLabel_ID = "AD_PrintLabel_ID";
/** Set Print Label.
* Label Format to print
*/
public void setAD_PrintLabel_ID (int AD_PrintLabel_ID);
/** Get Print Label.
* Label Format to print
*/
public int getAD_PrintLabel_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name IsLandscape */
public static final String COLUMNNAME_IsLandscape = "IsLandscape";
/** Set Landscape.
* Landscape orientation
*/
public void setIsLandscape (boolean IsLandscape);
/** Get Landscape.
* Landscape orientation
*/
public boolean isLandscape();
/** Column name LabelHeight */
public static final String COLUMNNAME_LabelHeight = "LabelHeight";
/** Set Label Height.
* Height of the label
*/
public void setLabelHeight (int LabelHeight);
/** Get Label Height.
* Height of the label
*/
public int getLabelHeight();
/** Column name LabelWidth */
public static final String COLUMNNAME_LabelWidth = "LabelWidth";
/** Set Label Width.
* Width of the Label
*/
public void setLabelWidth (int LabelWidth);
/** Get Label Width.
* Width of the Label
*/
public int getLabelWidth();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name PrinterName */
public static final String COLUMNNAME_PrinterName = "PrinterName";
/** Set Printer Name.
* Name of the Printer
*/
public void setPrinterName (String PrinterName);
/** Get Printer Name.
* Name of the Printer
*/
public String getPrinterName();
}

View File

@ -0,0 +1,198 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PrintLabelLine
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:26.203
*/
public interface I_AD_PrintLabelLine
{
/** TableName=AD_PrintLabelLine */
public static final String Table_Name = "AD_PrintLabelLine";
/** AD_Table_ID=569 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Column_ID */
public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID";
/** Set Column.
* Column in the table
*/
public void setAD_Column_ID (int AD_Column_ID);
/** Get Column.
* Column in the table
*/
public int getAD_Column_ID();
public I_AD_Column getI_AD_Column() throws Exception;
/** Column name AD_LabelPrinterFunction_ID */
public static final String COLUMNNAME_AD_LabelPrinterFunction_ID = "AD_LabelPrinterFunction_ID";
/** Set Label printer Function.
* Function of Label Printer
*/
public void setAD_LabelPrinterFunction_ID (int AD_LabelPrinterFunction_ID);
/** Get Label printer Function.
* Function of Label Printer
*/
public int getAD_LabelPrinterFunction_ID();
public I_AD_LabelPrinterFunction getI_AD_LabelPrinterFunction() throws Exception;
/** Column name AD_PrintLabelLine_ID */
public static final String COLUMNNAME_AD_PrintLabelLine_ID = "AD_PrintLabelLine_ID";
/** Set Print Label Line.
* Print Label Line Format
*/
public void setAD_PrintLabelLine_ID (int AD_PrintLabelLine_ID);
/** Get Print Label Line.
* Print Label Line Format
*/
public int getAD_PrintLabelLine_ID();
/** Column name AD_PrintLabel_ID */
public static final String COLUMNNAME_AD_PrintLabel_ID = "AD_PrintLabel_ID";
/** Set Print Label.
* Label Format to print
*/
public void setAD_PrintLabel_ID (int AD_PrintLabel_ID);
/** Get Print Label.
* Label Format to print
*/
public int getAD_PrintLabel_ID();
public I_AD_PrintLabel getI_AD_PrintLabel() throws Exception;
/** Column name LabelFormatType */
public static final String COLUMNNAME_LabelFormatType = "LabelFormatType";
/** Set Label Format Type.
* Label Format Type
*/
public void setLabelFormatType (String LabelFormatType);
/** Get Label Format Type.
* Label Format Type
*/
public String getLabelFormatType();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name PrintName */
public static final String COLUMNNAME_PrintName = "PrintName";
/** Set Print Text.
* The label text to be printed on a document or correspondence.
*/
public void setPrintName (String PrintName);
/** Get Print Text.
* The label text to be printed on a document or correspondence.
*/
public String getPrintName();
/** Column name SeqNo */
public static final String COLUMNNAME_SeqNo = "SeqNo";
/** Set Sequence.
* Method of ordering records;
lowest number comes first
*/
public void setSeqNo (int SeqNo);
/** Get Sequence.
* Method of ordering records;
lowest number comes first
*/
public int getSeqNo();
/** Column name XPosition */
public static final String COLUMNNAME_XPosition = "XPosition";
/** Set X Position.
* Absolute X (horizontal) position in 1/72 of an inch
*/
public void setXPosition (int XPosition);
/** Get X Position.
* Absolute X (horizontal) position in 1/72 of an inch
*/
public int getXPosition();
/** Column name YPosition */
public static final String COLUMNNAME_YPosition = "YPosition";
/** Set Y Position.
* Absolute Y (vertical) position in 1/72 of an inch
*/
public void setYPosition (int YPosition);
/** Get Y Position.
* Absolute Y (vertical) position in 1/72 of an inch
*/
public int getYPosition();
}

View File

@ -0,0 +1,238 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PrintPaper
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:26.312
*/
public interface I_AD_PrintPaper
{
/** TableName=AD_PrintPaper */
public static final String Table_Name = "AD_PrintPaper";
/** AD_Table_ID=492 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_PrintPaper_ID */
public static final String COLUMNNAME_AD_PrintPaper_ID = "AD_PrintPaper_ID";
/** Set Print Paper.
* Printer paper definition
*/
public void setAD_PrintPaper_ID (int AD_PrintPaper_ID);
/** Get Print Paper.
* Printer paper definition
*/
public int getAD_PrintPaper_ID();
/** Column name Code */
public static final String COLUMNNAME_Code = "Code";
/** Set Validation code.
* Validation Code
*/
public void setCode (String Code);
/** Get Validation code.
* Validation Code
*/
public String getCode();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name DimensionUnits */
public static final String COLUMNNAME_DimensionUnits = "DimensionUnits";
/** Set Dimension Units.
* Units of Dimension
*/
public void setDimensionUnits (String DimensionUnits);
/** Get Dimension Units.
* Units of Dimension
*/
public String getDimensionUnits();
/** Column name IsDefault */
public static final String COLUMNNAME_IsDefault = "IsDefault";
/** Set Default.
* Default value
*/
public void setIsDefault (boolean IsDefault);
/** Get Default.
* Default value
*/
public boolean isDefault();
/** Column name IsLandscape */
public static final String COLUMNNAME_IsLandscape = "IsLandscape";
/** Set Landscape.
* Landscape orientation
*/
public void setIsLandscape (boolean IsLandscape);
/** Get Landscape.
* Landscape orientation
*/
public boolean isLandscape();
/** Column name MarginBottom */
public static final String COLUMNNAME_MarginBottom = "MarginBottom";
/** Set Bottom Margin.
* Bottom Space in 1/72 inch
*/
public void setMarginBottom (int MarginBottom);
/** Get Bottom Margin.
* Bottom Space in 1/72 inch
*/
public int getMarginBottom();
/** Column name MarginLeft */
public static final String COLUMNNAME_MarginLeft = "MarginLeft";
/** Set Left Margin.
* Left Space in 1/72 inch
*/
public void setMarginLeft (int MarginLeft);
/** Get Left Margin.
* Left Space in 1/72 inch
*/
public int getMarginLeft();
/** Column name MarginRight */
public static final String COLUMNNAME_MarginRight = "MarginRight";
/** Set Right Margin.
* Right Space in 1/72 inch
*/
public void setMarginRight (int MarginRight);
/** Get Right Margin.
* Right Space in 1/72 inch
*/
public int getMarginRight();
/** Column name MarginTop */
public static final String COLUMNNAME_MarginTop = "MarginTop";
/** Set Top Margin.
* Top Space in 1/72 inch
*/
public void setMarginTop (int MarginTop);
/** Get Top Margin.
* Top Space in 1/72 inch
*/
public int getMarginTop();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name SizeX */
public static final String COLUMNNAME_SizeX = "SizeX";
/** Set Size X.
* X (horizontal) dimension size
*/
public void setSizeX (BigDecimal SizeX);
/** Get Size X.
* X (horizontal) dimension size
*/
public BigDecimal getSizeX();
/** Column name SizeY */
public static final String COLUMNNAME_SizeY = "SizeY";
/** Set Size Y.
* Y (vertical) dimension size
*/
public void setSizeY (BigDecimal SizeY);
/** Get Size Y.
* Y (vertical) dimension size
*/
public BigDecimal getSizeY();
}

View File

@ -0,0 +1,437 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_PrintTableFormat
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:26.375
*/
public interface I_AD_PrintTableFormat
{
/** TableName=AD_PrintTableFormat */
public static final String Table_Name = "AD_PrintTableFormat";
/** AD_Table_ID=523 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_PrintTableFormat_ID */
public static final String COLUMNNAME_AD_PrintTableFormat_ID = "AD_PrintTableFormat_ID";
/** Set Print Table Format.
* Table Format in Reports
*/
public void setAD_PrintTableFormat_ID (int AD_PrintTableFormat_ID);
/** Get Print Table Format.
* Table Format in Reports
*/
public int getAD_PrintTableFormat_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name FooterCenter */
public static final String COLUMNNAME_FooterCenter = "FooterCenter";
/** Set Footer Center.
* Content of the center portion of the footer.
*/
public void setFooterCenter (String FooterCenter);
/** Get Footer Center.
* Content of the center portion of the footer.
*/
public String getFooterCenter();
/** Column name FooterLeft */
public static final String COLUMNNAME_FooterLeft = "FooterLeft";
/** Set Footer Left.
* Content of the left portion of the footer.
*/
public void setFooterLeft (String FooterLeft);
/** Get Footer Left.
* Content of the left portion of the footer.
*/
public String getFooterLeft();
/** Column name FooterRight */
public static final String COLUMNNAME_FooterRight = "FooterRight";
/** Set Footer Right.
* Content of the right portion of the footer.
*/
public void setFooterRight (String FooterRight);
/** Get Footer Right.
* Content of the right portion of the footer.
*/
public String getFooterRight();
/** Column name FunctBG_PrintColor_ID */
public static final String COLUMNNAME_FunctBG_PrintColor_ID = "FunctBG_PrintColor_ID";
/** Set Function BG Color.
* Function Background Color
*/
public void setFunctBG_PrintColor_ID (int FunctBG_PrintColor_ID);
/** Get Function BG Color.
* Function Background Color
*/
public int getFunctBG_PrintColor_ID();
/** Column name FunctFG_PrintColor_ID */
public static final String COLUMNNAME_FunctFG_PrintColor_ID = "FunctFG_PrintColor_ID";
/** Set Function Color.
* Function Foreground Color
*/
public void setFunctFG_PrintColor_ID (int FunctFG_PrintColor_ID);
/** Get Function Color.
* Function Foreground Color
*/
public int getFunctFG_PrintColor_ID();
/** Column name Funct_PrintFont_ID */
public static final String COLUMNNAME_Funct_PrintFont_ID = "Funct_PrintFont_ID";
/** Set Function Font.
* Function row Font
*/
public void setFunct_PrintFont_ID (int Funct_PrintFont_ID);
/** Get Function Font.
* Function row Font
*/
public int getFunct_PrintFont_ID();
/** Column name HdrLine_PrintColor_ID */
public static final String COLUMNNAME_HdrLine_PrintColor_ID = "HdrLine_PrintColor_ID";
/** Set Header Line Color.
* Table header row line color
*/
public void setHdrLine_PrintColor_ID (int HdrLine_PrintColor_ID);
/** Get Header Line Color.
* Table header row line color
*/
public int getHdrLine_PrintColor_ID();
/** Column name HdrStroke */
public static final String COLUMNNAME_HdrStroke = "HdrStroke";
/** Set Header Stroke.
* Width of the Header Line Stroke
*/
public void setHdrStroke (BigDecimal HdrStroke);
/** Get Header Stroke.
* Width of the Header Line Stroke
*/
public BigDecimal getHdrStroke();
/** Column name HdrStrokeType */
public static final String COLUMNNAME_HdrStrokeType = "HdrStrokeType";
/** Set Header Stroke Type.
* Type of the Header Line Stroke
*/
public void setHdrStrokeType (String HdrStrokeType);
/** Get Header Stroke Type.
* Type of the Header Line Stroke
*/
public String getHdrStrokeType();
/** Column name HdrTextBG_PrintColor_ID */
public static final String COLUMNNAME_HdrTextBG_PrintColor_ID = "HdrTextBG_PrintColor_ID";
/** Set Header Row BG Color.
* Background color of header row
*/
public void setHdrTextBG_PrintColor_ID (int HdrTextBG_PrintColor_ID);
/** Get Header Row BG Color.
* Background color of header row
*/
public int getHdrTextBG_PrintColor_ID();
/** Column name HdrTextFG_PrintColor_ID */
public static final String COLUMNNAME_HdrTextFG_PrintColor_ID = "HdrTextFG_PrintColor_ID";
/** Set Header Row Color.
* Foreground color if the table header row
*/
public void setHdrTextFG_PrintColor_ID (int HdrTextFG_PrintColor_ID);
/** Get Header Row Color.
* Foreground color if the table header row
*/
public int getHdrTextFG_PrintColor_ID();
/** Column name Hdr_PrintFont_ID */
public static final String COLUMNNAME_Hdr_PrintFont_ID = "Hdr_PrintFont_ID";
/** Set Header Row Font.
* Header row Font
*/
public void setHdr_PrintFont_ID (int Hdr_PrintFont_ID);
/** Get Header Row Font.
* Header row Font
*/
public int getHdr_PrintFont_ID();
/** Column name HeaderCenter */
public static final String COLUMNNAME_HeaderCenter = "HeaderCenter";
/** Set Header Center.
* Content of the center portion of the header.
*/
public void setHeaderCenter (String HeaderCenter);
/** Get Header Center.
* Content of the center portion of the header.
*/
public String getHeaderCenter();
/** Column name HeaderLeft */
public static final String COLUMNNAME_HeaderLeft = "HeaderLeft";
/** Set Header Left.
* Content of the left portion of the header.
*/
public void setHeaderLeft (String HeaderLeft);
/** Get Header Left.
* Content of the left portion of the header.
*/
public String getHeaderLeft();
/** Column name HeaderRight */
public static final String COLUMNNAME_HeaderRight = "HeaderRight";
/** Set Header Right.
* Content of the right portion of the header.
*/
public void setHeaderRight (String HeaderRight);
/** Get Header Right.
* Content of the right portion of the header.
*/
public String getHeaderRight();
/** Column name ImageIsAttached */
public static final String COLUMNNAME_ImageIsAttached = "ImageIsAttached";
/** Set Image attached.
* The image to be printed is attached to the record
*/
public void setImageIsAttached (boolean ImageIsAttached);
/** Get Image attached.
* The image to be printed is attached to the record
*/
public boolean isImageIsAttached();
/** Column name ImageURL */
public static final String COLUMNNAME_ImageURL = "ImageURL";
/** Set Image URL.
* URL of image
*/
public void setImageURL (String ImageURL);
/** Get Image URL.
* URL of image
*/
public String getImageURL();
/** Column name IsDefault */
public static final String COLUMNNAME_IsDefault = "IsDefault";
/** Set Default.
* Default value
*/
public void setIsDefault (boolean IsDefault);
/** Get Default.
* Default value
*/
public boolean isDefault();
/** Column name IsPaintBoundaryLines */
public static final String COLUMNNAME_IsPaintBoundaryLines = "IsPaintBoundaryLines";
/** Set Paint Boundary Lines.
* Paint table boundary lines
*/
public void setIsPaintBoundaryLines (boolean IsPaintBoundaryLines);
/** Get Paint Boundary Lines.
* Paint table boundary lines
*/
public boolean isPaintBoundaryLines();
/** Column name IsPaintHLines */
public static final String COLUMNNAME_IsPaintHLines = "IsPaintHLines";
/** Set Paint Horizontal Lines.
* Paint horizontal lines
*/
public void setIsPaintHLines (boolean IsPaintHLines);
/** Get Paint Horizontal Lines.
* Paint horizontal lines
*/
public boolean isPaintHLines();
/** Column name IsPaintHeaderLines */
public static final String COLUMNNAME_IsPaintHeaderLines = "IsPaintHeaderLines";
/** Set Paint Header Lines.
* Paint Lines over/under the Header Line
*/
public void setIsPaintHeaderLines (boolean IsPaintHeaderLines);
/** Get Paint Header Lines.
* Paint Lines over/under the Header Line
*/
public boolean isPaintHeaderLines();
/** Column name IsPaintVLines */
public static final String COLUMNNAME_IsPaintVLines = "IsPaintVLines";
/** Set Paint Vertical Lines.
* Paint vertical lines
*/
public void setIsPaintVLines (boolean IsPaintVLines);
/** Get Paint Vertical Lines.
* Paint vertical lines
*/
public boolean isPaintVLines();
/** Column name IsPrintFunctionSymbols */
public static final String COLUMNNAME_IsPrintFunctionSymbols = "IsPrintFunctionSymbols";
/** Set Print Function Symbols.
* Print Symbols for Functions (Sum, Average, Count)
*/
public void setIsPrintFunctionSymbols (boolean IsPrintFunctionSymbols);
/** Get Print Function Symbols.
* Print Symbols for Functions (Sum, Average, Count)
*/
public boolean isPrintFunctionSymbols();
/** Column name LineStroke */
public static final String COLUMNNAME_LineStroke = "LineStroke";
/** Set Line Stroke.
* Width of the Line Stroke
*/
public void setLineStroke (BigDecimal LineStroke);
/** Get Line Stroke.
* Width of the Line Stroke
*/
public BigDecimal getLineStroke();
/** Column name LineStrokeType */
public static final String COLUMNNAME_LineStrokeType = "LineStrokeType";
/** Set Line Stroke Type.
* Type of the Line Stroke
*/
public void setLineStrokeType (String LineStrokeType);
/** Get Line Stroke Type.
* Type of the Line Stroke
*/
public String getLineStrokeType();
/** Column name Line_PrintColor_ID */
public static final String COLUMNNAME_Line_PrintColor_ID = "Line_PrintColor_ID";
/** Set Line Color.
* Table line color
*/
public void setLine_PrintColor_ID (int Line_PrintColor_ID);
/** Get Line Color.
* Table line color
*/
public int getLine_PrintColor_ID();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,103 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Private_Access
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:26.421
*/
public interface I_AD_Private_Access
{
/** TableName=AD_Private_Access */
public static final String Table_Name = "AD_Private_Access";
/** AD_Table_ID=627 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name AD_User_ID */
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
/** Set User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public void setAD_User_ID (int AD_User_ID);
/** Get User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public int getAD_User_ID();
public I_AD_User getI_AD_User() throws Exception;
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
}

View File

@ -0,0 +1,333 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Process
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:26.453
*/
public interface I_AD_Process
{
/** TableName=AD_Process */
public static final String Table_Name = "AD_Process";
/** AD_Table_ID=284 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_PrintFormat_ID */
public static final String COLUMNNAME_AD_PrintFormat_ID = "AD_PrintFormat_ID";
/** Set Print Format.
* Data Print Format
*/
public void setAD_PrintFormat_ID (int AD_PrintFormat_ID);
/** Get Print Format.
* Data Print Format
*/
public int getAD_PrintFormat_ID();
public I_AD_PrintFormat getI_AD_PrintFormat() throws Exception;
/** Column name AD_Process_ID */
public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID";
/** Set Process.
* Process or Report
*/
public void setAD_Process_ID (int AD_Process_ID);
/** Get Process.
* Process or Report
*/
public int getAD_Process_ID();
/** Column name AD_ReportView_ID */
public static final String COLUMNNAME_AD_ReportView_ID = "AD_ReportView_ID";
/** Set Report View.
* View used to generate this report
*/
public void setAD_ReportView_ID (int AD_ReportView_ID);
/** Get Report View.
* View used to generate this report
*/
public int getAD_ReportView_ID();
public I_AD_ReportView getI_AD_ReportView() throws Exception;
/** Column name AD_Workflow_ID */
public static final String COLUMNNAME_AD_Workflow_ID = "AD_Workflow_ID";
/** Set Workflow.
* Workflow or combination of tasks
*/
public void setAD_Workflow_ID (int AD_Workflow_ID);
/** Get Workflow.
* Workflow or combination of tasks
*/
public int getAD_Workflow_ID();
public I_AD_Workflow getI_AD_Workflow() throws Exception;
/** Column name AccessLevel */
public static final String COLUMNNAME_AccessLevel = "AccessLevel";
/** Set Data Access Level.
* Access Level required
*/
public void setAccessLevel (String AccessLevel);
/** Get Data Access Level.
* Access Level required
*/
public String getAccessLevel();
/** Column name Classname */
public static final String COLUMNNAME_Classname = "Classname";
/** Set Classname.
* Java Classname
*/
public void setClassname (String Classname);
/** Get Classname.
* Java Classname
*/
public String getClassname();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name IsBetaFunctionality */
public static final String COLUMNNAME_IsBetaFunctionality = "IsBetaFunctionality";
/** Set Beta Functionality.
* This functionality is considered Beta
*/
public void setIsBetaFunctionality (boolean IsBetaFunctionality);
/** Get Beta Functionality.
* This functionality is considered Beta
*/
public boolean isBetaFunctionality();
/** Column name IsDirectPrint */
public static final String COLUMNNAME_IsDirectPrint = "IsDirectPrint";
/** Set Direct print.
* Print without dialog
*/
public void setIsDirectPrint (boolean IsDirectPrint);
/** Get Direct print.
* Print without dialog
*/
public boolean isDirectPrint();
/** Column name IsReport */
public static final String COLUMNNAME_IsReport = "IsReport";
/** Set Report.
* Indicates a Report record
*/
public void setIsReport (boolean IsReport);
/** Get Report.
* Indicates a Report record
*/
public boolean isReport();
/** Column name IsServerProcess */
public static final String COLUMNNAME_IsServerProcess = "IsServerProcess";
/** Set Server Process.
* Run this Process on Server only
*/
public void setIsServerProcess (boolean IsServerProcess);
/** Get Server Process.
* Run this Process on Server only
*/
public boolean isServerProcess();
/** Column name JasperReport */
public static final String COLUMNNAME_JasperReport = "JasperReport";
/** Set Jasper Report */
public void setJasperReport (String JasperReport);
/** Get Jasper Report */
public String getJasperReport();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name ProcedureName */
public static final String COLUMNNAME_ProcedureName = "ProcedureName";
/** Set Procedure.
* Name of the Database Procedure
*/
public void setProcedureName (String ProcedureName);
/** Get Procedure.
* Name of the Database Procedure
*/
public String getProcedureName();
/** Column name ShowHelp */
public static final String COLUMNNAME_ShowHelp = "ShowHelp";
/** Set Show Help */
public void setShowHelp (String ShowHelp);
/** Get Show Help */
public String getShowHelp();
/** Column name Statistic_Count */
public static final String COLUMNNAME_Statistic_Count = "Statistic_Count";
/** Set Statistic Count.
* Internal statistics how often the entity was used
*/
public void setStatistic_Count (int Statistic_Count);
/** Get Statistic Count.
* Internal statistics how often the entity was used
*/
public int getStatistic_Count();
/** Column name Statistic_Seconds */
public static final String COLUMNNAME_Statistic_Seconds = "Statistic_Seconds";
/** Set Statistic Seconds.
* Internal statistics how many seconds a process took
*/
public void setStatistic_Seconds (int Statistic_Seconds);
/** Get Statistic Seconds.
* Internal statistics how many seconds a process took
*/
public int getStatistic_Seconds();
/** Column name Value */
public static final String COLUMNNAME_Value = "Value";
/** Set Search Key.
* Search key for the record in the format required - must be unique
*/
public void setValue (String Value);
/** Get Search Key.
* Search key for the record in the format required - must be unique
*/
public String getValue();
/** Column name WorkflowValue */
public static final String COLUMNNAME_WorkflowValue = "WorkflowValue";
/** Set Workflow Key.
* Key of the Workflow to start
*/
public void setWorkflowValue (String WorkflowValue);
/** Get Workflow Key.
* Key of the Workflow to start
*/
public String getWorkflowValue();
}

View File

@ -0,0 +1,103 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Process_Access
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:26.515
*/
public interface I_AD_Process_Access
{
/** TableName=AD_Process_Access */
public static final String Table_Name = "AD_Process_Access";
/** AD_Table_ID=197 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Process_ID */
public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID";
/** Set Process.
* Process or Report
*/
public void setAD_Process_ID (int AD_Process_ID);
/** Get Process.
* Process or Report
*/
public int getAD_Process_ID();
public I_AD_Process getI_AD_Process() throws Exception;
/** Column name AD_Role_ID */
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
/** Set Role.
* Responsibility Role
*/
public void setAD_Role_ID (int AD_Role_ID);
/** Get Role.
* Responsibility Role
*/
public int getAD_Role_ID();
public I_AD_Role getI_AD_Role() throws Exception;
/** Column name IsReadWrite */
public static final String COLUMNNAME_IsReadWrite = "IsReadWrite";
/** Set Read Write.
* Field is read / write
*/
public void setIsReadWrite (boolean IsReadWrite);
/** Get Read Write.
* Field is read / write
*/
public boolean isReadWrite();
}

View File

@ -0,0 +1,343 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Process_Para
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:26.546
*/
public interface I_AD_Process_Para
{
/** TableName=AD_Process_Para */
public static final String Table_Name = "AD_Process_Para";
/** AD_Table_ID=285 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Element_ID */
public static final String COLUMNNAME_AD_Element_ID = "AD_Element_ID";
/** Set System Element.
* System Element enables the central maintenance of column description and help.
*/
public void setAD_Element_ID (int AD_Element_ID);
/** Get System Element.
* System Element enables the central maintenance of column description and help.
*/
public int getAD_Element_ID();
/** Column name AD_Process_ID */
public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID";
/** Set Process.
* Process or Report
*/
public void setAD_Process_ID (int AD_Process_ID);
/** Get Process.
* Process or Report
*/
public int getAD_Process_ID();
public I_AD_Process getI_AD_Process() throws Exception;
/** Column name AD_Process_Para_ID */
public static final String COLUMNNAME_AD_Process_Para_ID = "AD_Process_Para_ID";
/** Set Process Parameter */
public void setAD_Process_Para_ID (int AD_Process_Para_ID);
/** Get Process Parameter */
public int getAD_Process_Para_ID();
/** Column name AD_Reference_ID */
public static final String COLUMNNAME_AD_Reference_ID = "AD_Reference_ID";
/** Set Reference.
* System Reference and Validation
*/
public void setAD_Reference_ID (int AD_Reference_ID);
/** Get Reference.
* System Reference and Validation
*/
public int getAD_Reference_ID();
/** Column name AD_Reference_Value_ID */
public static final String COLUMNNAME_AD_Reference_Value_ID = "AD_Reference_Value_ID";
/** Set Reference Key.
* Required to specify, if data type is Table or List
*/
public void setAD_Reference_Value_ID (int AD_Reference_Value_ID);
/** Get Reference Key.
* Required to specify, if data type is Table or List
*/
public int getAD_Reference_Value_ID();
/** Column name AD_Val_Rule_ID */
public static final String COLUMNNAME_AD_Val_Rule_ID = "AD_Val_Rule_ID";
/** Set Dynamic Validation.
* Dynamic Validation Rule
*/
public void setAD_Val_Rule_ID (int AD_Val_Rule_ID);
/** Get Dynamic Validation.
* Dynamic Validation Rule
*/
public int getAD_Val_Rule_ID();
public I_AD_Val_Rule getI_AD_Val_Rule() throws Exception;
/** Column name ColumnName */
public static final String COLUMNNAME_ColumnName = "ColumnName";
/** Set DB Column Name.
* Name of the column in the database
*/
public void setColumnName (String ColumnName);
/** Get DB Column Name.
* Name of the column in the database
*/
public String getColumnName();
/** Column name DefaultValue */
public static final String COLUMNNAME_DefaultValue = "DefaultValue";
/** Set Default Logic.
* Default value hierarchy, separated by ;
*/
public void setDefaultValue (String DefaultValue);
/** Get Default Logic.
* Default value hierarchy, separated by ;
*/
public String getDefaultValue();
/** Column name DefaultValue2 */
public static final String COLUMNNAME_DefaultValue2 = "DefaultValue2";
/** Set Default Logic 2.
* Default value hierarchy, separated by ;
*/
public void setDefaultValue2 (String DefaultValue2);
/** Get Default Logic 2.
* Default value hierarchy, separated by ;
*/
public String getDefaultValue2();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name FieldLength */
public static final String COLUMNNAME_FieldLength = "FieldLength";
/** Set Length.
* Length of the column in the database
*/
public void setFieldLength (int FieldLength);
/** Get Length.
* Length of the column in the database
*/
public int getFieldLength();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name IsCentrallyMaintained */
public static final String COLUMNNAME_IsCentrallyMaintained = "IsCentrallyMaintained";
/** Set Centrally maintained.
* Information maintained in System Element table
*/
public void setIsCentrallyMaintained (boolean IsCentrallyMaintained);
/** Get Centrally maintained.
* Information maintained in System Element table
*/
public boolean isCentrallyMaintained();
/** Column name IsMandatory */
public static final String COLUMNNAME_IsMandatory = "IsMandatory";
/** Set Mandatory.
* Data entry is required in this column
*/
public void setIsMandatory (boolean IsMandatory);
/** Get Mandatory.
* Data entry is required in this column
*/
public boolean isMandatory();
/** Column name IsRange */
public static final String COLUMNNAME_IsRange = "IsRange";
/** Set Range.
* The parameter is a range of values
*/
public void setIsRange (boolean IsRange);
/** Get Range.
* The parameter is a range of values
*/
public boolean isRange();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name SeqNo */
public static final String COLUMNNAME_SeqNo = "SeqNo";
/** Set Sequence.
* Method of ordering records;
lowest number comes first
*/
public void setSeqNo (int SeqNo);
/** Get Sequence.
* Method of ordering records;
lowest number comes first
*/
public int getSeqNo();
/** Column name VFormat */
public static final String COLUMNNAME_VFormat = "VFormat";
/** Set Value Format.
* Format of the value;
Can contain fixed format elements, Variables: "_lLoOaAcCa09"
*/
public void setVFormat (String VFormat);
/** Get Value Format.
* Format of the value;
Can contain fixed format elements, Variables: "_lLoOaAcCa09"
*/
public String getVFormat();
/** Column name ValueMax */
public static final String COLUMNNAME_ValueMax = "ValueMax";
/** Set Max. Value.
* Maximum Value for a field
*/
public void setValueMax (String ValueMax);
/** Get Max. Value.
* Maximum Value for a field
*/
public String getValueMax();
/** Column name ValueMin */
public static final String COLUMNNAME_ValueMin = "ValueMin";
/** Set Min. Value.
* Minimum Value for a field
*/
public void setValueMin (String ValueMin);
/** Get Min. Value.
* Minimum Value for a field
*/
public String getValueMin();
}

View File

@ -0,0 +1,142 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Record_Access
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:26.593
*/
public interface I_AD_Record_Access
{
/** TableName=AD_Record_Access */
public static final String Table_Name = "AD_Record_Access";
/** AD_Table_ID=567 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Role_ID */
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
/** Set Role.
* Responsibility Role
*/
public void setAD_Role_ID (int AD_Role_ID);
/** Get Role.
* Responsibility Role
*/
public int getAD_Role_ID();
public I_AD_Role getI_AD_Role() throws Exception;
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name IsDependentEntities */
public static final String COLUMNNAME_IsDependentEntities = "IsDependentEntities";
/** Set Dependent Entities.
* Also check access in dependent entities
*/
public void setIsDependentEntities (boolean IsDependentEntities);
/** Get Dependent Entities.
* Also check access in dependent entities
*/
public boolean isDependentEntities();
/** Column name IsExclude */
public static final String COLUMNNAME_IsExclude = "IsExclude";
/** Set Exclude.
* Exclude access to the data - if not selected Include access to the data
*/
public void setIsExclude (boolean IsExclude);
/** Get Exclude.
* Exclude access to the data - if not selected Include access to the data
*/
public boolean isExclude();
/** Column name IsReadOnly */
public static final String COLUMNNAME_IsReadOnly = "IsReadOnly";
/** Set Read Only.
* Field is read only
*/
public void setIsReadOnly (boolean IsReadOnly);
/** Get Read Only.
* Field is read only
*/
public boolean isReadOnly();
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
}

View File

@ -0,0 +1,168 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Ref_List
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:26.734
*/
public interface I_AD_Ref_List
{
/** TableName=AD_Ref_List */
public static final String Table_Name = "AD_Ref_List";
/** AD_Table_ID=104 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Ref_List_ID */
public static final String COLUMNNAME_AD_Ref_List_ID = "AD_Ref_List_ID";
/** Set Reference List.
* Reference List based on Table
*/
public void setAD_Ref_List_ID (int AD_Ref_List_ID);
/** Get Reference List.
* Reference List based on Table
*/
public int getAD_Ref_List_ID();
/** Column name AD_Reference_ID */
public static final String COLUMNNAME_AD_Reference_ID = "AD_Reference_ID";
/** Set Reference.
* System Reference and Validation
*/
public void setAD_Reference_ID (int AD_Reference_ID);
/** Get Reference.
* System Reference and Validation
*/
public int getAD_Reference_ID();
public I_AD_Reference getI_AD_Reference() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name ValidFrom */
public static final String COLUMNNAME_ValidFrom = "ValidFrom";
/** Set Valid from.
* Valid from including this date (first day)
*/
public void setValidFrom (Timestamp ValidFrom);
/** Get Valid from.
* Valid from including this date (first day)
*/
public Timestamp getValidFrom();
/** Column name ValidTo */
public static final String COLUMNNAME_ValidTo = "ValidTo";
/** Set Valid to.
* Valid to including this date (last day)
*/
public void setValidTo (Timestamp ValidTo);
/** Get Valid to.
* Valid to including this date (last day)
*/
public Timestamp getValidTo();
/** Column name Value */
public static final String COLUMNNAME_Value = "Value";
/** Set Search Key.
* Search key for the record in the format required - must be unique
*/
public void setValue (String Value);
/** Get Search Key.
* Search key for the record in the format required - must be unique
*/
public String getValue();
}

View File

@ -0,0 +1,170 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Ref_Table
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:26.765
*/
public interface I_AD_Ref_Table
{
/** TableName=AD_Ref_Table */
public static final String Table_Name = "AD_Ref_Table";
/** AD_Table_ID=103 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Display */
public static final String COLUMNNAME_AD_Display = "AD_Display";
/** Set Display column.
* Column that will display
*/
public void setAD_Display (int AD_Display);
/** Get Display column.
* Column that will display
*/
public int getAD_Display();
/** Column name AD_Key */
public static final String COLUMNNAME_AD_Key = "AD_Key";
/** Set Key column.
* Unique identifier of a record
*/
public void setAD_Key (int AD_Key);
/** Get Key column.
* Unique identifier of a record
*/
public int getAD_Key();
/** Column name AD_Reference_ID */
public static final String COLUMNNAME_AD_Reference_ID = "AD_Reference_ID";
/** Set Reference.
* System Reference and Validation
*/
public void setAD_Reference_ID (int AD_Reference_ID);
/** Get Reference.
* System Reference and Validation
*/
public int getAD_Reference_ID();
public I_AD_Reference getI_AD_Reference() throws Exception;
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name IsValueDisplayed */
public static final String COLUMNNAME_IsValueDisplayed = "IsValueDisplayed";
/** Set Display Value.
* Displays Value column with the Display column
*/
public void setIsValueDisplayed (boolean IsValueDisplayed);
/** Get Display Value.
* Displays Value column with the Display column
*/
public boolean isValueDisplayed();
/** Column name OrderByClause */
public static final String COLUMNNAME_OrderByClause = "OrderByClause";
/** Set Sql ORDER BY.
* Fully qualified ORDER BY clause
*/
public void setOrderByClause (String OrderByClause);
/** Get Sql ORDER BY.
* Fully qualified ORDER BY clause
*/
public String getOrderByClause();
/** Column name WhereClause */
public static final String COLUMNNAME_WhereClause = "WhereClause";
/** Set Sql WHERE.
* Fully qualified SQL WHERE clause
*/
public void setWhereClause (String WhereClause);
/** Get Sql WHERE.
* Fully qualified SQL WHERE clause
*/
public String getWhereClause();
}

View File

@ -0,0 +1,155 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Reference
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.093
*/
public interface I_AD_Reference
{
/** TableName=AD_Reference */
public static final String Table_Name = "AD_Reference";
/** AD_Table_ID=102 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Reference_ID */
public static final String COLUMNNAME_AD_Reference_ID = "AD_Reference_ID";
/** Set Reference.
* System Reference and Validation
*/
public void setAD_Reference_ID (int AD_Reference_ID);
/** Get Reference.
* System Reference and Validation
*/
public int getAD_Reference_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name VFormat */
public static final String COLUMNNAME_VFormat = "VFormat";
/** Set Value Format.
* Format of the value;
Can contain fixed format elements, Variables: "_lLoOaAcCa09"
*/
public void setVFormat (String VFormat);
/** Get Value Format.
* Format of the value;
Can contain fixed format elements, Variables: "_lLoOaAcCa09"
*/
public String getVFormat();
/** Column name ValidationType */
public static final String COLUMNNAME_ValidationType = "ValidationType";
/** Set Validation type.
* Different method of validating data
*/
public void setValidationType (String ValidationType);
/** Get Validation type.
* Different method of validating data
*/
public String getValidationType();
}

View File

@ -0,0 +1,294 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Registration
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.125
*/
public interface I_AD_Registration
{
/** TableName=AD_Registration */
public static final String Table_Name = "AD_Registration";
/** AD_Table_ID=625 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Registration_ID */
public static final String COLUMNNAME_AD_Registration_ID = "AD_Registration_ID";
/** Set System Registration.
* System Registration
*/
public void setAD_Registration_ID (int AD_Registration_ID);
/** Get System Registration.
* System Registration
*/
public int getAD_Registration_ID();
/** Column name AD_System_ID */
public static final String COLUMNNAME_AD_System_ID = "AD_System_ID";
/** Set System.
* System Definition
*/
public void setAD_System_ID (int AD_System_ID);
/** Get System.
* System Definition
*/
public int getAD_System_ID();
public I_AD_System getI_AD_System() throws Exception;
/** Column name C_Currency_ID */
public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID";
/** Set Currency.
* The Currency for this record
*/
public void setC_Currency_ID (int C_Currency_ID);
/** Get Currency.
* The Currency for this record
*/
public int getC_Currency_ID();
public I_C_Currency getI_C_Currency() throws Exception;
/** Column name C_Location_ID */
public static final String COLUMNNAME_C_Location_ID = "C_Location_ID";
/** Set Address.
* Location or Address
*/
public void setC_Location_ID (int C_Location_ID);
/** Get Address.
* Location or Address
*/
public int getC_Location_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name IndustryInfo */
public static final String COLUMNNAME_IndustryInfo = "IndustryInfo";
/** Set Industry Info.
* Information of the industry (e.g. professional service, distribution of furnitures, ..)
*/
public void setIndustryInfo (String IndustryInfo);
/** Get Industry Info.
* Information of the industry (e.g. professional service, distribution of furnitures, ..)
*/
public String getIndustryInfo();
/** Column name IsAllowPublish */
public static final String COLUMNNAME_IsAllowPublish = "IsAllowPublish";
/** Set Allowed to be Published.
* You allow to publish the information, not just statistical summary info
*/
public void setIsAllowPublish (boolean IsAllowPublish);
/** Get Allowed to be Published.
* You allow to publish the information, not just statistical summary info
*/
public boolean isAllowPublish();
/** Column name IsAllowStatistics */
public static final String COLUMNNAME_IsAllowStatistics = "IsAllowStatistics";
/** Set Maintain Statistics.
* Maintain general statistics
*/
public void setIsAllowStatistics (boolean IsAllowStatistics);
/** Get Maintain Statistics.
* Maintain general statistics
*/
public boolean isAllowStatistics();
/** Column name IsInProduction */
public static final String COLUMNNAME_IsInProduction = "IsInProduction";
/** Set In Production.
* The system is in production
*/
public void setIsInProduction (boolean IsInProduction);
/** Get In Production.
* The system is in production
*/
public boolean isInProduction();
/** Column name IsRegistered */
public static final String COLUMNNAME_IsRegistered = "IsRegistered";
/** Set Registered.
* The application is registered.
*/
public void setIsRegistered (boolean IsRegistered);
/** Get Registered.
* The application is registered.
*/
public boolean isRegistered();
/** Column name NumberEmployees */
public static final String COLUMNNAME_NumberEmployees = "NumberEmployees";
/** Set Employees.
* Number of employees
*/
public void setNumberEmployees (int NumberEmployees);
/** Get Employees.
* Number of employees
*/
public int getNumberEmployees();
/** Column name PlatformInfo */
public static final String COLUMNNAME_PlatformInfo = "PlatformInfo";
/** Set Platform Info.
* Information about Server and Client Platform
*/
public void setPlatformInfo (String PlatformInfo);
/** Get Platform Info.
* Information about Server and Client Platform
*/
public String getPlatformInfo();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
/** Column name Remote_Addr */
public static final String COLUMNNAME_Remote_Addr = "Remote_Addr";
/** Set Remote Addr.
* Remote Address
*/
public void setRemote_Addr (String Remote_Addr);
/** Get Remote Addr.
* Remote Address
*/
public String getRemote_Addr();
/** Column name Remote_Host */
public static final String COLUMNNAME_Remote_Host = "Remote_Host";
/** Set Remote Host.
* Remote host Info
*/
public void setRemote_Host (String Remote_Host);
/** Get Remote Host.
* Remote host Info
*/
public String getRemote_Host();
/** Column name SalesVolume */
public static final String COLUMNNAME_SalesVolume = "SalesVolume";
/** Set Sales Volume in 1.000.
* Total Volume of Sales in Thousands of Currency
*/
public void setSalesVolume (int SalesVolume);
/** Get Sales Volume in 1.000.
* Total Volume of Sales in Thousands of Currency
*/
public int getSalesVolume();
/** Column name StartProductionDate */
public static final String COLUMNNAME_StartProductionDate = "StartProductionDate";
/** Set Start Implementation/Production.
* The day you started the implementation (if implementing) - or production (went life) with Adempiere
*/
public void setStartProductionDate (Timestamp StartProductionDate);
/** Get Start Implementation/Production.
* The day you started the implementation (if implementing) - or production (went life) with Adempiere
*/
public Timestamp getStartProductionDate();
}

View File

@ -0,0 +1,266 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Replication
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.171
*/
public interface I_AD_Replication
{
/** TableName=AD_Replication */
public static final String Table_Name = "AD_Replication";
/** AD_Table_ID=605 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_ReplicationStrategy_ID */
public static final String COLUMNNAME_AD_ReplicationStrategy_ID = "AD_ReplicationStrategy_ID";
/** Set Replication Strategy.
* Data Replication Strategy
*/
public void setAD_ReplicationStrategy_ID (int AD_ReplicationStrategy_ID);
/** Get Replication Strategy.
* Data Replication Strategy
*/
public int getAD_ReplicationStrategy_ID();
public I_AD_ReplicationStrategy getI_AD_ReplicationStrategy() throws Exception;
/** Column name AD_Replication_ID */
public static final String COLUMNNAME_AD_Replication_ID = "AD_Replication_ID";
/** Set Replication.
* Data Replication Target
*/
public void setAD_Replication_ID (int AD_Replication_ID);
/** Get Replication.
* Data Replication Target
*/
public int getAD_Replication_ID();
/** Column name DateLastRun */
public static final String COLUMNNAME_DateLastRun = "DateLastRun";
/** Set Date last run.
* Date the process was last run.
*/
public void setDateLastRun (Timestamp DateLastRun);
/** Get Date last run.
* Date the process was last run.
*/
public Timestamp getDateLastRun();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name HostAddress */
public static final String COLUMNNAME_HostAddress = "HostAddress";
/** Set Host Address.
* Host Address URL or DNS
*/
public void setHostAddress (String HostAddress);
/** Get Host Address.
* Host Address URL or DNS
*/
public String getHostAddress();
/** Column name HostPort */
public static final String COLUMNNAME_HostPort = "HostPort";
/** Set Host port.
* Host Communication Port
*/
public void setHostPort (int HostPort);
/** Get Host port.
* Host Communication Port
*/
public int getHostPort();
/** Column name IDRangeEnd */
public static final String COLUMNNAME_IDRangeEnd = "IDRangeEnd";
/** Set ID Range End.
* End if the ID Range used
*/
public void setIDRangeEnd (BigDecimal IDRangeEnd);
/** Get ID Range End.
* End if the ID Range used
*/
public BigDecimal getIDRangeEnd();
/** Column name IDRangeStart */
public static final String COLUMNNAME_IDRangeStart = "IDRangeStart";
/** Set ID Range Start.
* Start of the ID Range used
*/
public void setIDRangeStart (BigDecimal IDRangeStart);
/** Get ID Range Start.
* Start of the ID Range used
*/
public BigDecimal getIDRangeStart();
/** Column name IsRMIoverHTTP */
public static final String COLUMNNAME_IsRMIoverHTTP = "IsRMIoverHTTP";
/** Set Tunnel via HTTP.
* Connect to Server via HTTP Tunnel
*/
public void setIsRMIoverHTTP (boolean IsRMIoverHTTP);
/** Get Tunnel via HTTP.
* Connect to Server via HTTP Tunnel
*/
public boolean isRMIoverHTTP();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Prefix */
public static final String COLUMNNAME_Prefix = "Prefix";
/** Set Prefix.
* Prefix before the sequence number
*/
public void setPrefix (String Prefix);
/** Get Prefix.
* Prefix before the sequence number
*/
public String getPrefix();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name Remote_Client_ID */
public static final String COLUMNNAME_Remote_Client_ID = "Remote_Client_ID";
/** Set Remote Client.
* Remote Client to be used to replicate / synchronize data with.
*/
public void setRemote_Client_ID (int Remote_Client_ID);
/** Get Remote Client.
* Remote Client to be used to replicate / synchronize data with.
*/
public int getRemote_Client_ID();
/** Column name Remote_Org_ID */
public static final String COLUMNNAME_Remote_Org_ID = "Remote_Org_ID";
/** Set Remote Organization.
* Remote Organization to be used to replicate / synchronize data with.
*/
public void setRemote_Org_ID (int Remote_Org_ID);
/** Get Remote Organization.
* Remote Organization to be used to replicate / synchronize data with.
*/
public int getRemote_Org_ID();
/** Column name Suffix */
public static final String COLUMNNAME_Suffix = "Suffix";
/** Set Suffix.
* Suffix after the number
*/
public void setSuffix (String Suffix);
/** Get Suffix.
* Suffix after the number
*/
public String getSuffix();
}

View File

@ -0,0 +1,127 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_ReplicationStrategy
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.203
*/
public interface I_AD_ReplicationStrategy
{
/** TableName=AD_ReplicationStrategy */
public static final String Table_Name = "AD_ReplicationStrategy";
/** AD_Table_ID=602 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_ReplicationStrategy_ID */
public static final String COLUMNNAME_AD_ReplicationStrategy_ID = "AD_ReplicationStrategy_ID";
/** Set Replication Strategy.
* Data Replication Strategy
*/
public void setAD_ReplicationStrategy_ID (int AD_ReplicationStrategy_ID);
/** Get Replication Strategy.
* Data Replication Strategy
*/
public int getAD_ReplicationStrategy_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,131 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_ReplicationTable
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.25
*/
public interface I_AD_ReplicationTable
{
/** TableName=AD_ReplicationTable */
public static final String Table_Name = "AD_ReplicationTable";
/** AD_Table_ID=601 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_ReplicationStrategy_ID */
public static final String COLUMNNAME_AD_ReplicationStrategy_ID = "AD_ReplicationStrategy_ID";
/** Set Replication Strategy.
* Data Replication Strategy
*/
public void setAD_ReplicationStrategy_ID (int AD_ReplicationStrategy_ID);
/** Get Replication Strategy.
* Data Replication Strategy
*/
public int getAD_ReplicationStrategy_ID();
public I_AD_ReplicationStrategy getI_AD_ReplicationStrategy() throws Exception;
/** Column name AD_ReplicationTable_ID */
public static final String COLUMNNAME_AD_ReplicationTable_ID = "AD_ReplicationTable_ID";
/** Set Replication Table.
* Data Replication Strategy Table Info
*/
public void setAD_ReplicationTable_ID (int AD_ReplicationTable_ID);
/** Get Replication Table.
* Data Replication Strategy Table Info
*/
public int getAD_ReplicationTable_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name ReplicationType */
public static final String COLUMNNAME_ReplicationType = "ReplicationType";
/** Set Replication Type.
* Type of Data Replication
*/
public void setReplicationType (String ReplicationType);
/** Get Replication Type.
* Type of Data Replication
*/
public String getReplicationType();
}

View File

@ -0,0 +1,125 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Replication_Log
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.312
*/
public interface I_AD_Replication_Log
{
/** TableName=AD_Replication_Log */
public static final String Table_Name = "AD_Replication_Log";
/** AD_Table_ID=604 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_ReplicationTable_ID */
public static final String COLUMNNAME_AD_ReplicationTable_ID = "AD_ReplicationTable_ID";
/** Set Replication Table.
* Data Replication Strategy Table Info
*/
public void setAD_ReplicationTable_ID (int AD_ReplicationTable_ID);
/** Get Replication Table.
* Data Replication Strategy Table Info
*/
public int getAD_ReplicationTable_ID();
public I_AD_ReplicationTable getI_AD_ReplicationTable() throws Exception;
/** Column name AD_Replication_Log_ID */
public static final String COLUMNNAME_AD_Replication_Log_ID = "AD_Replication_Log_ID";
/** Set Replication Log.
* Data Replication Log Details
*/
public void setAD_Replication_Log_ID (int AD_Replication_Log_ID);
/** Get Replication Log.
* Data Replication Log Details
*/
public int getAD_Replication_Log_ID();
/** Column name AD_Replication_Run_ID */
public static final String COLUMNNAME_AD_Replication_Run_ID = "AD_Replication_Run_ID";
/** Set Replication Run.
* Data Replication Run
*/
public void setAD_Replication_Run_ID (int AD_Replication_Run_ID);
/** Get Replication Run.
* Data Replication Run
*/
public int getAD_Replication_Run_ID();
public I_AD_Replication_Run getI_AD_Replication_Run() throws Exception;
/** Column name IsReplicated */
public static final String COLUMNNAME_IsReplicated = "IsReplicated";
/** Set Replicated.
* The data is successfully replicated
*/
public void setIsReplicated (boolean IsReplicated);
/** Get Replicated.
* The data is successfully replicated
*/
public boolean isReplicated();
/** Column name P_Msg */
public static final String COLUMNNAME_P_Msg = "P_Msg";
/** Set Process Message */
public void setP_Msg (String P_Msg);
/** Get Process Message */
public String getP_Msg();
}

View File

@ -0,0 +1,127 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Replication_Run
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.328
*/
public interface I_AD_Replication_Run
{
/** TableName=AD_Replication_Run */
public static final String Table_Name = "AD_Replication_Run";
/** AD_Table_ID=603 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Replication_ID */
public static final String COLUMNNAME_AD_Replication_ID = "AD_Replication_ID";
/** Set Replication.
* Data Replication Target
*/
public void setAD_Replication_ID (int AD_Replication_ID);
/** Get Replication.
* Data Replication Target
*/
public int getAD_Replication_ID();
public I_AD_Replication getI_AD_Replication() throws Exception;
/** Column name AD_Replication_Run_ID */
public static final String COLUMNNAME_AD_Replication_Run_ID = "AD_Replication_Run_ID";
/** Set Replication Run.
* Data Replication Run
*/
public void setAD_Replication_Run_ID (int AD_Replication_Run_ID);
/** Get Replication Run.
* Data Replication Run
*/
public int getAD_Replication_Run_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name IsReplicated */
public static final String COLUMNNAME_IsReplicated = "IsReplicated";
/** Set Replicated.
* The data is successfully replicated
*/
public void setIsReplicated (boolean IsReplicated);
/** Get Replicated.
* The data is successfully replicated
*/
public boolean isReplicated();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
}

View File

@ -0,0 +1,155 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_ReportView
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.359
*/
public interface I_AD_ReportView
{
/** TableName=AD_ReportView */
public static final String Table_Name = "AD_ReportView";
/** AD_Table_ID=361 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_ReportView_ID */
public static final String COLUMNNAME_AD_ReportView_ID = "AD_ReportView_ID";
/** Set Report View.
* View used to generate this report
*/
public void setAD_ReportView_ID (int AD_ReportView_ID);
/** Get Report View.
* View used to generate this report
*/
public int getAD_ReportView_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name OrderByClause */
public static final String COLUMNNAME_OrderByClause = "OrderByClause";
/** Set Sql ORDER BY.
* Fully qualified ORDER BY clause
*/
public void setOrderByClause (String OrderByClause);
/** Get Sql ORDER BY.
* Fully qualified ORDER BY clause
*/
public String getOrderByClause();
/** Column name WhereClause */
public static final String COLUMNNAME_WhereClause = "WhereClause";
/** Set Sql WHERE.
* Fully qualified SQL WHERE clause
*/
public void setWhereClause (String WhereClause);
/** Get Sql WHERE.
* Fully qualified SQL WHERE clause
*/
public String getWhereClause();
}

View File

@ -0,0 +1,125 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_ReportView_Col
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.406
*/
public interface I_AD_ReportView_Col
{
/** TableName=AD_ReportView_Col */
public static final String Table_Name = "AD_ReportView_Col";
/** AD_Table_ID=428 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Column_ID */
public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID";
/** Set Column.
* Column in the table
*/
public void setAD_Column_ID (int AD_Column_ID);
/** Get Column.
* Column in the table
*/
public int getAD_Column_ID();
public I_AD_Column getI_AD_Column() throws Exception;
/** Column name AD_ReportView_Col_ID */
public static final String COLUMNNAME_AD_ReportView_Col_ID = "AD_ReportView_Col_ID";
/** Set Report view Column */
public void setAD_ReportView_Col_ID (int AD_ReportView_Col_ID);
/** Get Report view Column */
public int getAD_ReportView_Col_ID();
/** Column name AD_ReportView_ID */
public static final String COLUMNNAME_AD_ReportView_ID = "AD_ReportView_ID";
/** Set Report View.
* View used to generate this report
*/
public void setAD_ReportView_ID (int AD_ReportView_ID);
/** Get Report View.
* View used to generate this report
*/
public int getAD_ReportView_ID();
public I_AD_ReportView getI_AD_ReportView() throws Exception;
/** Column name FunctionColumn */
public static final String COLUMNNAME_FunctionColumn = "FunctionColumn";
/** Set Function Column.
* Overwrite Column with Function
*/
public void setFunctionColumn (String FunctionColumn);
/** Get Function Column.
* Overwrite Column with Function
*/
public String getFunctionColumn();
/** Column name IsGroupFunction */
public static final String COLUMNNAME_IsGroupFunction = "IsGroupFunction";
/** Set SQL Group Function.
* This function will generate a Group By Clause
*/
public void setIsGroupFunction (boolean IsGroupFunction);
/** Get SQL Group Function.
* This function will generate a Group By Clause
*/
public boolean isGroupFunction();
}

View File

@ -0,0 +1,473 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Role
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.421
*/
public interface I_AD_Role
{
/** TableName=AD_Role */
public static final String Table_Name = "AD_Role";
/** AD_Table_ID=156 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Role_ID */
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
/** Set Role.
* Responsibility Role
*/
public void setAD_Role_ID (int AD_Role_ID);
/** Get Role.
* Responsibility Role
*/
public int getAD_Role_ID();
/** Column name AD_Tree_Menu_ID */
public static final String COLUMNNAME_AD_Tree_Menu_ID = "AD_Tree_Menu_ID";
/** Set Menu Tree.
* Tree of the menu
*/
public void setAD_Tree_Menu_ID (int AD_Tree_Menu_ID);
/** Get Menu Tree.
* Tree of the menu
*/
public int getAD_Tree_Menu_ID();
/** Column name AD_Tree_Org_ID */
public static final String COLUMNNAME_AD_Tree_Org_ID = "AD_Tree_Org_ID";
/** Set Organization Tree.
* Tree to determine organizational hierarchy
*/
public void setAD_Tree_Org_ID (int AD_Tree_Org_ID);
/** Get Organization Tree.
* Tree to determine organizational hierarchy
*/
public int getAD_Tree_Org_ID();
/** Column name Allow_Info_Account */
public static final String COLUMNNAME_Allow_Info_Account = "Allow_Info_Account";
/** Set Allow Info Account */
public void setAllow_Info_Account (boolean Allow_Info_Account);
/** Get Allow Info Account */
public boolean isAllow_Info_Account();
/** Column name Allow_Info_Asset */
public static final String COLUMNNAME_Allow_Info_Asset = "Allow_Info_Asset";
/** Set Allow Info Asset */
public void setAllow_Info_Asset (boolean Allow_Info_Asset);
/** Get Allow Info Asset */
public boolean isAllow_Info_Asset();
/** Column name Allow_Info_BPartner */
public static final String COLUMNNAME_Allow_Info_BPartner = "Allow_Info_BPartner";
/** Set Allow Info BPartner */
public void setAllow_Info_BPartner (boolean Allow_Info_BPartner);
/** Get Allow Info BPartner */
public boolean isAllow_Info_BPartner();
/** Column name Allow_Info_CashJournal */
public static final String COLUMNNAME_Allow_Info_CashJournal = "Allow_Info_CashJournal";
/** Set Allow Info CashJournal */
public void setAllow_Info_CashJournal (boolean Allow_Info_CashJournal);
/** Get Allow Info CashJournal */
public boolean isAllow_Info_CashJournal();
/** Column name Allow_Info_InOut */
public static final String COLUMNNAME_Allow_Info_InOut = "Allow_Info_InOut";
/** Set Allow Info InOut */
public void setAllow_Info_InOut (boolean Allow_Info_InOut);
/** Get Allow Info InOut */
public boolean isAllow_Info_InOut();
/** Column name Allow_Info_Invoice */
public static final String COLUMNNAME_Allow_Info_Invoice = "Allow_Info_Invoice";
/** Set Allow Info Invoice */
public void setAllow_Info_Invoice (boolean Allow_Info_Invoice);
/** Get Allow Info Invoice */
public boolean isAllow_Info_Invoice();
/** Column name Allow_Info_Order */
public static final String COLUMNNAME_Allow_Info_Order = "Allow_Info_Order";
/** Set Allow Info Order */
public void setAllow_Info_Order (boolean Allow_Info_Order);
/** Get Allow Info Order */
public boolean isAllow_Info_Order();
/** Column name Allow_Info_Payment */
public static final String COLUMNNAME_Allow_Info_Payment = "Allow_Info_Payment";
/** Set Allow Info Payment */
public void setAllow_Info_Payment (boolean Allow_Info_Payment);
/** Get Allow Info Payment */
public boolean isAllow_Info_Payment();
/** Column name Allow_Info_Product */
public static final String COLUMNNAME_Allow_Info_Product = "Allow_Info_Product";
/** Set Allow Info Product */
public void setAllow_Info_Product (boolean Allow_Info_Product);
/** Get Allow Info Product */
public boolean isAllow_Info_Product();
/** Column name Allow_Info_Resource */
public static final String COLUMNNAME_Allow_Info_Resource = "Allow_Info_Resource";
/** Set Allow Info Resource */
public void setAllow_Info_Resource (boolean Allow_Info_Resource);
/** Get Allow Info Resource */
public boolean isAllow_Info_Resource();
/** Column name Allow_Info_Schedule */
public static final String COLUMNNAME_Allow_Info_Schedule = "Allow_Info_Schedule";
/** Set Allow Info Schedule */
public void setAllow_Info_Schedule (boolean Allow_Info_Schedule);
/** Get Allow Info Schedule */
public boolean isAllow_Info_Schedule();
/** Column name AmtApproval */
public static final String COLUMNNAME_AmtApproval = "AmtApproval";
/** Set Approval Amount.
* The approval amount limit for this role
*/
public void setAmtApproval (BigDecimal AmtApproval);
/** Get Approval Amount.
* The approval amount limit for this role
*/
public BigDecimal getAmtApproval();
/** Column name C_Currency_ID */
public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID";
/** Set Currency.
* The Currency for this record
*/
public void setC_Currency_ID (int C_Currency_ID);
/** Get Currency.
* The Currency for this record
*/
public int getC_Currency_ID();
public I_C_Currency getI_C_Currency() throws Exception;
/** Column name ConfirmQueryRecords */
public static final String COLUMNNAME_ConfirmQueryRecords = "ConfirmQueryRecords";
/** Set Confirm Query Records.
* Require Confirmation if more records will be returned by the query (If not defined 500)
*/
public void setConfirmQueryRecords (int ConfirmQueryRecords);
/** Get Confirm Query Records.
* Require Confirmation if more records will be returned by the query (If not defined 500)
*/
public int getConfirmQueryRecords();
/** Column name ConnectionProfile */
public static final String COLUMNNAME_ConnectionProfile = "ConnectionProfile";
/** Set Connection Profile.
* How a Java Client connects to the server(s)
*/
public void setConnectionProfile (String ConnectionProfile);
/** Get Connection Profile.
* How a Java Client connects to the server(s)
*/
public String getConnectionProfile();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name IsAccessAllOrgs */
public static final String COLUMNNAME_IsAccessAllOrgs = "IsAccessAllOrgs";
/** Set Access all Orgs.
* Access all Organizations (no org access control) of the client
*/
public void setIsAccessAllOrgs (boolean IsAccessAllOrgs);
/** Get Access all Orgs.
* Access all Organizations (no org access control) of the client
*/
public boolean isAccessAllOrgs();
/** Column name IsCanApproveOwnDoc */
public static final String COLUMNNAME_IsCanApproveOwnDoc = "IsCanApproveOwnDoc";
/** Set Approve own Documents.
* Users with this role can approve their own documents
*/
public void setIsCanApproveOwnDoc (boolean IsCanApproveOwnDoc);
/** Get Approve own Documents.
* Users with this role can approve their own documents
*/
public boolean isCanApproveOwnDoc();
/** Column name IsCanExport */
public static final String COLUMNNAME_IsCanExport = "IsCanExport";
/** Set Can Export.
* Users with this role can export data
*/
public void setIsCanExport (boolean IsCanExport);
/** Get Can Export.
* Users with this role can export data
*/
public boolean isCanExport();
/** Column name IsCanReport */
public static final String COLUMNNAME_IsCanReport = "IsCanReport";
/** Set Can Report.
* Users with this role can create reports
*/
public void setIsCanReport (boolean IsCanReport);
/** Get Can Report.
* Users with this role can create reports
*/
public boolean isCanReport();
/** Column name IsChangeLog */
public static final String COLUMNNAME_IsChangeLog = "IsChangeLog";
/** Set Maintain Change Log.
* Maintain a log of changes
*/
public void setIsChangeLog (boolean IsChangeLog);
/** Get Maintain Change Log.
* Maintain a log of changes
*/
public boolean isChangeLog();
/** Column name IsManual */
public static final String COLUMNNAME_IsManual = "IsManual";
/** Set Manual.
* This is a manual process
*/
public void setIsManual (boolean IsManual);
/** Get Manual.
* This is a manual process
*/
public boolean isManual();
/** Column name IsPersonalAccess */
public static final String COLUMNNAME_IsPersonalAccess = "IsPersonalAccess";
/** Set Personal Access.
* Allow access to all personal records
*/
public void setIsPersonalAccess (boolean IsPersonalAccess);
/** Get Personal Access.
* Allow access to all personal records
*/
public boolean isPersonalAccess();
/** Column name IsPersonalLock */
public static final String COLUMNNAME_IsPersonalLock = "IsPersonalLock";
/** Set Personal Lock.
* Allow users with role to lock access to personal records
*/
public void setIsPersonalLock (boolean IsPersonalLock);
/** Get Personal Lock.
* Allow users with role to lock access to personal records
*/
public boolean isPersonalLock();
/** Column name IsShowAcct */
public static final String COLUMNNAME_IsShowAcct = "IsShowAcct";
/** Set Show Accounting.
* Users with this role can see accounting information
*/
public void setIsShowAcct (boolean IsShowAcct);
/** Get Show Accounting.
* Users with this role can see accounting information
*/
public boolean isShowAcct();
/** Column name IsUseUserOrgAccess */
public static final String COLUMNNAME_IsUseUserOrgAccess = "IsUseUserOrgAccess";
/** Set Use User Org Access.
* Use Org Access defined by user instead of Role Org Access
*/
public void setIsUseUserOrgAccess (boolean IsUseUserOrgAccess);
/** Get Use User Org Access.
* Use Org Access defined by user instead of Role Org Access
*/
public boolean isUseUserOrgAccess();
/** Column name MaxQueryRecords */
public static final String COLUMNNAME_MaxQueryRecords = "MaxQueryRecords";
/** Set Max Query Records.
* If defined, you cannot query more records as defined - the query criteria needs to be changed to query less records
*/
public void setMaxQueryRecords (int MaxQueryRecords);
/** Get Max Query Records.
* If defined, you cannot query more records as defined - the query criteria needs to be changed to query less records
*/
public int getMaxQueryRecords();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name OverwritePriceLimit */
public static final String COLUMNNAME_OverwritePriceLimit = "OverwritePriceLimit";
/** Set Overwrite Price Limit.
* Overwrite Price Limit if the Price List enforces the Price Limit
*/
public void setOverwritePriceLimit (boolean OverwritePriceLimit);
/** Get Overwrite Price Limit.
* Overwrite Price Limit if the Price List enforces the Price Limit
*/
public boolean isOverwritePriceLimit();
/** Column name PreferenceType */
public static final String COLUMNNAME_PreferenceType = "PreferenceType";
/** Set Preference Level.
* Determines what preferences the user can set
*/
public void setPreferenceType (String PreferenceType);
/** Get Preference Level.
* Determines what preferences the user can set
*/
public String getPreferenceType();
/** Column name Supervisor_ID */
public static final String COLUMNNAME_Supervisor_ID = "Supervisor_ID";
/** Set Supervisor.
* Supervisor for this user/organization - used for escalation and approval
*/
public void setSupervisor_ID (int Supervisor_ID);
/** Get Supervisor.
* Supervisor for this user/organization - used for escalation and approval
*/
public int getSupervisor_ID();
/** Column name UserLevel */
public static final String COLUMNNAME_UserLevel = "UserLevel";
/** Set User Level.
* System Client Organization
*/
public void setUserLevel (String UserLevel);
/** Get User Level.
* System Client Organization
*/
public String getUserLevel();
}

View File

@ -0,0 +1,88 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Role_OrgAccess
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.484
*/
public interface I_AD_Role_OrgAccess
{
/** TableName=AD_Role_OrgAccess */
public static final String Table_Name = "AD_Role_OrgAccess";
/** AD_Table_ID=422 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Role_ID */
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
/** Set Role.
* Responsibility Role
*/
public void setAD_Role_ID (int AD_Role_ID);
/** Get Role.
* Responsibility Role
*/
public int getAD_Role_ID();
public I_AD_Role getI_AD_Role() throws Exception;
/** Column name IsReadOnly */
public static final String COLUMNNAME_IsReadOnly = "IsReadOnly";
/** Set Read Only.
* Field is read only
*/
public void setIsReadOnly (boolean IsReadOnly);
/** Get Read Only.
* Field is read only
*/
public boolean isReadOnly();
}

View File

@ -0,0 +1,240 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Scheduler
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.515
*/
public interface I_AD_Scheduler
{
/** TableName=AD_Scheduler */
public static final String Table_Name = "AD_Scheduler";
/** AD_Table_ID=688 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Process_ID */
public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID";
/** Set Process.
* Process or Report
*/
public void setAD_Process_ID (int AD_Process_ID);
/** Get Process.
* Process or Report
*/
public int getAD_Process_ID();
public I_AD_Process getI_AD_Process() throws Exception;
/** Column name AD_Scheduler_ID */
public static final String COLUMNNAME_AD_Scheduler_ID = "AD_Scheduler_ID";
/** Set Scheduler.
* Schedule Processes
*/
public void setAD_Scheduler_ID (int AD_Scheduler_ID);
/** Get Scheduler.
* Schedule Processes
*/
public int getAD_Scheduler_ID();
/** Column name DateLastRun */
public static final String COLUMNNAME_DateLastRun = "DateLastRun";
/** Set Date last run.
* Date the process was last run.
*/
public void setDateLastRun (Timestamp DateLastRun);
/** Get Date last run.
* Date the process was last run.
*/
public Timestamp getDateLastRun();
/** Column name DateNextRun */
public static final String COLUMNNAME_DateNextRun = "DateNextRun";
/** Set Date next run.
* Date the process will run next
*/
public void setDateNextRun (Timestamp DateNextRun);
/** Get Date next run.
* Date the process will run next
*/
public Timestamp getDateNextRun();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Frequency */
public static final String COLUMNNAME_Frequency = "Frequency";
/** Set Frequency.
* Frequency of events
*/
public void setFrequency (int Frequency);
/** Get Frequency.
* Frequency of events
*/
public int getFrequency();
/** Column name FrequencyType */
public static final String COLUMNNAME_FrequencyType = "FrequencyType";
/** Set Frequency Type.
* Frequency of event
*/
public void setFrequencyType (String FrequencyType);
/** Get Frequency Type.
* Frequency of event
*/
public String getFrequencyType();
/** Column name KeepLogDays */
public static final String COLUMNNAME_KeepLogDays = "KeepLogDays";
/** Set Days to keep Log.
* Number of days to keep the log entries
*/
public void setKeepLogDays (int KeepLogDays);
/** Get Days to keep Log.
* Number of days to keep the log entries
*/
public int getKeepLogDays();
/** Column name MonthDay */
public static final String COLUMNNAME_MonthDay = "MonthDay";
/** Set Day of the Month.
* Day of the month 1 to 28/29/30/31
*/
public void setMonthDay (int MonthDay);
/** Get Day of the Month.
* Day of the month 1 to 28/29/30/31
*/
public int getMonthDay();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name ScheduleType */
public static final String COLUMNNAME_ScheduleType = "ScheduleType";
/** Set Schedule Type.
* Type of schedule
*/
public void setScheduleType (String ScheduleType);
/** Get Schedule Type.
* Type of schedule
*/
public String getScheduleType();
/** Column name Supervisor_ID */
public static final String COLUMNNAME_Supervisor_ID = "Supervisor_ID";
/** Set Supervisor.
* Supervisor for this user/organization - used for escalation and approval
*/
public void setSupervisor_ID (int Supervisor_ID);
/** Get Supervisor.
* Supervisor for this user/organization - used for escalation and approval
*/
public int getSupervisor_ID();
/** Column name WeekDay */
public static final String COLUMNNAME_WeekDay = "WeekDay";
/** Set Day of the Week.
* Day of the Week
*/
public void setWeekDay (String WeekDay);
/** Get Day of the Week.
* Day of the Week
*/
public String getWeekDay();
}

View File

@ -0,0 +1,166 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_SchedulerLog
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.625
*/
public interface I_AD_SchedulerLog
{
/** TableName=AD_SchedulerLog */
public static final String Table_Name = "AD_SchedulerLog";
/** AD_Table_ID=687 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_SchedulerLog_ID */
public static final String COLUMNNAME_AD_SchedulerLog_ID = "AD_SchedulerLog_ID";
/** Set Scheduler Log.
* Result of the execution of the Scheduler
*/
public void setAD_SchedulerLog_ID (int AD_SchedulerLog_ID);
/** Get Scheduler Log.
* Result of the execution of the Scheduler
*/
public int getAD_SchedulerLog_ID();
/** Column name AD_Scheduler_ID */
public static final String COLUMNNAME_AD_Scheduler_ID = "AD_Scheduler_ID";
/** Set Scheduler.
* Schedule Processes
*/
public void setAD_Scheduler_ID (int AD_Scheduler_ID);
/** Get Scheduler.
* Schedule Processes
*/
public int getAD_Scheduler_ID();
public I_AD_Scheduler getI_AD_Scheduler() throws Exception;
/** Column name BinaryData */
public static final String COLUMNNAME_BinaryData = "BinaryData";
/** Set BinaryData.
* Binary Data
*/
public void setBinaryData (byte[] BinaryData);
/** Get BinaryData.
* Binary Data
*/
public byte[] getBinaryData();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name IsError */
public static final String COLUMNNAME_IsError = "IsError";
/** Set Error.
* An Error occured in the execution
*/
public void setIsError (boolean IsError);
/** Get Error.
* An Error occured in the execution
*/
public boolean isError();
/** Column name Reference */
public static final String COLUMNNAME_Reference = "Reference";
/** Set Reference.
* Reference for this record
*/
public void setReference (String Reference);
/** Get Reference.
* Reference for this record
*/
public String getReference();
/** Column name Summary */
public static final String COLUMNNAME_Summary = "Summary";
/** Set Summary.
* Textual summary of this request
*/
public void setSummary (String Summary);
/** Get Summary.
* Textual summary of this request
*/
public String getSummary();
/** Column name TextMsg */
public static final String COLUMNNAME_TextMsg = "TextMsg";
/** Set Text Message.
* Text Message
*/
public void setTextMsg (String TextMsg);
/** Get Text Message.
* Text Message
*/
public String getTextMsg();
}

View File

@ -0,0 +1,116 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_SchedulerRecipient
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.687
*/
public interface I_AD_SchedulerRecipient
{
/** TableName=AD_SchedulerRecipient */
public static final String Table_Name = "AD_SchedulerRecipient";
/** AD_Table_ID=704 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Role_ID */
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
/** Set Role.
* Responsibility Role
*/
public void setAD_Role_ID (int AD_Role_ID);
/** Get Role.
* Responsibility Role
*/
public int getAD_Role_ID();
public I_AD_Role getI_AD_Role() throws Exception;
/** Column name AD_SchedulerRecipient_ID */
public static final String COLUMNNAME_AD_SchedulerRecipient_ID = "AD_SchedulerRecipient_ID";
/** Set Scheduler Recipient.
* Recipient of the Scheduler Notification
*/
public void setAD_SchedulerRecipient_ID (int AD_SchedulerRecipient_ID);
/** Get Scheduler Recipient.
* Recipient of the Scheduler Notification
*/
public int getAD_SchedulerRecipient_ID();
/** Column name AD_Scheduler_ID */
public static final String COLUMNNAME_AD_Scheduler_ID = "AD_Scheduler_ID";
/** Set Scheduler.
* Schedule Processes
*/
public void setAD_Scheduler_ID (int AD_Scheduler_ID);
/** Get Scheduler.
* Schedule Processes
*/
public int getAD_Scheduler_ID();
public I_AD_Scheduler getI_AD_Scheduler() throws Exception;
/** Column name AD_User_ID */
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
/** Set User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public void setAD_User_ID (int AD_User_ID);
/** Get User/Contact.
* User within the system - Internal or Business Partner Contact
*/
public int getAD_User_ID();
}

View File

@ -0,0 +1,112 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Scheduler_Para
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.703
*/
public interface I_AD_Scheduler_Para
{
/** TableName=AD_Scheduler_Para */
public static final String Table_Name = "AD_Scheduler_Para";
/** AD_Table_ID=698 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Process_Para_ID */
public static final String COLUMNNAME_AD_Process_Para_ID = "AD_Process_Para_ID";
/** Set Process Parameter */
public void setAD_Process_Para_ID (int AD_Process_Para_ID);
/** Get Process Parameter */
public int getAD_Process_Para_ID();
public I_AD_Process_Para getI_AD_Process_Para() throws Exception;
/** Column name AD_Scheduler_ID */
public static final String COLUMNNAME_AD_Scheduler_ID = "AD_Scheduler_ID";
/** Set Scheduler.
* Schedule Processes
*/
public void setAD_Scheduler_ID (int AD_Scheduler_ID);
/** Get Scheduler.
* Schedule Processes
*/
public int getAD_Scheduler_ID();
public I_AD_Scheduler getI_AD_Scheduler() throws Exception;
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name ParameterDefault */
public static final String COLUMNNAME_ParameterDefault = "ParameterDefault";
/** Set Default Parameter.
* Default value of the parameter
*/
public void setParameterDefault (String ParameterDefault);
/** Get Default Parameter.
* Default value of the parameter
*/
public String getParameterDefault();
}

View File

@ -0,0 +1,244 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Sequence
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:27.984
*/
public interface I_AD_Sequence
{
/** TableName=AD_Sequence */
public static final String Table_Name = "AD_Sequence";
/** AD_Table_ID=115 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Sequence_ID */
public static final String COLUMNNAME_AD_Sequence_ID = "AD_Sequence_ID";
/** Set Sequence.
* Document Sequence
*/
public void setAD_Sequence_ID (int AD_Sequence_ID);
/** Get Sequence.
* Document Sequence
*/
public int getAD_Sequence_ID();
/** Column name CurrentNext */
public static final String COLUMNNAME_CurrentNext = "CurrentNext";
/** Set Current Next.
* The next number to be used
*/
public void setCurrentNext (int CurrentNext);
/** Get Current Next.
* The next number to be used
*/
public int getCurrentNext();
/** Column name CurrentNextSys */
public static final String COLUMNNAME_CurrentNextSys = "CurrentNextSys";
/** Set Current Next (System).
* Next sequence for system use
*/
public void setCurrentNextSys (int CurrentNextSys);
/** Get Current Next (System).
* Next sequence for system use
*/
public int getCurrentNextSys();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name IncrementNo */
public static final String COLUMNNAME_IncrementNo = "IncrementNo";
/** Set Increment.
* The number to increment the last document number by
*/
public void setIncrementNo (int IncrementNo);
/** Get Increment.
* The number to increment the last document number by
*/
public int getIncrementNo();
/** Column name IsAudited */
public static final String COLUMNNAME_IsAudited = "IsAudited";
/** Set Activate Audit.
* Activate Audit Trail of what numbers are generated
*/
public void setIsAudited (boolean IsAudited);
/** Get Activate Audit.
* Activate Audit Trail of what numbers are generated
*/
public boolean isAudited();
/** Column name IsAutoSequence */
public static final String COLUMNNAME_IsAutoSequence = "IsAutoSequence";
/** Set Auto numbering.
* Automatically assign the next number
*/
public void setIsAutoSequence (boolean IsAutoSequence);
/** Get Auto numbering.
* Automatically assign the next number
*/
public boolean isAutoSequence();
/** Column name IsTableID */
public static final String COLUMNNAME_IsTableID = "IsTableID";
/** Set Used for Record ID.
* The document number will be used as the record key
*/
public void setIsTableID (boolean IsTableID);
/** Get Used for Record ID.
* The document number will be used as the record key
*/
public boolean isTableID();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Prefix */
public static final String COLUMNNAME_Prefix = "Prefix";
/** Set Prefix.
* Prefix before the sequence number
*/
public void setPrefix (String Prefix);
/** Get Prefix.
* Prefix before the sequence number
*/
public String getPrefix();
/** Column name StartNewYear */
public static final String COLUMNNAME_StartNewYear = "StartNewYear";
/** Set Restart sequence every Year.
* Restart the sequence with Start on every 1/1
*/
public void setStartNewYear (boolean StartNewYear);
/** Get Restart sequence every Year.
* Restart the sequence with Start on every 1/1
*/
public boolean isStartNewYear();
/** Column name StartNo */
public static final String COLUMNNAME_StartNo = "StartNo";
/** Set Start No.
* Starting number/position
*/
public void setStartNo (int StartNo);
/** Get Start No.
* Starting number/position
*/
public int getStartNo();
/** Column name Suffix */
public static final String COLUMNNAME_Suffix = "Suffix";
/** Set Suffix.
* Suffix after the number
*/
public void setSuffix (String Suffix);
/** Get Suffix.
* Suffix after the number
*/
public String getSuffix();
/** Column name VFormat */
public static final String COLUMNNAME_VFormat = "VFormat";
/** Set Value Format.
* Format of the value;
Can contain fixed format elements, Variables: "_lLoOaAcCa09"
*/
public void setVFormat (String VFormat);
/** Get Value Format.
* Format of the value;
Can contain fixed format elements, Variables: "_lLoOaAcCa09"
*/
public String getVFormat();
}

View File

@ -0,0 +1,116 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Sequence_Audit
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:28.046
*/
public interface I_AD_Sequence_Audit
{
/** TableName=AD_Sequence_Audit */
public static final String Table_Name = "AD_Sequence_Audit";
/** AD_Table_ID=121 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Sequence_ID */
public static final String COLUMNNAME_AD_Sequence_ID = "AD_Sequence_ID";
/** Set Sequence.
* Document Sequence
*/
public void setAD_Sequence_ID (int AD_Sequence_ID);
/** Get Sequence.
* Document Sequence
*/
public int getAD_Sequence_ID();
public I_AD_Sequence getI_AD_Sequence() throws Exception;
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name DocumentNo */
public static final String COLUMNNAME_DocumentNo = "DocumentNo";
/** Set Document No.
* Document sequence number of the document
*/
public void setDocumentNo (String DocumentNo);
/** Get Document No.
* Document sequence number of the document
*/
public String getDocumentNo();
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
}

View File

@ -0,0 +1,101 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Sequence_No
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:28.093
*/
public interface I_AD_Sequence_No
{
/** TableName=AD_Sequence_No */
public static final String Table_Name = "AD_Sequence_No";
/** AD_Table_ID=122 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Sequence_ID */
public static final String COLUMNNAME_AD_Sequence_ID = "AD_Sequence_ID";
/** Set Sequence.
* Document Sequence
*/
public void setAD_Sequence_ID (int AD_Sequence_ID);
/** Get Sequence.
* Document Sequence
*/
public int getAD_Sequence_ID();
public I_AD_Sequence getI_AD_Sequence() throws Exception;
/** Column name CalendarYear */
public static final String COLUMNNAME_CalendarYear = "CalendarYear";
/** Set Year.
* Calendar Year
*/
public void setCalendarYear (String CalendarYear);
/** Get Year.
* Calendar Year
*/
public String getCalendarYear();
/** Column name CurrentNext */
public static final String COLUMNNAME_CurrentNext = "CurrentNext";
/** Set Current Next.
* The next number to be used
*/
public void setCurrentNext (int CurrentNext);
/** Get Current Next.
* The next number to be used
*/
public int getCurrentNext();
}

View File

@ -0,0 +1,125 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Session
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:28.171
*/
public interface I_AD_Session
{
/** TableName=AD_Session */
public static final String Table_Name = "AD_Session";
/** AD_Table_ID=566 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_Session_ID */
public static final String COLUMNNAME_AD_Session_ID = "AD_Session_ID";
/** Set Session.
* User Session Online or Web
*/
public void setAD_Session_ID (int AD_Session_ID);
/** Get Session.
* User Session Online or Web
*/
public int getAD_Session_ID();
/** Column name Processed */
public static final String COLUMNNAME_Processed = "Processed";
/** Set Processed.
* The document has been processed
*/
public void setProcessed (boolean Processed);
/** Get Processed.
* The document has been processed
*/
public boolean isProcessed();
/** Column name Remote_Addr */
public static final String COLUMNNAME_Remote_Addr = "Remote_Addr";
/** Set Remote Addr.
* Remote Address
*/
public void setRemote_Addr (String Remote_Addr);
/** Get Remote Addr.
* Remote Address
*/
public String getRemote_Addr();
/** Column name Remote_Host */
public static final String COLUMNNAME_Remote_Host = "Remote_Host";
/** Set Remote Host.
* Remote host Info
*/
public void setRemote_Host (String Remote_Host);
/** Get Remote Host.
* Remote host Info
*/
public String getRemote_Host();
/** Column name WebSession */
public static final String COLUMNNAME_WebSession = "WebSession";
/** Set Web Session.
* Web Session ID
*/
public void setWebSession (String WebSession);
/** Get Web Session.
* Web Session ID
*/
public String getWebSession();
}

View File

@ -0,0 +1,108 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_SysConfig
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:28.203
*/
public interface I_AD_SysConfig
{
/** TableName=AD_SysConfig */
public static final String Table_Name = "AD_SysConfig";
/** AD_Table_ID=50009 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 6 - System - Client
*/
BigDecimal accessLevel = new BigDecimal(6);
/** Load Meta Data */
/** Column name AD_SysConfig_ID */
public static final String COLUMNNAME_AD_SysConfig_ID = "AD_SysConfig_ID";
/** Set System Configurator */
public void setAD_SysConfig_ID (int AD_SysConfig_ID);
/** Get System Configurator */
public int getAD_SysConfig_ID();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name Value */
public static final String COLUMNNAME_Value = "Value";
/** Set Search Key.
* Search key for the record in the format required - must be unique
*/
public void setValue (String Value);
/** Get Search Key.
* Search key for the record in the format required - must be unique
*/
public String getValue();
}

View File

@ -0,0 +1,455 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_System
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:28.218
*/
public interface I_AD_System
{
/** TableName=AD_System */
public static final String Table_Name = "AD_System";
/** AD_Table_ID=531 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_System_ID */
public static final String COLUMNNAME_AD_System_ID = "AD_System_ID";
/** Set System.
* System Definition
*/
public void setAD_System_ID (int AD_System_ID);
/** Get System.
* System Definition
*/
public int getAD_System_ID();
/** Column name CustomPrefix */
public static final String COLUMNNAME_CustomPrefix = "CustomPrefix";
/** Set Custom Prefix.
* Prefix for Custom entities
*/
public void setCustomPrefix (String CustomPrefix);
/** Get Custom Prefix.
* Prefix for Custom entities
*/
public String getCustomPrefix();
/** Column name DBAddress */
public static final String COLUMNNAME_DBAddress = "DBAddress";
/** Set DB Address.
* JDBC URL of the database server
*/
public void setDBAddress (String DBAddress);
/** Get DB Address.
* JDBC URL of the database server
*/
public String getDBAddress();
/** Column name DBInstance */
public static final String COLUMNNAME_DBInstance = "DBInstance";
/** Set Database Name.
* Database Name
*/
public void setDBInstance (String DBInstance);
/** Get Database Name.
* Database Name
*/
public String getDBInstance();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EncryptionKey */
public static final String COLUMNNAME_EncryptionKey = "EncryptionKey";
/** Set Encryption Class.
* Encryption Class used for securing data content
*/
public void setEncryptionKey (String EncryptionKey);
/** Get Encryption Class.
* Encryption Class used for securing data content
*/
public String getEncryptionKey();
/** Column name IDRangeEnd */
public static final String COLUMNNAME_IDRangeEnd = "IDRangeEnd";
/** Set ID Range End.
* End if the ID Range used
*/
public void setIDRangeEnd (BigDecimal IDRangeEnd);
/** Get ID Range End.
* End if the ID Range used
*/
public BigDecimal getIDRangeEnd();
/** Column name IDRangeStart */
public static final String COLUMNNAME_IDRangeStart = "IDRangeStart";
/** Set ID Range Start.
* Start of the ID Range used
*/
public void setIDRangeStart (BigDecimal IDRangeStart);
/** Get ID Range Start.
* Start of the ID Range used
*/
public BigDecimal getIDRangeStart();
/** Column name Info */
public static final String COLUMNNAME_Info = "Info";
/** Set Info.
* Information
*/
public void setInfo (String Info);
/** Get Info.
* Information
*/
public String getInfo();
/** Column name IsAllowStatistics */
public static final String COLUMNNAME_IsAllowStatistics = "IsAllowStatistics";
/** Set Maintain Statistics.
* Maintain general statistics
*/
public void setIsAllowStatistics (boolean IsAllowStatistics);
/** Get Maintain Statistics.
* Maintain general statistics
*/
public boolean isAllowStatistics();
/** Column name IsAutoErrorReport */
public static final String COLUMNNAME_IsAutoErrorReport = "IsAutoErrorReport";
/** Set Error Reporting.
* Automatically report Errors
*/
public void setIsAutoErrorReport (boolean IsAutoErrorReport);
/** Get Error Reporting.
* Automatically report Errors
*/
public boolean isAutoErrorReport();
/** Column name IsJustMigrated */
public static final String COLUMNNAME_IsJustMigrated = "IsJustMigrated";
/** Set Just Migrated.
* Value set by Migration for post-Migation tasks.
*/
public void setIsJustMigrated (boolean IsJustMigrated);
/** Get Just Migrated.
* Value set by Migration for post-Migation tasks.
*/
public boolean isJustMigrated();
/** Column name LDAPDomain */
public static final String COLUMNNAME_LDAPDomain = "LDAPDomain";
/** Set LDAP Domain.
* Directory service domain name - e.g. adempiere.org
*/
public void setLDAPDomain (String LDAPDomain);
/** Get LDAP Domain.
* Directory service domain name - e.g. adempiere.org
*/
public String getLDAPDomain();
/** Column name LDAPHost */
public static final String COLUMNNAME_LDAPHost = "LDAPHost";
/** Set LDAP URL.
* Connection String to LDAP server starting with ldap://
*/
public void setLDAPHost (String LDAPHost);
/** Get LDAP URL.
* Connection String to LDAP server starting with ldap://
*/
public String getLDAPHost();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name NoProcessors */
public static final String COLUMNNAME_NoProcessors = "NoProcessors";
/** Set Processors.
* Number of Database Processors
*/
public void setNoProcessors (int NoProcessors);
/** Get Processors.
* Number of Database Processors
*/
public int getNoProcessors();
/** Column name OldName */
public static final String COLUMNNAME_OldName = "OldName";
/** Set Old Name */
public void setOldName (String OldName);
/** Get Old Name */
public String getOldName();
/** Column name Password */
public static final String COLUMNNAME_Password = "Password";
/** Set Password.
* Password of any length (case sensitive)
*/
public void setPassword (String Password);
/** Get Password.
* Password of any length (case sensitive)
*/
public String getPassword();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name ProfileInfo */
public static final String COLUMNNAME_ProfileInfo = "ProfileInfo";
/** Set Profile.
* Information to help profiling the system for solving support issues
*/
public void setProfileInfo (String ProfileInfo);
/** Get Profile.
* Information to help profiling the system for solving support issues
*/
public String getProfileInfo();
/** Column name Record_ID */
public static final String COLUMNNAME_Record_ID = "Record_ID";
/** Set Record ID.
* Direct internal record ID
*/
public void setRecord_ID (int Record_ID);
/** Get Record ID.
* Direct internal record ID
*/
public int getRecord_ID();
/** Column name ReleaseNo */
public static final String COLUMNNAME_ReleaseNo = "ReleaseNo";
/** Set Release No.
* Internal Release Number
*/
public void setReleaseNo (String ReleaseNo);
/** Get Release No.
* Internal Release Number
*/
public String getReleaseNo();
/** Column name ReplicationType */
public static final String COLUMNNAME_ReplicationType = "ReplicationType";
/** Set Replication Type.
* Type of Data Replication
*/
public void setReplicationType (String ReplicationType);
/** Get Replication Type.
* Type of Data Replication
*/
public String getReplicationType();
/** Column name StatisticsInfo */
public static final String COLUMNNAME_StatisticsInfo = "StatisticsInfo";
/** Set Statistics.
* Information to help profiling the system for solving support issues
*/
public void setStatisticsInfo (String StatisticsInfo);
/** Get Statistics.
* Information to help profiling the system for solving support issues
*/
public String getStatisticsInfo();
/** Column name Summary */
public static final String COLUMNNAME_Summary = "Summary";
/** Set Summary.
* Textual summary of this request
*/
public void setSummary (String Summary);
/** Get Summary.
* Textual summary of this request
*/
public String getSummary();
/** Column name SupportEMail */
public static final String COLUMNNAME_SupportEMail = "SupportEMail";
/** Set Support EMail.
* EMail address to send support information and updates to
*/
public void setSupportEMail (String SupportEMail);
/** Get Support EMail.
* EMail address to send support information and updates to
*/
public String getSupportEMail();
/** Column name SupportExpDate */
public static final String COLUMNNAME_SupportExpDate = "SupportExpDate";
/** Set Support Expires.
* Date when the Adempiere support expires
*/
public void setSupportExpDate (Timestamp SupportExpDate);
/** Get Support Expires.
* Date when the Adempiere support expires
*/
public Timestamp getSupportExpDate();
/** Column name SupportUnits */
public static final String COLUMNNAME_SupportUnits = "SupportUnits";
/** Set Internal Users.
* Number of Internal Users for Adempiere Support
*/
public void setSupportUnits (int SupportUnits);
/** Get Internal Users.
* Number of Internal Users for Adempiere Support
*/
public int getSupportUnits();
/** Column name SystemStatus */
public static final String COLUMNNAME_SystemStatus = "SystemStatus";
/** Set System Status.
* Status of the system - Support priority depends on system status
*/
public void setSystemStatus (String SystemStatus);
/** Get System Status.
* Status of the system - Support priority depends on system status
*/
public String getSystemStatus();
/** Column name UserName */
public static final String COLUMNNAME_UserName = "UserName";
/** Set Registered EMail.
* Email of the responsible for the System
*/
public void setUserName (String UserName);
/** Get Registered EMail.
* Email of the responsible for the System
*/
public String getUserName();
/** Column name Version */
public static final String COLUMNNAME_Version = "Version";
/** Set Version.
* Version of the table definition
*/
public void setVersion (String Version);
/** Get Version.
* Version of the table definition
*/
public String getVersion();
}

View File

@ -0,0 +1,460 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Tab
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:28.281
*/
public interface I_AD_Tab
{
/** TableName=AD_Tab */
public static final String Table_Name = "AD_Tab";
/** AD_Table_ID=106 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_ColumnSortOrder_ID */
public static final String COLUMNNAME_AD_ColumnSortOrder_ID = "AD_ColumnSortOrder_ID";
/** Set Order Column.
* Column determining the order
*/
public void setAD_ColumnSortOrder_ID (int AD_ColumnSortOrder_ID);
/** Get Order Column.
* Column determining the order
*/
public int getAD_ColumnSortOrder_ID();
/** Column name AD_ColumnSortYesNo_ID */
public static final String COLUMNNAME_AD_ColumnSortYesNo_ID = "AD_ColumnSortYesNo_ID";
/** Set Included Column.
* Column determining if a Table Column is included in Ordering
*/
public void setAD_ColumnSortYesNo_ID (int AD_ColumnSortYesNo_ID);
/** Get Included Column.
* Column determining if a Table Column is included in Ordering
*/
public int getAD_ColumnSortYesNo_ID();
/** Column name AD_Column_ID */
public static final String COLUMNNAME_AD_Column_ID = "AD_Column_ID";
/** Set Column.
* Column in the table
*/
public void setAD_Column_ID (int AD_Column_ID);
/** Get Column.
* Column in the table
*/
public int getAD_Column_ID();
public I_AD_Column getI_AD_Column() throws Exception;
/** Column name AD_Image_ID */
public static final String COLUMNNAME_AD_Image_ID = "AD_Image_ID";
/** Set Image.
* Image or Icon
*/
public void setAD_Image_ID (int AD_Image_ID);
/** Get Image.
* Image or Icon
*/
public int getAD_Image_ID();
public I_AD_Image getI_AD_Image() throws Exception;
/** Column name AD_Process_ID */
public static final String COLUMNNAME_AD_Process_ID = "AD_Process_ID";
/** Set Process.
* Process or Report
*/
public void setAD_Process_ID (int AD_Process_ID);
/** Get Process.
* Process or Report
*/
public int getAD_Process_ID();
public I_AD_Process getI_AD_Process() throws Exception;
/** Column name AD_Tab_ID */
public static final String COLUMNNAME_AD_Tab_ID = "AD_Tab_ID";
/** Set Tab.
* Tab within a Window
*/
public void setAD_Tab_ID (int AD_Tab_ID);
/** Get Tab.
* Tab within a Window
*/
public int getAD_Tab_ID();
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
public I_AD_Table getI_AD_Table() throws Exception;
/** Column name AD_Window_ID */
public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID";
/** Set Window.
* Data entry or display window
*/
public void setAD_Window_ID (int AD_Window_ID);
/** Get Window.
* Data entry or display window
*/
public int getAD_Window_ID();
public I_AD_Window getI_AD_Window() throws Exception;
/** Column name CommitWarning */
public static final String COLUMNNAME_CommitWarning = "CommitWarning";
/** Set Commit Warning.
* Warning displayed when saving
*/
public void setCommitWarning (String CommitWarning);
/** Get Commit Warning.
* Warning displayed when saving
*/
public String getCommitWarning();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name DisplayLogic */
public static final String COLUMNNAME_DisplayLogic = "DisplayLogic";
/** Set Display Logic.
* If the Field is displayed, the result determines if the field is actually displayed
*/
public void setDisplayLogic (String DisplayLogic);
/** Get Display Logic.
* If the Field is displayed, the result determines if the field is actually displayed
*/
public String getDisplayLogic();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name HasTree */
public static final String COLUMNNAME_HasTree = "HasTree";
/** Set Has Tree.
* Window has Tree Graph
*/
public void setHasTree (boolean HasTree);
/** Get Has Tree.
* Window has Tree Graph
*/
public boolean isHasTree();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name ImportFields */
public static final String COLUMNNAME_ImportFields = "ImportFields";
/** Set Import Fields.
* Create Fields from Table Columns
*/
public void setImportFields (String ImportFields);
/** Get Import Fields.
* Create Fields from Table Columns
*/
public String getImportFields();
/** Column name Included_Tab_ID */
public static final String COLUMNNAME_Included_Tab_ID = "Included_Tab_ID";
/** Set Included Tab.
* Included Tab in this Tab (Master Dateail)
*/
public void setIncluded_Tab_ID (int Included_Tab_ID);
/** Get Included Tab.
* Included Tab in this Tab (Master Dateail)
*/
public int getIncluded_Tab_ID();
/** Column name IsAdvancedTab */
public static final String COLUMNNAME_IsAdvancedTab = "IsAdvancedTab";
/** Set Advanced Tab.
* This Tab contains advanced Functionality
*/
public void setIsAdvancedTab (boolean IsAdvancedTab);
/** Get Advanced Tab.
* This Tab contains advanced Functionality
*/
public boolean isAdvancedTab();
/** Column name IsInfoTab */
public static final String COLUMNNAME_IsInfoTab = "IsInfoTab";
/** Set Accounting Tab.
* This Tab contains accounting information
*/
public void setIsInfoTab (boolean IsInfoTab);
/** Get Accounting Tab.
* This Tab contains accounting information
*/
public boolean isInfoTab();
/** Column name IsInsertRecord */
public static final String COLUMNNAME_IsInsertRecord = "IsInsertRecord";
/** Set Insert Record.
* The user can insert a new Record
*/
public void setIsInsertRecord (boolean IsInsertRecord);
/** Get Insert Record.
* The user can insert a new Record
*/
public boolean isInsertRecord();
/** Column name IsReadOnly */
public static final String COLUMNNAME_IsReadOnly = "IsReadOnly";
/** Set Read Only.
* Field is read only
*/
public void setIsReadOnly (boolean IsReadOnly);
/** Get Read Only.
* Field is read only
*/
public boolean isReadOnly();
/** Column name IsSingleRow */
public static final String COLUMNNAME_IsSingleRow = "IsSingleRow";
/** Set Single Row Layout.
* Default for toggle between Single- and Multi-Row (Grid) Layout
*/
public void setIsSingleRow (boolean IsSingleRow);
/** Get Single Row Layout.
* Default for toggle between Single- and Multi-Row (Grid) Layout
*/
public boolean isSingleRow();
/** Column name IsSortTab */
public static final String COLUMNNAME_IsSortTab = "IsSortTab";
/** Set Order Tab.
* The Tab determines the Order
*/
public void setIsSortTab (boolean IsSortTab);
/** Get Order Tab.
* The Tab determines the Order
*/
public boolean isSortTab();
/** Column name IsTranslationTab */
public static final String COLUMNNAME_IsTranslationTab = "IsTranslationTab";
/** Set TranslationTab.
* This Tab contains translation information
*/
public void setIsTranslationTab (boolean IsTranslationTab);
/** Get TranslationTab.
* This Tab contains translation information
*/
public boolean isTranslationTab();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name OrderByClause */
public static final String COLUMNNAME_OrderByClause = "OrderByClause";
/** Set Sql ORDER BY.
* Fully qualified ORDER BY clause
*/
public void setOrderByClause (String OrderByClause);
/** Get Sql ORDER BY.
* Fully qualified ORDER BY clause
*/
public String getOrderByClause();
/** Column name Processing */
public static final String COLUMNNAME_Processing = "Processing";
/** Set Process Now */
public void setProcessing (boolean Processing);
/** Get Process Now */
public boolean isProcessing();
/** Column name ReadOnlyLogic */
public static final String COLUMNNAME_ReadOnlyLogic = "ReadOnlyLogic";
/** Set Read Only Logic.
* Logic to determine if field is read only (applies only when field is read-write)
*/
public void setReadOnlyLogic (String ReadOnlyLogic);
/** Get Read Only Logic.
* Logic to determine if field is read only (applies only when field is read-write)
*/
public String getReadOnlyLogic();
/** Column name SeqNo */
public static final String COLUMNNAME_SeqNo = "SeqNo";
/** Set Sequence.
* Method of ordering records;
lowest number comes first
*/
public void setSeqNo (int SeqNo);
/** Get Sequence.
* Method of ordering records;
lowest number comes first
*/
public int getSeqNo();
/** Column name TabLevel */
public static final String COLUMNNAME_TabLevel = "TabLevel";
/** Set Tab Level.
* Hierarchical Tab Level (0 = top)
*/
public void setTabLevel (int TabLevel);
/** Get Tab Level.
* Hierarchical Tab Level (0 = top)
*/
public int getTabLevel();
/** Column name WhereClause */
public static final String COLUMNNAME_WhereClause = "WhereClause";
/** Set Sql WHERE.
* Fully qualified SQL WHERE clause
*/
public void setWhereClause (String WhereClause);
/** Get Sql WHERE.
* Fully qualified SQL WHERE clause
*/
public String getWhereClause();
}

View File

@ -0,0 +1,305 @@
/**********************************************************************
* This file is part of Adempiere ERP Bazaar *
* http://www.adempiere.org *
* *
* Copyright (C) Trifon Trifonov. *
* Copyright (C) Contributors *
* *
* This program is free software;
you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation;
either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY;
without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program;
if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
* MA 02110-1301, USA. *
* *
* Contributors: *
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
* *
* Sponsors: *
* - Company (http://www.site.com) *
**********************************************************************/
package org.compiere.model;
import java.util.*;
import java.sql.Timestamp;
import java.math.*;
import org.compiere.util.*;
/** Generated Interface for AD_Table
* @author Trifon Trifonov (generated)
* @version Release 3.3.0 - 2007-08-24 11:39:28.39
*/
public interface I_AD_Table
{
/** TableName=AD_Table */
public static final String Table_Name = "AD_Table";
/** AD_Table_ID=100 */
public static final int Table_ID = MTable.getTable_ID(Table_Name);
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
/** AccessLevel = 4 - System
*/
BigDecimal accessLevel = new BigDecimal(4);
/** Load Meta Data */
/** Column name AD_Table_ID */
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
/** Set Table.
* Database Table information
*/
public void setAD_Table_ID (int AD_Table_ID);
/** Get Table.
* Database Table information
*/
public int getAD_Table_ID();
/** Column name AD_Val_Rule_ID */
public static final String COLUMNNAME_AD_Val_Rule_ID = "AD_Val_Rule_ID";
/** Set Dynamic Validation.
* Dynamic Validation Rule
*/
public void setAD_Val_Rule_ID (int AD_Val_Rule_ID);
/** Get Dynamic Validation.
* Dynamic Validation Rule
*/
public int getAD_Val_Rule_ID();
public I_AD_Val_Rule getI_AD_Val_Rule() throws Exception;
/** Column name AD_Window_ID */
public static final String COLUMNNAME_AD_Window_ID = "AD_Window_ID";
/** Set Window.
* Data entry or display window
*/
public void setAD_Window_ID (int AD_Window_ID);
/** Get Window.
* Data entry or display window
*/
public int getAD_Window_ID();
public I_AD_Window getI_AD_Window() throws Exception;
/** Column name AccessLevel */
public static final String COLUMNNAME_AccessLevel = "AccessLevel";
/** Set Data Access Level.
* Access Level required
*/
public void setAccessLevel (String AccessLevel);
/** Get Data Access Level.
* Access Level required
*/
public String getAccessLevel();
/** Column name CopyColumnsFromTable */
public static final String COLUMNNAME_CopyColumnsFromTable = "CopyColumnsFromTable";
/** Set Copy Columns From Table */
public void setCopyColumnsFromTable (String CopyColumnsFromTable);
/** Get Copy Columns From Table */
public String getCopyColumnsFromTable();
/** Column name Description */
public static final String COLUMNNAME_Description = "Description";
/** Set Description.
* Optional short description of the record
*/
public void setDescription (String Description);
/** Get Description.
* Optional short description of the record
*/
public String getDescription();
/** Column name EntityType */
public static final String COLUMNNAME_EntityType = "EntityType";
/** Set Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public void setEntityType (String EntityType);
/** Get Entity Type.
* Dictionary Entity Type;
Determines ownership and synchronization
*/
public String getEntityType();
/** Column name Help */
public static final String COLUMNNAME_Help = "Help";
/** Set Comment/Help.
* Comment or Hint
*/
public void setHelp (String Help);
/** Get Comment/Help.
* Comment or Hint
*/
public String getHelp();
/** Column name ImportTable */
public static final String COLUMNNAME_ImportTable = "ImportTable";
/** Set Import Table.
* Import Table Columns from Database
*/
public void setImportTable (String ImportTable);
/** Get Import Table.
* Import Table Columns from Database
*/
public String getImportTable();
/** Column name IsChangeLog */
public static final String COLUMNNAME_IsChangeLog = "IsChangeLog";
/** Set Maintain Change Log.
* Maintain a log of changes
*/
public void setIsChangeLog (boolean IsChangeLog);
/** Get Maintain Change Log.
* Maintain a log of changes
*/
public boolean isChangeLog();
/** Column name IsDeleteable */
public static final String COLUMNNAME_IsDeleteable = "IsDeleteable";
/** Set Records deleteable.
* Indicates if records can be deleted from the database
*/
public void setIsDeleteable (boolean IsDeleteable);
/** Get Records deleteable.
* Indicates if records can be deleted from the database
*/
public boolean isDeleteable();
/** Column name IsHighVolume */
public static final String COLUMNNAME_IsHighVolume = "IsHighVolume";
/** Set High Volume.
* Use Search instead of Pick list
*/
public void setIsHighVolume (boolean IsHighVolume);
/** Get High Volume.
* Use Search instead of Pick list
*/
public boolean isHighVolume();
/** Column name IsSecurityEnabled */
public static final String COLUMNNAME_IsSecurityEnabled = "IsSecurityEnabled";
/** Set Security enabled.
* If security is enabled, user access to data can be restricted via Roles
*/
public void setIsSecurityEnabled (boolean IsSecurityEnabled);
/** Get Security enabled.
* If security is enabled, user access to data can be restricted via Roles
*/
public boolean isSecurityEnabled();
/** Column name IsView */
public static final String COLUMNNAME_IsView = "IsView";
/** Set View.
* This is a view
*/
public void setIsView (boolean IsView);
/** Get View.
* This is a view
*/
public boolean isView();
/** Column name LoadSeq */
public static final String COLUMNNAME_LoadSeq = "LoadSeq";
/** Set Sequence */
public void setLoadSeq (int LoadSeq);
/** Get Sequence */
public int getLoadSeq();
/** Column name Name */
public static final String COLUMNNAME_Name = "Name";
/** Set Name.
* Alphanumeric identifier of the entity
*/
public void setName (String Name);
/** Get Name.
* Alphanumeric identifier of the entity
*/
public String getName();
/** Column name PO_Window_ID */
public static final String COLUMNNAME_PO_Window_ID = "PO_Window_ID";
/** Set PO Window.
* Purchase Order Window
*/
public void setPO_Window_ID (int PO_Window_ID);
/** Get PO Window.
* Purchase Order Window
*/
public int getPO_Window_ID();
/** Column name ReplicationType */
public static final String COLUMNNAME_ReplicationType = "ReplicationType";
/** Set Replication Type.
* Type of Data Replication
*/
public void setReplicationType (String ReplicationType);
/** Get Replication Type.
* Type of Data Replication
*/
public String getReplicationType();
/** Column name TableName */
public static final String COLUMNNAME_TableName = "TableName";
/** Set DB Table Name.
* Name of the table in the database
*/
public void setTableName (String TableName);
/** Get DB Table Name.
* Name of the table in the database
*/
public String getTableName();
}

Some files were not shown because too many files have changed in this diff Show More