janino.net

org.codehaus.janino
Class Java.ElementValueArrayInitializer

java.lang.Object
  extended by org.codehaus.janino.Java.ElementValueArrayInitializer
All Implemented Interfaces:
Java.ElementValue
Enclosing class:
Java

public static class Java.ElementValueArrayInitializer
extends Object
implements Java.ElementValue

An element value in the form of an array initializer, e.g. 'SuppressWarnings({ "null", "unchecked" })'.


Field Summary
 Java.ElementValue[] elementValues
          The element values in the body of the array initializer.
 
Constructor Summary
Java.ElementValueArrayInitializer(Java.ElementValue[] elementValues)
           
 
Method Summary
 void accept(Visitor.ElementValueVisitor visitor)
          Invokes the 'visit...()' method of Visitor.ElementValueVisitor for the concrete Java.ElementValue type.
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

elementValues

public final Java.ElementValue[] elementValues
The element values in the body of the array initializer.

Constructor Detail

Java.ElementValueArrayInitializer

public Java.ElementValueArrayInitializer(Java.ElementValue[] elementValues)
Method Detail

toString

public String toString()
Overrides:
toString in class Object

accept

public void accept(Visitor.ElementValueVisitor visitor)
Description copied from interface: Java.ElementValue
Invokes the 'visit...()' method of Visitor.ElementValueVisitor for the concrete Java.ElementValue type.

Specified by:
accept in interface Java.ElementValue

janino.net