Java Doc for DisplayController.java in  » 6.0-JDK-Modules » j2me » com » sun » midp » main » 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 » 6.0 JDK Modules » j2me » com.sun.midp.main 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.midp.main.DisplayController

All known Subclasses:   com.sun.midp.main.AutoDisplayController,  com.sun.midp.main.SMMDisplayController,  com.sun.midp.main.MVMDisplayController,
DisplayController
class DisplayController (Code)
This class controls which MIDlet's display is in the foreground. Running only in the AMS Isolate (0) the controller consulted by the MIDlet proxy list for any foreground when various state changes occur in a MIDlet. The display controller automatically selects the next foreground if needed.

From the user perspective when the last MIDlet the user launched sets its current displayable for the first time, that MIDlet should automatically get the foreground (see the midletCreated and foregroundRequest methods).

A MIDlet that is paused or destroyed is treated as if it has requested the background as described above.



Field Summary
protected  MIDletProxylastMidletCreated
     The last MIDlet added to the MIDlet proxy list, but has not requested to be in the foreground.
protected  MIDletProxyListmidletProxyList
     Cache of the MIDlet proxy list reference.

Constructor Summary
protected  DisplayController(MIDletProxyList theMIDletProxyList)
     Construct a DisplayController with a reference to the ProxyList.

Method Summary
public  voidaddListener(DisplayControllerListener listener)
     Add a listener.
 MIDletProxybackgroundRequest(MIDletProxy midlet)
     Handles MIDlet background requests.
 MIDletProxyendPreempting(int isolateId, int displayId)
     End the preempt an Isolate's displays.
 MIDletProxyforegroundMidletChanging(MIDletProxy midlet)
     Call to notify that foreground MIDlet is changing and give the display controller a chance to preempt the change.
 MIDletProxyforegroundRequest(MIDletProxy midlet)
     Handles MIDlet foreground requests.
 MIDletProxymidletActive(MIDletProxy midlet)
     Called when a MIDlet is move to active state.
 voidmidletCreated(MIDletProxy midlet)
     Update the last MIDlet created field so when the wantsForeground field of the MIDletProxy is updated to be true, the MIDlet can be automatically put into the foreground.
 MIDletProxymidletDestroyed(MIDletProxy midlet)
     If the removed MIDlet is the foreground MIDlet find a new foreground MIDlet.
 MIDletProxymidletPaused(MIDletProxy midlet)
     Handles any possible foreground changes due the state of a MIDlet changing to paused.
 voidnotifyListenersOfSelectForeground(boolean onlyFromLaunchedList)
     Notify the listeners of the display controller that foreground selection ui should be launched.
public  voidremoveListener(DisplayControllerListener listener)
     Remove a listener for DisplayController.
 MIDletProxyselectForeground(boolean onlyFromLaunchedList)
     Called to process a select foreground event.
 MIDletProxystartPreempting(MIDletProxy preempting)
     Called to process a preempt event.
 MIDletProxytransferRequest(MIDletProxy origin, MIDletProxy target)
     Request a transfer of the foreground from one MIDlet to another.

Field Detail
lastMidletCreated
protected MIDletProxy lastMidletCreated(Code)
The last MIDlet added to the MIDlet proxy list, but has not requested to be in the foreground.



midletProxyList
protected MIDletProxyList midletProxyList(Code)
Cache of the MIDlet proxy list reference.




Constructor Detail
DisplayController
protected DisplayController(MIDletProxyList theMIDletProxyList)(Code)
Construct a DisplayController with a reference to the ProxyList.
Parameters:
  theMIDletProxyList - reference to the MIDlet proxy list




Method Detail
addListener
public void addListener(DisplayControllerListener listener)(Code)
Add a listener.
Parameters:
  listener - DisplayController listener



backgroundRequest
MIDletProxy backgroundRequest(MIDletProxy midlet)(Code)
Handles MIDlet background requests.

If the MIDlet is requesting to be put in the background is the foreground MIDlet, then find a MIDlet to bring to the foreground (see the findNextForeground method).
Parameters:
  midlet - The proxy of the MIDlet that was updated Proxy of the next foreground MIDlet, may be the foregroundMIDlet if the foreground should not change




endPreempting
MIDletProxy endPreempting(int isolateId, int displayId)(Code)
End the preempt an Isolate's displays.
Parameters:
  isolateId - isolate ID of display that done preempting
