| Home >> All >> com >> puppycrawl >> tools >> checkstyle >> [ j2ee Javadoc ] |
Source code: com/puppycrawl/tools/checkstyle/j2ee/InputEntityBeanCreate.java
1 package com.puppycrawl.tools.checkstyle.j2ee; 2 3 import java.rmi.RemoteException; 4 5 import javax.ejb.EJBException; 6 import javax.ejb.EntityBean; 7 import javax.ejb.EntityContext; 8 import javax.ejb.RemoveException; 9 10 /** 11 * Test EntityBean 12 */ 13 public class InputEntityBeanCreate 14 implements EntityBean 15 { 16 public InputEntityBeanCreate() 17 { 18 } 19 20 private final static void ejbCreateSomething() 21 { 22 } 23 24 public Object ejbFindByPrimaryKey(Object aObject) 25 { 26 return null; 27 } 28 29 public void ejbPostCreateSomething(int i) 30 { 31 } 32 33 /** 34 * @see javax.ejb.EntityBean#setEntityContext(javax.ejb.EntityContext) 35 */ 36 public void setEntityContext(EntityContext arg0) throws EJBException, RemoteException { 37 // TODO Auto-generated method stub 38 39 } 40 41 /** 42 * @see javax.ejb.EntityBean#unsetEntityContext() 43 */ 44 public void unsetEntityContext() throws EJBException, RemoteException { 45 // TODO Auto-generated method stub 46 47 } 48 49 /** 50 * @see javax.ejb.EntityBean#ejbRemove() 51 */ 52 public void ejbRemove() throws RemoveException, EJBException, RemoteException { 53 // TODO Auto-generated method stub 54 55 } 56 57 /** 58 * @see javax.ejb.EntityBean#ejbActivate() 59 */ 60 public void ejbActivate() throws EJBException, RemoteException { 61 // TODO Auto-generated method stub 62 63 } 64 65 /** 66 * @see javax.ejb.EntityBean#ejbPassivate() 67 */ 68 public void ejbPassivate() throws EJBException, RemoteException { 69 // TODO Auto-generated method stub 70 71 } 72 73 /** 74 * @see javax.ejb.EntityBean#ejbLoad() 75 */ 76 public void ejbLoad() throws EJBException, RemoteException { 77 // TODO Auto-generated method stub 78 79 } 80 81 /** 82 * @see javax.ejb.EntityBean#ejbStore() 83 */ 84 public void ejbStore() throws EJBException, RemoteException { 85 // TODO Auto-generated method stub 86 87 } 88 89 }