/******************************************************************************* * 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.ui.text.completion.MemberProposalInfo; import com.dubture.symfony.core.model.Bundle; import com.dubture.symfony.ui.utils.HTMLUtils; /** * * * * @author "Robert Gruendler <r.gruendler@gmail.com>" * */ public class BundleProposalInfo extends MemberProposalInfo { public BundleProposalInfo(IScriptProject project, CompletionProposal proposal) { super(project, proposal); } @Override public String getInfo(IProgressMonitor monitor) { try { return HTMLUtils.bundle2Html((Bundle) getModelElement()); } catch (Exception e) { e.printStackTrace(); } return ""; } }