Package com.subgraph.vega.ui.util.images

Examples of com.subgraph.vega.ui.util.images.ImageCache


  private Set<String> excludedParameterNames;
  private String targetFieldString;

  public NewScanWizard(String target, Collection<IIdentity> identities, List<IScannerModule> modules, Set<String> defaultExcludeParameters) {
    final IModel model = Activator.getDefault().getModel();
    imageCache = new ImageCache(Activator.PLUGIN_ID);
    final ImageDescriptor logo = ImageDescriptor.createFromImage(imageCache.get(VEGA_LOGO));
   
    targetPage = new NewScanTargetPage(model.getCurrentWorkspace(), target);
    targetPage.setImageDescriptor(logo);
   
View Full Code Here


 
  public RequestResponseViewer(SashForm parentForm) {
    super(parentForm, SWT.NONE);
    setLayout(new FormLayout());
    this.parentForm = parentForm;
    imageCache = new ImageCache(Activator.PLUGIN_ID);
    optionsMenu = createOptionsMenu(parentForm.getShell());
    toolbarComposite = createToolbarComposite(this);

    FormData fd = new FormData();
    fd.left = new FormAttachment(0);
View Full Code Here

TOP

Related Classes of com.subgraph.vega.ui.util.images.ImageCache

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.