Searched defs:comp (Results 1 - 25 of 109) sorted by relevance

12345

/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/event/
H A DMinimumSizeComponentListener.java44 private Component comp; field in class:MinimumSizeComponentListener
53 * @param comp the component for which we want to set a minimum size
57 public MinimumSizeComponentListener(Component comp, int minWidth, argument
60 this.comp = comp;
64 if (comp instanceof Window)
82 int width = comp.getWidth();
83 int height = comp.getHeight();
97 comp.setSize(width, height);
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/event/
H A DMinimumSizeComponentListener.java45 private Component comp; field in class:MinimumSizeComponentListener
54 * @param comp the component for which we want to set a minimum size
58 public MinimumSizeComponentListener(Component comp, int minWidth, argument
61 this.comp = comp;
65 if (comp instanceof Window)
83 int width = comp.getWidth();
84 int height = comp.getHeight();
98 comp.setSize(width, height);
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/event/
H A DMinimumSizeComponentListener.java45 private Component comp; field in class:MinimumSizeComponentListener
54 * @param comp the component for which we want to set a minimum size
58 public MinimumSizeComponentListener(Component comp, int minWidth, argument
61 this.comp = comp;
65 if (comp instanceof Window)
83 int width = comp.getWidth();
84 int height = comp.getHeight();
98 comp.setSize(width, height);
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/event/
H A DMinimumSizeComponentListener.java44 private Component comp; field in class:MinimumSizeComponentListener
53 * @param comp the component for which we want to set a minimum size
57 public MinimumSizeComponentListener(Component comp, int minWidth, argument
60 this.comp = comp;
64 if (comp instanceof Window)
82 int width = comp.getWidth();
83 int height = comp.getHeight();
97 comp.setSize(width, height);
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/event/
H A DMinimumSizeComponentListener.java45 private Component comp; field in class:MinimumSizeComponentListener
54 * @param comp the component for which we want to set a minimum size
58 public MinimumSizeComponentListener(Component comp, int minWidth, argument
61 this.comp = comp;
65 if (comp instanceof Window)
83 int width = comp.getWidth();
84 int height = comp.getHeight();
98 comp.setSize(width, height);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DStringComparator.java42 private static StringComparator comp = null; field in class:StringComparator
48 if (comp == null)
49 comp = new StringComparator();
50 return (comp);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/event/
H A DMinimumSizeComponentListener.java44 private Component comp; field in class:MinimumSizeComponentListener
53 * @param comp the component for which we want to set a minimum size
57 public MinimumSizeComponentListener(Component comp, int minWidth, argument
60 this.comp = comp;
64 if (comp instanceof Window)
82 int width = comp.getWidth();
83 int height = comp.getHeight();
97 comp.setSize(width, height);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DStringComparator.java42 private static StringComparator comp = null; field in class:StringComparator
48 if (comp == null)
49 comp = new StringComparator();
50 return (comp);
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/ui/
H A DUtilities.java102 * @param comp the component to be centered.
104 public static void centerOnScreen(Component comp) argument
108 int width = (int) comp.getPreferredSize().getWidth();
109 int height = (int) comp.getPreferredSize().getHeight();
115 comp.setLocation((screenSize.width / 4) - (width / 2),
119 comp.setLocation((screenSize.width - width) / 2,
127 * @param comp the component to be centered.
131 public static void centerOnComponent(Window comp, Component ref) argument
133 comp.setLocationRelativeTo(ref);
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/
H A DGenericFrame.java191 Component comp = container.getComponent(i);
192 if ((comp instanceof AbstractButton) ||
193 (comp instanceof JTextComponent) ||
194 (comp instanceof JList) ||
195 (comp instanceof JComboBox) ||
196 (comp instanceof JTable))
198 comp.addFocusListener(focusListener);
200 else if ((comp instanceof JPanel) || (comp instanceof JScrollPane)
201 || (comp instanceo
268 setDefaultBorder(JComponent comp) argument
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DSelectableTableCellRenderer.java155 protected void updateComponent(Component comp, JTable table, int row, argument
160 comp.setBackground(ColorAndFontConstants.treeBackground);
161 comp.setForeground(ColorAndFontConstants.treeForeground);
165 comp.setBackground(pressedBackground);
166 comp.setForeground(pressedForeground);
170 comp.setBackground(mouseOverBackground);
171 comp.setForeground(mouseOverForeground);
175 comp.setBackground(ColorAndFontConstants.treeBackground);
176 comp.setForeground(ColorAndFontConstants.treeForeground);
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/ui/
H A DUtilities.java103 * @param comp the component to be centered.
105 public static void centerOnScreen(Component comp) argument
109 int width = (int) comp.getPreferredSize().getWidth();
110 int height = (int) comp.getPreferredSize().getHeight();
116 comp.setLocation((screenSize.width / 4) - (width / 2),
120 comp.setLocation((screenSize.width - width) / 2,
128 * @param comp the component to be centered.
132 public static void centerOnComponent(Window comp, Component ref) argument
134 comp.setLocationRelativeTo(ref);
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DSortableListModel.java61 * @param comp the comparator.
63 public void setComparator(Comparator<T> comp) argument
66 data = new TreeSet<T>(comp);
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DGenericFrame.java190 Component comp = container.getComponent(i);
191 if ((comp instanceof AbstractButton) ||
192 (comp instanceof JTextComponent) ||
193 (comp instanceof JList) ||
194 (comp instanceof JComboBox) ||
195 (comp instanceof JTable))
197 comp.addFocusListener(focusListener);
199 else if ((comp instanceof JPanel) || (comp instanceof JScrollPane)
200 || (comp instanceo
267 setDefaultBorder(JComponent comp) argument
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DSelectableTableCellRenderer.java154 protected void updateComponent(Component comp, JTable table, int row, argument
159 comp.setBackground(ColorAndFontConstants.treeBackground);
160 comp.setForeground(ColorAndFontConstants.treeForeground);
164 comp.setBackground(pressedBackground);
165 comp.setForeground(pressedForeground);
169 comp.setBackground(mouseOverBackground);
170 comp.setForeground(mouseOverForeground);
174 comp.setBackground(ColorAndFontConstants.treeBackground);
175 comp.setForeground(ColorAndFontConstants.treeForeground);
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DSortableListModel.java62 * @param comp the comparator.
64 public void setComparator(Comparator<T> comp) argument
67 data = new TreeSet<T>(comp);
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/ui/
H A DUtilities.java103 * @param comp the component to be centered.
105 public static void centerOnScreen(Component comp) argument
109 int width = (int) comp.getPreferredSize().getWidth();
110 int height = (int) comp.getPreferredSize().getHeight();
116 comp.setLocation((screenSize.width / 4) - (width / 2),
120 comp.setLocation((screenSize.width - width) / 2,
128 * @param comp the component to be centered.
132 public static void centerOnComponent(Window comp, Component ref) argument
134 comp.setLocationRelativeTo(ref);
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DSortableListModel.java62 * @param comp the comparator.
64 public void setComparator(Comparator<T> comp) argument
67 data = new TreeSet<T>(comp);
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DGenericFrame.java191 Component comp = container.getComponent(i);
192 if ((comp instanceof AbstractButton) ||
193 (comp instanceof JTextComponent) ||
194 (comp instanceof JList) ||
195 (comp instanceof JComboBox) ||
196 (comp instanceof JTable))
198 comp.addFocusListener(focusListener);
200 else if ((comp instanceof JPanel) || (comp instanceof JScrollPane)
201 || (comp instanceo
268 setDefaultBorder(JComponent comp) argument
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DSelectableTableCellRenderer.java155 protected void updateComponent(Component comp, JTable table, int row, argument
160 comp.setBackground(ColorAndFontConstants.treeBackground);
161 comp.setForeground(ColorAndFontConstants.treeForeground);
165 comp.setBackground(pressedBackground);
166 comp.setForeground(pressedForeground);
170 comp.setBackground(mouseOverBackground);
171 comp.setForeground(mouseOverForeground);
175 comp.setBackground(ColorAndFontConstants.treeBackground);
176 comp.setForeground(ColorAndFontConstants.treeForeground);
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DSortableListModel.java61 * @param comp the comparator.
63 public void setComparator(Comparator<T> comp) argument
66 data = new TreeSet<T>(comp);
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DGenericFrame.java190 Component comp = container.getComponent(i);
191 if ((comp instanceof AbstractButton) ||
192 (comp instanceof JTextComponent) ||
193 (comp instanceof JList) ||
194 (comp instanceof JComboBox) ||
195 (comp instanceof JTable))
197 comp.addFocusListener(focusListener);
199 else if ((comp instanceof JPanel) || (comp instanceof JScrollPane)
200 || (comp instanceo
267 setDefaultBorder(JComponent comp) argument
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DSelectableTableCellRenderer.java154 protected void updateComponent(Component comp, JTable table, int row, argument
159 comp.setBackground(ColorAndFontConstants.treeBackground);
160 comp.setForeground(ColorAndFontConstants.treeForeground);
164 comp.setBackground(pressedBackground);
165 comp.setForeground(pressedForeground);
169 comp.setBackground(mouseOverBackground);
170 comp.setForeground(mouseOverForeground);
174 comp.setBackground(ColorAndFontConstants.treeBackground);
175 comp.setForeground(ColorAndFontConstants.treeForeground);
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/ui/
H A DUtilities.java102 * @param comp the component to be centered.
104 public static void centerOnScreen(Component comp) argument
108 int width = (int) comp.getPreferredSize().getWidth();
109 int height = (int) comp.getPreferredSize().getHeight();
115 comp.setLocation((screenSize.width / 4) - (width / 2),
119 comp.setLocation((screenSize.width - width) / 2,
127 * @param comp the component to be centered.
131 public static void centerOnComponent(Window comp, Component ref) argument
133 comp.setLocationRelativeTo(ref);
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DSortableListModel.java62 * @param comp the comparator.
64 public void setComparator(Comparator<T> comp) argument
67 data = new TreeSet<T>(comp);

Completed in 143 milliseconds

12345