Package com.bc.ceres.core.runtime
Interface Dependency
-
public interface Dependency
An dependency declared in a module.If
declared
in a module manifest (module.xml), a dependency has the following syntax:<dependency> <module>
moduleId
</module> <version>version
</version> </dependency>Or for libraries:
<dependency> <lib>
This interface is not intended to be implemented by clients.libName
</lib> <version>version
</version> </dependency>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Module
getDeclaringModule()
String
getLibName()
String
getModuleSymbolicName()
String
getVersion()
boolean
isOptional()
-