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


java.lang.Object
   java.awt.Component
      com.sun.jumpimpl.presentation.simplebasis.SimpleBasisAMSImageButton

SimpleBasisAMSImageButton
public class SimpleBasisAMSImageButton extends Component implements FocusListener,MouseListener(Code)


Field Summary
final public static  intDEPRESSED
    
final public static  intDISABLED
    
final public static  intOVER
    
final public static  intUNPRESSED
    

Constructor Summary
public  SimpleBasisAMSImageButton()
    
public  SimpleBasisAMSImageButton(Image image)
     Constructs an SimpleBasisAMSImageButton with the given image.
public  SimpleBasisAMSImageButton(String label)
    
public  SimpleBasisAMSImageButton(Image image, String label)
    

Method Summary
public synchronized  voidaddActionListener(ActionListener l)
    
public  voiddoAction()
    
public  voidfocusGained(FocusEvent e)
    
public  voidfocusLost(FocusEvent e)
    
public  StringgetLabel()
    
public  DimensiongetPreferredSize()
     Overrides awt.Component.preferredSize() to return the preferred size of the button. This assumes the images (if more than one) are all the same size.
public  booleanisEnabled()
    
public  booleanisFocusable()
    
public  booleanlastFocused()
    
public  voidmouseClicked(MouseEvent e)
    
public  voidmouseEntered(MouseEvent e)
    
public  voidmouseExited(MouseEvent e)
    
public  voidmousePressed(MouseEvent e)
    
public  voidmouseReleased(MouseEvent e)
    
public  voidpaint(Graphics g)
     Overrides awt.Component.paint() to paint the current border and image.
public  voidprocessMouseEvent(MouseEvent e)
    
public synchronized  voidremoveActionListener(ActionListener l)
    
protected  voidsetButtonState(int buttonState)
    
public  voidsetDepressedBorder(SimpleBasisAMSBorder border)
     Sets the border to display when the button is pressed and the mouse is still over the button.
public  voidsetDepressedImage(Image image)
     Sets the image to display when the button is pressed and the mouse is still over the button.
public  voidsetDisabledBorder(SimpleBasisAMSBorder border)
     Sets the border to display when the button is disabled.
public  voidsetDisabledImage(Image image)
     Sets the image to display when the button is disabled.
public  voidsetFocusable(boolean val)
    
public  voidsetFont(Font f)
    
public  voidsetLabel(String str)
    
public  voidsetLabel(String str, int x, int y)
    
public  voidsetLabelDisplay(boolean val)
    
public  voidsetOverBorder(SimpleBasisAMSBorder border)
     Sets the border to display when the button is not pressed and the mouse is over the button.
public  voidsetOverImage(Image image)
     Sets the image to display when the button is not pressed and the mouse is over the button.
public  voidsetPaintBorders(boolean val)
    
public  voidsetTextColor(Color c)
    
public  voidsetTextShadow(boolean val)
    
public  voidsetUnpressedBorder(SimpleBasisAMSBorder border)
     Sets the border to display when the button is not pressed or hilited because of a mouse-over.
public  voidsetUnpressedImage(Image image)
     Sets the image to display when the button is not pressed or hilited because of a mouse-over.

Field Detail
DEPRESSED
final public static int DEPRESSED(Code)



DISABLED
final public static int DISABLED(Code)



OVER
final public static int OVER(Code)



UNPRESSED
final public static int UNPRESSED(Code)




Constructor Detail
SimpleBasisAMSImageButton
public SimpleBasisAMSImageButton()(Code)
Constructs an SimpleBasisAMSImageButton



SimpleBasisAMSImageButton
public SimpleBasisAMSImageButton(Image image)(Code)
Constructs an SimpleBasisAMSImageButton with the given image.
Parameters:
  image - the image for all states of the button(until other images are assigned)



SimpleBasisAMSImageButton
public SimpleBasisAMSImageButton(String label)(Code)



SimpleBasisAMSImageButton
public SimpleBasisAMSImageButton(Image image, String label)(Code)




Method Detail
addActionListener
public synchronized void addActionListener(ActionListener l)(Code)



doAction
public void doAction()(Code)



focusGained
public void focusGained(FocusEvent e)(Code)



focusLost
public void focusLost(FocusEvent e)(Code)



getLabel
public String getLabel()(Code)



getPreferredSize
public Dimension getPreferredSize()(Code)
Overrides awt.Component.preferredSize() to return the preferred size of the button. This assumes the images (if more than one) are all the same size. It also calculates the maximum insets from all borders and adds them to the image dimensions.
Parameters:
  g - The Graphics in which to draw



isEnabled
public boolean isEnabled()(Code)



isFocusable
public boolean isFocusable()(Code)



lastFocused
public boolean lastFocused()(Code)



mouseClicked
public void mouseClicked(MouseEvent e)(Code)



mouseEntered
public void mouseEntered(MouseEvent e)(Code)



mouseExited
public void mouseExited(MouseEvent e)(Code)



mousePressed
public void mousePressed(MouseEvent e)(Code)



