blob: 5b7ad179e970aec62042cffc1d2e611eb2c8fa6c [file] [log] [blame]
package org.eclipse.releng.build.tools.convert.application;
import org.eclipse.equinox.app.IApplication;
import org.eclipse.equinox.app.IApplicationContext;
import org.eclipse.releng.build.tools.convert.ant.Converter;
public class LogConverter implements IApplication {
@Override
public Object start(final IApplicationContext context) throws Exception {
final String[] args = (String[]) context.getArguments().get(IApplicationContext.APPLICATION_ARGS);
Converter.main(args);
return IApplication.EXIT_OK;
}
@Override
public void stop() {
// nothing to do
}
}