Java Doc for Scrollable.java in  » Apache-Harmony-Java-SE » org-package » org » apache » harmony » awt » 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 » Apache Harmony Java SE » org package » org.apache.harmony.awt 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.harmony.awt.Scrollable

Scrollable
public interface Scrollable (Code)
An internal AWT interface similar to javax.swing.Scrollable. Should be implemented by a Container with a single child component and scrolling behavior, such as ScrollPane.


Field Summary
final public static  intALWAYS
    
final public static  intAS_NEEDED
    
final public static  intHORIZONTAL_ONLY
    
final public static  intNEVER
    
final public static  intVERTICAL_ONLY
    


Method Summary
 voiddoRepaint()
    
 voiddoRepaint(Rectangle r)
    
 intgetAdjustableHeight()
    
 intgetAdjustableMode(Adjustable adj)
    
 intgetAdjustableWidth()
    
 ComponentgetComponent()
     Gets the current child component to scroll.
 AdjustablegetHAdjustable()
    
 intgetHeight()
    
 InsetsgetInsets()
    
 PointgetLocation()
     Gets scroll location current scroll location, i.
 DimensiongetSize()
    
 AdjustablegetVAdjustable()
    
 intgetWidth()
    
 voidsetAdjustableBounds(Adjustable adj, Rectangle r)
    
 voidsetAdjustableSizes(Adjustable adj, int vis, int min, int max)
    
 voidsetLocation(Point p)
    

Field Detail
ALWAYS
final public static int ALWAYS(Code)



AS_NEEDED
final public static int AS_NEEDED(Code)
Constants for possible scrollbar display policies, define which scrollbars should be displayed and when they should be displayed



HORIZONTAL_ONLY
final public static int HORIZONTAL_ONLY(Code)



NEVER
final public static int NEVER(Code)



VERTICAL_ONLY
final public static int VERTICAL_ONLY(Code)





Method Detail
doRepaint
void doRepaint()(Code)
Repaints all the viewport(client area) of the Container



doRepaint
void doRepaint(Rectangle r)(Code)
Repaints the specified rectangle of the container



getAdjustableHeight
int getAdjustableHeight()(Code)
Gets horizontal scrollbar height height of the horizontal adjustable



getAdjustableMode
int getAdjustableMode(Adjustable adj)(Code)
Gets scrollbar display policy for adjustable
Parameters:
  adj - scrollbar one of 5 constantsidentifying when the specified scrollbar is displayed



getAdjustableWidth
int getAdjustableWidth()(Code)
Gets vertical scrollbar width width of the vertical adjustable



getComponent
Component getComponent()(Code)
Gets the current child component to scroll. component location of which should be changedwhile scrolling



getHAdjustable
Adjustable getHAdjustable()(Code)
Adjustable interfaceof horizontal scrollbar



getHeight
int getHeight()(Code)
height of the container



getInsets
Insets getInsets()(Code)
Gets container insets NOT including scrollbars(adjustables) area



getLocation
Point getLocation()(Code)
Gets scroll location current scroll location, i. e.(0, 0) point of container viewportin child component coordinates



getSize
Dimension getSize()(Code)
Gets the current scroll size size of the child component being scrolled insidecontainer, which typically exceeds size of thecontainer itself



getVAdjustable
Adjustable getVAdjustable()(Code)
Adjustable interfaceof vertical scrollbar



getWidth
int getWidth()(Code)
width of the container



setAdjustableBounds
void setAdjustableBounds(Adjustable adj, Rectangle r)(Code)
Sets scrollbar bounds relative to container origin
Parameters:
  adj - scrollbar being changed
Parameters:
  r - new bounds



setAdjustableSizes
void setAdjustableSizes(Adjustable adj, int vis, int min, int max)(Code)
Internal AWT method for changing adjustable minimum, maximum and visible amount
Parameters:
  adj - Adjustable to be changed
Parameters:
  vis - new visible amount
Parameters:
  min - new minimum value
Parameters:
  max - new maximum value



setLocation
void setLocation(Point p)(Code)
Scrolls component to the specified location within child component
Parameters:
  p - new scroll location inContainer coordinates



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.