# Interface: com.pnfsoftware.jeb.core.units.code.java.IJavaArrayElt

Java AST interface to represent the element of an array. 

 Example:  

```

 array[index] = ...
 ^^^^^^^^^^^^
 
```

## Method: duplicate
- return type: `com.pnfsoftware.jeb.core.units.code.java.IJavaArrayElt`


## Method: getArray
- return type: `com.pnfsoftware.jeb.core.units.code.java.IJavaExpression`

Description: Get the array expression.
return: the array expression

## Method: getIndex
- return type: `com.pnfsoftware.jeb.core.units.code.java.IJavaExpression`

Description: Get the index expression.
return: the index expression

## Method: setArray
- parameter: `array`, type: `com.pnfsoftware.jeb.core.units.code.java.IJavaExpression`

Description: Set the array expression.
parameter: array: mandatory array expression

## Method: setIndex
- parameter: `index`, type: `com.pnfsoftware.jeb.core.units.code.java.IJavaExpression`

Description: Set the index expression.
parameter: index: mandatory index expression

