Java Doc for FxConfig.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.BaseConfig
         com.gwtext.client.core.GenericConfig
            com.gwtext.client.core.FxConfig

FxConfig
public class FxConfig extends GenericConfig (Code)
com.gwtext.client.core.Fx configuration options.



Constructor Summary
public  FxConfig()
     Construct a new instance.
public  FxConfig(int duration)
     Construct a new instance.

Method Summary
public  voidsetAfterCls(String afterCls)
     A css class to apply after the effect.
public  voidsetAfterStyle(String afterStyle)
     A style specification string, e.g.
public  voidsetAfterStyle(GenericConfig afterStyle)
     A style specification that will be applied to the Element after the effect finishes.
native public  voidsetAfterStyle(Function fn)
     A style specification function which returns such a specification that will be applied to the Element after the effect finishes.
native public  voidsetCallback(Function callback)
     A function called when the effect is finished.
public  voidsetConcurrent(boolean concurrent)
     Whether to allow subsequently-queued effects to run at the same time as the current effect, or to ensure that they run in sequence.
public  voidsetDuration(float duration)
     The length of time (in seconds) that the effect should last.
public  voidsetEasing(Easing easing)
     An Easing value for the effect.
public  voidsetEndOpacity(float endOpacity)
     The end opacity after the effect completed.
public  voidsetRemove(boolean remove)
     Whether the Element should be removed from the DOM and destroyed after the effect finishes.
public  voidsetStopFx(boolean stopFx)
     Whether subsequent effects should be stopped and removed after the current effect finishes.
public  voidsetUseDisplay(boolean useDisplay)
    


Constructor Detail
FxConfig
public FxConfig()(Code)
Construct a new instance.



FxConfig
public FxConfig(int duration)(Code)
Construct a new instance.
Parameters:
  duration - the length of time (in seconds) that the effect should last




Method Detail
setAfterCls
public void setAfterCls(String afterCls)(Code)
A css class to apply after the effect.
Parameters:
  afterCls - the CSS class



setAfterStyle
public void setAfterStyle(String afterStyle)(Code)
A style specification string, e.g. "width:100px" that will be applied to the Element after the effect finishes.
Parameters:
  afterStyle - css style



setAfterStyle
public void setAfterStyle(GenericConfig afterStyle)(Code)
A style specification that will be applied to the Element after the effect finishes.
Parameters:
  afterStyle - css styles



setAfterStyle
native public void setAfterStyle(Function fn)(Code)
A style specification function which returns such a specification that will be applied to the Element after the effect finishes.
Parameters:
  fn - the style specification function



setCallback
native public void setCallback(Function callback)(Code)
A function called when the effect is finished.
Parameters:
  callback - the callback function



setConcurrent
public void setConcurrent(boolean concurrent)(Code)
Whether to allow subsequently-queued effects to run at the same time as the current effect, or to ensure that they run in sequence.
Parameters:
  concurrent - true for concurrent



setDuration
public void setDuration(float duration)(Code)
The length of time (in seconds) that the effect should last.
Parameters:
  duration - the duration in seconds



setEasing
public void setEasing(Easing easing)(Code)
An Easing value for the effect.
Parameters:
  easing - easing method



setEndOpacity
public void setEndOpacity(float endOpacity)(Code)
The end opacity after the effect completed.
Parameters:
  endOpacity - the end opacity (0 - 1)



setRemove
public void setRemove(boolean remove)(Code)
Whether the Element should be removed from the DOM and destroyed after the effect finishes.
Parameters:
  remove - true to remove



setStopFx
public void setStopFx(boolean stopFx)(Code)
Whether subsequent effects should be stopped and removed after the current effect finishes.
Parameters:
  stopFx - true to stop subsequent effects



setUseDisplay
public void setUseDisplay(boolean useDisplay)(Code)
Whether to use the display CSS property instead of visibility when hiding Elements (only applies to effects that end with the element being visually hidden, ignored otherwise)
Parameters:
  useDisplay - true to use display



Methods inherited from com.gwtext.client.core.GenericConfig
public String getProperty(String property)(Code)(Java Doc)
public boolean getPropertyAsBoolean(String property)(Code)(Java Doc)
public int getPropertyAsInt(String property)(Code)(Java Doc)
public int[] getPropertyAsIntArray(String property)(Code)(Java Doc)
public String[] getPropertyAsStringArray(String property)(Code)(Java Doc)
public void setProperty(String property, String value)(Code)(Java Doc)
public void setProperty(String property, int value)(Code)(Java Doc)
public void setProperty(String property, boolean value)(Code)(Java Doc)
public void setProperty(String property, int[] value)(Code)(Java Doc)
public void setProperty(String property, String[] value)(Code)(Java Doc)
public void setProperty(String property, GenericConfig value)(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.