Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/puppycrawl/tools/checkstyle/j2ee/InputEntityBeanMatchEjbCreate.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 InputEntityBeanMatchEjbCreate
14      implements EntityBean
15  {
16  
17      public InputEntityBeanMatchEjbCreate ejbCreate()
18      {
19          return null;
20      }
21      
22      public InputEntityBeanMatchEjbCreate ejbCreate(int i)
23      {
24          return null;
25      }
26      
27      public void ejbPostCreate(long i)
28      {
29      }
30      
31      public InputEntityBeanMatchEjbCreate ejbCreateThing(int i)
32      {
33          return null;
34      }
35      
36      public void ejbPostCreatething(int i)
37      {
38      }
39      
40      public InputEntityBeanMatchEjbCreate ejbCreateInteger(java.lang.Integer i)
41      {
42          return null;
43      }
44      
45      public void ejbPostCreateInteger(java.lang.Integer i)
46      {
47      }
48      
49      public InputEntityBeanMatchEjbCreate ejbCreateInteger(java.lang.Integer i,
50          long x)
51      {
52          return null;
53      }
54      
55      public void ejbPostCreateInteger(java.lang.Integer i,
56          double x)
57      {
58      }
59      /**
60       * @see javax.ejb.EntityBean#setEntityContext(javax.ejb.EntityContext)
61       */
62      public void setEntityContext(EntityContext arg0) throws EJBException, RemoteException {
63          // TODO Auto-generated method stub
64          
65      }
66  
67      /**
68       * @see javax.ejb.EntityBean#unsetEntityContext()
69       */
70      public void unsetEntityContext() throws EJBException, RemoteException {
71          // TODO Auto-generated method stub
72          
73      }
74  
75      /**
76       * @see javax.ejb.EntityBean#ejbRemove()
77       */
78      public void ejbRemove() throws RemoveException, EJBException, RemoteException {
79          // TODO Auto-generated method stub
80          
81      }
82  
83      /**
84       * @see javax.ejb.EntityBean#ejbActivate()
85       */
86      public void ejbActivate() throws EJBException, RemoteException {
87          // TODO Auto-generated method stub
88          
89      }
90  
91      /**
92       * @see javax.ejb.EntityBean#ejbPassivate()
93       */
94      public void ejbPassivate() throws EJBException, RemoteException {
95          // TODO Auto-generated method stub
96          
97      }
98  
99      /**
100      * @see javax.ejb.EntityBean#ejbLoad()
101      */
102     public void ejbLoad() throws EJBException, RemoteException {
103         // TODO Auto-generated method stub
104         
105     }
106 
107     /**
108      * @see javax.ejb.EntityBean#ejbStore()
109      */
110     public void ejbStore() throws EJBException, RemoteException {
111         // TODO Auto-generated method stub
112         
113     }
114 
115 }
116