1 28 29 package com.caucho.ejb.cfg; 30 31 import com.caucho.util.L10N; 32 33 38 public class BooleanLiteral { 39 private static L10N L = new L10N(BooleanLiteral.class); 40 41 private String _true = "1"; 42 private String _false = "0"; 43 44 public BooleanLiteral() 45 { 46 } 47 48 public void setTrue(String trueLiteral) 49 { 50 _true = trueLiteral; 51 } 52 53 public String getTrue() 54 { 55 return _true; 56 } 57 58 public void setFalse(String falseLiteral) 59 { 60 _false = falseLiteral; 61 } 62 63 public String getFalse() 64 { 65 return _false; 66 } 67 } 68 | Popular Tags |