Interface IgnoreTranslationCheckingService

All Known Implementing Classes:
IgnoreCheckingService

public interface IgnoreTranslationCheckingService
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    ignoreTranslation(org.eclipse.core.resources.IProject project, ContextTranslationKey source, org.eclipse.core.runtime.IProgressMonitor monitor)
    Ignore translation by the feature value which contains resource id as path and feature key to check.
    boolean
    ignoreTranslation(org.eclipse.core.resources.IProject project, TranslationSource source, FeatureKey featureKey, org.eclipse.core.runtime.IProgressMonitor monitor)
    Ignore translation by the feature key in the source object.
    boolean
    ignoreTranslation(org.eclipse.core.resources.IProject project, TranslationSource source, org.eclipse.core.runtime.IProgressMonitor monitor)
    Ignore translation by translation source, usually by the project relative path.
    boolean
    ignoreTranslation(org.eclipse.core.resources.IProject project, org.eclipse.core.runtime.IPath resourceId, FeatureKey featureKey, org.eclipse.core.runtime.IProgressMonitor monitor)
    Ignore translation by resource path and feature key in this resource.
  • Method Details

    • ignoreTranslation

      boolean ignoreTranslation(org.eclipse.core.resources.IProject project, TranslationSource source, org.eclipse.core.runtime.IProgressMonitor monitor)
      Ignore translation by translation source, usually by the project relative path.
      Parameters:
      project - the project, cannot be null.
      source - the source, cannot be null.
      monitor - the monitor, cannot be null.
      Returns:
      true, if should to ignore translation of the source
    • ignoreTranslation

      boolean ignoreTranslation(org.eclipse.core.resources.IProject project, TranslationSource source, FeatureKey featureKey, org.eclipse.core.runtime.IProgressMonitor monitor)
      Ignore translation by the feature key in the source object.
      Parameters:
      project - the project, cannot be null.
      source - the translation source, cannot be null.
      featureKey - the feature key in the source, cannot be null.
      monitor - the monitor, cannot be null.
      Returns:
      true, if should to ignore translation of the source
    • ignoreTranslation

      boolean ignoreTranslation(org.eclipse.core.resources.IProject project, ContextTranslationKey source, org.eclipse.core.runtime.IProgressMonitor monitor)
      Ignore translation by the feature value which contains resource id as path and feature key to check.
      Parameters:
      project - the project, cannot be null.
      source - the source translation key, cannot be null.
      monitor - the monitor, cannot be null.
      Returns:
      true, if should to ignore translation of the source
    • ignoreTranslation

      boolean ignoreTranslation(org.eclipse.core.resources.IProject project, org.eclipse.core.runtime.IPath resourceId, FeatureKey featureKey, org.eclipse.core.runtime.IProgressMonitor monitor)
      Ignore translation by resource path and feature key in this resource.
      Parameters:
      project - the project, cannot be null.
      resourceId - the resource id, cannot be null.
      featureKey - the feature key in the resource, cannot be null.
      monitor - the monitor, cannot be null.
      Returns:
      true, if should to ignore translation of the source