mouseReleased
public void mouseReleased(MouseEvent e)(Code)



paint
public void paint(Graphics g)(Code)
Overrides awt.Component.paint() to paint the current border and image.
Parameters:
  g - The Graphics in which to draw



processMouseEvent
public void processMouseEvent(MouseEvent e)(Code)



removeActionListener
public synchronized void removeActionListener(ActionListener l)(Code)



setButtonState
protected void setButtonState(int buttonState)(Code)
Sets the current buttonState id for the button
Parameters:
  buttonState - the button state integer id



setDepressedBorder
public void setDepressedBorder(SimpleBasisAMSBorder border)(Code)
Sets the border to display when the button is pressed and the mouse is still over the button.
Parameters:
  border - the armed border



setDepressedImage
public void setDepressedImage(Image image)(Code)
Sets the image to display when the button is pressed and the mouse is still over the button.
Parameters:
  image - the armed image



setDisabledBorder
public void setDisabledBorder(SimpleBasisAMSBorder border)(Code)
Sets the border to display when the button is disabled.
Parameters:
  border - the disabled border



setDisabledImage
public void setDisabledImage(Image image)(Code)
Sets the image to display when the button is disabled.
Parameters:
  image - the disabled image



setFocusable
public void setFocusable(boolean val)(Code)



setFont
public void setFont(Font f)(Code)



setLabel
public void setLabel(String str)(Code)



setLabel
public void setLabel(String str, int x, int y)(Code)



setLabelDisplay
public void setLabelDisplay(boolean val)(Code)



setOverBorder
public void setOverBorder(SimpleBasisAMSBorder border)(Code)
Sets the border to display when the button is not pressed and the mouse is over the button.
Parameters:
  border - the over border



setOverImage
public void setOverImage(Image image)(Code)
Sets the image to display when the button is not pressed and the mouse is over the button.
Parameters:
  image - the over image



setPaintBorders
public void setPaintBorders(boolean val)(Code)



setTextColor
public void setTextColor(Color c)(Code)



setTextShadow
public void setTextShadow(boolean val)(Code)



setUnpressedBorder
public void setUnpressedBorder(SimpleBasisAMSBorder border)(Code)
Sets the border to display when the button is not pressed or hilited because of a mouse-over. This border is also used in those other cases if no alternative border is requested.
Parameters:
  border - the unarmed border



setUnpressedImage
public void setUnpressedImage(Image image)(Code)
Sets the image to display when the button is not pressed or hilited because of a mouse-over. This image is also used in those other cases if no alternative image is requested.
Parameters:
  image - the unarmed image



Fields inherited from java.awt.Component
final public static float BOTTOM_ALIGNMENT(Code)(Java Doc)
final public static float CENTER_ALIGNMENT(Code)(Java Doc)
final public static float LEFT_ALIGNMENT(Code)(Java Doc)
final public static float RIGHT_ALIGNMENT(Code)(Java Doc)
final public static float TOP_ALIGNMENT(Code)(Java Doc)

