1 //
2 // Description:
3 //    SWFDimensionable Interface
4 //
5 // Authors:
6 //    Jonathan Shore <jshore@e-shuppan.com>
7 //
8 // Copyright:
9 //    Copyright 2001 E-Publishing Group Inc.  Permission is granted to use or
10 //    modify this code provided that the original copyright notice is included.
11 //
12 //    This software is distributed with no warranty of liability, merchantability,
13 //    or fitness for a specific purpose.
14 //
15 
16 
17 
18 import SWFObjectI;
19 
20 
21 
22 //
23 //  SWFDimensionable Interface
24 //      super-interface to all interfaces / classes which have dimension
25 //
26 //  Notes
27 //    -
28 //
29 public interface SWFDimensionableI extends SWFObjectI {
30 
getWidth()31     public float	getWidth ();
getHeight()32     public float	getHeight ();
33 };
34 
35 
36 
37 
38 
39