| Home >> All >> com >> puppycrawl >> tools >> checkstyle >> [ j2ee Javadoc ] |
Source code: com/puppycrawl/tools/checkstyle/j2ee/InputLocalHomeInterface.java
1 package com.puppycrawl.tools.checkstyle.j2ee; 2 3 import javax.ejb.CreateException; 4 import javax.ejb.FinderException; 5 6 /** 7 * test for LocalHomeInterfaceCheck 8 * @author Rick Giles 9 * 10 */ 11 public interface InputLocalHomeInterface 12 extends javax.ejb.EJBLocalHome 13 { 14 public Integer createInteger(int aParam) 15 throws CreateException; 16 17 abstract void createSomething(int aParam); 18 19 abstract void findSomething(int aParam); 20 21 public Integer findInteger(int aParam) 22 throws FinderException; 23 24 public void method() throws java.rmi.RemoteException; 25 }