Coverage details for ui.util.SortStrategy

LineHitsSource
1 /*******************************************************************************
2  * InternetCafe is a software solution that helps the management of Cybercafes
3  * according with the ITALIAN DECREE LAW ON ANTI-TERROR MEASURES, 27 JULY 2005.
4  * Copyright (C) 2006 Guido Angelo Ingenito
5  
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
130 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
150 *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19  *******************************************************************************/
200 
210package ui.util;
220 
230import java.util.Date;
240import java.util.Vector;
25 import java.util.regex.Matcher;
26 import java.util.regex.Pattern;
27  
280import org.apache.log4j.Logger;
290 
300import base.session.Session;
31 import base.user.User;
32  
330public class SortStrategy {
34  
350    private static final transient Logger logger = Logger
360            .getLogger(SortStrategy.class.getName());
370 
380    public static Session[] searchSessionByText(String expression,
390            Session[] session) {
400        Vector<Session> result = new Vector<Session>();
410        Pattern pattern = Pattern.compile(expression);
420        for (int i = 0; i < session.length; i++) {
430            User user = session[i].getUser();
440            Matcher matcher = pattern.matcher(user.getName()
450                    + user.getSurname() + user.getNickname()
460                    + session[i].getDescription()
470                    + session[i].getWorkstation().getName());
480            if (matcher.find()) {
490                result.add(session[i]);
500                logger.debug(session[i]);
51             }
52         }
530        return result.toArray(new Session[0]);
54     }
55  
56     public static Session[] searchSessionByDate(Date date, Session[] session) {
570        Vector<Session> result = new Vector<Session>();
580        for (int i = 0; i < session.length; i++) {
590            if (session[i].getStartTime().getTime() >= date.getTime()) {
600                result.add(session[i]);
610                logger.debug(session[i]);
62             }
63         }
640        return result.toArray(new Session[0]);
65     }
66  
67 }

this report was generated by version 1.0.5 of jcoverage.
visit www.jcoverage.com for updates.

copyright © 2003, jcoverage ltd. all rights reserved.
Java is a trademark of Sun Microsystems, Inc. in the United States and other countries.