Java Doc for Timeline.java in  » Ajax » Laszlo-4.0.10 » org » openlaszlo » iv » flash » api » 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 » Laszlo 4.0.10 » org.openlaszlo.iv.flash.api 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.openlaszlo.iv.flash.util.IVVector
      org.openlaszlo.iv.flash.api.Timeline

Timeline
final public class Timeline extends IVVector (Code)
Flash timeline

A timeline contains zero or more Frame frames
author:
   Dmitry Skavish
See Also:   Frame
See Also:   Script




Constructor Summary
public  Timeline()
    
public  Timeline(int capacity)
    
public  Timeline(IVVector data)
    

Method Summary
public  voidaddBounds(Rectangle2D rect)
    
public  voidaddFrame(Frame o)
    
public  voidapply(Context context)
    
public  voidcollectDeps(DepsCollector dc)
    
public  voiddoCommand(FlashFile file, Context context, Script parent)
    
public  voidgenerate(FlashOutput fob, DepsCollector dc)
    
public  voidgenerate(FlashOutput fob, DepsCollector dc, int off)
    
public  IVVectorgetCopy(ScriptCopier copier)
    
public  FramegetFrameAt(int index)
    
public  intgetFrameCount()
    
public  intgetFrameIndex(Frame frame)
    
public  FrameinsertFrame(int index)
    
public  voidinsertFrames(int from, int num)
     Inserts specified number of empty frames

Beginning from frame number 'from' inserts 'num' empty frame in the timeline.

public  booleanisConstant()
    
public  FramenewFrame()
    
public  voidprintContent(PrintStream out, String indent)
    
public  voidprocess(FlashFile file, Context context)
    
public  voidremoveFrame(Frame o)
    
public  FrameremoveFrameAt(int index)
    
public  voidsetFrameAt(Frame o, int index)
    
public  voidwrite(FlashOutput fob)
    


Constructor Detail
Timeline
public Timeline()(Code)
Creates empty timeline



Timeline
public Timeline(int capacity)(Code)
Creates empty timeline of specified capacity



Timeline
public Timeline(IVVector data)(Code)
Creates timeline from specified vector

Copies all the frames from specified vector
Parameters:
  data - vector of Frames





Method Detail
addBounds
public void addBounds(Rectangle2D rect)(Code)



addFrame
public void addFrame(Frame o)(Code)
Adds specified frame to the end of this timeline
Parameters:
  o - frame to be added



apply
public void apply(Context context)(Code)



collectDeps
public void collectDeps(DepsCollector dc)(Code)



doCommand
public void doCommand(FlashFile file, Context context, Script parent) throws IVException(Code)



generate
public void generate(FlashOutput fob, DepsCollector dc)(Code)
Writes this timeline to flash buffer

Has to be used only when writing main timeline
Parameters:
  fob - flash buffer to write to
Parameters:
  dc - dependencies collector used when writing




generate
public void generate(FlashOutput fob, DepsCollector dc, int off)(Code)
Writes this timeline to flash buffer

Has to be used only when writing main timeline
Parameters:
  fob - flash buffer to write to
Parameters:
  dc - dependencies collector used when writing
Parameters:
  off - frame offset to start from




getCopy
public IVVector getCopy(ScriptCopier copier)(Code)



getFrameAt
public Frame getFrameAt(int index)(Code)
Returns frame from this timeline at specified index
Parameters:
  index - specified index frame at specified index



getFrameCount
public int getFrameCount()(Code)
Returns number of frames in the timeline number of frames



getFrameIndex
public int getFrameIndex(Frame frame)(Code)
Returns index of specified frame in the timeline or -1
Parameters:
  frame - specified frame index of specified frame in the timeline or -1



insertFrame
public Frame insertFrame(int index)(Code)
Inserts one empty frame at specified index
Parameters:
  index - specified index new inserted frame



insertFrames
public void insertFrames(int from, int num)(Code)
Inserts specified number of empty frames

Beginning from frame number 'from' inserts 'num' empty frame in the timeline.
Parameters:
  from - start inserting frames beginning from this one
Parameters:
  num - number of empty frames to insert




isConstant
public boolean isConstant()(Code)



newFrame
public Frame newFrame()(Code)
Creates new empty frame, adds it to the end of this timeline and returns it new frame



printContent
public void printContent(PrintStream out, String indent)(Code)



process
public void process(FlashFile file, Context context) throws IVException(Code)



removeFrame
public void removeFrame(Frame o)(Code)
Removes specified frame from this timeline
Parameters:
  o - frame to be removed



removeFrameAt
public Frame removeFrameAt(int index)(Code)
Removes frame from this timeline at specified index
Parameters:
  index - specified index removed frame



setFrameAt
public void setFrameAt(Frame o, int index)(Code)
Replaces frame at specified index with specified one
Parameters:
  o - specified frame
Parameters:
  index - specified index



write
public void write(FlashOutput fob)(Code)
Writes this timeline to flash buffer

Has to be used only when writing NON main timelines
Parameters:
  fob - flash buffer to write to




Fields inherited from org.openlaszlo.iv.flash.util.IVVector
final protected static int INIT_CAPACITY(Code)(Java Doc)
protected Object[] objects(Code)(Java Doc)
protected int top(Code)(Java Doc)

Methods inherited from org.openlaszlo.iv.flash.util.IVVector
final public void addElement(Object o)(Code)(Java Doc)
final public void clear()(Code)(Java Doc)
public Object clone()(Code)(Java Doc)
final public void copyInto(Object[] cobjects)(Code)(Java Doc)
final public Object elementAt(int index)(Code)(Java Doc)
final public Enumeration elements()(Code)(Java Doc)
final public void ensureCapacity(int cap)(Code)(Java Doc)
final protected int find(Object o)(Code)(Java Doc)
public IVVector getCopy(ScriptCopier copier)(Code)(Java Doc)
final protected void init(int capacity)(Code)(Java Doc)
final protected void init(int capacity, int top)(Code)(Java Doc)
final public void insertObjects(int from, int num)(Code)(Java Doc)
public void printContent(PrintStream out, String indent)(Code)(Java Doc)
final public void removeElement(Object o)(Code)(Java Doc)
final public Object removeElementAt(int index)(Code)(Java Doc)
final public void removeRange(int from, int to)(Code)(Java Doc)
final public void reset()(Code)(Java Doc)
final public void setElementAt(Object o, int index)(Code)(Java Doc)
final public int size()(Code)(Java Doc)
public void write(FlashOutput fob)(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.