Package clips.delegate.client

Examples of clips.delegate.client.CollaboratorFunctionsChunk


            throw new ClipsException();
        }
        CollaboratorLocal collab = new CollaboratorLocal(certificateLocal.getCollaborator().getID(), null);//NULL AL
        Selector<CollaboratorFunctionsChunk> funcList = collab.getFunctions();
        for (int i = 0; i < funcList.size(); i++) {
            CollaboratorFunctionsChunk function = funcList.get(i);
            if (defaultid == 0) {
                defaultid = function.getId();
            }
            DirectoryDvrItem item = function.getDvr();
            if (item != null) {
                PairIntStr pair = new PairIntStr(item.getID(), item.getTitle());
                allItems.add(pair);
            }
        }
View Full Code Here


    private String getExtraText(CollaboratorLocal coll) throws ClipsException {
        SelectorEditable<CollaboratorFunctionsChunk> it = coll.getFunctions();
        HashSet<DirectorySpecialityItem> specSet = new HashSet<DirectorySpecialityItem>();
        for (int i = 0; i < it.size(); i++) {
            CollaboratorFunctionsChunk cfc = it.get(i);
            specSet.add(cfc.getSpeciality());
        }
        String s = "";
        for (Iterator<DirectorySpecialityItem> it1 = specSet.iterator(); it1.hasNext();) {
            DirectorySpecialityItem spec = it1.next();
            s = s + spec.toString();
View Full Code Here

TOP

Related Classes of clips.delegate.client.CollaboratorFunctionsChunk

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.