PageRenderTime 43ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/typelib/JQueryTL/src/org/jquery/jQuery.js

http://github.com/ebayopensource/vjet
JavaScript | 718 lines | 178 code | 189 blank | 351 comment | 2 complexity | 14ff9bc2c9e38fbf1b4fef518cef770e MD5 | raw file
Possible License(s): EPL-1.0, MPL-2.0-no-copyleft-exception
  1. vjo.ctype("org.jquery.jQuery")
  2. .globals({
  3. $:undefined, //< jQuery:$
  4. jQuery:undefined //< type::jQuery
  5. })
  6. .protos({
  7. //> public constructs(String selector)
  8. //> public constructs(String selector, Node context)
  9. //> public constructs(String selector, Element context)
  10. //> public constructs(String selector, HTMLDocument document)
  11. //> public constructs(String selector, jQuery context)
  12. //> public constructs(Array elements)
  13. //> public constructs(Node element)
  14. //> public constructs(Element element)
  15. //> public constructs(HTMLDocument document)
  16. //> public constructs(Function callback)
  17. //> public constructs(Window win)
  18. constructs : function() {},
  19. /*Category: Core - Object Accessors @ http://docs.jquery.com/Core */
  20. //> public jQuery each(Function callback)
  21. each:vjo.NEEDS_IMPL,
  22. //> public int size()
  23. size:vjo.NEEDS_IMPL,
  24. length:0, //<public int
  25. selector:"", //<public String
  26. context:null, //<public Node
  27. //> public Element get(int index)
  28. //> public Array get()
  29. get:vjo.NEEDS_IMPL,
  30. //> public int index(jQuery subject)
  31. //> public int index(Element elem)
  32. index:vjo.NEEDS_IMPL,
  33. /* Category: Core - Data @ http://docs.jquery.com/Core */
  34. //> public Object data(String name)
  35. //> public jQuery data(String name, Object value)
  36. data:vjo.NEEDS_IMPL,
  37. //> public jQuery removeData(String name)
  38. removeData:vjo.NEEDS_IMPL,
  39. //> public Array queue()
  40. //> public Array queue(String name)
  41. //> public jQuery queue(Function callback)
  42. //> public jQuery queue(String name, Function callback)
  43. //> public jQuery queue(Array queue)
  44. //> public jQuery queue(String name, Array queue)
  45. queue:vjo.NEEDS_IMPL,
  46. //> public jQuery dequeue()
  47. //> public jQuery dequeue(String name)
  48. dequeue:vjo.NEEDS_IMPL,
  49. /*Category: Attributes - Attr @ http://docs.jquery.com/Attributes */
  50. //> public Object attr(String name)
  51. //> public jQuery attr(ObjLiteral properties)
  52. //> public jQuery attr(String key,Object value)
  53. //> public jQuery attr(String key,Function fn)
  54. attr:vjo.NEEDS_IMPL,
  55. //>public jQuery removeAttr(String name)
  56. removeAttr:vjo.NEEDS_IMPL,
  57. //> public jQuery addClass(String clz)
  58. addClass:vjo.NEEDS_IMPL,
  59. //> public boolean hasClass(String clz)
  60. hasClass:vjo.NEEDS_IMPL,
  61. //> public jQuery removeClass()
  62. //> public jQuery removeClass(String clz)
  63. removeClass:vjo.NEEDS_IMPL,
  64. //> public jQuery toggleClass(String clz)
  65. //> public jQuery toggleClass(String clz,boolean switchIt)
  66. toggleClass:vjo.NEEDS_IMPL,
  67. //> public String html()
  68. //> public jQuery html(String val)
  69. html:vjo.NEEDS_IMPL,
  70. //> public String text()
  71. //> public jQuery text(String value)
  72. text:vjo.NEEDS_IMPL,
  73. //> public Object val()
  74. //> public jQuery val(String val)
  75. //> public jQuery val(Array val)
  76. val:vjo.NEEDS_IMPL,
  77. /*Category: Traversing - Filtering @ http://docs.jquery.com/Traversing */
  78. //> public jQuery add(String expr)
  79. //> public jQuery add(Element expr)
  80. //> public jQuery add(Array expr)
  81. add:vjo.NEEDS_IMPL,
  82. //> public jQuery andSelf()
  83. andSelf:vjo.NEEDS_IMPL,
  84. //> public jQuery children()
  85. //> public jQuery children(String expr)
  86. children:vjo.NEEDS_IMPL,
  87. //> public jQuery closest(String expr)
  88. closest:vjo.NEEDS_IMPL,
  89. //> public jQuery contents()
  90. contents:vjo.NEEDS_IMPL,
  91. //> public jQuery end()
  92. end:vjo.NEEDS_IMPL,
  93. //> public jQuery eq(int position)
  94. eq:vjo.NEEDS_IMPL,
  95. //> public jQuery filter(String expr)
  96. //> public jQuery filter(Function func)
  97. filter:vjo.NEEDS_IMPL,
  98. //> public jQuery find(String expr)
  99. find:vjo.NEEDS_IMPL,
  100. //> public jQuery first()
  101. first:vjo.NEEDS_IMPL,
  102. //> public jQuery last()
  103. last:vjo.NEEDS_IMPL,
  104. //> public jQuery has(Element contained)
  105. //> public jQuery has(String selector)
  106. has:vjo.NEEDS_IMPL,
  107. //> public boolean is(String expr)
  108. is:vjo.NEEDS_IMPL,
  109. //> public jQuery map(Function func)
  110. map:vjo.NEEDS_IMPL,
  111. //> public jQuery next()
  112. //> public jQuery next(String expr)
  113. next:vjo.NEEDS_IMPL,
  114. //> public jQuery nextAll()
  115. //> public jQuery nextAll(String expr)
  116. nextAll:vjo.NEEDS_IMPL,
  117. //> public jQuery not(String expr)
  118. //> public jQuery not(Element expr)
  119. //> public jQuery not(Array expr)
  120. not:vjo.NEEDS_IMPL,
  121. //> public jQuery offsetParent()
  122. offsetParent:vjo.NEEDS_IMPL,
  123. //> public jQuery parent()
  124. //> public jQuery parent(String expr)
  125. parent:vjo.NEEDS_IMPL,
  126. //> public jQuery parents()
  127. //> public jQuery parents(String expr)
  128. parents:vjo.NEEDS_IMPL,
  129. //> public jQuery prev()
  130. //> public jQuery prev(String expr)
  131. prev:vjo.NEEDS_IMPL,
  132. //> public jQuery prevAll()
  133. //> public jQuery prevAll(String expr)
  134. prevAll:vjo.NEEDS_IMPL,
  135. //> public jQuery siblings()
  136. //> public jQuery siblings(String expr)
  137. siblings:vjo.NEEDS_IMPL,
  138. //> public jQuery slice(int start)
  139. //> public jQuery slice(int start,int end)
  140. slice:vjo.NEEDS_IMPL,
  141. /*Category: Manipulation - Inserting Inside @ http://docs.jquery.com/Manipulation */
  142. //> public jQuery append(String content)
  143. //> public jQuery append(Node content)
  144. //> public jQuery append(jQuery content)
  145. append:vjo.NEEDS_IMPL,
  146. //> public jQuery appendTo(String selector)
  147. //> public jQuery appendTo(HTMLElement elem)
  148. appendTo:vjo.NEEDS_IMPL,
  149. //> public jQuery prepend(String content)
  150. //> public jQuery prepend(Element content)
  151. //> public jQuery prepend(jQuery content)
  152. prepend:vjo.NEEDS_IMPL,
  153. //> public jQuery prependTo(String selector)
  154. prependTo:vjo.NEEDS_IMPL,
  155. /*Category: Manipulation - Inserting Outside @ http://docs.jquery.com/Manipulation */
  156. //> public jQuery after(String content)
  157. //> public jQuery after(Element content)
  158. //> public jQuery after(jQuery content)
  159. after:vjo.NEEDS_IMPL,
  160. //> public jQuery before(String content)
  161. //> public jQuery before(Element content)
  162. //> public jQuery before(jQuery content)
  163. before:vjo.NEEDS_IMPL,
  164. //> public jQuery insertAfter(String content)
  165. //> public jQuery insertAfter(Node node)
  166. insertAfter:vjo.NEEDS_IMPL,
  167. //> public jQuery insertBefore(String content)
  168. insertBefore:vjo.NEEDS_IMPL,
  169. /*Category: Manipulation - Inserting Around @ http://docs.jquery.com/Manipulation */
  170. //> public jQuery wrap(String html)
  171. //> public jQuery wrap(Element elem)
  172. wrap:vjo.NEEDS_IMPL,
  173. //> public jQuery wrapAll(String html)
  174. //> public jQuery wrapAll(Element elem)
  175. wrapAll:vjo.NEEDS_IMPL,
  176. //> public jQuery wrapInner(Element elem)
  177. //> public jQuery wrapInner(String html)
  178. wrapInner:vjo.NEEDS_IMPL,
  179. /*Category: Manipulation - Replacing @ http://docs.jquery.com/Manipulation */
  180. //> public jQuery replaceWith(String content)
  181. //> public jQuery replaceWith(Element content)
  182. //> public jQuery replaceWith(jQuery content)
  183. replaceWith:vjo.NEEDS_IMPL,
  184. //> public jQuery replaceAll(String selector)
  185. replaceAll:vjo.NEEDS_IMPL,
  186. /*Category: Manipulation - Removing @ http://docs.jquery.com/Manipulation */
  187. //> public jQuery empty()
  188. empty:vjo.NEEDS_IMPL,
  189. //> public jQuery remove()
  190. //> public jQuery remove(String expr)
  191. remove:vjo.NEEDS_IMPL,
  192. /*Category: Manipulation - Copying @ http://docs.jquery.com/Manipulation */
  193. //> public jQuery clone()
  194. //> public jQuery clone(boolean more)
  195. clone:vjo.NEEDS_IMPL,
  196. /*Category: CSS - CSS @ http://docs.jquery.com/CSS */
  197. //> public String css(String name)
  198. //> public jQuery css(ObjLiteral styleDecl)
  199. //> public jQuery css(String key, Object value)
  200. css:vjo.NEEDS_IMPL,
  201. /*Category: CSS - Positioning @ http://docs.jquery.com/CSS */
  202. //> public ObjLiteral offset()
  203. offset:vjo.NEEDS_IMPL,
  204. //> public ObjLiteral position()
  205. position:vjo.NEEDS_IMPL,
  206. //> public int scrollTop()
  207. //> public jQuery scrollTop(int value)
  208. scrollTop:vjo.NEEDS_IMPL,
  209. //> public int scrollLeft()
  210. //> public jQuery scrollLeft(int value)
  211. scrollLeft:vjo.NEEDS_IMPL,
  212. /*Category: CSS - Height and Width @ http://docs.jquery.com/CSS */
  213. //> public int height()
  214. //> public jQuery height(int value)
  215. //> public jQuery height(String value)
  216. height:vjo.NEEDS_IMPL,
  217. //> public int width()
  218. //> public jQuery width(int value)
  219. //> public jQuery width(String value)
  220. width:vjo.NEEDS_IMPL,
  221. //> public int innerHeight()
  222. innerHeight:vjo.NEEDS_IMPL,
  223. //> public int innerWidth()
  224. innerWidth:vjo.NEEDS_IMPL,
  225. //> public int outerHeight(boolean margin)
  226. outerHeight:vjo.NEEDS_IMPL,
  227. //> public int outerWidth(boolean margin)
  228. outerWidth:vjo.NEEDS_IMPL,
  229. /*Category: Events - Page Load @ http://docs.jquery.com/Events */
  230. //> public jQuery ready((void fn()) callback)
  231. ready:vjo.NEEDS_IMPL,
  232. /*Category: Events - Event Handling @ http://docs.jquery.com/Events */
  233. //> public jQuery bind(String eventType, Object eventData, (void fn(Object? eventObject)) func)
  234. //> public jQuery bind(String eventType, (void fn(Object? eventObject)) func)
  235. //> public jQuery bind(ObjLiteral eventFuncBindingMap)
  236. bind:vjo.NEEDS_IMPL,
  237. //> public jQuery one(String eventType, Object eventData, (void fn(Object? eventObject)) func)
  238. //> public jQuery one(String eventType, (void fn(Object? eventObject)) func)
  239. one:vjo.NEEDS_IMPL,
  240. //> public jQuery trigger(Object type)
  241. //> public jQuery trigger(Object type, Array data)
  242. trigger:vjo.NEEDS_IMPL,
  243. //> public Object triggerHandler(Object type)
  244. //> public Object triggerHandler(Object type, Array data)
  245. triggerHandler:vjo.NEEDS_IMPL,
  246. //> public jQuery unbind()
  247. //> public jQuery unbind(Object eventType)
  248. //> public jQuery unbind(Object eventType, Function func)
  249. unbind:vjo.NEEDS_IMPL,
  250. //> public jQuery live(String type, Object eventData, (void fn(Object? eventObject)) func)
  251. //> public jQuery live(String type, (void fn(Object? eventObject)) func)
  252. live:vjo.NEEDS_IMPL,
  253. //> public jQuery die()
  254. //> public jQuery die(Object type)
  255. //> public jQuery die(Object type,Function data)
  256. die:vjo.NEEDS_IMPL,
  257. /*Category: Events - Interaction Helpers @ http://docs.jquery.com/Events */
  258. //> public jQuery blur()
  259. //> public jQuery blur(Function fn)
  260. blur:vjo.NEEDS_IMPL,
  261. //> public jQuery change()
  262. //> public jQuery change((void fn(Object? eventObject)) func)
  263. change:vjo.NEEDS_IMPL,
  264. //> public jQuery click()
  265. //> public jQuery click((void fn(Object? eventObject)) func)
  266. click:vjo.NEEDS_IMPL,
  267. //> public jQuery dblclick()
  268. //> public jQuery dblclick((void fn(Object? eventObject)) func)
  269. dblclick:vjo.NEEDS_IMPL,
  270. //> public jQuery delegate(String selector, String eventType, Object eventData, (void fn(Object? eventObject)) func)
  271. //> public jQuery delegate(String selector, String eventType, (void fn(Object? eventObject)) func)
  272. delegate:vjo.NEEDS_IMPL,
  273. //> public jQuery error()
  274. //> public jQuery error((void fn()) errHandleFunc)
  275. error:vjo.NEEDS_IMPL,
  276. //> public jQuery focus()
  277. //> public jQuery focus((void fn(Object? eventObject)) func)
  278. focus:vjo.NEEDS_IMPL,
  279. //> public jQuery hover((void fn(Object? eventObject)) over, (void fn(Object? eventObject)) out)
  280. hover:vjo.NEEDS_IMPL,
  281. //> public jQuery keydown()
  282. //> public jQuery keydown((void fn(Object? eventObject)) func)
  283. keydown:vjo.NEEDS_IMPL,
  284. //> public jQuery keypress()
  285. //> public jQuery keypress((void fn(Object? eventObject)) func)
  286. keypress:vjo.NEEDS_IMPL,
  287. //> public jQuery keyup()
  288. //> public jQuery keyup(Function fn)
  289. keyup:vjo.NEEDS_IMPL,
  290. //combind load method with AJAX's
  291. //load:vjo.NEEDS_IMPL,
  292. //> public jQuery mousedown(Function fn)
  293. mousedown:vjo.NEEDS_IMPL,
  294. //> public jQuery mouseenter(Function fn)
  295. mouseenter:vjo.NEEDS_IMPL,
  296. //> public jQuery mouseleave(Function fn)
  297. mouseleave:vjo.NEEDS_IMPL,
  298. //> public jQuery mousemove(Function fn)
  299. mousemove:vjo.NEEDS_IMPL,
  300. //> public jQuery mouseout(Function fn)
  301. mouseout:vjo.NEEDS_IMPL,
  302. //> public jQuery mouseover(Function fn)
  303. mouseover:vjo.NEEDS_IMPL,
  304. //> public jQuery mouseup(Function fn)
  305. mouseup:vjo.NEEDS_IMPL,
  306. //> public jQuery resize(Function fn)
  307. resize:vjo.NEEDS_IMPL,
  308. //> public jQuery scroll(Function fn)
  309. scroll:vjo.NEEDS_IMPL,
  310. //> public jQuery select()
  311. //> public jQuery select(Function fn)
  312. select:vjo.NEEDS_IMPL,
  313. //> public jQuery submit()
  314. //> public jQuery submit(Function fn)
  315. submit:vjo.NEEDS_IMPL,
  316. // combind toggle menthod
  317. //toggle:vjo.NEEDS_IMPL,
  318. //> public jQuery unload(Function fn)
  319. unload:vjo.NEEDS_IMPL,
  320. /*Category: Effects - Basics @ http://docs.jquery.com/Effects */
  321. //> public jQuery show()
  322. //> public jQuery show(int speed)
  323. //> public jQuery show(String speed)
  324. //> public jQuery show(int speed,Function callback)
  325. //> public jQuery show(String speed,Function callback)
  326. show:vjo.NEEDS_IMPL,
  327. //> public jQuery hide()
  328. //> public jQuery hide(int speed)
  329. //> public jQuery hide(String speed)
  330. //> public jQuery hide(int speed, Function callback)
  331. //> public jQuery hide(String speed,Function callback)
  332. hide:vjo.NEEDS_IMPL,
  333. /* toggle method for event */
  334. //> public jQuery toggle(Function... funcs)
  335. //> public jQuery toggle(boolean flag)
  336. //> public jQuery toggle(int speed)
  337. //> public jQuery toggle(String speed)
  338. //> public jQuery toggle(int speed, Function callback)
  339. //> public jQuery toggle(String speed, Function callback)
  340. toggle:vjo.NEEDS_IMPL,
  341. /*Category: Effects - Sliding @ http://docs.jquery.com/Effects */
  342. //> public jQuery slideDown(int speed)
  343. //> public jQuery slideDown(String speed)
  344. //> public jQuery slideDown(int speed, Function callback)
  345. //> public jQuery slideDown(String speed, Function callback)
  346. slideDown:vjo.NEEDS_IMPL,
  347. //> public jQuery slideUp(int speed)
  348. //> public jQuery slideUp(String speed)
  349. //> public jQuery slideUp(int speed,Function callback)
  350. //> public jQuery slideUp(String speed,Function callback)
  351. slideUp:vjo.NEEDS_IMPL,
  352. //> public jQuery slideToggle(int speed)
  353. //> public jQuery slideToggle(String speed)
  354. //> public jQuery slideToggle(int speed,Function callback)
  355. //> public jQuery slideToggle(String speed,Function callback)
  356. slideToggle:vjo.NEEDS_IMPL,
  357. /*Category: Effects - Fading @ http://docs.jquery.com/Effects */
  358. //> public jQuery fadeIn(int speed)
  359. //> public jQuery fadeIn(String speed)
  360. //> public jQuery fadeIn(int speed,Function callback)
  361. //> public jQuery fadeIn(String speed,Function callback)
  362. fadeIn:vjo.NEEDS_IMPL,
  363. //> public jQuery fadeOut(int speed)
  364. //> public jQuery fadeOut(String speed)
  365. //> public jQuery fadeOut(int speed,Function callback)
  366. //> public jQuery fadeOut(String speed,Function callback)
  367. fadeOut:vjo.NEEDS_IMPL,
  368. //> public jQuery fadeTo(int speed,double opacity)
  369. //> public jQuery fadeTo(String speed,double opacity)
  370. //> public jQuery fadeTo(int speed,double opacity,Function callback)
  371. //> public jQuery fadeTo(String speed,double opacity,Function callback)
  372. fadeTo:vjo.NEEDS_IMPL,
  373. /*Category: Effects - Custom @ http://docs.jquery.com/Effects */
  374. //>public jQuery animate(ObjLiteral params)
  375. //>public jQuery animate(ObjLiteral params, int duration)
  376. //>public jQuery animate(ObjLiteral params, String duration)
  377. //>public jQuery animate(ObjLiteral params, int duration, Function callback)
  378. //>public jQuery animate(ObjLiteral params, String duration, Function callback)
  379. //>public jQuery animate(ObjLiteral params, int duration, String easing)
  380. //>public jQuery animate(ObjLiteral params, String duration, String easing)
  381. //>public jQuery animate(ObjLiteral params, int duration, String easing,Function callback)
  382. //>public jQuery animate(ObjLiteral params, String duration, String easing,Function callback)
  383. //>public jQuery animate(ObjLiteral params, ObjLiteral options)
  384. animate:vjo.NEEDS_IMPL,
  385. //> public jQuery stop()
  386. //> public jQuery stop(boolean clearQueue)
  387. //> public jQuery stop(boolean clearQueue,boolean gotoEnd)
  388. stop:vjo.NEEDS_IMPL,
  389. /*Category: Ajax - Ajax Requests @ http://docs.jquery.com/Ajax */
  390. /* following load is from core category */
  391. //> public jQuery load((void fn(Object? eventObject)) onLoadFunc)
  392. //> public jQuery load(String url)
  393. //> public jQuery load(String url, ObjLiteral data)
  394. //> public jQuery load(String url, String data)
  395. //> public jQuery load(String url, ObjLiteral data, Function callback)
  396. //> public jQuery load(String url, String data, Function callback)
  397. load:vjo.NEEDS_IMPL,
  398. /*Category: Ajax - Ajax Events @ http://docs.jquery.com/Ajax */
  399. //> public jQuery ajaxComplete(Function callback)
  400. ajaxComplete:vjo.NEEDS_IMPL,
  401. //> public jQuery ajaxError(Function callback)
  402. ajaxError:vjo.NEEDS_IMPL,
  403. //> public jQuery ajaxSend(Function callback)
  404. ajaxSend:vjo.NEEDS_IMPL,
  405. //> public jQuery ajaxStart(Function callback)
  406. ajaxStart:vjo.NEEDS_IMPL,
  407. //> public jQuery ajaxStop(Function callback)
  408. ajaxStop:vjo.NEEDS_IMPL,
  409. //> public jQuery ajaxSuccess(Function callback)
  410. ajaxSuccess:vjo.NEEDS_IMPL,
  411. /*Category: Ajax - Misc @ http://docs.jquery.com/Ajax */
  412. //> public String serialize()
  413. serialize:vjo.NEEDS_IMPL,
  414. //> public Array serializeArray()
  415. serializeArray:vjo.NEEDS_IMPL
  416. })
  417. .props({
  418. /*Category: Core - jQuery @ http://docs.jquery.com/Core */
  419. //> public jQuery $(String selector)
  420. //> public jQuery $(String selector, Node context)
  421. //> public jQuery $(String selector, Element context)
  422. //> public jQuery $(String selector, HTMLDocument document)
  423. //> public jQuery $(String selector, jQuery context)
  424. //> public jQuery $(Array elements)
  425. //> public jQuery $(Node element)
  426. //> public jQuery $(Element element)
  427. //> public jQuery $(HTMLDocument document)
  428. //> public jQuery $(Function callback)
  429. //> public jQuery $(Window win)
  430. $:function(selector) {
  431. var instance; //<jQuery
  432. if (arguments.length > 1) {
  433. instance = $(selector, arguments[1]);
  434. } else {
  435. instance = $(selector);
  436. }
  437. return instance;
  438. },
  439. /*Category: Core - Plugins @ http://docs.jquery.com/Core*/
  440. //represents jQuery.fn
  441. fn: vjo.ctype() //< public
  442. .props({
  443. //>public jQuery extend( Object object )
  444. extend:vjo.NEEDS_IMPL
  445. })
  446. .endType(),
  447. //combind extend methods
  448. //extend:vjo.NEEDS_IMPL,
  449. /*Category: Core - Interoperability @ http://docs.jquery.com/Core */
  450. //> public jQuery noConflict()
  451. //> public jQuery noConflict(boolean extreme)
  452. noConflict:vjo.NEEDS_IMPL,
  453. /*Category: Effects - Settomgs @ http://docs.jquery.com/Effects */
  454. fx:vjo.ctype()//<public
  455. .props({
  456. off:false //< public boolean
  457. })
  458. .endType(),
  459. /*Category: Ajax - Ajax Requests @ http://docs.jquery.com/Ajax */
  460. //> public XMLHttpRequest ajax(ObjLiteral options)
  461. ajax:vjo.NEEDS_IMPL,
  462. //> public XMLHttpRequest get(String url)
  463. //> public XMLHttpRequest get(String url, ObjLiteral data)
  464. //> public XMLHttpRequest get(String url, ObjLiteral data, Function callback)
  465. //> public XMLHttpRequest get(String url, ObjLiteral data, Function callback, String type)
  466. get:vjo.NEEDS_IMPL,
  467. //> public XMLHttpRequest getJSON(String url)
  468. //> public XMLHttpRequest getJSON(String url, ObjLiteral data)
  469. //> public XMLHttpRequest getJSON(String url, ObjLiteral data, Function callback)
  470. getJSON:vjo.NEEDS_IMPL,
  471. //> public XMLHttpRequest getScript(String url)
  472. //> public XMLHttpRequest getScript(String url, Function callback)
  473. getScript:vjo.NEEDS_IMPL,
  474. //> public XMLHttpRequest post(String url)
  475. //> public XMLHttpRequest post(String url, ObjLiteral data)
  476. //> public XMLHttpRequest post(String url, ObjLiteral data, Function callback)
  477. post:vjo.NEEDS_IMPL,
  478. /*Category: Ajax - Misc @ http://docs.jquery.com/Ajax */
  479. //> public void ajaxSetup(ObjLiteral options)
  480. ajaxSetup:vjo.NEEDS_IMPL,
  481. /*Category: Utilities - Browser and Feature Detection @ http://docs.jquery.com/Utilities */
  482. support: {}, //< public final ObjLiteral
  483. browser: {}, //< public final ObjLiteral
  484. //boxModel:false, //< public final boolean
  485. /*Category: Utilities - Array and Object operations @ http://docs.jquery.com/Utilities */
  486. //> public Object each(Object object, Function callback)
  487. each:vjo.NEEDS_IMPL,
  488. /* extend method for plugin */
  489. //> public jQuery extend( Object object )
  490. //> public Object extend(boolean deep, Object target, Object object1, Object... objectN)
  491. //> public Object extend(Object target, Object object1, Object... objectN)
  492. extend:vjo.NEEDS_IMPL,
  493. //> public Array grep(Array array,Function callback)
  494. //> public Array grep(Array array,Function callback,boolean invert)
  495. grep:vjo.NEEDS_IMPL,
  496. //> public Array makeArray(Object object)
  497. makeArray:vjo.NEEDS_IMPL,
  498. //> public Array map(Array array,Function callback)
  499. map:vjo.NEEDS_IMPL,
  500. //> public int inArray(Object value,Array array)
  501. inArray:vjo.NEEDS_IMPL,
  502. //> public Array merge(Array a1,Array a2)
  503. merge:vjo.NEEDS_IMPL,
  504. //> public Array unique(Array array)
  505. unique:vjo.NEEDS_IMPL,
  506. /*Category: Utilities - Test operations @ http://docs.jquery.com/Utilities */
  507. //> public boolean isArray(Object object)
  508. isArray:vjo.NEEDS_IMPL,
  509. //> public boolean isFunction(Object oject)
  510. isFunction:vjo.NEEDS_IMPL,
  511. /*Category: Utilities - String operations @ http://docs.jquery.com/Utilities */
  512. //> public String trim(String str)
  513. trim:vjo.NEEDS_IMPL,
  514. /*Category: Utilities - URLs @ http://docs.jquery.com/Utilities */
  515. //> public String param(Object obj)
  516. param:vjo.NEEDS_IMPL,
  517. /*Category: Internals - Data Cache @ http://docs.jquery.com/Internals */
  518. //> public int data(Element elem)
  519. //> public Object data(Element elem,String name)
  520. //> public Object data(Element elem,String name,Object value)
  521. data:vjo.NEEDS_IMPL,
  522. //> public void removeData(Element elem)
  523. //> public void removeData(Element elem,String name)
  524. removeData:vjo.NEEDS_IMPL
  525. })
  526. .options({
  527. metatype: true
  528. })
  529. .endType();