blob: 1efc1710bcffef6d3319263802d00d0cca889258 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.nls.sdk.internal.ui.action;
import java.util.List;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
import org.eclipse.scout.nls.sdk.internal.NlsCore;
import org.eclipse.scout.nls.sdk.model.INlsEntry;
import org.eclipse.scout.nls.sdk.model.workspace.project.INlsProject;
import org.eclipse.swt.graphics.Image;
/** <h4>TextCompletionProposalComputer</h4> */
public class NlsTextCompletionProposalComputer extends AbstractNlsTextCompletionComputer {
private final Image m_image = NlsCore.getImage(NlsCore.ICON_COMMENT);
public NlsTextCompletionProposalComputer() {
}
@Override
protected void collectProposals(List<ICompletionProposal> proposals, INlsProject nlsProject, String prefix, int offset) {
for (INlsEntry e : nlsProject.getEntries(prefix, false)) {
proposals.add(new NlsProposal(e, prefix, offset, m_image));
}
proposals.add(new NewNlsProposal(nlsProject, null, prefix, offset));
}
}