/******************************************************************************* * This file is part of the Symfony eclipse plugin. * * (c) Robert Gruendler <r.gruendler@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. ******************************************************************************/ package com.dubture.symfony.ui.contentassist; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.dltk.core.CompletionProposal; import org.eclipse.dltk.core.IScriptProject; import org.eclipse.dltk.core.ModelException; import org.eclipse.dltk.ui.text.completion.MemberProposalInfo; import com.dubture.symfony.core.log.Logger; import com.dubture.symfony.core.model.Service; import com.dubture.symfony.ui.utils.HTMLUtils; /** * * * * @author Robert Gruendler <r.gruendler@gmail.com> * */ public class ServiceProposalInfo extends MemberProposalInfo { public ServiceProposalInfo(IScriptProject project, CompletionProposal proposal) { super(project, proposal); } @Override public String getInfo(IProgressMonitor monitor) { try { return HTMLUtils.service2Html((Service) getModelElement()); } catch (ModelException e) { Logger.logException(e); return ""; } } }