Example usage for org.eclipse.jdt.core.dom Type subclass-usage

List of usage examples for org.eclipse.jdt.core.dom Type subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom Type subclass-usage.

Usage

From source file com.google.devtools.j2objc.ast.AnnotatableType.java

/**
 * Abstract base class of AST nodes that represent an annotatable type (added in JLS8 API, section
 * 9.7.4).
 */
public abstract class AnnotatableType extends Type {

From source file com.google.devtools.j2objc.ast.ArrayType.java

/**
 * Array type node. Array types are expressed recursively, one dimension at a
 * time.
 */
public class ArrayType extends Type {

From source file com.google.devtools.j2objc.ast.PrimitiveType.java

/**
 * Node type for a primitive type.
 */
public class PrimitiveType extends Type {

    public PrimitiveType(org.eclipse.jdt.core.dom.PrimitiveType jdtNode) {

From source file com.google.devtools.j2objc.ast.SimpleType.java

/**
 * Creates a type node by wrapping a name.
 */
public class SimpleType extends Type {

    public SimpleType(org.eclipse.jdt.core.dom.SimpleType jdtNode) {

From source file com.j2swift.ast.AnnotatableType.java

/**
 * Abstract base class of AST nodes that represent an annotatable type (added in JLS8 API, section
 * 9.7.4).
 */
public abstract class AnnotatableType extends Type {

From source file com.j2swift.ast.ArrayType.java

/**
 * Array type node. Array types are expressed recursively, one dimension at a
 * time.
 */
public class ArrayType extends Type {