Package org.chromium.debug.core

Examples of org.chromium.debug.core.SourceNameMapperContainer$TypeDelegate


    return containers.length == 1;
  }

  public ISourceContainer[] editSourceContainers(Shell shell, ISourceLookupDirector director,
      ISourceContainer[] containers) {
    final SourceNameMapperContainer originalContainer = (SourceNameMapperContainer) containers[0];
    SourceNameMapperContainerDialog.PresetFieldValues params =
        new SourceNameMapperContainerDialog.PresetFieldValues() {
      public ISourceContainer getContainer() {
        return originalContainer.getTargetContainer();
      }
      public String getPrefix() {
        return originalContainer.getPrefix();
      }
    };

    return openDialog(shell, director, params);
  }
View Full Code Here


    dialog.open();
    SourceNameMapperContainerDialog.Result dialogResult = dialog.getResult();
    if (dialogResult == null) {
      return new ISourceContainer[0];
    }
    ISourceContainer result = new SourceNameMapperContainer(dialogResult.getResultPrefix(),
        dialogResult.getResultContainer());
    return new ISourceContainer[] { result };
  }
View Full Code Here

TOP

Related Classes of org.chromium.debug.core.SourceNameMapperContainer$TypeDelegate

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.