/******************************************************************************* * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * * Contributors: * Kamesh Sampath - initial implementation * Gregory Amerson - Ongoing maintenance ******************************************************************************/ package com.liferay.ide.hook.core.model.internal; import com.liferay.ide.core.IWebProject; import com.liferay.ide.core.LiferayCore; import com.liferay.ide.hook.core.model.Hook; import java.util.ArrayList; import java.util.List; import org.eclipse.core.resources.IFolder; import org.eclipse.core.resources.IProject; import org.eclipse.sapphire.modeling.Path; import org.eclipse.sapphire.services.RelativePathService; /** * @author Kamesh Sampath * @author Gregory Amerson */ public class DocrootRelativePathService extends RelativePathService { @Override public List<Path> roots() { final List<Path> roots = new ArrayList<Path>(); final Hook hook = context( Hook.class ); if( hook != null ) { final IProject project = hook.adapt( IProject.class ); // IDE-110 final IWebProject lrproject = LiferayCore.create( IWebProject.class, project ); if( lrproject != null ) { final IFolder defaultDocroot = lrproject.getDefaultDocrootFolder(); if( defaultDocroot != null && defaultDocroot.exists() ) { roots.add( new Path( defaultDocroot.getLocation().toPortableString() ) ); } } } return roots; } }