TUP-3619:Implementation of when the module/schema generated by the

salesforce wizard is dragged to the design surface(TUP-3462)
This commit is contained in:
hcyi
2015-10-28 14:05:17 +08:00
parent 2ef6d40926
commit c7ac0ece02

View File

@@ -30,6 +30,7 @@ import org.osgi.framework.Bundle;
import org.talend.commons.exception.ExceptionHandler;
import org.talend.core.GlobalServiceRegister;
import org.talend.core.database.EDatabaseTypeName;
import org.talend.core.model.components.EComponentType;
import org.talend.core.model.components.IComponent;
import org.talend.core.model.components.IComponentsService;
import org.talend.core.model.metadata.builder.connection.DatabaseConnection;
@@ -357,6 +358,9 @@ public final class RepositoryComponentManager {
if (component.isTechnical()) {
continue;
}
if (EComponentType.GENERIC.equals(component.getComponentType())) {
continue;
}
for (RepositoryComponentDndFilterSetting dndFilter : getDndFilterSettings()) {
IRepositoryComponentDndFilter filter = dndFilter.getFilter();
if (filter == null) {