Package com.liferay.portlet.polls.ejb

Examples of com.liferay.portlet.polls.ejb.PollsChoicePK


    _choiceId = choiceId;
    _description = description;
  }

  public PollsChoicePK getPrimaryKey() {
    return new PollsChoicePK(_questionId, _choiceId);
  }
View Full Code Here


    }
    catch (ClassCastException cce) {
      return false;
    }

    PollsChoicePK pk = pollsChoice.getPrimaryKey();

    if (getPrimaryKey().equals(pk)) {
      return true;
    }
    else {
View Full Code Here

TOP

Related Classes of com.liferay.portlet.polls.ejb.PollsChoicePK

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.