Uses of Class
java.awt.ComponentOrientation
-
Packages that use ComponentOrientation 软件包 描述 java.awt 包含用于创建用户界面和绘制图形和图像的所有类。javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。 -
-
Uses of ComponentOrientation in java.awt
Fields in java.awt declared as ComponentOrientation 变量和类型 字段 描述 static ComponentOrientation
ComponentOrientation. LEFT_TO_RIGHT
项目从左到右运行,线条从上到下流动示例:英语,法语。static ComponentOrientation
ComponentOrientation. RIGHT_TO_LEFT
项目从右到左,线条从上到下流动示例:阿拉伯语,希伯来语。static ComponentOrientation
ComponentOrientation. UNKNOWN
表示尚未设置组件的方向。Methods in java.awt that return ComponentOrientation 变量和类型 方法 描述 ComponentOrientation
Component. getComponentOrientation()
检索用于对此组件中的元素或文本进行排序的语言敏感方向。static ComponentOrientation
ComponentOrientation. getOrientation(Locale locale)
返回适合给定语言环境的方向。static ComponentOrientation
ComponentOrientation. getOrientation(ResourceBundle bdl)
已过时。从J2SE 1.4开始,使用getOrientation(java.util.Locale)
。Methods in java.awt with parameters of type ComponentOrientation 变量和类型 方法 描述 void
Component. applyComponentOrientation(ComponentOrientation orientation)
设置此组件的ComponentOrientation
属性及其中包含的所有组件。void
Container. applyComponentOrientation(ComponentOrientation o)
设置此容器的ComponentOrientation
属性及其中包含的所有组件。void
Component. setComponentOrientation(ComponentOrientation o)
设置用于对此组件中的元素或文本进行排序的语言敏感方向。 -
Uses of ComponentOrientation in javax.swing
Methods in javax.swing with parameters of type ComponentOrientation 变量和类型 方法 描述 void
JMenu. applyComponentOrientation(ComponentOrientation o)
设置此菜单的ComponentOrientation
属性及其中包含的所有组件。void
JScrollPane. setComponentOrientation(ComponentOrientation co)
Sets the orientation for the vertical and horizontal scrollbars as determined by theComponentOrientation
argument.
-