Sha256: 8560282a408da4979a43b23a74a279dbd5b2e4c7e10f9afd278fd056b5976480

Contents?: true

Size: 628 Bytes

Versions: 6

Compression:

Stored size: 628 Bytes

Contents

# Copyright:: Copyright (c) 2005  Uttk Team. All rights reserved.
# Author::    Nicolas Pouillard  <ertai@lrde.epita.fr>.
# License::   LGPL
# Revision::  $Id: /w/fey/uttk/trunk/lib/uttk/path_filters/PathFilter.rb 21975 2006-02-19T22:24:11.182512Z pouillar  $

module Uttk

  module PathFilters

    class PathFilter < Filters::Filter
      include Abstract

      def filter ( path, node )
        raise NotImplementedError
      end

      def update ( msg, *args )
        args = filter(*args) if msg == :new_leaf
        notif msg, *args
      end

    end # class PathFilter

  end # module PathFilters

end # module Uttk

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
uttk-0.3.6.1 lib/uttk/path_filters/PathFilter.rb
uttk-0.3.1.2 lib/uttk/path_filters/PathFilter.rb
uttk-0.3.5.0 lib/uttk/path_filters/PathFilter.rb
uttk-0.4.6.2 lib/uttk/path_filters/PathFilter.rb
uttk-0.4.5.0 lib/uttk/path_filters/PathFilter.rb
uttk-0.4.6.1 lib/uttk/path_filters/PathFilter.rb