Home | History | Annotate | Download | only in expr

Lines Matching refs:edit

34  * is found, <code>edit()</code> is called in <code>ExprEdit</code>.
35 * <code>edit()</code> can inspect and modify the given expression.
37 * <code>edit()</code> does nothing, the original method body is not
45 * public void edit(MethodCall m) throws CannotCompileException {
97 edit(h);
191 edit((MethodCall)expr);
197 edit((FieldAccess)expr);
211 edit((NewExpr)expr);
219 edit(ccall);
223 edit(mcall);
232 edit((NewArray)expr);
236 edit((Instanceof)expr);
240 edit((Cast)expr);
262 public void edit(NewExpr e) throws CannotCompileException {}
271 public void edit(NewArray a) throws CannotCompileException {}
278 public void edit(MethodCall m) throws CannotCompileException {}
288 * @see #edit(NewExpr)
290 public void edit(ConstructorCall c) throws CannotCompileException {}
297 public void edit(FieldAccess f) throws CannotCompileException {}
303 public void edit(Instanceof i) throws CannotCompileException {}
309 public void edit(Cast c) throws CannotCompileException {}
315 public void edit(Handler h) throws CannotCompileException {}