Class SourceAwareCustomizer

  • All Implemented Interfaces:
    CompilationUnitAware, CompilationUnit.IPrimaryClassNodeOperation

    public class SourceAwareCustomizer
    extends DelegatingCustomizer
    A base class for customizers which only have to be applied on specific source units. This is for example useful if you want a customizer to be applied only for files matching some extensions.

    For convenience, this class implements several methods that you may extend to customize the behaviour of this utility. For example, if you want to apply a customizer only for classes matching the '.foo' file extension, then you only have to override the acceptExtension(String) method:

    return "foo".equals(extension)
    Since:
    2.1.0