Package org.osmorc.manifest

Examples of org.osmorc.manifest.ManifestHolderDisposedException


  @Nullable
  public BundleManifest getBundleManifest() throws ManifestHolderDisposedException {
    // FIX for EA-23586
    if (isDisposed()) {
      throw new ManifestHolderDisposedException();
    }

    if (myBundleManifest == null) {

      VirtualFile[] classRoots = myLibrary.getFiles(OrderRootType.CLASSES);
View Full Code Here


  private static final Map<String, LibraryManifestHolderImpl> myHolderCache = new HashMap<String, LibraryManifestHolderImpl>();

  @Override
  public Object getBoundObject() throws ManifestHolderDisposedException {
    if (isDisposed()) {
      throw new ManifestHolderDisposedException();
    }
    return myLibrary;
  }
View Full Code Here

  }

  @Nullable
  public BundleManifest getBundleManifest() throws ManifestHolderDisposedException {
    if (isDisposed()) {
      throw new ManifestHolderDisposedException();
    }

    if (myBundleManifest != null) {
      VirtualFile cachedFile = myBundleManifest.getManifestFile().getVirtualFile();
      VirtualFile fileFromSettings = getManifestFile();
View Full Code Here

  }

  @Override
  public Object getBoundObject() throws ManifestHolderDisposedException {
    if (isDisposed()) {
      throw new ManifestHolderDisposedException();
    }
    return myModule;
  }
View Full Code Here

TOP

Related Classes of org.osmorc.manifest.ManifestHolderDisposedException

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.