Package aQute.bnd.differ.Baseline

Examples of aQute.bnd.differ.Baseline.BundleInfo


        List<MarkerData> result = new LinkedList<MarkerData>();

        IFile bndFile = null;
        LineLocation loc = null;

        BundleInfo info = (BundleInfo) location.details;
        for (Builder builder : model.getSubBuilders()) {
            if (builder.getBsn().equals(info.bsn)) {
                File propsFile = builder.getPropertiesFile();
                // Try to find in the sub-bundle file
                if (propsFile != null) {
View Full Code Here


    if (opts.fixup() != null) {
      out = new PrintStream(bnd.getFile(opts.fixup()), "UTF-8");
    }

    Set<Info> infos = baseline.baseline(newer, older, null);
    BundleInfo bundleInfo = baseline.getBundleInfo();

    Info[] sorted = infos.toArray(new Info[infos.size()]);
    Arrays.sort(sorted, new Comparator<Info>() {
      public int compare(Info o1, Info o2) {
        return o1.packageName.compareTo(o2.packageName);
View Full Code Here

    b.setProperty("-resourceonly", "true");
    Jar bj = b.build();

    Set<Info> infoSet = baseline.baseline(aj, bj, null);

    BundleInfo binfo = baseline.getBundleInfo();
    assertFalse(binfo.mismatch);

    a.close();
    b.close();
  }
View Full Code Here

    if (opts.fixup() != null) {
      out = new PrintStream(bnd.getFile(opts.fixup()), "UTF-8");
    }

    Set<Info> infos = baseline.baseline(newer, older, null);
    BundleInfo bundleInfo = baseline.getBundleInfo();

    Info[] sorted = infos.toArray(new Info[infos.size()]);
    Arrays.sort(sorted, new Comparator<Info>() {
      public int compare(Info o1, Info o2) {
        return o1.packageName.compareTo(o2.packageName);
View Full Code Here

    if (opts.fixup() != null) {
      out = new PrintStream(bnd.getFile(opts.fixup()), "UTF-8");
    }

    Set<Info> infos = baseline.baseline(newer, older, null);
    BundleInfo bundleInfo = baseline.getBundleInfo();

    Info[] sorted = infos.toArray(new Info[infos.size()]);
    Arrays.sort(sorted, new Comparator<Info>() {
      public int compare(Info o1, Info o2) {
        return o1.packageName.compareTo(o2.packageName);
View Full Code Here

TOP

Related Classes of aQute.bnd.differ.Baseline.BundleInfo

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.