Package utils

Examples of utils.SimplePair


     * @return
     */
    private List<Integer> findInTicketMap(Collaborator collaborator, WorkType workType) {
        log.debug("findInTicketMap: " + collaborator + ", " + workType);

        SimplePair findPair = new SimplePair(collaborator.getId(), workType.getId());
        List<Integer> list = ticketMap.get(findPair);
        if (list == null) {
            list = new Vector<Integer>();
            ticketMap.put(findPair, list);
        }
View Full Code Here

TOP

Related Classes of utils.SimplePair

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.