01: /*
02: * ContainerEffect.java
03: *
04: * Created on March 30, 2007, 10:16 PM
05: *
06: * Copyright 2006-2007 Nigel Hughes
07: *
08: * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
09: * in compliance with the License. You may obtain a copy of the License at http://www.apache.org/
10: * licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
12: * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language
13: * governing permissions and limitations under the License.
14: */
15:
16: package com.blogofbug.swing.components.effects;
17:
18: import javax.swing.JComponent;
19:
20: /**
21: *
22: * @author nigel
23: */
24: public interface ContainerEffect extends Effect {
25:
26: public void setComponent(JComponent theComponent);
27:
28: public JComponent getComponent(JComponent theComponent);
29: }
|