Package org.onesocialweb.gwt.client.ui.window

Examples of org.onesocialweb.gwt.client.ui.window.ProfileWindow.show()


                  .getCurrentApplication();
              ProfileWindow profileWindow = (ProfileWindow) app
                  .addWindow(ProfileWindow.class.toString(),
                      1);
              profileWindow.setJID(input.getText());
              profileWindow.show();
            }

          });

    }
View Full Code Here


        AbstractApplication app = OswClient.getInstance()
            .getCurrentApplication();
        ProfileWindow profileWindow = (ProfileWindow) app.addWindow(
            ProfileWindow.class.toString(), 1);
        profileWindow.setJID(rosterItem.getJid());
        profileWindow.show();
      }
    });

    this.addMouseOverHandler(this);
    this.addMouseOutHandler(this);
View Full Code Here

            AbstractApplication app = OswClient.getInstance()
                .getCurrentApplication();
            ProfileWindow profileWindow = (ProfileWindow) app
                .addWindow(ProfileWindow.class.toString(), 1);
            profileWindow.setJID(recipientJID);
            profileWindow.show();
          }
        });
        authorWrapper.add(label);

        if (recipients.hasNext()) {
View Full Code Here

        AbstractApplication app = OswClient.getInstance()
            .getCurrentApplication();
        ProfileWindow profileWindow = (ProfileWindow) app.addWindow(
            ProfileWindow.class.toString(), 1);
        profileWindow.setJID(activity.getActor().getUri());
        profileWindow.show();
      }
    });

    // Fetch the avatar image
    service.getProfile(activity.getActor().getUri(),
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.