01: /*
02: * AlphaEffect.java
03: *
04: * Created on March 30, 2007, 1:20 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: /**
19: * Interface used for effects that allow their alpha value to be controlled
20: *
21: * @author nigel
22: */
23: public interface AlphaEffect extends Effect {
24:
25: float getAlpha();
26:
27: void setAlpha(float alpha);
28: }
|