1 23 package org.hammurapi.inspectors; 24 25 import org.hammurapi.InspectorBase; 26 27 import com.pavelvlasov.jsel.JselException; 28 29 30 36 public class LoadNativeLibrariesInEjbRule extends InspectorBase { 37 38 41 private static final String NATIVE = "native"; 42 43 50 public void visit(com.pavelvlasov.jsel.Class clazz) { 51 try { 52 if (clazz.isKindOf("javax.ejb.EnterpriseBean")) { 53 } 55 } catch (JselException e) { 56 context.warn(clazz, e); 57 } 58 } 59 } 60 | Popular Tags |