Parameters:
  displayId - display ID of display that done preempting Proxy of the next foreground MIDlet, may be the foregroundMIDlet if the foreground should not change



foregroundMidletChanging
MIDletProxy foregroundMidletChanging(MIDletProxy midlet)(Code)
Call to notify that foreground MIDlet is changing and give the display controller a chance to preempt the change. Also the last MIDlet created state will be reset.

If the MIDlet to get the foreground is paused, then activate it.
Parameters:
  midlet - proxy of the MIDlet to be put in the foreground Proxy of the next foreground MIDlet, may be the foregroundMIDlet if the foreground should not change




foregroundRequest
MIDletProxy foregroundRequest(MIDletProxy midlet)(Code)
Handles MIDlet foreground requests.

If proxy being updated belongs last MIDlet created in the proxy list, then put the MIDlet in the foreground.

If there is no foreground MIDlet or the foreground MIDlet does not want the foreground or the foreground MIDlet is paused, then put the MIDlet in the foreground.
Parameters:
  midlet - The proxy of the MIDlet that was updated Proxy of the next foreground MIDlet, may be the foregroundMIDlet if the foreground should not change




midletActive
MIDletProxy midletActive(MIDletProxy midlet)(Code)
Called when a MIDlet is move to active state.
Parameters:
  midlet - The proxy of the MIDlet being activated Proxy of the next foreground MIDlet, may be the foregroundMIDlet if the foreground should not change



midletCreated
void midletCreated(MIDletProxy midlet)(Code)
Update the last MIDlet created field so when the wantsForeground field of the MIDletProxy is updated to be true, the MIDlet can be automatically put into the foreground.

Called when a MIDlet is created to the proxy list.
Parameters:
  midlet - The proxy of the MIDlet being created




midletDestroyed
MIDletProxy midletDestroyed(MIDletProxy midlet)(Code)
If the removed MIDlet is the foreground MIDlet find a new foreground MIDlet. After clearing the last midlet created, treat this state change as background request.

Called when a MIDlet is removed from the proxy list.
Parameters:
  midlet - The proxy of the removed MIDlet Proxy of the next foreground MIDlet, may be the foregroundMIDlet if the foreground should not change




midletPaused
MIDletProxy midletPaused(MIDletProxy midlet)(Code)
Handles any possible foreground changes due the state of a MIDlet changing to paused.

Treat this state change as a background request.

Called when the state of a MIDlet in the MIDlet proxy list is paused.
Parameters:
  midlet - The proxy of the MIDlet that was updated Proxy of the next foreground MIDlet, may be the foregroundMIDlet if the foreground should not change




notifyListenersOfSelectForeground
void notifyListenersOfSelectForeground(boolean onlyFromLaunchedList)(Code)
Notify the listeners of the display controller that foreground selection ui should be launched.
Parameters:
  onlyFromLaunchedList - true if midlet shouldbe selected from the list of already launched midlets,if false then possibility to launch midlet is needed.



removeListener
public void removeListener(DisplayControllerListener listener)(Code)
Remove a listener for DisplayController.
Parameters:
  listener - DisplayController listener



selectForeground
MIDletProxy selectForeground(boolean onlyFromLaunchedList)(Code)
Called to process a select foreground event. Processing this event only needs to be done when application MIDlets are allowed to run concurrently. In SVM mode the display controller returns foreground MIDlet.
Parameters:
  onlyFromLaunchedList - true if midlet shouldbe selected from the list of already launched midlets,if false then possibility to launch midlet is needed. Proxy of the next foreground MIDlet, may be the foregroundMIDlet if the foreground should not change



startPreempting
MIDletProxy startPreempting(MIDletProxy preempting)(Code)
Called to process a preempt event. The default is to preempt the foreground.
Parameters:
  preempting - proxy of the preempting MIDlet to be put in theforeground when a preempted MIDlet gets the foreground or to beput in the foreground directly. Proxy of the next foreground MIDlet, may be the foregroundMIDlet if the foreground should not change



transferRequest
MIDletProxy transferRequest(MIDletProxy origin, MIDletProxy target)(Code)
Request a transfer of the foreground from one MIDlet to another. The transfer only succeeds if the current foreground is the "from" MIDlet.
Parameters:
  origin - the MIDletProxy from which the FG should transfer from
Parameters:
  target - the MIDletProxy to which the FG should transfer to the choice about which to become the FG



Methods inherited from java.lang.Object
public boolean equals(Object obj)(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.