我需要按日期对状态报告进行排序。在我调用 addItem 方法之前,应该完成排序,否则我必须按报告日期与以前的报告进行比较。需要说明的是,可以使用getReportDate()[类型为JVDate]的方法来获取状态报告的报告日期。请您帮忙对状态报告进行排序:
public void doImport( TRDataReader in )
throws IOException, TRException
{
in.start( getClassTag() ); // get the class tag
// import the set's flags from a datareader
importFlags( in );
beginLoad ();
final String restag = new TRStatusReport().getClassTag ();
while (in.nextToken (restag)) {
addItem (new TRStatusReport (in));
}
endLoad ();
in.end (getClassTag ());
}