ContextObjectSupplier sub = (ContextObjectSupplier) req
.getPrimarySupplier();
final IEclipseContext context = sub.getContext();
final Class<?> requestingClass = requestor.getRequestingObject().getClass();
return new FXMLLoaderFactory() {
public <N> FXMLBuilder<N> loadRequestorRelative(String relativePath) {
return InjectingFXMLLoader.create(context, requestingClass, relativePath);
}