01: /*
02: * Copyright 2001-2004 The Apache Software Foundation
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package org.apache.commons.collections.functors;
17:
18: import java.io.Serializable;
19:
20: import org.apache.commons.collections.Closure;
21:
22: /**
23: * Closure implementation that does nothing.
24: *
25: * @since Commons Collections 3.0
26: * @version $Revision: 348444 $ $Date: 2005-11-23 14:06:56 +0000 (Wed, 23 Nov 2005) $
27: *
28: * @author Stephen Colebourne
29: */
30: public class NOPClosure implements Closure, Serializable {
31:
32: /** Serial version UID */
33: private static final long serialVersionUID = 3518477308466486130L;
34:
35: /** Singleton predicate instance */
36: public static final Closure INSTANCE = new NOPClosure();
37:
38: /**
39: * Factory returning the singleton instance.
40: *
41: * @return the singleton instance
42: * @since Commons Collections 3.1
43: */
44: public static Closure getInstance() {
45: return INSTANCE;
46: }
47:
48: /**
49: * Constructor
50: */
51: private NOPClosure() {
52: super ();
53: }
54:
55: /**
56: * Do nothing.
57: *
58: * @param input the input object
59: */
60: public void execute(Object input) {
61: // do nothing
62: }
63:
64: }
|