// ============================================================================ // // Copyright (C) 2006-2016 Talend Inc. - www.talend.com // // This source code is available under agreement available at // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt // // You should have received a copy of the agreement // along with this program; if not, write to Talend SA // 9 rue Pages 92150 Suresnes, France // // ============================================================================ package org.talend.dataprofiler.core.ui.action.actions; import org.apache.commons.lang.StringUtils; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IFolder; import org.talend.commons.emf.FactoriesUtil; import org.talend.dataprofiler.core.ui.wizard.analysis.table.DQRuleLabelProvider; import org.talend.dq.helper.PropertyHelper; import org.talend.dq.helper.resourcehelper.DQRuleResourceFileHelper; public class ImportMatchRuleLabelProvider extends DQRuleLabelProvider { @Override public String getText(Object element) { if (element instanceof IFile && FactoriesUtil.DQRULE.equals(((IFile) element).getFileExtension())) { IFile file = (IFile) element; String name = DQRuleResourceFileHelper.getInstance().getModelElement(file).getName(); String purpose = PropertyHelper.getProperty(file).getPurpose(); if (purpose != null && !StringUtils.EMPTY.equals(purpose.trim())) { name += " (" + purpose + ")"; } return name; } if (element instanceof IFolder) { return ((IFolder) element).getName(); } return ""; //$NON-NLS-1$ } }