Home | History | Annotate | Download | only in gui

Lines Matching defs:tip

162         accessPanel.add(tip(new JLabel(msg("required")), "requiredTip"), labelConstraints);
163 accessPanel.add(tip(new JLabel(msg("not")), "notTip"), labelConstraints);
164 accessPanel.add(tip(new JLabel(msg("dontCare")), "dontCareTip"), labelConstraints);
195 typePanel.add(tip(typeTextField, "typeTip"), constraintsLastStretch);
202 annotationTypePanel.add(tip(annotationTypeTextField, "classNameTip"), constraintsLastStretch);
209 namePanel.add(tip(nameTextField, isField ? "fieldNameTip" :
217 argumentsPanel.add(tip(argumentTypesTextField, "argumentTypes2Tip"), constraintsLastStretch);
259 mainPanel.add(tip(accessPanel, "accessTip"), panelConstraints);
260 mainPanel.add(tip(annotationTypePanel, "annotationTip"), panelConstraints);
261 mainPanel.add(tip(typePanel, isField ? "fieldTypeTip" :
263 mainPanel.add(tip(namePanel, "nameTip"), panelConstraints);
267 mainPanel.add(tip(argumentsPanel, "argumentTypesTip"), panelConstraints);
270 mainPanel.add(tip(advancedButton, "advancedTip"), advancedButtonConstraints);
490 * Attaches the tool tip from the GUI resources that corresponds to the
493 private static JComponent tip(JComponent component, String messageKey)