/doc/content/Reflect.html

http://hxgraphix.googlecode.com/ · HTML · 244 lines · 117 code · 26 blank · 101 comment · 0 complexity · 1a6aff745d5866566db35f822f1ac7e4 MD5 · raw file

  1. <html>
  2. <head>
  3. <title>haXe API Documentation</title>
  4. <script type="text/javascript">
  5. <!--
  6. function toggle(id) {
  7. var e = document.getElementById(id);
  8. e.isopen = !e.isopen;
  9. e.style.display = e.isopen?"block":"none";
  10. return false;
  11. }
  12. -->
  13. </script>
  14. <style type="text/css">
  15. body {
  16. text-align: center;
  17. font-family: Trebuchet MS, sans-serif;
  18. background-color : #7D7E86;
  19. }
  20. .document {
  21. width : 800px;
  22. position : relative;
  23. margin : 10px auto 5px auto;
  24. border : solid 2px #CFD0D4;
  25. text-align : justify;
  26. background-color: #F6FAFD;
  27. }
  28. .title {
  29. font-size: 35;
  30. font-weight: bold;
  31. text-align: center;
  32. background-color : #FFD473;
  33. color : white;
  34. }
  35. ul.entry {
  36. list-style-type: circle;
  37. font-weight : bold;
  38. margin-left : 30px;
  39. }
  40. .package_content {
  41. display : none;
  42. }
  43. a {
  44. color : #FFBB00;
  45. font-weight : bold;
  46. text-decoration : none;
  47. }
  48. a:hover {
  49. color : #FFAE00;
  50. text-decoration : underline;
  51. }
  52. a.package {
  53. color : black;
  54. }
  55. .index {
  56. margin-left : 10px;
  57. }
  58. .kwd {
  59. color : #00A;
  60. }
  61. .classname {
  62. font-size : 30;
  63. font-weight : bold;
  64. margin-left : 10px;
  65. margin-bottom : 20px;
  66. }
  67. .classdoc {
  68. border : 1px dashed #666;
  69. margin-left : 20px;
  70. margin-right : 20px;
  71. padding : 5 5 5 5;
  72. }
  73. .importmod, .extends, .implements, .typedef, .platforms {
  74. margin-left: 20px;
  75. color : #777;
  76. }
  77. dd {
  78. margin : 0 20 20 40;
  79. font-size : 12pt;
  80. color : #444;
  81. }
  82. dt {
  83. margin-left : 20px;
  84. margin-bottom : 5px;
  85. text-align : left;
  86. font-size : 10pt;
  87. font-family: Courier New, monospace;
  88. }
  89. </style>
  90. <!--
  91. <style type="text/css">
  92. body {
  93. text-align: center;
  94. font-family: Trebuchet MS, sans-serif;
  95. background-color : #7D7E86;
  96. }
  97. .document {
  98. width : 800px;
  99. position : relative;
  100. margin : 10px auto 5px auto;
  101. border : solid 2px #CFD0D4;
  102. text-align : justify;
  103. background-color: #F6FAFD;
  104. }
  105. .title {
  106. font-size: 35;
  107. font-weight: bold;
  108. text-align: center;
  109. background-color : #FFD473;
  110. color : white;
  111. }
  112. ul.entry {
  113. list-style-type: circle;
  114. font-weight : bold;
  115. margin-left : 30px;
  116. }
  117. .package_content {
  118. display : none;
  119. }
  120. a {
  121. color : #FFBB00;
  122. font-weight : bold;
  123. text-decoration : none;
  124. }
  125. a:hover {
  126. color : #FFAE00;
  127. text-decoration : underline;
  128. }
  129. a.package {
  130. color : black;
  131. }
  132. .index {
  133. margin-left : 10px;
  134. }
  135. .kwd {
  136. color : #00A;
  137. }
  138. .classname {
  139. font-size : 30;
  140. font-weight : bold;
  141. margin-left : 10px;
  142. margin-bottom : 20px;
  143. }
  144. .classdoc {
  145. border : 1px dashed #666;
  146. margin-left : 20px;
  147. margin-right : 20px;
  148. padding : 5 5 5 5;
  149. }
  150. .importmod, .extends, .implements, .typedef, .platforms {
  151. margin-left: 20px;
  152. color : #777;
  153. }
  154. dd {
  155. margin : 0 20 20 40;
  156. font-size : 12pt;
  157. color : #444;
  158. }
  159. dt {
  160. margin-left : 20px;
  161. margin-bottom : 5px;
  162. text-align : left;
  163. font-size : 10pt;
  164. font-family: Courier New, monospace;
  165. }
  166. </style>
  167. -->
  168. </head>
  169. <body>
  170. <div class="document">
  171. <div class="title">haXe API Documentation</div>
  172. <a href="#" onclick="javascript:history.back(-1); return false" class="index">Back</a> | <a href="../index.html" class="index">Index</a><div class="classname"><span class="kwd">class </span>Reflect</div><div class="platforms">Available in haxe</div><div class="classdoc">
  173. The Reflect API is a way to manipulate values dynamicly through an
  174. abstract interface in an untyped manner. Use with care.
  175. </div><dl><dt><span class="kwd">static </span><span class="kwd">function </span>callMethod(o : <a href="Dynamic.html" class="type">Dynamic</a>, func : <a href="Dynamic.html" class="type">Dynamic</a>, args : <a href="Array.html" class="type">Array</a>&lt;<a href="Dynamic.html" class="type">Dynamic</a>&gt;) : <a href="Dynamic.html" class="type">Dynamic</a></dt><dd>
  176. Call a method with the given object and arguments.
  177. </dd><dt><span class="kwd">static </span><span class="kwd">function </span>compare&lt;T&gt;(a : T, b : T) : <a href="Int.html" class="type">Int</a></dt><dd>
  178. Generic comparison function, does not work for methods, see <code>compareMethods</code>
  179. </dd><dt><span class="kwd">static </span><span class="kwd">function </span>compareMethods(f1 : <a href="Dynamic.html" class="type">Dynamic</a>, f2 : <a href="Dynamic.html" class="type">Dynamic</a>) : <a href="Bool.html" class="type">Bool</a></dt><dd>
  180. Compare two methods closures. Returns true if it's the same method of the same instance.
  181. Does not work on Neko platform.
  182. </dd><dt><span class="kwd">static </span><span class="kwd">function </span>copy&lt;T&gt;(o : T) : T</dt><dd>
  183. Make a copy of the fields of an object.
  184. </dd><dt><span class="kwd">static </span><span class="kwd">function </span>deleteField(o : <a href="Dynamic.html" class="type">Dynamic</a>, f : <a href="String.html" class="type">String</a>) : <a href="Bool.html" class="type">Bool</a></dt><dd>
  185. Delete an object field.
  186. </dd><dt><span class="kwd">static </span><span class="kwd">function </span>field(o : <a href="Dynamic.html" class="type">Dynamic</a>, field : <a href="String.html" class="type">String</a>) : <a href="Dynamic.html" class="type">Dynamic</a></dt><dd>
  187. Returns the field of an object, or null if <code>o</code> is not an object or doesn't have this field.
  188. </dd><dt><span class="kwd">static </span><span class="kwd">function </span>fields(o : <a href="Dynamic.html" class="type">Dynamic</a>) : <a href="Array.html" class="type">Array</a>&lt;<a href="String.html" class="type">String</a>&gt;</dt><dd>
  189. Returns the list of fields of an object, excluding its prototype (class methods).
  190. </dd><dt><span class="kwd">static </span><span class="kwd">function </span>hasField(o : <a href="Dynamic.html" class="type">Dynamic</a>, field : <a href="String.html" class="type">String</a>) : <a href="Bool.html" class="type">Bool</a></dt><dd>
  191. Tells if an object has a field set. This doesn't take into account the object prototype (class methods).
  192. </dd><dt><span class="kwd">static </span><span class="kwd">function </span>isFunction(f : <a href="Dynamic.html" class="type">Dynamic</a>) : <a href="Bool.html" class="type">Bool</a></dt><dd>
  193. Tells if a value is a function or not.
  194. </dd><dt><span class="kwd">static </span><span class="kwd">function </span>isObject(v : <a href="Dynamic.html" class="type">Dynamic</a>) : <a href="Bool.html" class="type">Bool</a></dt><dd><p>Tells if a value is an object or not.</p>
  195. <p></p></dd><dt><span class="kwd">static </span><span class="kwd">function </span>makeVarArgs(f : <a href="Array.html" class="type">Array</a>&lt;<a href="Dynamic.html" class="type">Dynamic</a>&gt; -> <a href="Dynamic.html" class="type">Dynamic</a>) : <a href="Dynamic.html" class="type">Dynamic</a></dt><dd>
  196. Transform a function taking an array of arguments into a function that can
  197. be called with any number of arguments.
  198. </dd><dt><span class="kwd">static </span><span class="kwd">function </span>setField(o : <a href="Dynamic.html" class="type">Dynamic</a>, field : <a href="String.html" class="type">String</a>, value : <a href="Dynamic.html" class="type">Dynamic</a>) : <a href="Void.html" class="type">Void</a></dt><dd>
  199. Set an object field value.
  200. </dd></dl><a href="#" onclick="javascript:history.back(-1); return false" class="index">Back</a> | <a href="../index.html" class="index">Index</a>
  201. </div>
  202. </body>
  203. </html>