Home | History | Annotate | Download | only in javassist

Lines Matching defs:ea

329         ExceptionsAttribute ea = methodInfo.getExceptionsAttribute();
330 if (ea == null)
333 exceptions = ea.getExceptions();
352 ExceptionsAttribute ea = methodInfo.getExceptionsAttribute();
353 if (ea == null) {
354 ea = new ExceptionsAttribute(methodInfo.getConstPool());
355 methodInfo.setExceptionsAttribute(ea);
358 ea.setExceptions(names);