use of org.erlide.engine.internal.model.root.ErlOtpLibrary in project erlide_eclipse by erlang.
the class ErlModel method createLibrary.
public IErlLibrary createLibrary(final RuntimeVersion version) {
if (version == null) {
return null;
}
final IErlLibrary ep = new ErlOtpLibrary(version, this);
addChild(ep);
return ep;
}
Aggregations