1 22 package org.jboss.ejb3.metamodel; 23 24 31 public class RemoveMethod 32 { 33 34 private Method beanMethod; 35 private boolean retainIfException; 36 37 public Method getBeanMethod() 38 { 39 return beanMethod; 40 } 41 42 public void setBeanMethod(Method beanMethod) 43 { 44 this.beanMethod = beanMethod; 45 } 46 47 public boolean isRetainIfException() 48 { 49 return retainIfException; 50 } 51 52 public void setRetainIfException(boolean retainIfException) 53 { 54 this.retainIfException = retainIfException; 55 } 56 57 58 public String toString() 59 { 60 StringBuffer sb = new StringBuffer (100); 61 sb.append("["); 62 sb.append("method=").append(beanMethod); 63 sb.append("]"); 64 return sb.toString(); 65 } 66 } 67 | Popular Tags |