org.eclipse.jdt.core.dom.TypeLiteral类的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(6.6k)|赞(0)|评价(0)|浏览(77)

本文整理了Java中org.eclipse.jdt.core.dom.TypeLiteral类的一些代码示例,展示了TypeLiteral类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。TypeLiteral类的具体详情如下:
包路径:org.eclipse.jdt.core.dom.TypeLiteral
类名称:TypeLiteral

TypeLiteral介绍

[英]Type literal AST node type.

TypeLiteral: 
( Type | void ) . class

[中]键入文本AST节点类型

TypeLiteral: 
( Type | void ) . class

代码示例

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

/**
 * Returns whether the given node and the other object match.
 * <p>
 * The default implementation provided by this class tests whether the
 * other object is a node of the same type with structurally isomorphic
 * child subtrees. Subclasses may override this method as needed.
 * </p>
 *
 * @param node the node
 * @param other the other object, or <code>null</code>
 * @return <code>true</code> if the subtree matches, or
 *   <code>false</code> if they do not match or the other object has a
 *   different node type or is <code>null</code>
 */
public boolean match(TypeLiteral node, Object other) {
  if (!(other instanceof TypeLiteral)) {
    return false;
  }
  TypeLiteral o = (TypeLiteral) other;
  return safeSubtreeMatch(node.getType(), o.getType());
}

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

ASTNode clone0(AST target) {
  TypeLiteral result = new TypeLiteral(target);
  result.setSourceRange(getStartPosition(), getLength());
  result.setType((Type) getType().clone(target));
  return result;
}

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

void accept0(ASTVisitor visitor) {
  boolean visitChildren = visitor.visit(this);
  if (visitChildren) {
    acceptChild(visitor, getType());
  }
  visitor.endVisit(this);
}

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

final ASTNode internalGetSetChildProperty(ChildPropertyDescriptor property, boolean get, ASTNode child) {
  if (property == TYPE_PROPERTY) {
    if (get) {
      return getType();
    } else {
      setType((Type) child);
      return null;
    }
  }
  // allow default implementation to flag the error
  return super.internalGetSetChildProperty(property, get, child);
}

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

int treeSize() {
    return
      memSize()
      + (this.type == null ? 0 : getType().treeSize());
  }
}

代码示例来源:origin: stackoverflow.com

TypeLiteral typeLiteral = ast.newTypeLiteral();
typeLiteral.setType(ast.newSimpleType(ast.newSimpleName(className)));

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

public Expression convert(org.eclipse.jdt.internal.compiler.ast.ClassLiteralAccess expression) {
  TypeLiteral typeLiteral = new TypeLiteral(this.ast);
  if (this.resolveBindings) {
    this.recordNodes(typeLiteral, expression);
  }
  typeLiteral.setSourceRange(expression.sourceStart, expression.sourceEnd - expression.sourceStart + 1);
  typeLiteral.setType(convertType(expression.type));
  return typeLiteral;
}

代码示例来源:origin: mauricioaniche/ck

@Override
public boolean visit(TypeLiteral node) {
  coupleTo(node.resolveTypeBinding());
  coupleTo(node.getType().resolveBinding());
  return super.visit(node);
}

代码示例来源:origin: mono/sharpen

public boolean visit(TypeLiteral node) {
  
  if (isReferenceToRemovedType(node.getType())) {
    pushExpression(new CSRemovedExpression(node.toString()));
    return false;
  }
  
  pushTypeOfExpression(mappedTypeReference(node.getType()));
  return false;
}

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

/**
 * Creates and returns a new unparented type literal expression node
 * owned by this AST. By default, the type is unspecified (but legal).
 *
 * @return a new unparented type literal node
 */
public TypeLiteral newTypeLiteral() {
  TypeLiteral result = new TypeLiteral(this);
  return result;
}

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

final ASTNode internalGetSetChildProperty(ChildPropertyDescriptor property, boolean get, ASTNode child) {
  if (property == TYPE_PROPERTY) {
    if (get) {
      return getType();
    } else {
      setType((Type) child);
      return null;
    }
  }
  // allow default implementation to flag the error
  return super.internalGetSetChildProperty(property, get, child);
}

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

@Override
  int treeSize() {
    return
      memSize()
      + (this.type == null ? 0 : getType().treeSize());
  }
}

代码示例来源:origin: stackoverflow.com

MemberValuePair mV = astRoot.getAST().newMemberValuePair();
mV.setName(astRoot.getAST().newSimpleName("name"));
TypeLiteral typeLiteral = astRoot.getAST().newTypeLiteral();
typeLiteral.setType(astRoot.getAST().newSimpleType(astRoot.getAST().newSimpleName("Blup")));
mV.setValue(typeLiteral);
newNormalAnnotation.values().add(mV);

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

public Expression convert(org.eclipse.jdt.internal.compiler.ast.ClassLiteralAccess expression) {
  TypeLiteral typeLiteral = new TypeLiteral(this.ast);
  if (this.resolveBindings) {
    this.recordNodes(typeLiteral, expression);
  }
  typeLiteral.setSourceRange(expression.sourceStart, expression.sourceEnd - expression.sourceStart + 1);
  typeLiteral.setType(convertType(expression.type));
  return typeLiteral;
}

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

/**
 * Creates and returns a new unparented type literal expression node
 * owned by this AST. By default, the type is unspecified (but legal).
 *
 * @return a new unparented type literal node
 */
public TypeLiteral newTypeLiteral() {
  TypeLiteral result = new TypeLiteral(this);
  return result;
}

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

/**
 * Returns whether the given node and the other object match.
 * <p>
 * The default implementation provided by this class tests whether the
 * other object is a node of the same type with structurally isomorphic
 * child subtrees. Subclasses may override this method as needed.
 * </p>
 *
 * @param node the node
 * @param other the other object, or <code>null</code>
 * @return <code>true</code> if the subtree matches, or
 *   <code>false</code> if they do not match or the other object has a
 *   different node type or is <code>null</code>
 */
public boolean match(TypeLiteral node, Object other) {
  if (!(other instanceof TypeLiteral)) {
    return false;
  }
  TypeLiteral o = (TypeLiteral) other;
  return safeSubtreeMatch(node.getType(), o.getType());
}

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

@Override
ASTNode clone0(AST target) {
  TypeLiteral result = new TypeLiteral(target);
  result.setSourceRange(getStartPosition(), getLength());
  result.setType((Type) getType().clone(target));
  return result;
}

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

final ASTNode internalGetSetChildProperty(ChildPropertyDescriptor property, boolean get, ASTNode child) {
  if (property == TYPE_PROPERTY) {
    if (get) {
      return getType();
    } else {
      setType((Type) child);
      return null;
    }
  }
  // allow default implementation to flag the error
  return super.internalGetSetChildProperty(property, get, child);
}

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

@Override
void accept0(ASTVisitor visitor) {
  boolean visitChildren = visitor.visit(this);
  if (visitChildren) {
    acceptChild(visitor, getType());
  }
  visitor.endVisit(this);
}

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

int treeSize() {
    return
      memSize()
      + (this.type == null ? 0 : getType().treeSize());
  }
}

相关文章