Methods inherited from java.awt.Component
public boolean action(Event evt, Object what)(Code)(Java Doc)
public synchronized void add(PopupMenu popup)(Code)(Java Doc)
public synchronized void addComponentListener(ComponentListener l)(Code)(Java Doc)
public synchronized void addFocusListener(FocusListener l)(Code)(Java Doc)
public synchronized void addKeyListener(KeyListener l)(Code)(Java Doc)
public synchronized void addMouseListener(MouseListener l)(Code)(Java Doc)
public synchronized void addMouseMotionListener(MouseMotionListener l)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
public Rectangle bounds()(Code)(Java Doc)
public int checkImage(Image image, ImageObserver observer)(Code)(Java Doc)
public int checkImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc)
protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent)(Code)(Java Doc)
public boolean contains(int x, int y)(Code)(Java Doc)
public boolean contains(Point p)(Code)(Java Doc)
public Image createImage(ImageProducer producer)(Code)(Java Doc)
public Image createImage(int width, int height)(Code)(Java Doc)
public void deliverEvent(Event e)(Code)(Java Doc)
public void disable()(Code)(Java Doc)
final protected void disableEvents(long eventsToDisable)(Code)(Java Doc)
final public void dispatchEvent(AWTEvent e)(Code)(Java Doc)
public void doLayout()(Code)(Java Doc)
public void enable()(Code)(Java Doc)
public void enable(boolean b)(Code)(Java Doc)
final protected synchronized void enableEvents(long eventsToEnable)(Code)(Java Doc)
public float getAlignmentX()(Code)(Java Doc)
public float getAlignmentY()(Code)(Java Doc)
public Color getBackground()(Code)(Java Doc)
public Rectangle getBounds()(Code)(Java Doc)
public ColorModel getColorModel()(Code)(Java Doc)
public Component getComponentAt(int x, int y)(Code)(Java Doc)
public Component getComponentAt(Point p)(Code)(Java Doc)
public Cursor getCursor()(Code)(Java Doc)
public Font getFont()(Code)(Java Doc)
public FontMetrics getFontMetrics(Font font)(Code)(Java Doc)
public Color getForeground()(Code)(Java Doc)
public Graphics getGraphics()(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Point getLocation()(Code)(Java Doc)
public Point getLocationOnScreen()(Code)(Java Doc)
public Dimension getMaximumSize()(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public Container getParent()(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public Dimension getSize()(Code)(Java Doc)
public Toolkit getToolkit()(Code)(Java Doc)
final public Object getTreeLock()(Code)(Java Doc)
public boolean gotFocus(Event evt, Object what)(Code)(Java Doc)
public boolean handleEvent(Event evt)(Code)(Java Doc)
public void hide()(Code)(Java Doc)
public boolean imageUpdate(Image img, int flags, int x, int y, int w, int h)(Code)(Java Doc)
public boolean inside(int x, int y)(Code)(Java Doc)
public void invalidate()(Code)(Java Doc)
public boolean isDisplayable()(Code)(Java Doc)
public boolean isEnabled()(Code)(Java Doc)
public boolean isFocusTraversable()(Code)(Java Doc)
public boolean isLightweight()(Code)(Java Doc)
public boolean isOpaque()(Code)(Java Doc)
public boolean isShowing()(Code)(Java Doc)
public boolean isValid()(Code)(Java Doc)
public boolean isVisible()(Code)(Java Doc)
public boolean keyDown(Event evt, int key)(Code)(Java Doc)
public boolean keyUp(Event evt, int key)(Code)(Java Doc)
public void layout()(Code)(Java Doc)
public void list()(Code)(Java Doc)
public void list(PrintStream out)(Code)(Java Doc)
public void list(PrintStream out, int indent)(Code)(Java Doc)
public void list(PrintWriter out)(Code)(Java Doc)
public void list(PrintWriter out, int indent)(Code)(Java Doc)
public Component locate(int x, int y)(Code)(Java Doc)
public Point location()(Code)(Java Doc)
public boolean lostFocus(Event evt, Object what)(Code)(Java Doc)
public Dimension minimumSize()(Code)(Java Doc)
public boolean mouseDown(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseDrag(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseEnter(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseExit(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseMove(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseUp(Event evt, int x, int y)(Code)(Java Doc)
public void move(int x, int y)(Code)(Java Doc)
public void nextFocus()(Code)(Java Doc)
public void paint(Graphics g)(Code)(Java Doc)
public void paintAll(Graphics g)(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public boolean postEvent(Event e)(Code)(Java Doc)
public Dimension preferredSize()(Code)(Java Doc)
public boolean prepareImage(Image image, ImageObserver observer)(Code)(Java Doc)
public boolean prepareImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc)
public void print(Graphics g)(Code)(Java Doc)
public void printAll(Graphics g)(Code)(Java Doc)
protected void processComponentEvent(ComponentEvent e)(Code)(Java Doc)
protected void processEvent(AWTEvent e)(Code)(Java Doc)
protected void processFocusEvent(FocusEvent e)(Code)(Java Doc)
protected void processKeyEvent(KeyEvent e)(Code)(Java Doc)
protected void processMouseEvent(MouseEvent e)(Code)(Java Doc)
protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc)
public synchronized void remove(MenuComponent popup)(Code)(Java Doc)
public synchronized void removeComponentListener(ComponentListener l)(Code)(Java Doc)
public synchronized void removeFocusListener(FocusListener l)(Code)(Java Doc)
public synchronized void removeKeyListener(KeyListener l)(Code)(Java Doc)
public synchronized void removeMouseListener(MouseListener l)(Code)(Java Doc)
public synchronized void removeMouseMotionListener(MouseMotionListener l)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public void repaint()(Code)(Java Doc)
public void repaint(long tm)(Code)(Java Doc)
public void repaint(int x, int y, int width, int height)(Code)(Java Doc)
public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc)
public void requestFocus()(Code)(Java Doc)
public void reshape(int x, int y, int width, int height)(Code)(Java Doc)
public void resize(int width, int height)(Code)(Java Doc)
public void resize(Dimension d)(Code)(Java Doc)
public void setBackground(Color c)(Code)(Java Doc)
public void setBounds(int x, int y, int width, int height)(Code)(Java Doc)
public void setBounds(Rectangle r)(Code)(Java Doc)
public synchronized void setCursor(Cursor cursor)(Code)(Java Doc)
public void setEnabled(boolean b)(Code)(Java Doc)
public void setFont(Font f)(Code)(Java Doc)
public void setForeground(Color c)(Code)(Java Doc)
public void setLocale(Locale l)(Code)(Java Doc)
public void setLocation(int x, int y)(Code)(Java Doc)
public void setLocation(Point p)(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void setSize(int width, int height)(Code)(Java Doc)
public void setSize(Dimension d)(Code)(Java Doc)
public void setVisible(boolean b)(Code)(Java Doc)
public void show()(Code)(Java Doc)
public void show(boolean b)(Code)(Java Doc)
public Dimension size()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void transferFocus()(Code)(Java Doc)
public void update(Graphics g)(Code)(Java Doc)
public void validate()(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.