HomeSort by relevance Sort by last modified time
    Searched defs:ArrayCreationLevel (Results 1 - 2 of 2) sorted by null

  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
ArrayCreationLevel.java 15 * In <code>new int[1][2];</code> there are two ArrayCreationLevel objects,
19 public class ArrayCreationLevel extends Node implements NodeWithAnnotations<ArrayCreationLevel> {
23 public ArrayCreationLevel(Range range, Expression dimension, List<AnnotationExpr> annotations) {
51 public ArrayCreationLevel setAnnotations(List<AnnotationExpr> annotations) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
ArrayCreationLevel.java 43 * In <code>new int[1][2];</code> there are two ArrayCreationLevel objects,
47 public final class ArrayCreationLevel extends Node implements NodeWithAnnotations<ArrayCreationLevel> {
54 public ArrayCreationLevel() {
58 public ArrayCreationLevel(int dimension) {
62 public ArrayCreationLevel(Expression dimension) {
67 public ArrayCreationLevel(Expression dimension, NodeList<AnnotationExpr> annotations) {
75 public ArrayCreationLevel(TokenRange tokenRange, Expression dimension, NodeList<AnnotationExpr> annotations) {
98 * @return this, the ArrayCreationLevel
101 public ArrayCreationLevel setDimension(final Expression dimension)
    [all...]

Completed in 1617 milliseconds