uimaj-ep-deployeditor/src/main/java/org/apache/uima/dde/internal/details/EmptyDetailsPage.java [81:168]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            10, 5, TableWrapData.FILL_GRAB, TableWrapData.FILL_GRAB, 1, 1);
    final SectionPart spart = new SectionPart(section);
    mform.addPart(spart);
    spart.initialize(mform); // Need this code. Otherwise, exception in SectionPart !!!
    section.setExpanded(true);

    // /////////////////////////////////////////////////////////////////////

    Composite sectionClient = toolkit.createComposite(section);
    section.setClient(sectionClient);
    TableWrapLayout tl = new TableWrapLayout();
    tl.numColumns = 2;
    tl.leftMargin = 10;
    tl.rightMargin = 10;
    tl.topMargin = 10;
    tl.bottomMargin = 10;
    sectionClient.setLayout(tl);

    // /////////////////////////////////////////////////////////////////////

    return section;
  }

  protected void displayDetails(RemoteAEDeploymentMetaData obj) {
    // textBrokerURL.setText(obj.getInputQueue().getBrokerURL());
    // textEndPoint.setText(obj.getInputQueue().getEndPoint());
    //        
    // if (obj.getReplyQueueLocation() != null) {
    // int i = remoteQueueLocation.indexOf(obj.getReplyQueueLocation());
    // if (i >= 0) {
    // remoteQueueLocation.select(i);
    // }
    // }
  }

  /** ********************************************************************** */

  public void commit(boolean onSave) {
    // TODO Auto-generated method stub

  }

  public void dispose() {
    // TODO Auto-generated method stub

  }

  public void initialize(IManagedForm form) {
    this.mform = form;
  }

  public boolean isDirty() {
    // TODO Auto-generated method stub
    return false;
  }

  public boolean isStale() {
    // TODO Auto-generated method stub
    return false;
  }

  public void refresh() {
    // TODO Auto-generated method stub

  }

  public void setFocus() {
    // TODO Auto-generated method stub

  }

  public boolean setFormInput(Object input) {
    // TODO Auto-generated method stub
    return false;
  }

  public void selectionChanged(IFormPart part, ISelection selection) {
    if (selection == null || !(selection instanceof IStructuredSelection)) {
      return;
    }
    IStructuredSelection ssel = (IStructuredSelection) selection;
    if (ssel.size() != 1) {
      return;
    }

    selectedObject = ssel.getFirstElement();
    if (selectedObject instanceof RemoteAEDeploymentMetaData) {
      displayDetails((RemoteAEDeploymentMetaData) selectedObject);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uimaj-ep-deployeditor/src/main/java/org/apache/uima/dde/internal/details/TemplateDetailsPage.java [81:168]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            10, 5, TableWrapData.FILL_GRAB, TableWrapData.FILL_GRAB, 1, 1);
    final SectionPart spart = new SectionPart(section);
    mform.addPart(spart);
    spart.initialize(mform); // Need this code. Otherwise, exception in SectionPart !!!
    section.setExpanded(true);

    // /////////////////////////////////////////////////////////////////////

    Composite sectionClient = toolkit.createComposite(section);
    section.setClient(sectionClient);
    TableWrapLayout tl = new TableWrapLayout();
    tl.numColumns = 2;
    tl.leftMargin = 10;
    tl.rightMargin = 10;
    tl.topMargin = 10;
    tl.bottomMargin = 10;
    sectionClient.setLayout(tl);

    // /////////////////////////////////////////////////////////////////////

    return section;
  }

  protected void displayDetails(RemoteAEDeploymentMetaData obj) {
    // textBrokerURL.setText(obj.getInputQueue().getBrokerURL());
    // textEndPoint.setText(obj.getInputQueue().getEndPoint());
    //        
    // if (obj.getReplyQueueLocation() != null) {
    // int i = remoteQueueLocation.indexOf(obj.getReplyQueueLocation());
    // if (i >= 0) {
    // remoteQueueLocation.select(i);
    // }
    // }
  }

  /** ********************************************************************** */

  public void commit(boolean onSave) {
    // TODO Auto-generated method stub

  }

  public void dispose() {
    // TODO Auto-generated method stub

  }

  public void initialize(IManagedForm form) {
    this.mform = form;
  }

  public boolean isDirty() {
    // TODO Auto-generated method stub
    return false;
  }

  public boolean isStale() {
    // TODO Auto-generated method stub
    return false;
  }

  public void refresh() {
    // TODO Auto-generated method stub

  }

  public void setFocus() {
    // TODO Auto-generated method stub

  }

  public boolean setFormInput(Object input) {
    // TODO Auto-generated method stub
    return false;
  }

  public void selectionChanged(IFormPart part, ISelection selection) {
    if (selection == null || !(selection instanceof IStructuredSelection)) {
      return;
    }
    IStructuredSelection ssel = (IStructuredSelection) selection;
    if (ssel.size() != 1) {
      return;
    }

    selectedObject = ssel.getFirstElement();
    if (selectedObject instanceof RemoteAEDeploymentMetaData) {
      displayDetails((RemoteAEDeploymentMetaData) selectedObject);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



