}
superG.expandInPlace();
alreadyExpanded = true;
GrammarFile gf = hier_.getFile(getFileName());
gf.setExpanded(true);
IndexedVector inhRules = superG.getRules();
Rule r;
for (Enumeration e = inhRules.elements(); e.hasMoreElements(); inherit(r, superG))
{
r = (Rule) e.nextElement();
}
IndexedVector inhOptions = superG.getOptions();
if (inhOptions == null)
{
return;
}
Option o;
for (Enumeration e = inhOptions.elements(); e.hasMoreElements(); inherit(o, superG))
{
o = (Option) e.nextElement();
}
inherit(superG.memberAction_, superG);