Package com.liferay.portlet.polls.ejb

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


    _portletId = portletId;
    _questionId = questionId;
  }

  public PollsDisplayPK getPrimaryKey() {
    return new PollsDisplayPK(_userId, _portletId);
  }
View Full Code Here


    if (obj == null) {
      return -1;
    }

    PollsDisplay pollsDisplay = (PollsDisplay)obj;
    PollsDisplayPK pk = pollsDisplay.getPrimaryKey();

    return getPrimaryKey().compareTo(pk);
  }
View Full Code Here

    }
    catch (ClassCastException cce) {
      return false;
    }

    PollsDisplayPK pk = pollsDisplay.getPrimaryKey();

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

TOP

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

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.