An implementation of TagExtraInfo that implements validation for ForEachTag's attributes
/* * Currently implements the following rules: * * - If 'items' is not specified, 'begin' and 'end' must be */ if (!Util.isSpecified(us, ITEMS)) if (!Util.isSpecified(us, BEGIN) || !(Util.isSpecified(us, END))) return false; return true;