1////////////////////////////////////////////////////////////////////////////////
2//
3//  ADOBE SYSTEMS INCORPORATED
4//  Copyright 2008 Adobe Systems Incorporated
5//  All Rights Reserved.
6//
7//  NOTICE: Adobe permits you to use, modify, and distribute this file
8//  in accordance with the terms of the license agreement accompanying it.
9//
10////////////////////////////////////////////////////////////////////////////////
11
12package mx.filters
13{
14    import flash.filters.BitmapFilter;
15
16   /**
17    *  Interface used by some Spark filters.
18    *
19    *  @langversion 3.0
20    *  @playerversion Flash 10
21    *  @playerversion AIR 1.5
22    *  @productversion Flex 4
23    */
24    public interface IBitmapFilter
25    {
26       /**
27        *  Returns a copy of the filter.
28        *
29        *  @return A new BitmapFilter instance with all the same properties as the original BitmapFilter instance.
30        *
31        *  @langversion 3.0
32        *  @playerversion Flash 10
33        *  @playerversion AIR 1.5
34        *  @productversion Flex 4
35        */
36        function clone():BitmapFilter;
37    }
38}