Skip to content

Commit

Permalink
small javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
JPMoresmau committed Feb 9, 2015
1 parent b5f6922 commit 9e7be78
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net.sf.eclipsefp.haskell-feature/feature.xml
Expand Up @@ -144,7 +144,7 @@ available at http://www.eclipse.org/legal/epl-v10.html.
id="net.sf.eclipsefp.haskell.browser"
download-size="0"
install-size="0"
version="2.6.4.qualifier"
version="2.6.5.qualifier"
unpack="false"/>

<plugin
Expand Down
2 changes: 1 addition & 1 deletion net.sf.eclipsefp.haskell.browser/META-INF/MANIFEST.MF
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %bundleName
Bundle-SymbolicName: net.sf.eclipsefp.haskell.browser; singleton:=true
Bundle-Version: 2.6.4.qualifier
Bundle-Version: 2.6.5.qualifier
Bundle-Localization: plugin
Bundle-Activator: net.sf.eclipsefp.haskell.browser.BrowserPlugin
Require-Bundle: org.eclipse.ui;bundle-version="3.2.0",
Expand Down
Expand Up @@ -130,10 +130,22 @@ public boolean isAnyDatabaseLoaded() {
return isLocalDatabaseLoaded() || isHackageDatabaseLoaded();
}

/**
* have we successfully loaded the local database?
* @return
*/
public abstract boolean isLocalDatabaseLoaded();

/**
* have we successfullly loaded the hackage database
* @return
*/
public abstract boolean isHackageDatabaseLoaded();

/**
* have we successfully initialized Hoogle?
* @return
*/
public abstract boolean isHoogleLoaded();

protected abstract void loadLocalDatabaseInternal(String path, boolean rebuild) throws IOException, JSONException;
Expand Down

0 comments on commit 9e7be78

Please sign in to comment.