Examples of LibrarySet


Examples of de.innovationgate.eclipse.wgadesigner.classpath.LibrarySet

    List<IClasspathEntry> entries = new ArrayList<IClasspathEntry>();
    IPath containerPath = new Path(WGALibrarySetContainer.ID)
    TableItem[] items = _tabLibraries.getItems();
    for (TableItem item : items) {
      if (item.getChecked()) {
        LibrarySet librarySet = (LibrarySet) item.getData();
        entries.add(JavaCore.newContainerEntry(containerPath.append(librarySet.getId())));
      }
    }             
    return entries.toArray(new IClasspathEntry[0]);
  }
View Full Code Here

Examples of net.sf.antcontrib.cpptasks.types.LibrarySet

    {  
    if (!type.equals("framework") && (dir == null))
        {
      throw new MojoFailureException("NAR: Please specify <Directory> as part of <Lib> for library \"" + name + "\"");
    }
    LibrarySet libSet = new LibrarySet();
    libSet.setProject(antProject);
    libSet.setLibs(new CUtil.StringArrayBuilder(name));
    LibraryTypeEnum libType = new LibraryTypeEnum();
    libType.setValue(type);
    libSet.setType(libType);
    libSet.setDir(dir);
    linker.addLibset(libSet);
  }
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.