Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
com.puppycrawl.tools.checkstyle.checks.j2ee.MethodChecker
com.puppycrawl.tools.checkstyle.checks.j2ee.BeanMethodChecker
com.puppycrawl.tools.checkstyle.checks.j2ee.EntityBeanMethodChecker
com.puppycrawl.tools.checkstyle.checks.j2ee.ContainerManagedMethodChecker
public class ContainerManagedMethodChecker
extends EntityBeanMethodChecker
Constructor Summary | |
|
Method Summary | |
protected void |
|
void |
|
protected void |
|
Methods inherited from class com.puppycrawl.tools.checkstyle.checks.j2ee.EntityBeanMethodChecker | |
checkCreateMatch , checkCreateMethod , checkHomeMethod , checkMethod , checkMethods , checkPostCreateMethod |
Methods inherited from class com.puppycrawl.tools.checkstyle.checks.j2ee.BeanMethodChecker | |
checkCreateMethod , checkMethod |
Methods inherited from class com.puppycrawl.tools.checkstyle.checks.j2ee.MethodChecker | |
checkMethod , checkMethod , checkMethods , checkNotThrows , checkThrows , getCheck , log , logName |
public ContainerManagedMethodChecker(EntityBeanCheck aCheck)
Constructs a ContainerManagedMethodChecker for a entity bean check.
- Parameters:
aCheck
- the entity bean check.
protected void checkCreateMethod(DetailAST aMethodAST)
Checks whether an ejbCreate<METHOD>(...) method of an entity bean satisfies requirements.
- Overrides:
- checkCreateMethod in interface EntityBeanMethodChecker
- Parameters:
aMethodAST
- the AST for the method definition.
public void checkMethod(DetailAST aMethodAST)
- Overrides:
- checkMethod in interface EntityBeanMethodChecker
- See Also:
MethodChecker
protected void checkSelectMethod(DetailAST aMethodAST)
Checks whether an ejbSelect<METHOD>(...) method of an entity bean satisfies requirements.
- Parameters:
aMethodAST
- the AST for the method definition.
Back to the Checkstyle Home Page |