I have a table that outputs certain rows.But they are from different groups and the different groups are stored in different vectors.At present i am adding all the rows using the following code :
m_vector.addAll(match1);
m_vector.addAll(match2);
..
m_vector.addAll(matchn);
Here match 1 to match n are the different sections.I Want to insert rows in between these statements that act as separators of these sections.
Now I want to add a separator between different sections (a group of rows) of my table. And I want to be able to put text in it too, to describe what the different sections are about. What is the best approach to do this, especially in terms of simplicity of implementation (cause I already have a bunch of code working a certain way, I want to minimize the changes, if any needed...).