Lines Matching defs:comp
58 * @param comp the component to be added
60 public void addLayoutComponent(String name, Component comp) {
65 * @param comp the component to be removed
67 public void removeLayoutComponent(Component comp) {
81 Component comp = target.getComponent(i);
82 if (comp.isVisible()) {
83 Dimension d = comp.minimumSize();
107 Component comp = target.getComponent(i);
108 if (comp.isVisible()) {
109 Dimension d = comp.preferredSize();
137 Component comp = target.getComponent(i);
138 if (comp.isVisible()) {
139 int compWidth = comp.size().width;
140 comp.resize(compWidth, bottom - top);
141 Dimension d = comp.preferredSize();
142 comp.reshape(left, top, d.width, bottom - top);