Java Doc for AlertLFImpl.java in  » 6.0-JDK-Modules » j2me » javax » microedition » lcdui » 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 » javax.microedition.lcdui 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.microedition.lcdui.DisplayableLFImpl
      javax.microedition.lcdui.AlertLFImpl

AlertLFImpl
class AlertLFImpl extends DisplayableLFImpl implements AlertLF(Code)
Look & Feel implementation of Alert based on platform widget.



Constructor Summary
 AlertLFImpl(Alert a)
     Creates an AlertLF for the passed in Alert instance.

Method Summary
 voidcreateNativeResource()
     Create native resource for this Alert.
 voidlCallHide()
     Notify this Alert that it will no longer be displayed.
 voidlCallShow()
     Notify this Alert that it is being displayed.
public  intlGetDefaultTimeout()
     Gets default timeout for the Alert associated with this view.
public  CommandlGetDismissCommand()
     Return the command that should be mapped to Alert.DISMISS_COMMAND.
public  booleanlIsModal()
     Determines if Alert associated with this view is modal.
 voidlRequestInvalidate()
     Called upon content change to schedule a request for relayout and repaint.
public  voidlSetImage(Image oldImg, Image newImg)
     Notifies image change.
public  voidlSetIndicator(Gauge oldIndicator, Gauge newIndicator)
     Notifies indicator change.
public  voidlSetString(String oldString, String newString)
     Notifies string change.
public  voidlSetTimeout(int timeout)
     Notifies timeout change.
public  voidlSetType(AlertType type)
     Notifies Alert type change. Changing type on an already visible Alert will only update the default icon.
public  voiduCallInvalidate()
     Called by the event handler to perform a re-layout on this AlertLF.
public  voiduCallSizeChanged(int w, int h)
    


Constructor Detail
AlertLFImpl
AlertLFImpl(Alert a)(Code)
Creates an AlertLF for the passed in Alert instance.
Parameters:
  a - The Alert associated with this look & feel




Method Detail
createNativeResource
void createNativeResource()(Code)
Create native resource for this Alert. Gauge resource will not be created.



lCallHide
void lCallHide()(Code)
Notify this Alert that it will no longer be displayed. Override the version in DisplayableLFImpl.



lCallShow
void lCallShow()(Code)
Notify this Alert that it is being displayed. Override the version in DisplayableLFImpl.



lGetDefaultTimeout
public int lGetDefaultTimeout()(Code)
Gets default timeout for the Alert associated with this view. the default timeout



lGetDismissCommand
public Command lGetDismissCommand()(Code)
Return the command that should be mapped to Alert.DISMISS_COMMAND. command that maps to Alert.DISMISS_COMMAND



lIsModal
public boolean lIsModal()(Code)
Determines if Alert associated with this view is modal. true if this AlertLF should be displayed as modal



lRequestInvalidate
void lRequestInvalidate()(Code)
Called upon content change to schedule a request for relayout and repaint.



lSetImage
public void lSetImage(Image oldImg, Image newImg)(Code)
Notifies image change.
Parameters:
  oldImg - the old image set in the correspondingAlert.
Parameters:
  newImg - the new image set in the correspondingAlert.



lSetIndicator
public void lSetIndicator(Gauge oldIndicator, Gauge newIndicator)(Code)
Notifies indicator change.
Parameters:
  oldIndicator - the old indicator set in the correspondingAlert.
Parameters:
  newIndicator - the new indicator set in the correspondingAlert.



lSetString
public void lSetString(String oldString, String newString)(Code)
Notifies string change.
Parameters:
  oldString - the old string set in the correspondingAlert.
Parameters:
  newString - the new string set in the correspondingAlert.



lSetTimeout
public void lSetTimeout(int timeout)(Code)
Notifies timeout change. Changing timeout on an already visible Alert will restart the timer, but has no effect on current layout.
Parameters:
  timeout - the new timeout set in the correspondingAlert.



lSetType
public void lSetType(AlertType type)(Code)
Notifies Alert type change. Changing type on an already visible Alert will only update the default icon. No sound will be played.
Parameters:
  type - the new AlertType set in thecorresponding Alert.



