1 2 package org.compiere.model; 3 import java.util.*; 4 import java.sql.*; 5 import java.math.*; 6 import java.io.Serializable ; 7 import org.compiere.util.*; 8 10 public class X_M_Substitute extends PO 11 { 12 13 public X_M_Substitute (Properties ctx, int M_Substitute_ID) 14 { 15 super (ctx, M_Substitute_ID); 16 23 } 24 25 public X_M_Substitute (Properties ctx, ResultSet rs) 26 { 27 super (ctx, rs); 28 } 29 30 protected POInfo initPO (Properties ctx) 31 { 32 int AD_Table_ID = 213; 33 POInfo poi = POInfo.getPOInfo (ctx, AD_Table_ID); 34 return poi; 35 } 36 public String toString() 37 { 38 StringBuffer sb = new StringBuffer ("X_M_Substitute[").append(getID()).append("]"); 39 return sb.toString(); 40 } 41 void setM_Product_ID (int M_Product_ID) 42 { 43 setValueNoCheck ("M_Product_ID", new Integer (M_Product_ID)); 44 } 45 public int getM_Product_ID() 46 { 47 Integer ii = (Integer )getValue("M_Product_ID"); 48 if (ii == null) return 0; 49 return ii.intValue(); 50 } 51 public void setName (String Name) 52 { 53 if (Name == null) throw new IllegalArgumentException ("Name is mandatory"); 54 setValue ("Name", Name); 55 } 56 public String getName() 57 { 58 return (String )getValue("Name"); 59 } 60 void setSubstitute_ID (int Substitute_ID) 61 { 62 setValueNoCheck ("Substitute_ID", new Integer (Substitute_ID)); 63 } 64 public int getSubstitute_ID() 65 { 66 Integer ii = (Integer )getValue("Substitute_ID"); 67 if (ii == null) return 0; 68 return ii.intValue(); 69 } 70 } 71
| Popular Tags
|