Details
-
Type: Improvement
-
Status: Closed
-
Priority: Default
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.3.1
-
Component/s: None
-
Labels:None
-
Environment:Unix / Windows
Description
Can the accessiblity of the follwing methods in FieldMap class be changed from Default to Public ?
/* package */
List<Group> getGroups(int field) {
List<Group> groupList = groups.get(field);
if (groupList == null)
return groupList;
}
int getGroupCount(int tag)
{ return getGroups(tag).size(); }Map<Integer,List<Group>> getGroups()
{ return groups; }It will be really helpful in order to iterate through the groups in the message generically.