uCallInvalidate
public void uCallInvalidate()(Code)
Called by the event handler to perform a re-layout on this AlertLF.



uCallSizeChanged
public void uCallSizeChanged(int w, int h)(Code)
Notify return screen about screen size change



Fields inherited from javax.microedition.lcdui.DisplayableLFImpl
final static int FROZEN(Code)(Java Doc)
final static int HEIGHT(Code)(Java Doc)
final static int HIDDEN(Code)(Java Doc)
final static int INVALID_NATIVE_ID(Code)(Java Doc)
final static int SHOWN(Code)(Java Doc)
final static int WIDTH(Code)(Java Doc)
final static int X(Code)(Java Doc)
final static int Y(Code)(Java Doc)
Display currentDisplay(Code)(Java Doc)
boolean defferedSizeChange(Code)(Java Doc)
int modelVersion(Code)(Java Doc)
int nativeId(Code)(Java Doc)
Displayable owner(Code)(Java Doc)
boolean pendingInvalidate(Code)(Java Doc)
boolean sawKeyPress(Code)(Java Doc)
boolean sawPointerPress(Code)(Java Doc)
int state(Code)(Java Doc)
int widthheight(Code)(Java Doc)

Methods inherited from javax.microedition.lcdui.DisplayableLFImpl
abstract void createNativeResource()(Code)(Java Doc)
void deleteNativeResource()(Code)(Java Doc)
public int getVerticalScrollPosition()(Code)(Java Doc)
public int getVerticalScrollProportion()(Code)(Java Doc)
public void lAddCommand(Command cmd, int i)(Code)(Java Doc)
void lCallHide()(Code)(Java Doc)
void lCallShow()(Code)(Java Doc)
public void lCommitPendingInteraction()(Code)(Java Doc)
public Display lGetCurrentDisplay()(Code)(Java Doc)
public Displayable lGetDisplayable()(Code)(Java Doc)
public int lGetHeight()(Code)(Java Doc)
public int lGetWidth()(Code)(Java Doc)
public boolean lIsShown()(Code)(Java Doc)
public void lRemoveCommand(Command cmd, int i)(Code)(Java Doc)
void lRequestInvalidate()(Code)(Java Doc)
void lRequestPaint(int x, int y, int width, int height, Object target)(Code)(Java Doc)
void lRequestPaint()(Code)(Java Doc)
void lRequestPaintContents()(Code)(Java Doc)
public void lSetDisplay(Display d)(Code)(Java Doc)
public void lSetTicker(Ticker oldTicker, Ticker newTicker)(Code)(Java Doc)
public void lSetTitle(String oldTitle, String newTitle)(Code)(Java Doc)
void tickerTextChanged(Ticker t)(Code)(Java Doc)
public void uCallFreeze()(Code)(Java Doc)
public void uCallHide()(Code)(Java Doc)
public void uCallInvalidate()(Code)(Java Doc)
public void uCallKeyEvent(int type, int keyCode)(Code)(Java Doc)
void uCallKeyPressed(int keyCode)(Code)(Java Doc)
void uCallKeyReleased(int keyCode)(Code)(Java Doc)
void uCallKeyRepeated(int keyCode)(Code)(Java Doc)
public void uCallPaint(Graphics g, Object target)(Code)(Java Doc)
void uCallPointerDragged(int x, int y)(Code)(Java Doc)
public void uCallPointerEvent(int type, int x, int y)(Code)(Java Doc)
void uCallPointerPressed(int x, int y)(Code)(Java Doc)
void uCallPointerReleased(int x, int y)(Code)(Java Doc)
public void uCallScrollContent(int scrollType, int thumbPosition)(Code)(Java Doc)
public void uCallShow()(Code)(Java Doc)
public void uCallSizeChanged(int w, int h)(Code)(Java Doc)
public int uGetKeyMask()(Code)(Java Doc)
public boolean uIsScrollNative()(Code)(Java Doc)
void uRequestPaint()(Code)(Java Doc)
public void uSetFullScreenMode(boolean mode)(Code)(Java Doc)
public boolean uSetRotatedStatus(boolean newStatus)(Code)(Java Doc)
public void updateCommandSet()(Code)(Java Doc)

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.