Class Uttk::PathFilters::PathFilter
In: lib/uttk/path_filters/PathFilter.rb
Parent: Filters::Filter

Methods

filter   update  

Included Modules

Abstract

Public Instance methods

[Source]

# File lib/uttk/path_filters/PathFilter.rb, line 13
      def filter ( path, node )
        raise NotImplementedError
      end

[Source]

# File lib/uttk/path_filters/PathFilter.rb, line 17
      def update ( msg, *args )
        args = filter(*args) if msg == :new_leaf
        notif msg, *args
      end

[Validate]