Package easyJ.system.data

Examples of easyJ.system.data.Interest


            SysUserCache userCache = (SysUserCache) request.getSession()
                    .getAttribute(Globals.SYS_USER_CACHE);
            ArrayList list = (ArrayList) userCache.getInterests();
            int size = list.size();
            for (int i = 0; i < size; i++) {
                Interest interest = (Interest) list.get(i);
                if (patternPosition.equalsIgnoreCase(interest
                        .getPatternPosition()))
                    out.print(HtmlClientComponentService
                            .getInterestHtml(interest));
            }
        } catch (IOException e) {
View Full Code Here

TOP

Related Classes of easyJ.system.data.Interest

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.