Examples of rawBody()


Examples of lombok.ast.AnnotationMethodDeclaration.rawBody()

        set(node, md);
        return;
      }
     
      MethodDeclaration md = new MethodDeclaration();
      md.rawBody(toTree(node.getBody()));
      md.astModifiers((Modifiers) toTree(node.getModifiers()));
      md.astMethodName(setPos(node, new Identifier().astValue(name)));
      fillList(node.getThrows(), md.rawThrownTypeReferences(), FlagKey.TYPE_REFERENCE);
      fillList(node.getTypeParameters(), md.rawTypeVariables());
      fillList(node.getParameters(), md.rawParameters(), FlagKey.NO_VARDECL_FOLDING, FlagKey.VARDEF_IS_DEFINITION);
View Full Code Here

Examples of lombok.ast.ConstructorDeclaration.rawBody()

    @Override public void visitMethodDef(JCMethodDecl node) {
      String name = node.getName() == null ? null : node.getName().toString();
      if ("<init>".equals(name)) {
        ConstructorDeclaration cd = new ConstructorDeclaration();
        cd.astModifiers((Modifiers) toTree(node.getModifiers()));
        cd.rawBody(toTree(node.getBody()));
        fillList(node.getThrows(), cd.rawThrownTypeReferences(), FlagKey.TYPE_REFERENCE);
        fillList(node.getTypeParameters(), cd.rawTypeVariables());
        fillList(node.getParameters(), cd.rawParameters(), FlagKey.NO_VARDECL_FOLDING, FlagKey.VARDEF_IS_DEFINITION);
        String typeName = (String) getFlag(FlagKey.CONTAINING_TYPE_NAME);
        cd.astTypeName(setPos(node, new Identifier().astValue(typeName)));
View Full Code Here

Examples of lombok.ast.MethodDeclaration.rawBody()

        set(node, md);
        return;
      }
     
      MethodDeclaration md = new MethodDeclaration();
      md.rawBody(toTree(node.getBody()));
      md.astModifiers((Modifiers) toTree(node.getModifiers()));
      md.astMethodName(setPos(node, new Identifier().astValue(name)));
      fillList(node.getThrows(), md.rawThrownTypeReferences(), FlagKey.TYPE_REFERENCE);
      fillList(node.getTypeParameters(), md.rawTypeVariables());
      fillList(node.getParameters(), md.rawParameters(), FlagKey.NO_VARDECL_FOLDING, FlagKey.VARDEF_IS_DEFINITION);
View Full Code Here

Examples of lombok.ast.Try.rawBody()

      set(node, s.rawLock(toTree(removeParens(cond))).rawBody(toTree(node.getBlock())));
    }
   
    @Override public void visitTry(JCTry node) {
      Try t = new Try();
      t.rawBody(toTree(node.getBlock()));
      t.rawFinally(toTree(node.getFinallyBlock()));
      fillList(node.getCatches(), t.rawCatches());
      set(node, t);
    }
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.