1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="UI\Size" namespace="UI" name="Size">
<member name="width" static="false" visibility="public">
<default>null</default>
<docblock>
<description compact="Holds the width, can be read/written directly"/>
</docblock>
</member>
<member name="height" static="false" visibility="public">
<default>null</default>
<docblock>
<description compact="Holds the height, can be read/written directly"/>
</docblock>
</member>
<constructor name="__construct" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Construct a new Size"/>
<return type="void"/>
</docblock>
<parameter name="width" optional="false" byreference="false" type="object" class="float"/>
<parameter name="height" optional="false" byreference="false" type="object" class="float"/>
</constructor>
<method name="getHeight" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Retrieves Height"/>
<return type="float"/>
</docblock>
</method>
<method name="getWidth" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Retrives Width"/>
<return type="float"/>
</docblock>
</method>
<method name="of" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Point Coercion"/>
<return type="UI\Size"/>
</docblock>
<parameter name="size" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="of" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Point Coercion"/>
<return type="UI\Size"/>
</docblock>
<parameter name="point" optional="false" byreference="false" type="object" class="UI\Point"/>
</method>
<method name="setHeight" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Set Height"/>
<return type="void"/>
</docblock>
<parameter name="size" optional="false" byreference="false" type="object" class="float"/>
</method>
<method name="setWidth" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Set Width"/>
<return type="void"/>
</docblock>
<parameter name="size" optional="false" byreference="false" type="object" class="float"/>
</method>
</class>
|