- Swing 教程
- Swing - 首页
- Swing - 概述
- Swing - 环境
- Swing - 控件
- Swing - 事件处理
- Swing - 事件类
- Swing - 事件监听器
- Swing - 事件适配器
- Swing - 布局
- Swing - 菜单
- Swing - 容器
- Swing 有用资源
- Swing - 快速指南
- Swing - 有用资源
- Swing - 讨论
Swing - 容器类
介绍
Container 类是 AWT 容器的超类。容器对象可以包含其他 AWT 组件。
类声明
以下是 java.awt.Container 类的声明:
public class Container extends Component
类构造函数
序号 | 构造函数 & 描述 |
---|---|
1 |
Container() 创建新的容器。 |
类方法
序号 | 方法 & 描述 |
---|---|
1 |
Component add(Component comp) 将指定的组件追加到此容器的末尾。 |
2 |
Component add(Component comp, int index) 在给定位置将指定的组件添加到此容器。 |
3 |
void add(Component comp, Object constraints) 将指定的组件添加到此容器的末尾。 |
4 |
void add(Component comp, Object constraints, int index) 使用指定的约束在指定索引处将指定的组件添加到此容器。 |
5 |
Component add(String name, Component comp) 将指定的组件添加到此容器。 |
6 |
void addContainerListener(ContainerListener l) 添加指定的容器监听器以接收来自此容器的容器事件。 |
7 |
protected void addImpl(Component comp, Object constraints, int index) 在指定索引处将指定的组件添加到此容器。 |
8 |
void addNotify() 通过将其连接到本机屏幕资源使此容器可显示。 |
9 |
void addPropertyChangeListener(PropertyChangeListener listener) 将 PropertyChangeListener 添加到监听器列表。 |
10 |
void addPropertyChangeListener(String propertyName, PropertyChangeListener listener) 为特定属性将 PropertyChangeListener 添加到监听器列表。 |
11 |
void applyComponentOrientation(ComponentOrientation o) 设置此容器及其包含的所有组件的 ComponentOrientation 属性。 |
12 |
boolean areFocusTraversalKeysSet(int id) 返回是否已为此容器明确定义了给定焦点遍历操作的焦点遍历键集。 |
13 |
int countComponents() 已弃用。从 JDK 版本 1.1 开始,已替换为 getComponentCount()。 |
14 |
void deliverEvent(Event e) 已弃用。从 JDK 版本 1.1 开始,已替换为 dispatchEvent(AWTEvent e) |
15 |
void doLayout() 导致此容器布置其组件。 |
16 |
Component findComponentAt(int x, int y) 找到包含指定位置的可见子组件。 |
17 |
Component findComponentAt(Point p) 找到包含指定点的可见子组件。 |
18 |
float getAlignmentX() 返回沿 x 轴的对齐方式。 |
19 |
float getAlignmentY() 返回沿 y 轴的对齐方式。 |
20 |
Component getComponent(int n) 获取此容器中的第 n 个组件。 |
21 |
Component getComponentAt(int x, int y) 找到包含 x,y 位置的组件。 |
22 |
Component getComponentAt(Point p) 获取包含指定点的组件。 |
23 |
int getComponentCount() 获取此面板中的组件数。 |
24 |
Component[] getComponents() 获取此容器中的所有组件。 |
25 |
int getComponentZOrder(Component comp) 返回组件在容器内的 z 顺序 索引。 |
26 |
ContainerListener[] getContainerListeners() 返回在此容器上注册的所有容器监听器的数组。 |
27 |
Set<AWTKeyStroke> getFocusTraversalKeys(int id) 返回此容器的给定遍历操作的焦点遍历键集。 |
28 |
FocusTraversalPolicy getFocusTraversalPolicy() 返回将管理此容器子级键盘遍历的焦点遍历策略,如果此容器不是焦点循环根,则返回 null。 |
29 |
Insets getInsets() 确定此容器的插入,指示容器边框的大小。 |
30 |
LayoutManager getLayout() 获取此容器的布局管理器。 |
31 |
<T extends EventListener> T[] getListeners(Class<T> listenerType) 返回当前在此容器上注册为 FooListeners 的所有对象的数组。 |
32 |
Dimension getMaximumSize() 返回此容器的最大大小。 |
33 |
Dimension getMinimumSize() 返回此容器的最小大小。 |
34 |
Point getMousePosition(boolean allowChildren) 如果容器位于鼠标指针下方,则返回此容器坐标空间中鼠标指针的位置,否则返回 null。 |
35 |
Dimension getPreferredSize() 返回此容器的首选大小。 |
36 |
Insets insets() 已弃用。从 JDK 版本 1.1 开始,已替换为 getInsets()。 |
37 |
void invalidate() 使容器无效。 |
38 |
boolean isAncestorOf(Component c) 检查组件是否包含在此容器的组件层次结构中。 |
39 |
boolean isFocusCycleRoot() 返回此容器是否为焦点遍历循环的根。 |
40 |
boolean isFocusCycleRoot(Container container) 返回指定的容器是否为此容器的焦点遍历循环的焦点循环根。 |
41 |
boolean isFocusTraversalPolicyProvider() 返回此容器是否提供焦点遍历策略。 |
42 |
boolean isFocusTraversalPolicySet() 返回是否已为此容器明确设置焦点遍历策略。 |
43 |
void layout() 已弃用。从 JDK 版本 1.1 开始,已替换为 doLayout()。 |
44 |
void list(PrintStream out, int indent) 将此容器的列表打印到指定的输出流。 |
45 |
void list(PrintWriter out, int indent) 从指定的缩进开始,将列表打印到指定的打印写入器。 |
46 |
Component locate(int x, int y) 已弃用。从 JDK 版本 1.1 开始,已替换为 getComponentAt(int, int)。 |
47 |
Dimension minimumSize() 已弃用。从 JDK 版本 1.1 开始,已替换为 getMinimumSize()。 |
48 |
void paint(Graphics g) 绘制容器。 |
49 |
void paintComponents(Graphics g) 绘制此容器中的每个组件。 |
50 |
protected String paramString() 返回表示此容器状态的字符串。 |
51 |
Dimension preferredSize() 已弃用。从 JDK 版本 1.1 开始,已替换为 getPreferredSize()。 |
52 |
void print(Graphics g) 打印容器。 |
53 |
void printComponents(Graphics g) 打印此容器中的每个组件。 |
54 |
protected void processContainerEvent(ContainerEvent e) 通过将发生的容器事件分派到任何已注册的 ContainerListener 对象,来处理在此容器上发生的容器事件。 |
55 |
protected void processEvent(AWTEvent e) 处理此容器上的事件。 |
56 |
void remove(Component comp) 从此容器中删除指定的组件。 |
57 |
void remove(int index) 从此容器中删除由索引指定的组件。 |
58 |
void removeAll() 从此容器中删除所有组件。 |
59 |
void removeContainerListener(ContainerListener l) 删除指定的容器监听器,以便它不再接收来自此容器的容器事件。 |
60 |
void removeNotify() 通过删除其与本机屏幕资源的连接,使此容器不可显示。 |
61 |
void setComponentZOrder(Component comp, int index) 将指定的组件移动到容器中指定的 z 顺序 索引。 |
62 |
void setFocusCycleRoot(boolean focusCycleRoot) 设置此容器是否为焦点遍历循环的根。 |
63 |
void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes) 设置此容器的给定遍历操作的焦点遍历键。 |
64 |
void setFocusTraversalPolicy(FocusTraversalPolicy policy) 如果此容器是焦点循环根,则设置将管理此容器子级键盘遍历的焦点遍历策略。 |
65 |
void setFocusTraversalPolicyProvider(boolean provider) 设置是否将使用此容器来提供焦点遍历策略。 |
66 |
void setFont(Font f) 设置此容器的字体。 |
67 |
void setLayout(LayoutManager mgr) 设置此容器的布局管理器。 |
68 |
void transferFocusBackward() 将焦点转移到上一个组件,就像此组件是焦点拥有者一样。 |
69 |
void transferFocusDownCycle() 将焦点向下转移一个焦点遍历循环。 |
70 |
void update(Graphics g) 更新容器。 |
71 |
void validate() 验证此容器及其所有子组件。 |
72 |
protected void validateTree() 递归下降容器树并重新计算标记为需要它的任何子树的布局(标记为无效的那些)。 |
继承的方法
此类继承自以下类的方法:
- java.awt.Component
- java.lang.Object