-
- All Known Subinterfaces:
JsRuntime
- All Known Implementing Classes:
JavaHostRuntime
,JsHostRuntime
public interface HostRuntime
A collection of dynamically typed library descriptors representing a host runtime.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HostLibrary
getHostLibrary(String libraryName)
HostPackage
getHostPackage(String packageName)
HostType<?>
getHostType(Class<?> typeClass)
Collection<HostLibrary>
hostLibraries()
Collection<HostPackage>
hostPackages()
Collection<HostType<?>>
hostTypes()
-
-
-
Method Detail
-
getHostLibrary
HostLibrary getHostLibrary(String libraryName)
-
hostLibraries
Collection<HostLibrary> hostLibraries()
-
getHostPackage
HostPackage getHostPackage(String packageName)
-
hostPackages
Collection<HostPackage> hostPackages()
-
hostTypes
Collection<HostType<?>> hostTypes()
-
-