Examples of ProfileImagePanel


Examples of org.apache.openmeetings.web.common.ProfileImagePanel

 
  public UserProfilePanel(String id, long userId) {
    super(id);

    User u = getBean(UserDao.class).get(userId);
    add(new ProfileImagePanel("img", userId));
    add(new Label("firstname", u.getFirstname()));
    add(new Label("lastname", u.getLastname()));
    add(new Label("tz", u.getTimeZoneId()));
    add(new Label("created", u.getRegdate()));
    add(new TextArea<String>("offer", Model.of(u.getUserOffers())).setEnabled(false));
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.