Package beans.followup.search

Examples of beans.followup.search.FollowupData


    }

    @Override
    public Object getValueAt(int row, int col) {
        try {
            FollowupData data = followupList.get(row);
            switch (col) {
                case COL_CLIENT: {                                       
                    return data.fio;
                }
                case COL_DATEUP: {
View Full Code Here


    }

    @Override
    public void setValueAt(Object aValue, int row, int column) {       
        try {
            FollowupData data = followupList.get(row);
            FollowupLocal followUp = new FollowupLocal(data.details, new SerRenLocal(data.details.serrenUpID, am), am);
            if (column == COL_CALLED) {               
                FollowupEventData event = followUp.getLastEvent();
                event.setCalled((Boolean) aValue);
                followUp.save1();
View Full Code Here

TOP

Related Classes of beans.followup.search.FollowupData

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.