Java Doc for CompositeElement.java in  » Ajax » gwtext-2.01 » com » gwtext » client » core » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Ajax » gwtext 2.01 » com.gwtext.client.core 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.gwtext.client.core.JsObject
      com.gwtext.client.core.BaseElement
         com.gwtext.client.core.CompositeElement

All known Subclasses:   com.gwtext.client.core.CompositeElementLite,
CompositeElement
public class CompositeElement extends BaseElement (Code)
Standard composite class that creates an ExtElement for every element in the collection.



Constructor Summary
public  CompositeElement(JavaScriptObject jsObj)
     Create a CompositeElement using a native element.

Method Summary
native public  CompositeElementadd(String selector)
     Adds elements to this composite.
native public  CompositeElementadd(ExtElement element)
     Adds elements to this composite.
native public  voidclear()
     Removes all elements.
native public  voidcontains(ExtElement element)
     Returns true if this composite contains the passed element.
native public  CompositeElementfilter(String selector)
     Filters this composite to only elements that match the passed selector.
native public  ExtElementfirst()
    
native public  intgetCount()
     Returns the number of elements in this composite.
native public  intindexOf(ExtElement element)
     Position of the Element in the CompositeElement list.
native public  ExtElementlast()
     Returns the last Element.
native public  CompositeElementremoveElement(int index)
     Removes the specified element.
native public  CompositeElementremoveElement(int index, boolean removeDom)
     Removes the specified element.
native public  CompositeElementremoveElement(ExtElement element)
     Removes the specified element.
native public  CompositeElementremoveElement(ExtElement element, boolean removeDom)
     Removes the specified element.
native public  CompositeElementreplaceElement(int index, ExtElement replacement)
     Replaces the specified element with the passed element.
native public  CompositeElementreplaceElement(int index, ExtElement replacement, boolean removeDom)
     Replaces the specified element with the passed element.
native public  CompositeElementreplaceElement(ExtElement element, ExtElement replacement)
     Replaces the specified element with the passed element.
native public  CompositeElementreplaceElement(ExtElement element, ExtElement replacement, boolean removeDom)
     Replaces the specified element with the passed element.


Constructor Detail
CompositeElement
public CompositeElement(JavaScriptObject jsObj)(Code)
Create a CompositeElement using a native element.
Parameters:
  jsObj - native object




Method Detail
add
native public CompositeElement add(String selector)(Code)
Adds elements to this composite.
Parameters:
  selector - a CSS selector this



add
native public CompositeElement add(ExtElement element)(Code)
Adds elements to this composite.
Parameters:
  element - the elemetn to add this



clear
native public void clear()(Code)
Removes all elements.



contains
native public void contains(ExtElement element)(Code)
Returns true if this composite contains the passed element.
Parameters:
  element - true if containts element



filter
native public CompositeElement filter(String selector)(Code)
Filters this composite to only elements that match the passed selector.
Parameters:
  selector - a CSS selector this



first
native public ExtElement first()(Code)
Returns the first Element the first element



getCount
native public int getCount()(Code)
Returns the number of elements in this composite. the element count



indexOf
native public int indexOf(ExtElement element)(Code)
Position of the Element in the CompositeElement list.
Parameters:
  element - the element index of element



last
native public ExtElement last()(Code)
Returns the last Element. the last element



removeElement
native public CompositeElement removeElement(int index)(Code)
Removes the specified element.
Parameters:
  index - element to remove this



removeElement
native public CompositeElement removeElement(int index, boolean removeDom)(Code)
Removes the specified element.
Parameters:
  index - element to remove
Parameters:
  removeDom - true to also remove element from the document this



removeElement
native public CompositeElement removeElement(ExtElement element)(Code)
Removes the specified element.
Parameters:
  element - the element to remove this



removeElement
native public CompositeElement removeElement(ExtElement element, boolean removeDom)(Code)
Removes the specified element.
Parameters:
  element - the element to remove
Parameters:
  removeDom - true to also remove element from the document this



replaceElement
native public CompositeElement replaceElement(int index, ExtElement replacement)(Code)
Replaces the specified element with the passed element.
Parameters:
  index - the index of the element in this composite to replace
Parameters:
  replacement - the element to replace with this



replaceElement
native public CompositeElement replaceElement(int index, ExtElement replacement, boolean removeDom)(Code)
Replaces the specified element with the passed element.
Parameters:
  index - the index of the element in this composite to replace
Parameters:
  replacement - the element to replace with
Parameters:
  removeDom - true to remove and replace the element in the document too this



replaceElement
native public CompositeElement replaceElement(ExtElement element, ExtElement replacement)(Code)
Replaces the specified element with the passed element.
Parameters:
  element - the element in this composite to replace
Parameters:
  replacement - the element to replace with this



replaceElement
native public CompositeElement replaceElement(ExtElement element, ExtElement replacement, boolean removeDom)(Code)
Replaces the specified element with the passed element.
Parameters:
  element - the element in this composite to replace
