949950951952953954955956957958959
// EJB3 4.6.4: The method must be declared as public. if(hasPublicMethod(ejbClass, "ejbCreate")) { if(isStateful) { annotation = new InitImpl(); } else { annotation = new PostConstructImpl(); }
1026102710281029103010311032103310341035
if (list != null) { for (InitMethodMetaData initMethod : list) { NamedMethodMetaData method = initMethod.getBeanMethod(); InitImpl annotation = new InitImpl(); addAnnotations(Init.class, annotation, container, method); } } }
948949950951952953954955956957958
1025102610271028102910301031103210331034
936937938939940941942943944945946
1013101410151016101710181019102010211022