use of org.eclipse.wst.common.project.facet.core.IProjectFacet in project sling by apache.
the class ConfigurationHelper method convertToLaunchpadProject.
public static void convertToLaunchpadProject(IProject project, IPath modelsDirectoryPath) throws CoreException {
IProjectFacet facet = ProjectFacetsManager.getProjectFacet("sling.launchpad");
IFacetedProject fp2 = ProjectFacetsManager.create(project, true, null);
fp2.installProjectFacet(facet.getLatestVersion(), null, null);
project.refreshLocal(IResource.DEPTH_INFINITE, new NullProgressMonitor());
if (modelsDirectoryPath != null) {
ProjectUtil.setProvisioningModelPath(project, modelsDirectoryPath);
}
}
use of org.eclipse.wst.common.project.facet.core.IProjectFacet in project sling by apache.
the class ConfigurationHelper method convertToBundleProject.
public static void convertToBundleProject(IProject aBundleProject) throws CoreException {
IProjectFacet slingContentFacet = ProjectFacetsManager.getProjectFacet("sling.bundle");
IFacetedProject fp2 = ProjectFacetsManager.create(aBundleProject, true, null);
fp2.installProjectFacet(slingContentFacet.getLatestVersion(), null, null);
aBundleProject.refreshLocal(IResource.DEPTH_INFINITE, new NullProgressMonitor());
}
use of org.eclipse.wst.common.project.facet.core.IProjectFacet in project liferay-ide by liferay.
the class JSFPortletFramework method configureNewProject.
@Override
public IStatus configureNewProject(IDataModel dataModel, IFacetedProjectWorkingCopy facetedProject) {
IProjectFacetVersion jsfFacetVersion = getJSFProjectFacet(facetedProject);
IProjectFacet jsfFacet = PortletCore.JSF_FACET;
if (jsfFacetVersion == null) {
jsfFacetVersion = jsfFacet.getVersion(JSF_FACET_SUPPORTED_VERSION);
facetedProject.addProjectFacet(jsfFacetVersion);
}
Action action = facetedProject.getProjectFacetAction(jsfFacet);
IDataModel jsfFacetDataModel = (IDataModel) action.getConfig();
// TODO IDE-648 IDE-110
jsfFacetDataModel.setProperty(SERVLET_URL_PATTERNS, null);
jsfFacetDataModel.setProperty(WEBCONTENT_DIR, ISDKConstants.DEFAULT_DOCROOT_FOLDER);
LibraryInstallDelegate libraryInstallDelegate = (LibraryInstallDelegate) jsfFacetDataModel.getProperty(LIBRARY_PROVIDER_DELEGATE);
List<ILibraryProvider> providers = libraryInstallDelegate.getLibraryProviders();
ILibraryProvider noOpProvider = null;
for (ILibraryProvider provider : providers) {
if (provider.getId().equals("jsf-no-op-library-provider")) {
noOpProvider = provider;
break;
}
}
if (noOpProvider != null) {
libraryInstallDelegate.setLibraryProvider(noOpProvider);
}
return Status.OK_STATUS;
}
use of org.eclipse.wst.common.project.facet.core.IProjectFacet in project liferay-ide by liferay.
the class LiferayProjectPropertyPage method createInfoGroup.
protected void createInfoGroup(final Composite parent) {
new Label(parent, SWT.LEFT).setText(Msgs.liferayPluginTypeLabel);
final Text pluginTypeLabel = new Text(parent, SWT.READ_ONLY | SWT.BORDER);
pluginTypeLabel.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false, 2, 1));
final IProjectFacet liferayFacet = ProjectUtil.getLiferayFacet(getFacetedProject());
if (liferayFacet != null) {
pluginTypeLabel.setText(liferayFacet.getLabel());
}
final IProject proj = getProject();
if ((proj != null) && ProjectUtil.isLiferayFacetedProject(proj)) {
try {
if (!ProjectUtil.isMavenProject(proj)) {
final SDK projectSdk = SDKUtil.getSDK(getProject());
new Label(parent, SWT.LEFT).setText(Msgs.liferaySdkLabel);
_sdkLabel = new Text(parent, SWT.READ_ONLY | SWT.BORDER);
if (projectSdk != null) {
_sdkLabel.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false, 2, 1));
_sdkLabel.setText(projectSdk.getName());
} else {
_sdkLabel.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false, 1, 1));
_sdkLabel.setText("");
final Hyperlink link = new Hyperlink(parent, SWT.NULL);
link.setLayoutData(new GridData(SWT.RIGHT, SWT.TOP, false, false, 1, 1));
link.setForeground(parent.getDisplay().getSystemColor(SWT.COLOR_BLUE));
link.setUnderlined(true);
link.setText(Msgs.changeliferaySdk);
link.addHyperlinkListener(new HyperlinkAdapter() {
public void linkActivated(HyperlinkEvent e) {
String dialogId = new String("com.liferay.ide.project.ui.dialog.SelectPluginsSDKDialog");
final LiferayPluginSDKOp op = (LiferayPluginSDKOp) (LiferayPluginSDKOp.TYPE.instantiate().initialize());
DefinitionLoader sdefLoader = DefinitionLoader.context(getClass()).sdef(dialogId);
final Reference<DialogDef> dialogRef = sdefLoader.dialog("ConfigureLiferaySDK");
final SapphireDialog dialog = new SapphireDialog(UIUtil.getActiveShell(), op, dialogRef);
dialog.setBlockOnOpen(true);
final int result = dialog.open();
if (result != SapphireDialog.CANCEL) {
_sdkLabel.setText(op.getPluginsSDKName().content());
}
}
});
}
if (CoreUtil.compareVersions(new Version(projectSdk.getVersion()), ILiferayConstants.V700) < 0) {
new Label(parent, SWT.LEFT).setText(Msgs.liferayRuntimeLabel);
_runtimeCombo = new Combo(parent, SWT.DROP_DOWN | SWT.READ_ONLY);
_runtimeCombo.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false, 2, 1));
String currentRuntimeName = null;
try {
ILiferayRuntime liferayRuntime = ServerUtil.getLiferayRuntime(getProject());
if (liferayRuntime != null) {
currentRuntimeName = liferayRuntime.getRuntime().getName();
}
} catch (Exception e) {
ProjectUI.logError("Could not determine liferay runtime", e);
}
List<String> runtimeNames = new ArrayList<>();
int selectionIndex = -1;
for (IRuntime runtime : ServerCore.getRuntimes()) {
if (ServerUtil.isLiferayRuntime(runtime) && FileUtil.exists(runtime.getLocation()) && (LiferayServerCore.newPortalBundle(runtime.getLocation()) == null)) {
runtimeNames.add(runtime.getName());
if (runtime.getName().equals(currentRuntimeName)) {
selectionIndex = runtimeNames.size() - 1;
}
}
}
if (ListUtil.isEmpty(runtimeNames)) {
runtimeNames.add("No Liferay runtimes available.");
}
_runtimeCombo.setItems(runtimeNames.toArray(new String[0]));
if (selectionIndex > -1) {
_runtimeCombo.select(selectionIndex);
}
}
}
} catch (Exception e) {
ProjectUI.logError("Could not determine whether its a maven project ", e);
}
}
}
use of org.eclipse.wst.common.project.facet.core.IProjectFacet in project liferay-ide by liferay.
the class SDKProjectConvertDataModelProvider method init.
@Override
public void init() {
super.init();
// set the project facets to get the runtime target dropdown to only show liferay runtimes
IFacetedProjectWorkingCopy facetedProject = getFacetedProjectWorkingCopy();
Set<IProjectFacetVersion> facets = ProjectUtil.getFacetsForPreset(IPluginFacetConstants.LIFERAY_PORTLET_PRESET);
Set<IProjectFacet> fixedFacets = new HashSet<>();
for (IProjectFacetVersion pfv : facets) {
fixedFacets.add(pfv.getProjectFacet());
}
facetedProject.setFixedProjectFacets(Collections.unmodifiableSet(fixedFacets));
}
Aggregations