BF [ 2740259 ] - Define static final serialVersionUID's for classes
This commit is contained in:
parent
12d56f65ab
commit
52ed420263
|
@ -24,6 +24,8 @@ import org.compiere.interfaces.MD5;
|
|||
*/
|
||||
public class GetMD5FileServlet extends HttpServlet {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
|
|
@ -38,6 +38,8 @@ import org.compiere.model.POInfo;
|
|||
*/
|
||||
public class GenericPO extends PO {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* @param tableName
|
||||
* @param ctx
|
||||
|
@ -137,6 +139,8 @@ class PropertiesWrapper extends Properties {
|
|||
protected Properties source;
|
||||
protected String tableName;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
PropertiesWrapper(Properties source, String tableName) {
|
||||
this.source = source;
|
||||
this.tableName = tableName;
|
||||
|
|
|
@ -2,6 +2,8 @@ package org.adempiere.pipo.exception;
|
|||
|
||||
public class DatabaseAccessException extends RuntimeException {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public DatabaseAccessException() {
|
||||
super();
|
||||
}
|
||||
|
|
|
@ -2,6 +2,8 @@ package org.adempiere.pipo.exception;
|
|||
|
||||
public class POSaveFailedException extends RuntimeException {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public POSaveFailedException() {
|
||||
super();
|
||||
}
|
||||
|
|
|
@ -30,6 +30,8 @@ import org.compiere.swing.CField;
|
|||
*/
|
||||
public class AdempiereComboPopup extends BasicComboPopup
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* @param combo
|
||||
|
|
|
@ -27,6 +27,8 @@ import com.jgoodies.looks.plastic.PlasticTheme;
|
|||
*/
|
||||
public class AdempiereLookAndFeel extends com.jgoodies.looks.plastic.Plastic3DLookAndFeel
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
|
|
|
@ -1311,6 +1311,8 @@ public final class AdempiereTabbedPaneUI extends MetalTabbedPaneUI {
|
|||
|
||||
private static class ScrollTabsForwardAction extends AbstractAction {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
JTabbedPane pane = null;
|
||||
Object src = e.getSource();
|
||||
|
@ -1332,6 +1334,8 @@ public final class AdempiereTabbedPaneUI extends MetalTabbedPaneUI {
|
|||
|
||||
private static class ScrollTabsBackwardAction extends AbstractAction {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
JTabbedPane pane = null;
|
||||
Object src = e.getSource();
|
||||
|
@ -1901,6 +1905,8 @@ public final class AdempiereTabbedPaneUI extends MetalTabbedPaneUI {
|
|||
|
||||
private class ScrollableTabViewport extends JViewport implements UIResource {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public ScrollableTabViewport() {
|
||||
super();
|
||||
setName("TabbedPane.scrollableViewport");
|
||||
|
@ -1916,6 +1922,8 @@ public final class AdempiereTabbedPaneUI extends MetalTabbedPaneUI {
|
|||
|
||||
private class ScrollableTabPanel extends JPanel implements UIResource {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public ScrollableTabPanel() {
|
||||
super(null);
|
||||
setOpaque(tabPane.isOpaque());
|
||||
|
@ -1939,7 +1947,8 @@ public final class AdempiereTabbedPaneUI extends MetalTabbedPaneUI {
|
|||
private final int buttonWidth;
|
||||
private final int direction;
|
||||
private boolean mouseIsOver;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
ArrowButton(int direction, int buttonWidth) {
|
||||
this.direction = direction;
|
||||
this.buttonWidth = buttonWidth;
|
||||
|
|
|
@ -86,6 +86,8 @@ import sun.awt.AppContext;
|
|||
public class PLAFEditor extends JDialog
|
||||
implements ActionListener
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Default Constructor
|
||||
* Don't Show Example
|
||||
|
|
|
@ -375,6 +375,8 @@ public class PLAFEditorPanel extends CPanel {
|
|||
* @author Low Heng Sin
|
||||
*/
|
||||
class GlassPane extends JComponent {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
GlassPane() {
|
||||
addMouseListener(new MouseAdapter() {});
|
||||
addKeyListener(new KeyAdapter() {});
|
||||
|
@ -391,6 +393,8 @@ class PreviewPanel extends CPanel {
|
|||
private LookAndFeel laf = null;
|
||||
private MetalTheme theme = null;
|
||||
private BufferedImage image;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
@Override
|
||||
public void paint(Graphics g) {
|
||||
|
|
|
@ -54,6 +54,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public final class FactLine extends X_Fact_Acct
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -53,6 +53,8 @@ public class CConnection implements Serializable, Cloneable
|
|||
private static CConnection s_cc = null;
|
||||
/** Logger */
|
||||
private static CLogger log = CLogger.getCLogger (CConnection.class);
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** Connection profiles */
|
||||
@Deprecated
|
||||
|
|
|
@ -54,6 +54,8 @@ import org.compiere.util.ValueNamePair;
|
|||
*/
|
||||
public class CConnectionDialog extends CDialog implements ActionListener
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Connection Dialog using current Connection
|
||||
*/
|
||||
|
|
|
@ -45,6 +45,8 @@ import org.compiere.util.DB;
|
|||
public class CConnectionEditor extends JComponent
|
||||
implements CEditor
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Connection Editor creating new Connection
|
||||
*/
|
||||
|
|
|
@ -61,6 +61,8 @@ import org.compiere.swing.CFrame;
|
|||
*/
|
||||
public class ConvertDialog extends CFrame implements ActionListener
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Convert Dialog
|
||||
*/
|
||||
|
|
|
@ -34,7 +34,8 @@ import org.compiere.util.DB;
|
|||
*/
|
||||
public class MImpFormat extends X_AD_ImpFormat
|
||||
{
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -30,7 +30,8 @@ import org.compiere.model.X_AD_ImpFormat_Row;
|
|||
*/
|
||||
public class MImpFormatRow extends X_AD_ImpFormat_Row
|
||||
{
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -30,6 +30,8 @@ import java.util.EventObject;
|
|||
*/
|
||||
public final class DataStatusEvent extends EventObject implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* @param source1 source
|
||||
|
|
|
@ -80,6 +80,8 @@ import org.compiere.util.ValueNamePair;
|
|||
*/
|
||||
public class GridTab implements DataStatusListener, Evaluatee, Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Create Tab (Model) from Value Object.
|
||||
* <p>
|
||||
|
|
|
@ -77,6 +77,8 @@ import org.compiere.util.ValueNamePair;
|
|||
public class GridTable extends AbstractTableModel
|
||||
implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* JDBC Based Buffered Table
|
||||
*
|
||||
|
@ -2918,6 +2920,8 @@ public class GridTable extends AbstractTableModel
|
|||
*/
|
||||
class Loader extends Thread implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Construct Loader
|
||||
*/
|
||||
|
|
|
@ -56,6 +56,8 @@ import org.compiere.util.WebDoc;
|
|||
*/
|
||||
public class GridWindow implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Grid Window
|
||||
* @param ctx context
|
||||
|
|
|
@ -40,6 +40,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class GridWorkbench implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Workbench Model Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -39,6 +39,8 @@ import org.compiere.util.ValueNamePair;
|
|||
public abstract class Lookup extends AbstractListModel
|
||||
implements MutableComboBoxModel, Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Lookup
|
||||
* @param displayType display type
|
||||
|
|
|
@ -27,6 +27,8 @@ import java.io.Serializable;
|
|||
*/
|
||||
public class LookupDisplayColumn implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Lookup Column Value Object
|
||||
* @param columnName column name
|
||||
|
|
|
@ -28,7 +28,8 @@ import java.util.Properties;
|
|||
*/
|
||||
public class MAccessLog extends X_AD_AccessLog
|
||||
{
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -27,6 +27,8 @@ import java.util.Properties;
|
|||
*/
|
||||
public class MAccessProfile extends X_CM_AccessProfile
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Access to Container
|
||||
* @param ctx context
|
||||
|
|
|
@ -36,6 +36,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MAccount extends X_C_ValidCombination
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get existing Account or create it
|
||||
* @param ctx context
|
||||
|
|
|
@ -37,6 +37,8 @@ import org.compiere.util.Msg;
|
|||
public class MAcctProcessor extends X_C_AcctProcessor
|
||||
implements AdempiereProcessor
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Active
|
||||
* @param ctx context
|
||||
|
|
|
@ -29,7 +29,8 @@ import java.util.Properties;
|
|||
public class MAcctProcessorLog extends X_C_AcctProcessorLog
|
||||
implements AdempiereProcessorLog
|
||||
{
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -35,6 +35,8 @@ import org.compiere.util.KeyNamePair;
|
|||
*/
|
||||
public class MAcctSchema extends X_C_AcctSchema
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get AccountSchema of Client
|
||||
* @param ctx context
|
||||
|
|
|
@ -33,6 +33,8 @@ import org.compiere.util.KeyNamePair;
|
|||
*/
|
||||
public class MAcctSchemaDefault extends X_C_AcctSchema_Default
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Accounting Schema Default Info
|
||||
* @param ctx context
|
||||
|
|
|
@ -40,6 +40,8 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public final class MAcctSchemaElement extends X_C_AcctSchema_Element
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Factory: Return ArrayList of Account Schema Elements
|
||||
* @param as Accounting Schema
|
||||
|
|
|
@ -33,6 +33,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MAchievement extends X_PA_Achievement
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get achieved Achievements Of Measure
|
||||
* @param measure Measure
|
||||
|
|
|
@ -30,6 +30,8 @@ import org.compiere.util.ValueNamePair;
|
|||
*/
|
||||
public class MAdvertisement extends X_W_Advertisement
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Default Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -35,6 +35,8 @@ import java.util.TreeSet;
|
|||
*/
|
||||
public class MAlert extends X_AD_Alert
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -37,6 +37,8 @@ import org.compiere.util.DB;
|
|||
public class MAlertProcessor extends X_AD_AlertProcessor
|
||||
implements AdempiereProcessor
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Active
|
||||
* @param ctx context
|
||||
|
|
|
@ -29,6 +29,7 @@ import java.util.Properties;
|
|||
public class MAlertProcessorLog extends X_AD_AlertProcessorLog
|
||||
implements AdempiereProcessorLog
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -28,6 +28,8 @@ import java.util.Properties;
|
|||
*/
|
||||
public class MAlertRecipient extends X_AD_AlertRecipient
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -49,6 +49,8 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public final class MAllocationHdr extends X_C_AllocationHdr implements DocAction
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Allocations of Payment
|
||||
* @param ctx context
|
||||
|
|
|
@ -35,7 +35,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MAllocationLine extends X_C_AllocationLine
|
||||
{
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -62,6 +62,9 @@ import org.xml.sax.SAXException;
|
|||
* @version $Id: MArchive.java,v 1.3 2006/07/30 00:58:36 jjanke Exp $
|
||||
*/
|
||||
public class MArchive extends X_AD_Archive {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Archives
|
||||
*
|
||||
|
|
|
@ -40,6 +40,8 @@ import org.compiere.util.TimeUtil;
|
|||
*/
|
||||
public class MAsset extends X_A_Asset
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Asset From Shipment
|
||||
* @param ctx context
|
||||
|
|
|
@ -28,6 +28,9 @@ import org.compiere.util.DB;
|
|||
*
|
||||
*/
|
||||
public class MAssetAcct extends X_A_Asset_Acct {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Default ConstructorX_A_Asset_Group_Acct
|
||||
*
|
||||
|
|
|
@ -29,6 +29,8 @@ import org.compiere.util.DB;
|
|||
*/
|
||||
public class MAssetAddition extends X_A_Asset_Addition
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Default Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -23,6 +23,8 @@ import java.util.Properties;
|
|||
*/
|
||||
public class MAssetChange extends X_A_Asset_Change
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Default Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -32,6 +32,8 @@ import org.compiere.util.EMail;
|
|||
*/
|
||||
public class MAssetDelivery extends X_A_Asset_Delivery
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -29,6 +29,8 @@ import org.compiere.util.CCache;
|
|||
*/
|
||||
public class MAssetGroup extends X_A_Asset_Group
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get from Cache
|
||||
* @param ctx context
|
||||
|
|
|
@ -23,6 +23,8 @@ import java.util.Properties;
|
|||
*/
|
||||
public class MAssetGroupAcct extends X_A_Asset_Group_Acct
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Default ConstructorX_A_Asset_Group_Acct
|
||||
* @param ctx context
|
||||
|
|
|
@ -17,12 +17,14 @@ import java.sql.ResultSet;
|
|||
import java.util.Properties;
|
||||
|
||||
/**
|
||||
* Asset Trnasfer Model
|
||||
* Asset Transfer Model
|
||||
*
|
||||
*
|
||||
*/
|
||||
public class MAssetTransfer extends X_A_Asset_Transfer
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Default ConstructorX_A_Asset_Group_Acct
|
||||
* @param ctx context
|
||||
|
|
|
@ -26,6 +26,8 @@ import org.compiere.util.DB;
|
|||
** @version $Id: X_A_Asset.java,v 1.88 2004/08/27 21:26:37 jjanke Exp $ */
|
||||
public class MAssetUse extends X_A_Asset_Use
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public MAssetUse (Properties ctx, int A_Asset_Use_ID, String trxName)
|
||||
{
|
||||
super (ctx, A_Asset_Use_ID, trxName);
|
||||
|
|
|
@ -65,6 +65,8 @@ import org.xml.sax.SAXException;
|
|||
*/
|
||||
public class MAttachment extends X_AD_Attachment
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Attachment
|
||||
* @param ctx context
|
||||
|
|
|
@ -29,6 +29,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MAttachmentNote extends X_AD_AttachmentNote
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -36,6 +36,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MAttribute extends X_M_Attribute
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Attributes Of Client
|
||||
* @param ctx Properties
|
||||
|
|
|
@ -28,6 +28,8 @@ import java.util.Properties;
|
|||
*/
|
||||
public class MAttributeInstance extends X_M_AttributeInstance
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Persistency Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -34,6 +34,8 @@ import org.compiere.util.DB;
|
|||
*/
|
||||
public class MAttributeSet extends X_M_AttributeSet
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get MAttributeSet from Cache
|
||||
* @param ctx context
|
||||
|
|
|
@ -38,6 +38,8 @@ import org.compiere.util.TimeUtil;
|
|||
*/
|
||||
public class MAttributeSetInstance extends X_M_AttributeSetInstance
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Attribute Set Instance from ID or Product
|
||||
* @param ctx context
|
||||
|
|
|
@ -30,6 +30,8 @@ import org.compiere.util.DB;
|
|||
*/
|
||||
public class MAttributeUse extends X_M_AttributeUse
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Persistency Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -27,6 +27,8 @@ import java.util.Properties;
|
|||
*/
|
||||
public class MAttributeValue extends X_M_AttributeValue
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -34,6 +34,8 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public class MBOM extends X_M_BOM
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get BOM from Cache
|
||||
* @param ctx context
|
||||
|
|
|
@ -35,6 +35,8 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public class MBOMProduct extends X_M_BOMProduct
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Products of BOM
|
||||
* @param bom bom
|
||||
|
|
|
@ -33,9 +33,10 @@ import org.compiere.util.DB;
|
|||
*/
|
||||
public class MBPBankAccount extends X_C_BP_BankAccount
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Accounst Of BPartner
|
||||
* Get Account Of BPartner
|
||||
* @param ctx context
|
||||
* @param C_BPartner_ID bpartner
|
||||
* @return
|
||||
|
|
|
@ -35,6 +35,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MBPGroup extends X_C_BP_Group
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get MBPGroup from Cache
|
||||
* @param ctx context
|
||||
|
|
|
@ -44,6 +44,8 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public class MBPartner extends X_C_BPartner
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Empty Template Business Partner
|
||||
* @param ctx context
|
||||
|
|
|
@ -33,6 +33,8 @@ import org.compiere.util.DB;
|
|||
*/
|
||||
public class MBPartnerInfo extends X_RV_BPartner
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Find BPartners
|
||||
* @param ctx context
|
||||
|
|
|
@ -29,6 +29,8 @@ import org.compiere.util.CCache;
|
|||
*/
|
||||
public class MBank extends X_C_Bank
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get MBank from Cache
|
||||
* @param ctx context
|
||||
|
|
|
@ -31,6 +31,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MBankAccount extends X_C_BankAccount
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get BankAccount from Cache
|
||||
* @param ctx context
|
||||
|
|
|
@ -44,6 +44,8 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public class MBankStatement extends X_C_BankStatement implements DocAction
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -41,6 +41,8 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public class MBankStatementLine extends X_C_BankStatementLine
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -65,7 +65,7 @@ import org.compiere.impexp.BankStatementLoaderInterface;
|
|||
/** File name from process parameter */
|
||||
private String localFileName = null;
|
||||
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Create a Statement Loader
|
||||
|
|
|
@ -35,6 +35,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MBankStatementMatcher extends X_C_BankStatementMatcher
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Bank Statement Matcher Algorithms
|
||||
* @param ctx context
|
||||
|
|
|
@ -34,6 +34,10 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public class MCStage extends X_CM_CStage
|
||||
{
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
/**
|
||||
* Get Stages
|
||||
* @param project project
|
||||
|
|
|
@ -27,6 +27,8 @@ import java.util.Properties;
|
|||
*/
|
||||
public class MCStageElement extends X_CM_CStage_Element
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/***************************************************************************
|
||||
* Standard Constructor
|
||||
*
|
||||
|
|
|
@ -32,6 +32,8 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public class MCalendar extends X_C_Calendar
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get MCalendar from Cache
|
||||
* @param ctx context
|
||||
|
|
|
@ -28,6 +28,7 @@ import java.util.Properties;
|
|||
*/
|
||||
public class MCampaign extends X_C_Campaign
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
|
|
|
@ -34,6 +34,8 @@ import org.compiere.util.DB;
|
|||
*/
|
||||
public class MCashBook extends X_C_CashBook
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get MCashBook from Cache
|
||||
* @param ctx context
|
||||
|
|
|
@ -26,6 +26,8 @@ import java.util.Properties;
|
|||
*/
|
||||
public class MChangeNotice extends X_M_ChangeNotice
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -36,6 +36,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MCharge extends X_C_Charge
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Charge Account
|
||||
* @param C_Charge_ID charge
|
||||
|
|
|
@ -40,7 +40,9 @@ import org.compiere.util.Util;
|
|||
* @version $Id: MChat.java,v 1.4 2006/07/30 00:51:05 jjanke Exp $
|
||||
*/
|
||||
public class MChat extends X_CM_Chat
|
||||
{
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Chats Of Table - of client in context
|
||||
* @param ctx context
|
||||
|
|
|
@ -26,10 +26,12 @@ import java.util.Properties;
|
|||
* @version $Id: MChatEntry.java,v 1.2 2006/07/30 00:51:03 jjanke Exp $
|
||||
*/
|
||||
public class MChatEntry extends X_CM_ChatEntry
|
||||
{
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx cintext
|
||||
* @param ctx context
|
||||
* @param CM_ChatEntry_ID id
|
||||
* @param trxName transaction
|
||||
*/
|
||||
|
|
|
@ -28,7 +28,9 @@ import org.compiere.util.CCache;
|
|||
* @version $Id: MChatType.java,v 1.2 2006/07/30 00:51:03 jjanke Exp $
|
||||
*/
|
||||
public class MChatType extends X_CM_ChatType
|
||||
{
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get MChatType from Cache
|
||||
* @param ctx context
|
||||
|
|
|
@ -36,6 +36,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MClick extends X_W_Click
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Unprocessed Clicks
|
||||
* @param ctx context
|
||||
|
|
|
@ -37,6 +37,8 @@ import org.compiere.util.ValueNamePair;
|
|||
*/
|
||||
public class MClickCount extends X_W_ClickCount
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -52,7 +52,9 @@ import org.compiere.util.Language;
|
|||
* <li>BF [ 1886480 ] Print Format Item Trl not updated even if not multilingual
|
||||
*/
|
||||
public class MClient extends X_AD_Client
|
||||
{
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get client
|
||||
* @param ctx context
|
||||
|
|
|
@ -35,6 +35,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MClientInfo extends X_AD_ClientInfo
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Client Info
|
||||
* @param ctx context
|
||||
|
|
|
@ -33,6 +33,8 @@ import org.compiere.util.DB;
|
|||
*/
|
||||
public class MClientShare extends X_AD_ClientShare
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Is Table Client Level Only
|
||||
* @param AD_Client_ID client
|
||||
|
|
|
@ -36,6 +36,8 @@ import org.compiere.util.DB;
|
|||
*/
|
||||
public class MColor extends X_AD_Color
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Color Model
|
||||
* @param ctx context
|
||||
|
|
|
@ -33,6 +33,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MColorSchema extends X_PA_ColorSchema
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Color
|
||||
* @param ctx context
|
||||
|
|
|
@ -37,6 +37,8 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public class MColumn extends X_AD_Column
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get MColumn from Cache
|
||||
* @param ctx context
|
||||
|
|
|
@ -32,6 +32,8 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public class MColumnAccess extends X_AD_Column_Access
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Persistency Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -33,6 +33,8 @@ import java.util.logging.Level;
|
|||
*/
|
||||
public class MCommission extends X_C_Commission
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -34,6 +34,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MCommissionAmt extends X_C_CommissionAmt
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -31,6 +31,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MCommissionDetail extends X_C_CommissionDetail
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Persistency Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -30,6 +30,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MCommissionLine extends X_C_CommissionLine
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -34,6 +34,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MCommissionRun extends X_C_CommissionRun
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -38,6 +38,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MContactInterest extends X_R_ContactInterest
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Contact Interest
|
||||
* @param ctx context
|
||||
|
|
|
@ -42,6 +42,7 @@ public class MConversionRate extends X_C_Conversion_Rate
|
|||
/** Logger */
|
||||
private static CLogger s_log = CLogger.getCLogger (MConversionRate.class);
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Convert an amount to base Currency
|
||||
|
|
|
@ -30,6 +30,8 @@ import org.compiere.util.DB;
|
|||
*/
|
||||
public class MConversionType extends X_C_ConversionType
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Default Conversion Rate for Client/Org
|
||||
* @param AD_Client_ID client
|
||||
|
|
|
@ -37,6 +37,8 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public class MCostElement extends X_M_CostElement
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get Material Cost Element or create it
|
||||
* @param po parent
|
||||
|
|
|
@ -35,6 +35,8 @@ import org.compiere.util.Env;
|
|||
*/
|
||||
public class MCostQueue extends X_M_CostQueue
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Get/Create Cost Queue Record.
|
||||
* CostingLevel is not validated
|
||||
|
|
|
@ -28,6 +28,8 @@ import org.compiere.util.Msg;
|
|||
*/
|
||||
public class MCostType extends X_M_CostType
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
|
@ -27,6 +27,8 @@ import java.util.Properties;
|
|||
*/
|
||||
public class MCounterCount extends X_W_CounterCount
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Standard Constructor
|
||||
* @param ctx context
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue