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

Inject

public class Inject 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 static final Logger
log
private List
methods
private String
jndiName
Constructors Summary
Methods Summary
public voidaddMethod(Method method)

      methods.add(method);
   
public java.lang.StringgetJndiName()


     
   
      return jndiName;
   
public java.util.ListgetMethods()

      return methods;
   
public voidsetJndiName(java.lang.String jndiName)

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

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