blob: 823a6c10a244c0343250f3ece08ad7453cd4f639 [file] [log] [blame]
package org.eclipse.libra.framework.core;
import org.eclipse.pde.core.target.ITargetPlatformService;
import org.eclipse.pde.internal.core.PDECore;
@SuppressWarnings("restriction")
public class TargetDefinitionUtil {
public static ITargetPlatformService getTargetPlatformService() {
ITargetPlatformService service = (ITargetPlatformService) PDECore.getDefault().acquireService(ITargetPlatformService.class.getName());
return service;
}
}