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_C_NonBusinessDay extends PO 11 { 12 13 public X_C_NonBusinessDay (Properties ctx, int C_NonBusinessDay_ID) 14 { 15 super (ctx, C_NonBusinessDay_ID); 16 23 } 24 25 public X_C_NonBusinessDay (Properties ctx, ResultSet rs) 26 { 27 super (ctx, rs); 28 } 29 30 protected POInfo initPO (Properties ctx) 31 { 32 int AD_Table_ID = 163; 33 POInfo poi = POInfo.getPOInfo (ctx, AD_Table_ID); 34 return poi; 35 } 36 public String toString() 37 { 38 StringBuffer sb = new StringBuffer ("X_C_NonBusinessDay[").append(getID()).append("]"); 39 return sb.toString(); 40 } 41 void setC_Calendar_ID (int C_Calendar_ID) 42 { 43 setValueNoCheck ("C_Calendar_ID", new Integer (C_Calendar_ID)); 44 } 45 public int getC_Calendar_ID() 46 { 47 Integer ii = (Integer )getValue("C_Calendar_ID"); 48 if (ii == null) return 0; 49 return ii.intValue(); 50 } 51 void setC_NonBusinessDay_ID (int C_NonBusinessDay_ID) 52 { 53 setValueNoCheck ("C_NonBusinessDay_ID", new Integer (C_NonBusinessDay_ID)); 54 } 55 public int getC_NonBusinessDay_ID() 56 { 57 Integer ii = (Integer )getValue("C_NonBusinessDay_ID"); 58 if (ii == null) return 0; 59 return ii.intValue(); 60 } 61 public void setDate1 (Timestamp Date1) 62 { 63 if (Date1 == null) throw new IllegalArgumentException ("Date1 is mandatory"); 64 setValue ("Date1", Date1); 65 } 66 public Timestamp getDate1() 67 { 68 return (Timestamp)getValue("Date1"); 69 } 70 public void setName (String Name) 71 { 72 setValue ("Name", Name); 73 } 74 public String getName() 75 { 76 return (String )getValue("Name"); 77 } 78 } 79
| Popular Tags
|