FileDocCategorySizeDatePackage
RemoveMethod.javaAPI DocJBoss 4.2.11963Fri Jul 13 20:53:56 BST 2007org.jboss.ejb3.metamodel

RemoveMethod

public class RemoveMethod extends Object
Represents an element of the ejb-jar.xml deployment descriptor for the 1.4 schema
author
William DeCoste
version
$Revision: 60233 $

Fields Summary
private Method
beanMethod
private boolean
retainIfException
Constructors Summary
Methods Summary
public MethodgetBeanMethod()

      return beanMethod;
   
public booleanisRetainIfException()

      return retainIfException;
   
public voidsetBeanMethod(Method beanMethod)

      this.beanMethod = beanMethod;
   
public voidsetRetainIfException(boolean retainIfException)

      this.retainIfException = retainIfException;
   
public java.lang.StringtoString()

      StringBuffer sb = new StringBuffer(100);
      sb.append("[");
      sb.append("method=").append(beanMethod);
      sb.append("]");
      return sb.toString();