What do these lines of code do?
private interface ComparisonCallback<ComparisonT>
{
public ComparisonT getComparisonValue(CVRDataElement e);
}
followed by this method declaration:
public <ComparisonType> List<MyDataTable> getGenericSubTable(ComparisonCallback<ComparisonType> cc)
Specifically, I don't understand the ComparisonType tag - does this have to do with generics?