BF [ 2740259 ] - Define static final serialVersionUID's for classes

This commit is contained in:
mjudd 2009-04-14 05:33:44 +00:00
parent e2474a2fb1
commit 7d71f46528
791 changed files with 4276 additions and 54 deletions

View File

@ -24,6 +24,10 @@ import org.compiere.interfaces.MD5;
*/ */
public class GetMD5FileServlet extends HttpServlet { public class GetMD5FileServlet extends HttpServlet {
/**
*
*/
private static final long serialVersionUID = -2625917637549702574L;
/** /**
* *
*/ */

View File

@ -38,6 +38,11 @@ import org.compiere.model.POInfo;
*/ */
public class GenericPO extends PO { public class GenericPO extends PO {
/**
*
*/
private static final long serialVersionUID = -6558017105997010172L;
/** /**
* @param tableName * @param tableName
* @param ctx * @param ctx
@ -134,6 +139,10 @@ public class GenericPO extends PO {
* *
*/ */
class PropertiesWrapper extends Properties { class PropertiesWrapper extends Properties {
/**
*
*/
private static final long serialVersionUID = 8887531951501323594L;
protected Properties source; protected Properties source;
protected String tableName; protected String tableName;

View File

@ -2,6 +2,11 @@ package org.adempiere.pipo.exception;
public class DatabaseAccessException extends RuntimeException { public class DatabaseAccessException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = -8834711100842625706L;
public DatabaseAccessException() { public DatabaseAccessException() {
super(); super();
} }

View File

@ -2,6 +2,11 @@ package org.adempiere.pipo.exception;
public class POSaveFailedException extends RuntimeException { public class POSaveFailedException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 8325708851137221459L;
public POSaveFailedException() { public POSaveFailedException() {
super(); super();
} }

View File

@ -30,6 +30,12 @@ import org.compiere.swing.CField;
*/ */
public class AdempiereComboPopup extends BasicComboPopup public class AdempiereComboPopup extends BasicComboPopup
{ {
/**
*
*/
private static final long serialVersionUID = 274215317393292721L;
/** /**
* Constructor * Constructor
* @param combo * @param combo

View File

@ -27,6 +27,11 @@ import com.jgoodies.looks.plastic.PlasticTheme;
*/ */
public class AdempiereLookAndFeel extends com.jgoodies.looks.plastic.Plastic3DLookAndFeel public class AdempiereLookAndFeel extends com.jgoodies.looks.plastic.Plastic3DLookAndFeel
{ {
/**
*
*/
private static final long serialVersionUID = 5681571518701552477L;
/** /**
* Constructor * Constructor
*/ */

View File

@ -1311,6 +1311,11 @@ public final class AdempiereTabbedPaneUI extends MetalTabbedPaneUI {
private static class ScrollTabsForwardAction extends AbstractAction { private static class ScrollTabsForwardAction extends AbstractAction {
/**
*
*/
private static final long serialVersionUID = -270810699887568982L;
public void actionPerformed(ActionEvent e) { public void actionPerformed(ActionEvent e) {
JTabbedPane pane = null; JTabbedPane pane = null;
Object src = e.getSource(); Object src = e.getSource();
@ -1332,6 +1337,11 @@ public final class AdempiereTabbedPaneUI extends MetalTabbedPaneUI {
private static class ScrollTabsBackwardAction extends AbstractAction { private static class ScrollTabsBackwardAction extends AbstractAction {
/**
*
*/
private static final long serialVersionUID = -3249390793846061809L;
public void actionPerformed(ActionEvent e) { public void actionPerformed(ActionEvent e) {
JTabbedPane pane = null; JTabbedPane pane = null;
Object src = e.getSource(); Object src = e.getSource();
@ -1901,6 +1911,11 @@ public final class AdempiereTabbedPaneUI extends MetalTabbedPaneUI {
private class ScrollableTabViewport extends JViewport implements UIResource { private class ScrollableTabViewport extends JViewport implements UIResource {
/**
*
*/
private static final long serialVersionUID = 327251688467352279L;
public ScrollableTabViewport() { public ScrollableTabViewport() {
super(); super();
setName("TabbedPane.scrollableViewport"); setName("TabbedPane.scrollableViewport");
@ -1916,6 +1931,11 @@ public final class AdempiereTabbedPaneUI extends MetalTabbedPaneUI {
private class ScrollableTabPanel extends JPanel implements UIResource { private class ScrollableTabPanel extends JPanel implements UIResource {
/**
*
*/
private static final long serialVersionUID = -7751954262914422261L;
public ScrollableTabPanel() { public ScrollableTabPanel() {
super(null); super(null);
setOpaque(tabPane.isOpaque()); setOpaque(tabPane.isOpaque());
@ -1936,6 +1956,10 @@ public final class AdempiereTabbedPaneUI extends MetalTabbedPaneUI {
private static class ArrowButton extends JButton implements UIResource { private static class ArrowButton extends JButton implements UIResource {
/**
*
*/
private static final long serialVersionUID = 2076478876425671827L;
private final int buttonWidth; private final int buttonWidth;
private final int direction; private final int direction;
private boolean mouseIsOver; private boolean mouseIsOver;

View File

@ -86,6 +86,12 @@ import sun.awt.AppContext;
public class PLAFEditor extends JDialog public class PLAFEditor extends JDialog
implements ActionListener implements ActionListener
{ {
/**
*
*/
private static final long serialVersionUID = -6010229234801706748L;
/** /**
* Default Constructor * Default Constructor
* Don't Show Example * Don't Show Example

View File

@ -375,6 +375,11 @@ public class PLAFEditorPanel extends CPanel {
* @author Low Heng Sin * @author Low Heng Sin
*/ */
class GlassPane extends JComponent { class GlassPane extends JComponent {
/**
*
*/
private static final long serialVersionUID = -4416920279272513L;
GlassPane() { GlassPane() {
addMouseListener(new MouseAdapter() {}); addMouseListener(new MouseAdapter() {});
addKeyListener(new KeyAdapter() {}); addKeyListener(new KeyAdapter() {});
@ -387,6 +392,10 @@ class GlassPane extends JComponent {
* @author Low Heng Sin * @author Low Heng Sin
*/ */
class PreviewPanel extends CPanel { class PreviewPanel extends CPanel {
/**
*
*/
private static final long serialVersionUID = 6028614986952449622L;
private boolean capture = true; private boolean capture = true;
private LookAndFeel laf = null; private LookAndFeel laf = null;
private MetalTheme theme = null; private MetalTheme theme = null;

View File

@ -54,6 +54,11 @@ import org.compiere.util.Env;
*/ */
public final class FactLine extends X_Fact_Acct public final class FactLine extends X_Fact_Acct
{ {
/**
*
*/
private static final long serialVersionUID = 6141312459030795891L;
/** /**
* Constructor * Constructor
* @param ctx context * @param ctx context

View File

@ -49,6 +49,10 @@ import org.compiere.util.ValueNamePair;
*/ */
public class CConnection implements Serializable, Cloneable public class CConnection implements Serializable, Cloneable
{ {
/**
*
*/
private static final long serialVersionUID = -3653060934380586381L;
/** Connection */ /** Connection */
private static CConnection s_cc = null; private static CConnection s_cc = null;
/** Logger */ /** Logger */

View File

@ -54,6 +54,11 @@ import org.compiere.util.ValueNamePair;
*/ */
public class CConnectionDialog extends CDialog implements ActionListener public class CConnectionDialog extends CDialog implements ActionListener
{ {
/**
*
*/
private static final long serialVersionUID = 9132784527503780794L;
/** /**
* Connection Dialog using current Connection * Connection Dialog using current Connection
*/ */

View File

@ -45,6 +45,11 @@ import org.compiere.util.DB;
public class CConnectionEditor extends JComponent public class CConnectionEditor extends JComponent
implements CEditor implements CEditor
{ {
/**
*
*/
private static final long serialVersionUID = 259945316129032408L;
/** /**
* Connection Editor creating new Connection * Connection Editor creating new Connection
*/ */

View File

@ -61,6 +61,11 @@ import org.compiere.swing.CFrame;
*/ */
public class ConvertDialog extends CFrame implements ActionListener public class ConvertDialog extends CFrame implements ActionListener
{ {
/**
*
*/
private static final long serialVersionUID = 4748833703849693696L;
/** /**
* Convert Dialog * Convert Dialog
*/ */

View File

@ -35,6 +35,11 @@ import org.compiere.util.DB;
public class MImpFormat extends X_AD_ImpFormat public class MImpFormat extends X_AD_ImpFormat
{ {
/**
*
*/
private static final long serialVersionUID = -3768339618622673968L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -31,6 +31,11 @@ import org.compiere.model.X_AD_ImpFormat_Row;
public class MImpFormatRow extends X_AD_ImpFormat_Row public class MImpFormatRow extends X_AD_ImpFormat_Row
{ {
/**
*
*/
private static final long serialVersionUID = 6251836513717968622L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -30,6 +30,11 @@ import java.util.EventObject;
*/ */
public final class DataStatusEvent extends EventObject implements Serializable public final class DataStatusEvent extends EventObject implements Serializable
{ {
/**
*
*/
private static final long serialVersionUID = -8126804905593738238L;
/** /**
* Constructor * Constructor
* @param source1 source * @param source1 source

View File

@ -80,6 +80,11 @@ import org.compiere.util.ValueNamePair;
*/ */
public class GridTab implements DataStatusListener, Evaluatee, Serializable public class GridTab implements DataStatusListener, Evaluatee, Serializable
{ {
/**
*
*/
private static final long serialVersionUID = 1010889420871357683L;
/** /**
* Create Tab (Model) from Value Object. * Create Tab (Model) from Value Object.
* <p> * <p>

View File

@ -77,6 +77,11 @@ import org.compiere.util.ValueNamePair;
public class GridTable extends AbstractTableModel public class GridTable extends AbstractTableModel
implements Serializable implements Serializable
{ {
/**
*
*/
private static final long serialVersionUID = -4468782288142337285L;
/** /**
* JDBC Based Buffered Table * JDBC Based Buffered Table
* *
@ -2918,6 +2923,11 @@ public class GridTable extends AbstractTableModel
*/ */
class Loader extends Thread implements Serializable class Loader extends Thread implements Serializable
{ {
/**
*
*/
private static final long serialVersionUID = -8735217685095696892L;
/** /**
* Construct Loader * Construct Loader
*/ */

View File

@ -56,6 +56,11 @@ import org.compiere.util.WebDoc;
*/ */
public class GridWindow implements Serializable public class GridWindow implements Serializable
{ {
/**
*
*/
private static final long serialVersionUID = 3342733142743698614L;
/** /**
* Get Grid Window * Get Grid Window
* @param ctx context * @param ctx context

View File

@ -40,6 +40,11 @@ import org.compiere.util.Env;
*/ */
public class GridWorkbench implements Serializable public class GridWorkbench implements Serializable
{ {
/**
*
*/
private static final long serialVersionUID = 3947016961582548630L;
/** /**
* Workbench Model Constructor * Workbench Model Constructor
* @param ctx context * @param ctx context

View File

@ -39,6 +39,11 @@ import org.compiere.util.ValueNamePair;
public abstract class Lookup extends AbstractListModel public abstract class Lookup extends AbstractListModel
implements MutableComboBoxModel, Serializable implements MutableComboBoxModel, Serializable
{ {
/**
*
*/
private static final long serialVersionUID = -2811763289904455349L;
/** /**
* Lookup * Lookup
* @param displayType display type * @param displayType display type

View File

@ -27,6 +27,11 @@ import java.io.Serializable;
*/ */
public class LookupDisplayColumn implements Serializable public class LookupDisplayColumn implements Serializable
{ {
/**
*
*/
private static final long serialVersionUID = 5876427657897043394L;
/** /**
* Lookup Column Value Object * Lookup Column Value Object
* @param columnName column name * @param columnName column name

View File

@ -29,6 +29,11 @@ import java.util.Properties;
public class MAccessLog extends X_AD_AccessLog public class MAccessLog extends X_AD_AccessLog
{ {
/**
*
*/
private static final long serialVersionUID = -7169782622717772940L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -27,6 +27,11 @@ import java.util.Properties;
*/ */
public class MAccessProfile extends X_CM_AccessProfile public class MAccessProfile extends X_CM_AccessProfile
{ {
/**
*
*/
private static final long serialVersionUID = -7399451749843773853L;
/** /**
* Access to Container * Access to Container
* @param ctx context * @param ctx context

View File

@ -36,6 +36,13 @@ import org.compiere.util.Env;
*/ */
public class MAccount extends X_C_ValidCombination public class MAccount extends X_C_ValidCombination
{ {
/**
*
*/
private static final long serialVersionUID = -8887316767838767993L;
/** /**
* Get existing Account or create it * Get existing Account or create it
* @param ctx context * @param ctx context

View File

@ -37,6 +37,11 @@ import org.compiere.util.Msg;
public class MAcctProcessor extends X_C_AcctProcessor public class MAcctProcessor extends X_C_AcctProcessor
implements AdempiereProcessor implements AdempiereProcessor
{ {
/**
*
*/
private static final long serialVersionUID = 6558688522646469260L;
/** /**
* Get Active * Get Active
* @param ctx context * @param ctx context

View File

@ -30,6 +30,11 @@ public class MAcctProcessorLog extends X_C_AcctProcessorLog
implements AdempiereProcessorLog implements AdempiereProcessorLog
{ {
/**
*
*/
private static final long serialVersionUID = 3668544104375224987L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -35,6 +35,12 @@ import org.compiere.util.KeyNamePair;
*/ */
public class MAcctSchema extends X_C_AcctSchema public class MAcctSchema extends X_C_AcctSchema
{ {
/**
*
*/
private static final long serialVersionUID = -7228171623905614596L;
/** /**
* Get AccountSchema of Client * Get AccountSchema of Client
* @param ctx context * @param ctx context

View File

@ -33,6 +33,11 @@ import org.compiere.util.KeyNamePair;
*/ */
public class MAcctSchemaDefault extends X_C_AcctSchema_Default public class MAcctSchemaDefault extends X_C_AcctSchema_Default
{ {
/**
*
*/
private static final long serialVersionUID = 199959007595802866L;
/** /**
* Get Accounting Schema Default Info * Get Accounting Schema Default Info
* @param ctx context * @param ctx context

View File

@ -40,6 +40,12 @@ import org.compiere.util.Msg;
*/ */
public final class MAcctSchemaElement extends X_C_AcctSchema_Element public final class MAcctSchemaElement extends X_C_AcctSchema_Element
{ {
/**
*
*/
private static final long serialVersionUID = 4215184252533527719L;
/** /**
* Factory: Return ArrayList of Account Schema Elements * Factory: Return ArrayList of Account Schema Elements
* @param as Accounting Schema * @param as Accounting Schema

View File

@ -33,6 +33,11 @@ import org.compiere.util.Env;
*/ */
public class MAchievement extends X_PA_Achievement public class MAchievement extends X_PA_Achievement
{ {
/**
*
*/
private static final long serialVersionUID = -1438593600498523664L;
/** /**
* Get achieved Achievements Of Measure * Get achieved Achievements Of Measure
* @param measure Measure * @param measure Measure

View File

@ -30,6 +30,12 @@ import org.compiere.util.ValueNamePair;
*/ */
public class MAdvertisement extends X_W_Advertisement public class MAdvertisement extends X_W_Advertisement
{ {
/**
*
*/
private static final long serialVersionUID = 8129122675267734690L;
/** /**
* Default Constructor * Default Constructor
* @param ctx context * @param ctx context

View File

@ -35,6 +35,11 @@ import java.util.TreeSet;
*/ */
public class MAlert extends X_AD_Alert public class MAlert extends X_AD_Alert
{ {
/**
*
*/
private static final long serialVersionUID = -5684705878618526801L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -37,6 +37,12 @@ import org.compiere.util.DB;
public class MAlertProcessor extends X_AD_AlertProcessor public class MAlertProcessor extends X_AD_AlertProcessor
implements AdempiereProcessor implements AdempiereProcessor
{ {
/**
*
*/
private static final long serialVersionUID = 9060358751064718910L;
/** /**
* Get Active * Get Active
* @param ctx context * @param ctx context

View File

@ -29,6 +29,11 @@ import java.util.Properties;
public class MAlertProcessorLog extends X_AD_AlertProcessorLog public class MAlertProcessorLog extends X_AD_AlertProcessorLog
implements AdempiereProcessorLog implements AdempiereProcessorLog
{ {
/**
*
*/
private static final long serialVersionUID = -6720267177398838915L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -28,6 +28,11 @@ import java.util.Properties;
*/ */
public class MAlertRecipient extends X_AD_AlertRecipient public class MAlertRecipient extends X_AD_AlertRecipient
{ {
/**
*
*/
private static final long serialVersionUID = -7388195934030609324L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -49,6 +49,12 @@ import org.compiere.util.Msg;
*/ */
public final class MAllocationHdr extends X_C_AllocationHdr implements DocAction public final class MAllocationHdr extends X_C_AllocationHdr implements DocAction
{ {
/**
*
*/
private static final long serialVersionUID = 4780252534394959680L;
/** /**
* Get Allocations of Payment * Get Allocations of Payment
* @param ctx context * @param ctx context

View File

@ -36,6 +36,11 @@ import org.compiere.util.Env;
public class MAllocationLine extends X_C_AllocationLine public class MAllocationLine extends X_C_AllocationLine
{ {
/**
*
*/
private static final long serialVersionUID = 5532305715886380749L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -62,6 +62,11 @@ import org.xml.sax.SAXException;
* @version $Id: MArchive.java,v 1.3 2006/07/30 00:58:36 jjanke Exp $ * @version $Id: MArchive.java,v 1.3 2006/07/30 00:58:36 jjanke Exp $
*/ */
public class MArchive extends X_AD_Archive { public class MArchive extends X_AD_Archive {
/**
*
*/
private static final long serialVersionUID = -3476918478008050158L;
/** /**
* Get Archives * Get Archives
* *

View File

@ -40,6 +40,12 @@ import org.compiere.util.TimeUtil;
*/ */
public class MAsset extends X_A_Asset public class MAsset extends X_A_Asset
{ {
/**
*
*/
private static final long serialVersionUID = -7537696364072606170L;
/** /**
* Get Asset From Shipment * Get Asset From Shipment
* @param ctx context * @param ctx context

View File

@ -28,6 +28,11 @@ import org.compiere.util.DB;
* *
*/ */
public class MAssetAcct extends X_A_Asset_Acct { public class MAssetAcct extends X_A_Asset_Acct {
/**
*
*/
private static final long serialVersionUID = 4779953750434068382L;
/** /**
* Default ConstructorX_A_Asset_Group_Acct * Default ConstructorX_A_Asset_Group_Acct
* *

View File

@ -29,6 +29,11 @@ import org.compiere.util.DB;
*/ */
public class MAssetAddition extends X_A_Asset_Addition public class MAssetAddition extends X_A_Asset_Addition
{ {
/**
*
*/
private static final long serialVersionUID = 511552459407382309L;
/** /**
* Default Constructor * Default Constructor
* @param ctx context * @param ctx context

View File

@ -23,6 +23,11 @@ import java.util.Properties;
*/ */
public class MAssetChange extends X_A_Asset_Change public class MAssetChange extends X_A_Asset_Change
{ {
/**
*
*/
private static final long serialVersionUID = 5906751299228645904L;
/** /**
* Default Constructor * Default Constructor
* @param ctx context * @param ctx context

View File

@ -32,6 +32,11 @@ import org.compiere.util.EMail;
*/ */
public class MAssetDelivery extends X_A_Asset_Delivery public class MAssetDelivery extends X_A_Asset_Delivery
{ {
/**
*
*/
private static final long serialVersionUID = -1731010685101745675L;
/** /**
* Constructor * Constructor
* @param ctx context * @param ctx context

View File

@ -29,6 +29,11 @@ import org.compiere.util.CCache;
*/ */
public class MAssetGroup extends X_A_Asset_Group public class MAssetGroup extends X_A_Asset_Group
{ {
/**
*
*/
private static final long serialVersionUID = 1364948077775028283L;
/** /**
* Get from Cache * Get from Cache
* @param ctx context * @param ctx context

View File

@ -23,6 +23,10 @@ import java.util.Properties;
*/ */
public class MAssetGroupAcct extends X_A_Asset_Group_Acct public class MAssetGroupAcct extends X_A_Asset_Group_Acct
{ {
/**
*
*/
private static final long serialVersionUID = 1097065220838511473L;
/** /**
* Default ConstructorX_A_Asset_Group_Acct * Default ConstructorX_A_Asset_Group_Acct
* @param ctx context * @param ctx context

View File

@ -23,6 +23,10 @@ import java.util.Properties;
*/ */
public class MAssetTransfer extends X_A_Asset_Transfer public class MAssetTransfer extends X_A_Asset_Transfer
{ {
/**
*
*/
private static final long serialVersionUID = 6542200284709386238L;
/** /**
* Default ConstructorX_A_Asset_Group_Acct * Default ConstructorX_A_Asset_Group_Acct
* @param ctx context * @param ctx context

View File

@ -26,6 +26,11 @@ import org.compiere.util.DB;
** @version $Id: X_A_Asset.java,v 1.88 2004/08/27 21:26:37 jjanke Exp $ */ ** @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 public class MAssetUse extends X_A_Asset_Use
{ {
/**
*
*/
private static final long serialVersionUID = -1247516669047870893L;
public MAssetUse (Properties ctx, int A_Asset_Use_ID, String trxName) public MAssetUse (Properties ctx, int A_Asset_Use_ID, String trxName)
{ {
super (ctx, A_Asset_Use_ID, trxName); super (ctx, A_Asset_Use_ID, trxName);

View File

@ -65,6 +65,12 @@ import org.xml.sax.SAXException;
*/ */
public class MAttachment extends X_AD_Attachment public class MAttachment extends X_AD_Attachment
{ {
/**
*
*/
private static final long serialVersionUID = -1948066627503677516L;
/** /**
* Get Attachment * Get Attachment
* @param ctx context * @param ctx context

View File

@ -29,6 +29,11 @@ import org.compiere.util.Env;
*/ */
public class MAttachmentNote extends X_AD_AttachmentNote public class MAttachmentNote extends X_AD_AttachmentNote
{ {
/**
*
*/
private static final long serialVersionUID = 5902789937430504039L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -36,6 +36,12 @@ import org.compiere.util.Env;
*/ */
public class MAttribute extends X_M_Attribute public class MAttribute extends X_M_Attribute
{ {
/**
*
*/
private static final long serialVersionUID = 7869800574413317999L;
/** /**
* Get Attributes Of Client * Get Attributes Of Client
* @param ctx Properties * @param ctx Properties

View File

@ -28,6 +28,12 @@ import java.util.Properties;
*/ */
public class MAttributeInstance extends X_M_AttributeInstance public class MAttributeInstance extends X_M_AttributeInstance
{ {
/**
*
*/
private static final long serialVersionUID = 6154044437449512042L;
/** /**
* Persistency Constructor * Persistency Constructor
* @param ctx context * @param ctx context

View File

@ -34,6 +34,12 @@ import org.compiere.util.DB;
*/ */
public class MAttributeSet extends X_M_AttributeSet public class MAttributeSet extends X_M_AttributeSet
{ {
/**
*
*/
private static final long serialVersionUID = -2703536167929259405L;
/** /**
* Get MAttributeSet from Cache * Get MAttributeSet from Cache
* @param ctx context * @param ctx context

View File

@ -38,6 +38,12 @@ import org.compiere.util.TimeUtil;
*/ */
public class MAttributeSetInstance extends X_M_AttributeSetInstance public class MAttributeSetInstance extends X_M_AttributeSetInstance
{ {
/**
*
*/
private static final long serialVersionUID = -7870720973216607658L;
/** /**
* Get Attribute Set Instance from ID or Product * Get Attribute Set Instance from ID or Product
* @param ctx context * @param ctx context

View File

@ -30,6 +30,12 @@ import org.compiere.util.DB;
*/ */
public class MAttributeUse extends X_M_AttributeUse public class MAttributeUse extends X_M_AttributeUse
{ {
/**
*
*/
private static final long serialVersionUID = 3727204159034073907L;
/** /**
* Persistency Constructor * Persistency Constructor
* @param ctx context * @param ctx context

View File

@ -27,6 +27,11 @@ import java.util.Properties;
*/ */
public class MAttributeValue extends X_M_AttributeValue public class MAttributeValue extends X_M_AttributeValue
{ {
/**
*
*/
private static final long serialVersionUID = 4105427429027399512L;
/** /**
* Constructor * Constructor
* @param ctx context * @param ctx context

View File

@ -34,6 +34,12 @@ import org.compiere.util.Msg;
*/ */
public class MBOM extends X_M_BOM public class MBOM extends X_M_BOM
{ {
/**
*
*/
private static final long serialVersionUID = -8885316310068284701L;
/** /**
* Get BOM from Cache * Get BOM from Cache
* @param ctx context * @param ctx context

View File

@ -35,6 +35,11 @@ import org.compiere.util.Msg;
*/ */
public class MBOMProduct extends X_M_BOMProduct public class MBOMProduct extends X_M_BOMProduct
{ {
/**
*
*/
private static final long serialVersionUID = 3431041011059529621L;
/** /**
* Get Products of BOM * Get Products of BOM
* @param bom bom * @param bom bom

View File

@ -34,6 +34,11 @@ import org.compiere.util.DB;
public class MBPBankAccount extends X_C_BP_BankAccount public class MBPBankAccount extends X_C_BP_BankAccount
{ {
/**
*
*/
private static final long serialVersionUID = 2580706419593695062L;
/** /**
* Get Accounst Of BPartner * Get Accounst Of BPartner
* @param ctx context * @param ctx context

View File

@ -35,6 +35,11 @@ import org.compiere.util.Env;
*/ */
public class MBPGroup extends X_C_BP_Group public class MBPGroup extends X_C_BP_Group
{ {
/**
*
*/
private static final long serialVersionUID = 3037428352124938328L;
/** /**
* Get MBPGroup from Cache * Get MBPGroup from Cache
* @param ctx context * @param ctx context

View File

@ -44,6 +44,12 @@ import org.compiere.util.Msg;
*/ */
public class MBPartner extends X_C_BPartner public class MBPartner extends X_C_BPartner
{ {
/**
*
*/
private static final long serialVersionUID = -3669895599574182217L;
/** /**
* Get Empty Template Business Partner * Get Empty Template Business Partner
* @param ctx context * @param ctx context

View File

@ -33,6 +33,11 @@ import org.compiere.util.DB;
*/ */
public class MBPartnerInfo extends X_RV_BPartner public class MBPartnerInfo extends X_RV_BPartner
{ {
/**
*
*/
private static final long serialVersionUID = 7947336480731180299L;
/** /**
* Find BPartners * Find BPartners
* @param ctx context * @param ctx context

View File

@ -29,6 +29,12 @@ import org.compiere.util.CCache;
*/ */
public class MBank extends X_C_Bank public class MBank extends X_C_Bank
{ {
/**
*
*/
private static final long serialVersionUID = 3459010882027283811L;
/** /**
* Get MBank from Cache * Get MBank from Cache
* @param ctx context * @param ctx context

View File

@ -31,6 +31,11 @@ import org.compiere.util.Env;
*/ */
public class MBankAccount extends X_C_BankAccount public class MBankAccount extends X_C_BankAccount
{ {
/**
*
*/
private static final long serialVersionUID = -8742307130542608791L;
/** /**
* Get BankAccount from Cache * Get BankAccount from Cache
* @param ctx context * @param ctx context

View File

@ -44,6 +44,11 @@ import org.compiere.util.Msg;
*/ */
public class MBankStatement extends X_C_BankStatement implements DocAction public class MBankStatement extends X_C_BankStatement implements DocAction
{ {
/**
*
*/
private static final long serialVersionUID = -6137737123031721451L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -41,6 +41,11 @@ import org.compiere.util.Msg;
*/ */
public class MBankStatementLine extends X_C_BankStatementLine public class MBankStatementLine extends X_C_BankStatementLine
{ {
/**
*
*/
private static final long serialVersionUID = -7260240724584085587L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -50,6 +50,11 @@ import org.compiere.impexp.BankStatementLoaderInterface;
*/ */
public class MBankStatementLoader extends X_C_BankStatementLoader public class MBankStatementLoader extends X_C_BankStatementLoader
{ {
/**
*
*/
private static final long serialVersionUID = -4096456424277340847L;
/** Number of statement lines imported */ /** Number of statement lines imported */
private int loadCount = 0; private int loadCount = 0;

View File

@ -35,6 +35,11 @@ import org.compiere.util.Env;
*/ */
public class MBankStatementMatcher extends X_C_BankStatementMatcher public class MBankStatementMatcher extends X_C_BankStatementMatcher
{ {
/**
*
*/
private static final long serialVersionUID = -3756318777177414260L;
/** /**
* Get Bank Statement Matcher Algorithms * Get Bank Statement Matcher Algorithms
* @param ctx context * @param ctx context

View File

@ -34,6 +34,12 @@ import org.compiere.util.Msg;
*/ */
public class MCStage extends X_CM_CStage public class MCStage extends X_CM_CStage
{ {
/**
*
*/
private static final long serialVersionUID = 1455360873536769969L;
/** /**
* Get Stages * Get Stages
* @param project project * @param project project

View File

@ -27,6 +27,11 @@ import java.util.Properties;
*/ */
public class MCStageElement extends X_CM_CStage_Element public class MCStageElement extends X_CM_CStage_Element
{ {
/**
*
*/
private static final long serialVersionUID = -8492346668618156066L;
/*************************************************************************** /***************************************************************************
* Standard Constructor * Standard Constructor
* *

View File

@ -32,6 +32,12 @@ import org.compiere.util.Msg;
*/ */
public class MCalendar extends X_C_Calendar public class MCalendar extends X_C_Calendar
{ {
/**
*
*/
private static final long serialVersionUID = 7721451326626542420L;
/** /**
* Get MCalendar from Cache * Get MCalendar from Cache
* @param ctx context * @param ctx context

View File

@ -29,6 +29,11 @@ import java.util.Properties;
public class MCampaign extends X_C_Campaign public class MCampaign extends X_C_Campaign
{ {
/**
*
*/
private static final long serialVersionUID = -5881057827687596119L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -34,6 +34,11 @@ import org.compiere.util.DB;
*/ */
public class MCashBook extends X_C_CashBook public class MCashBook extends X_C_CashBook
{ {
/**
*
*/
private static final long serialVersionUID = 4602423783184037174L;
/** /**
* Get MCashBook from Cache * Get MCashBook from Cache
* @param ctx context * @param ctx context

View File

@ -26,6 +26,11 @@ import java.util.Properties;
*/ */
public class MChangeNotice extends X_M_ChangeNotice public class MChangeNotice extends X_M_ChangeNotice
{ {
/**
*
*/
private static final long serialVersionUID = -1252425132317509377L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -36,6 +36,12 @@ import org.compiere.util.Env;
*/ */
public class MCharge extends X_C_Charge public class MCharge extends X_C_Charge
{ {
/**
*
*/
private static final long serialVersionUID = 630271473830196435L;
/** /**
* Get Charge Account * Get Charge Account
* @param C_Charge_ID charge * @param C_Charge_ID charge

View File

@ -41,6 +41,12 @@ import org.compiere.util.Util;
*/ */
public class MChat extends X_CM_Chat public class MChat extends X_CM_Chat
{ {
/**
*
*/
private static final long serialVersionUID = -5053130533036069784L;
/** /**
* Get Chats Of Table - of client in context * Get Chats Of Table - of client in context
* @param ctx context * @param ctx context

View File

@ -27,6 +27,11 @@ import java.util.Properties;
*/ */
public class MChatEntry extends X_CM_ChatEntry public class MChatEntry extends X_CM_ChatEntry
{ {
/**
*
*/
private static final long serialVersionUID = -158924400098841023L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx cintext * @param ctx cintext

View File

@ -29,6 +29,11 @@ import org.compiere.util.CCache;
*/ */
public class MChatType extends X_CM_ChatType public class MChatType extends X_CM_ChatType
{ {
/**
*
*/
private static final long serialVersionUID = -7933150405119053730L;
/** /**
* Get MChatType from Cache * Get MChatType from Cache
* @param ctx context * @param ctx context

View File

@ -36,6 +36,12 @@ import org.compiere.util.Env;
*/ */
public class MClick extends X_W_Click public class MClick extends X_W_Click
{ {
/**
*
*/
private static final long serialVersionUID = 850591754099789308L;
/** /**
* Get Unprocessed Clicks * Get Unprocessed Clicks
* @param ctx context * @param ctx context

View File

@ -37,6 +37,12 @@ import org.compiere.util.ValueNamePair;
*/ */
public class MClickCount extends X_W_ClickCount public class MClickCount extends X_W_ClickCount
{ {
/**
*
*/
private static final long serialVersionUID = -5233509415147834823L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -53,6 +53,12 @@ import org.compiere.util.Language;
*/ */
public class MClient extends X_AD_Client public class MClient extends X_AD_Client
{ {
/**
*
*/
private static final long serialVersionUID = -295299248474003249L;
/** /**
* Get client * Get client
* @param ctx context * @param ctx context

View File

@ -35,6 +35,12 @@ import org.compiere.util.Env;
*/ */
public class MClientInfo extends X_AD_ClientInfo public class MClientInfo extends X_AD_ClientInfo
{ {
/**
*
*/
private static final long serialVersionUID = 4861006368856890116L;
/** /**
* Get Client Info * Get Client Info
* @param ctx context * @param ctx context

View File

@ -33,6 +33,11 @@ import org.compiere.util.DB;
*/ */
public class MClientShare extends X_AD_ClientShare public class MClientShare extends X_AD_ClientShare
{ {
/**
*
*/
private static final long serialVersionUID = -8104352403537353753L;
/** /**
* Is Table Client Level Only * Is Table Client Level Only
* @param AD_Client_ID client * @param AD_Client_ID client

View File

@ -36,6 +36,11 @@ import org.compiere.util.DB;
*/ */
public class MColor extends X_AD_Color public class MColor extends X_AD_Color
{ {
/**
*
*/
private static final long serialVersionUID = 8672637038417465668L;
/** /**
* Color Model * Color Model
* @param ctx context * @param ctx context

View File

@ -33,6 +33,11 @@ import org.compiere.util.Env;
*/ */
public class MColorSchema extends X_PA_ColorSchema public class MColorSchema extends X_PA_ColorSchema
{ {
/**
*
*/
private static final long serialVersionUID = 4645092884363283719L;
/** /**
* Get Color * Get Color
* @param ctx context * @param ctx context

View File

@ -37,6 +37,11 @@ import org.compiere.util.Msg;
*/ */
public class MColumn extends X_AD_Column public class MColumn extends X_AD_Column
{ {
/**
*
*/
private static final long serialVersionUID = 2954312267794622096L;
/** /**
* Get MColumn from Cache * Get MColumn from Cache
* @param ctx context * @param ctx context

View File

@ -32,6 +32,11 @@ import org.compiere.util.Msg;
*/ */
public class MColumnAccess extends X_AD_Column_Access public class MColumnAccess extends X_AD_Column_Access
{ {
/**
*
*/
private static final long serialVersionUID = -2362624234744824977L;
/** /**
* Persistency Constructor * Persistency Constructor
* @param ctx context * @param ctx context

View File

@ -33,6 +33,11 @@ import java.util.logging.Level;
*/ */
public class MCommission extends X_C_Commission public class MCommission extends X_C_Commission
{ {
/**
*
*/
private static final long serialVersionUID = 1786202619739310928L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -34,6 +34,11 @@ import org.compiere.util.Env;
*/ */
public class MCommissionAmt extends X_C_CommissionAmt public class MCommissionAmt extends X_C_CommissionAmt
{ {
/**
*
*/
private static final long serialVersionUID = 1747802539808391638L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -31,6 +31,11 @@ import org.compiere.util.Env;
*/ */
public class MCommissionDetail extends X_C_CommissionDetail public class MCommissionDetail extends X_C_CommissionDetail
{ {
/**
*
*/
private static final long serialVersionUID = 1727857992121809494L;
/** /**
* Persistency Constructor * Persistency Constructor
* @param ctx context * @param ctx context

View File

@ -30,6 +30,11 @@ import org.compiere.util.Env;
*/ */
public class MCommissionLine extends X_C_CommissionLine public class MCommissionLine extends X_C_CommissionLine
{ {
/**
*
*/
private static final long serialVersionUID = 2167566875518334780L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -34,6 +34,11 @@ import org.compiere.util.Env;
*/ */
public class MCommissionRun extends X_C_CommissionRun public class MCommissionRun extends X_C_CommissionRun
{ {
/**
*
*/
private static final long serialVersionUID = -3103035295526318283L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -38,6 +38,11 @@ import org.compiere.util.Env;
*/ */
public class MContactInterest extends X_R_ContactInterest public class MContactInterest extends X_R_ContactInterest
{ {
/**
*
*/
private static final long serialVersionUID = -4720845687902863428L;
/** /**
* Get Contact Interest * Get Contact Interest
* @param ctx context * @param ctx context

View File

@ -39,6 +39,10 @@ import org.compiere.util.TimeUtil;
*/ */
public class MConversionRate extends X_C_Conversion_Rate public class MConversionRate extends X_C_Conversion_Rate
{ {
/**
*
*/
private static final long serialVersionUID = -2753651400799848008L;
/** Logger */ /** Logger */
private static CLogger s_log = CLogger.getCLogger (MConversionRate.class); private static CLogger s_log = CLogger.getCLogger (MConversionRate.class);

View File

@ -30,6 +30,11 @@ import org.compiere.util.DB;
*/ */
public class MConversionType extends X_C_ConversionType public class MConversionType extends X_C_ConversionType
{ {
/**
*
*/
private static final long serialVersionUID = 7198388106444590667L;
/** /**
* Get Default Conversion Rate for Client/Org * Get Default Conversion Rate for Client/Org
* @param AD_Client_ID client * @param AD_Client_ID client

View File

@ -37,6 +37,12 @@ import org.compiere.util.Msg;
*/ */
public class MCostElement extends X_M_CostElement public class MCostElement extends X_M_CostElement
{ {
/**
*
*/
private static final long serialVersionUID = 8676787942212800906L;
/** /**
* Get Material Cost Element or create it * Get Material Cost Element or create it
* @param po parent * @param po parent

View File

@ -35,6 +35,12 @@ import org.compiere.util.Env;
*/ */
public class MCostQueue extends X_M_CostQueue public class MCostQueue extends X_M_CostQueue
{ {
/**
*
*/
private static final long serialVersionUID = -1782836708418500130L;
/** /**
* Get/Create Cost Queue Record. * Get/Create Cost Queue Record.
* CostingLevel is not validated * CostingLevel is not validated

View File

@ -28,6 +28,11 @@ import org.compiere.util.Msg;
*/ */
public class MCostType extends X_M_CostType public class MCostType extends X_M_CostType
{ {
/**
*
*/
private static final long serialVersionUID = -2060640115481013228L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

View File

@ -27,6 +27,11 @@ import java.util.Properties;
*/ */
public class MCounterCount extends X_W_CounterCount public class MCounterCount extends X_W_CounterCount
{ {
/**
*
*/
private static final long serialVersionUID = -5348749341548369844L;
/** /**
* Standard Constructor * Standard Constructor
* @param ctx context * @param ctx context

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