Examples of CinemaAuditorium


Examples of reserv.entity.CinemaAuditorium

    @Override
  public Object getAsObject(FacesContext context, UIComponent component, String value) {
    Integer i = Integer.valueOf(value);
    EntityManager em = DBManager.getManager().createEntityManager();
    CinemaAuditorium m = em.find(CinemaAuditorium.class, i);
    em.close();
    return m;
  }
View Full Code Here

Examples of reserv.entity.CinemaAuditorium

    @Override
  public String getAsString(FacesContext context, UIComponent component, Object value) {
    if(!(value instanceof CinemaAuditorium))
      throw new ConverterException(new FacesMessage("Konwersja się nie udała."));
    CinemaAuditorium p = (CinemaAuditorium)value;
    return p.getId().toString();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.