//but not attempted as it seems out of the scope of this
//check.
final DetailAST typeMods = aAST.findFirstToken(TokenTypes.MODIFIERS);
final boolean isStaticInnerType =
(typeMods != null)
&& typeMods.branchContains(TokenTypes.LITERAL_STATIC);
final FieldFrame frame =
new FieldFrame(mCurrentFrame, isStaticInnerType);
//add fields to container
final DetailAST objBlock = aAST.findFirstToken(TokenTypes.OBJBLOCK);