Package de.circleofcontacts.client.view

Examples of de.circleofcontacts.client.view.ContactGroupSummaryView


    // Add event handlers
    this.circles.addSelectionHandler(new SelectionHandler<TreeItem>() {
      public void onSelection(SelectionEvent<TreeItem> event) {
        if (event.getSelectedItem() instanceof CircleWidget) {
          ContactGroupSummaryView group = ((CircleWidget)event.getSelectedItem()).getGroup();
          friends.update(group);
        } else {
          friends.clear();
        }
      }
View Full Code Here


  private ContactGroupSummaryView group;
  private TextBox labelTextBox;
 
  public ContactGroupEditor(ContactGroupSummaryView gr) {
    if (gr == null) {
      gr = new ContactGroupSummaryView();
      setText("Neue Gruppe");
    } else
      setText("Gruppe bearbeiten");
   
    this.dialog = this;
View Full Code Here

TOP

Related Classes of de.circleofcontacts.client.view.ContactGroupSummaryView

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.