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_K_EntryRelated extends PO 11 { 12 13 public X_K_EntryRelated (Properties ctx, int K_EntryRelated_ID) 14 { 15 super (ctx, K_EntryRelated_ID); 16 22 } 23 24 public X_K_EntryRelated (Properties ctx, ResultSet rs) 25 { 26 super (ctx, rs); 27 } 28 29 protected POInfo initPO (Properties ctx) 30 { 31 int AD_Table_ID = 610; 32 POInfo poi = POInfo.getPOInfo (ctx, AD_Table_ID); 33 return poi; 34 } 35 public String toString() 36 { 37 StringBuffer sb = new StringBuffer ("X_K_EntryRelated[").append(getID()).append("]"); 38 return sb.toString(); 39 } 40 void setK_EntryRelated_ID (int K_EntryRelated_ID) 41 { 42 setValueNoCheck ("K_EntryRelated_ID", new Integer (K_EntryRelated_ID)); 43 } 44 public int getK_EntryRelated_ID() 45 { 46 Integer ii = (Integer )getValue("K_EntryRelated_ID"); 47 if (ii == null) return 0; 48 return ii.intValue(); 49 } 50 void setK_Entry_ID (int K_Entry_ID) 51 { 52 setValueNoCheck ("K_Entry_ID", new Integer (K_Entry_ID)); 53 } 54 public int getK_Entry_ID() 55 { 56 Integer ii = (Integer )getValue("K_Entry_ID"); 57 if (ii == null) return 0; 58 return ii.intValue(); 59 } 60 public void setName (String Name) 61 { 62 setValue ("Name", Name); 63 } 64 public String getName() 65 { 66 return (String )getValue("Name"); 67 } 68 } 69
| Popular Tags
|