1 28 29 package com.caucho.jsp.cfg; 30 31 38 public class Jsp { 39 private boolean _isSession = true; 40 private boolean _recycleTags = true; 41 private boolean _precompile = true; 42 43 46 public void setSession(boolean isSession) 47 { 48 _isSession = isSession; 49 } 50 51 54 public boolean getSession() 55 { 56 return _isSession; 57 } 58 59 62 public void setRecycleTags(boolean recycleTags) 63 { 64 _recycleTags = recycleTags; 65 } 66 67 70 public boolean getRecycleTags() 71 { 72 return _recycleTags; 73 } 74 75 78 public void setPrecompile(boolean precompile) 79 { 80 _precompile = precompile; 81 } 82 83 86 public boolean getPrecompile() 87 { 88 return _precompile; 89 } 90 } 91 | Popular Tags |