Package org.domain.model.component.interest

Examples of org.domain.model.component.interest.Interest


    Interests interests = new Interests(topic);
    try {
      User user;
      for (Iterator x = iterator(); x.hasNext();) {
        user = (User) x.next();
        Interest interest = user.getInterest(topic);
        if (interest != null) {
          interests.add(interest);
        }
      }
    } catch (ActionException e) {
View Full Code Here

TOP

Related Classes of org.domain.model.component.interest.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.