001    /* a pair of brackets containing an expression */
002    
003    package com.sun.source.tree;
004    
005    public interface BracketExprTree extends ExpressionTree {
006        ExpressionTree getBody();
007        boolean isSafe();
008        void setSafe(boolean safe);
009    }