Parameters:
  replacement - the element to replace with
Parameters:
  removeDom - true to remove and replace the element in the document too this



Methods inherited from com.gwtext.client.core.BaseElement
native public BaseElement addClass(String className)(Code)(Java Doc)
native public BaseElement addClass(String[] classNames)(Code)(Java Doc)
native public BaseElement addClassOnClick(String className)(Code)(Java Doc)
native public BaseElement addClassOnFocus(String className)(Code)(Java Doc)
native public BaseElement addClassOnOver(String className)(Code)(Java Doc)
native public BaseElement addClassOnOver(String className, boolean preventFlicker)(Code)(Java Doc)
native public KeyMap addKeyListener(int keyCode, KeyListener listener)(Code)(Java Doc)
native public KeyMap addKeyListener(int[] keyCodes, KeyListener listener)(Code)(Java Doc)
native public KeyMap addKeyListener(String keys, KeyListener listener)(Code)(Java Doc)
native public KeyMap addKeyMap(KeyMapConfig config)(Code)(Java Doc)
native public void addListener(String eventName, EventCallback cb)(Code)(Java Doc)
native public void addListener(String eventName, EventCallback cb, ListenerConfig config)(Code)(Java Doc)
public BaseElement alignTo(String id, String anchorPosition)(Code)(Java Doc)
native public BaseElement alignTo(String id, String anchorPosition, int[] offsetXY, boolean animate)(Code)(Java Doc)
native public BaseElement anchorTo(String id, String anchorPosition)(Code)(Java Doc)
native public BaseElement anchorTo(String id, String anchorPosition, int[] offsetXY, boolean animate, int bufferDelay)(Code)(Java Doc)
native public BaseElement animate(GenericConfig args)(Code)(Java Doc)
native public BaseElement animate(GenericConfig args, float duration, Function onComplete, Easing easing, String animType)(Code)(Java Doc)
native public BaseElement applyStyles(String style)(Code)(Java Doc)
native public BaseElement autoHeight()(Code)(Java Doc)
native public BaseElement autoHeight(boolean animate, float duration, Function onComplete, Easing easing)(Code)(Java Doc)
native public void clean()(Code)(Java Doc)
native public void clean(boolean forceClean)(Code)(Java Doc)
native public BaseElement clearOpacity()(Code)(Java Doc)
native public BaseElement clip()(Code)(Java Doc)
native public ExtElement createShim()(Code)(Java Doc)
native public BaseElement enableDisplayMode()(Code)(Java Doc)
native public BaseElement enableDisplayMode(String display)(Code)(Java Doc)
native public Fx fadeIn()(Code)(Java Doc)
native public Fx fadeIn(FxConfig config)(Code)(Java Doc)
native public Fx fadeOut()(Code)(Java Doc)
native public Fx fadeOut(FxConfig config)(Code)(Java Doc)
native public Fx frame()(Code)(Java Doc)
native public Fx frame(String color, int count, FxConfig config)(Code)(Java Doc)
native public Fx ghost()(Code)(Java Doc)
native public Fx ghost(String anchorPosition, FxConfig config)(Code)(Java Doc)
native public boolean hasActiveFx()(Code)(Java Doc)
native public boolean hasFxBlock()(Code)(Java Doc)
native public BaseElement hide()(Code)(Java Doc)
native public BaseElement hide(boolean animate)(Code)(Java Doc)
native public BaseElement hide(AnimationConfig animateConfig)(Code)(Java Doc)
native public Fx highlight()(Code)(Java Doc)
native public Fx highlight(String color, FxConfig config)(Code)(Java Doc)
native public Fx highlight(String color, String attr, String endColor, FxConfig config)(Code)(Java Doc)
native public BaseElement move(Direction direction, int distance)(Code)(Java Doc)
native public BaseElement move(Direction direction, int distance, boolean animate)(Code)(Java Doc)
native public BaseElement move(Direction direction, int distance, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement moveTo(int x, int y)(Code)(Java Doc)
native public BaseElement moveTo(int x, int y, boolean animate)(Code)(Java Doc)
native public BaseElement moveTo(int x, int y, AnimationConfig animateConfig)(Code)(Java Doc)
native public Fx pause(int seconds)(Code)(Java Doc)
native public Fx puff()(Code)(Java Doc)
native public Fx puff(boolean remove, FxConfig config)(Code)(Java Doc)
native public BaseElement radioClass(String className)(Code)(Java Doc)
native public BaseElement radioClass(String[] classNames)(Code)(Java Doc)
native public void remove()(Code)(Java Doc)
native public void removeAllListeners()(Code)(Java Doc)
native public BaseElement removeClass(String className)(Code)(Java Doc)
native public BaseElement removeClass(String[] classNames)(Code)(Java Doc)
native public BaseElement repaint()(Code)(Java Doc)
native public BaseElement replaceClass(String oldClassName, String newClassName)(Code)(Java Doc)
native public Fx scale(int width, int height)(Code)(Java Doc)
native public Fx scale(int width, int height, FxConfig config)(Code)(Java Doc)
native public boolean scroll(Direction direction, int distance, boolean animate)(Code)(Java Doc)
native public boolean scroll(Direction direction, int distance, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement scrollTo(String side, int value, boolean animate)(Code)(Java Doc)
native public BaseElement scrollTo(String side, int value, AnimationConfig animateConfig)(Code)(Java Doc)
native public Fx sequenceFx()(Code)(Java Doc)
native public BaseElement setBottom(String bottom)(Code)(Java Doc)
native public BaseElement setBounds(int x, int y, int width, int height)(Code)(Java Doc)
native public BaseElement setBounds(int x, int y, int width, int height, boolean animate)(Code)(Java Doc)
native public BaseElement setBounds(int x, int y, int width, int height, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement setBox(Box box)(Code)(Java Doc)
native public BaseElement setBox(Box box, boolean adjust, boolean animate)(Code)(Java Doc)
native public BaseElement setBox(Box box, boolean adjust, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement setDisplayed(boolean value)(Code)(Java Doc)
native public BaseElement setHeight(int height, boolean animate)(Code)(Java Doc)
native public BaseElement setHeight(int height, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement setLeft(String left)(Code)(Java Doc)
native public BaseElement setLeftTop(String left, String top)(Code)(Java Doc)
native public BaseElement setLocation(int x, int y, boolean animate)(Code)(Java Doc)
native public BaseElement setLocation(int x, int y, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement setOpacity(float opacity, boolean animate)(Code)(Java Doc)
native public BaseElement setOpacity(float opacity, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement setRegion(Region region, boolean animate)(Code)(Java Doc)
native public BaseElement setRegion(Region region, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement setRight(String right)(Code)(Java Doc)
native public BaseElement setSize(int width, int height, boolean animate)(Code)(Java Doc)
native public BaseElement setSize(int width, int height, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement setStyle(String style, String value)(Code)(Java Doc)
native public BaseElement setStyles(GenericConfig styles)(Code)(Java Doc)
native public BaseElement setTop(String top)(Code)(Java Doc)
native public BaseElement setVisibilityMode(boolean useVisibleProperty)(Code)(Java Doc)
public BaseElement setVisible(boolean visible)(Code)(Java Doc)
native public BaseElement setVisible(boolean visible, boolean animate)(Code)(Java Doc)
native public BaseElement setVisible(boolean visible, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement setWidth(int width, boolean animate)(Code)(Java Doc)
native public BaseElement setWidth(String width, boolean animate)(Code)(Java Doc)
native public BaseElement setWidth(int width, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement setX(int x, boolean animate)(Code)(Java Doc)
native public BaseElement setX(int x, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement setXY(int x, int y, boolean animate)(Code)(Java Doc)
native public BaseElement setXY(int x, int y, AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement setY(int y, boolean animate)(Code)(Java Doc)
native public BaseElement setY(int y, AnimationConfig animateConfig)(Code)(Java Doc)
native public Fx shift(int x, int y, int width, int height, FxConfig config)(Code)(Java Doc)
native public BaseElement show(boolean animate)(Code)(Java Doc)
native public BaseElement show(AnimationConfig animateConfig)(Code)(Java Doc)
native public Fx slideIn()(Code)(Java Doc)
native public Fx slideIn(String anchorPosition, FxConfig config)(Code)(Java Doc)
native public Fx slideOut()(Code)(Java Doc)
native public Fx slideOut(boolean remove, String anchorPosition, FxConfig config)(Code)(Java Doc)
native public Fx stopFx()(Code)(Java Doc)
native public BaseElement swallowEvent(String eventName)(Code)(Java Doc)
native public BaseElement swallowEvent(String eventName, boolean preventDefault)(Code)(Java Doc)
native public Fx switchOff()(Code)(Java Doc)
native public Fx switchOff(boolean remove, FxConfig config)(Code)(Java Doc)
native public Fx syncFx()(Code)(Java Doc)
native public BaseElement toggle(boolean animate)(Code)(Java Doc)
native public BaseElement toggle(AnimationConfig animateConfig)(Code)(Java Doc)
native public BaseElement toggleClass(String className)(Code)(Java Doc)
native public void unselectable()(Code)(Java Doc)
public void update(String html)(Code)(Java Doc)
native public void update(String html, boolean loadScripts)(Code)(Java Doc)
native public Element wrap(DomConfig config)(Code)(Java Doc)

Fields inherited from com.gwtext.client.core.JsObject
protected JavaScriptObject jsObj(Code)(Java Doc)

Methods inherited from com.gwtext.client.core.JsObject
public JavaScriptObject getJsObj()(Code)(Java Doc)
native public String[] getProperties()(Code)(Java Doc)
protected boolean isCreated()(Code)(Java Doc)
public void setJsObj(JavaScriptObject jsObj)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.