blob: 9d945b0ffe60640184145e262705d9f3a0550f81 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.runtimemanager;
import java.util.Collection;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.osee.framework.ui.workspacebundleloader.JarCollectionNature;
public class OteSystemLibsNature extends JarCollectionNature {
public static final String NATURE_ID = "org.eclipse.osee.ote.runtimeManager.OteSystemLibsNature";
private static final String BUNDLE_PATH_ATTRIBUTE = "OteBundlePath";
public OteSystemLibsNature() {
super(BUNDLE_PATH_ATTRIBUTE);
}
public static Collection<OteSystemLibsNature> getWorkspaceProjects() throws CoreException {
return getWorkspaceProjects(NATURE_ID, OteSystemLibsNature.class);
}
}