| /vpanels/source/usr/src/java/util/org/opensolaris/os/vp/util/misc/ |
| DialogMessage.java | 36 private String text; field in class:DialogMessage 47 * @param text 48 * the message text 57 public DialogMessage(String text, int type) { 58 this.text = text; 62 public DialogMessage(String text) { 63 this(text, JOptionPane.PLAIN_MESSAGE); 71 return text;
|
| /vpanels/source/usr/src/java/util/org/opensolaris/os/vp/util/swing/ |
| InfoLabel.java | 58 public InfoLabel(String text, int width) { 61 setToolTipText(text); 66 public InfoLabel(String text) { 67 this(text, DEFAULT_WIDTH); 79 public void setToolTipText(String text) { 80 super.setToolTipText(text); 102 String text = getToolTipText(); local 104 if (text != null && !text.matches("(?i)^<html\\b.*")) { 107 text = "<html>" + TextUtil.escapeHTMLChars [all...] |
| LinkCollapsiblePane.java | 82 String text = getLinkText(collapsed); local 83 if (text != null) { 84 link.setText(text); 103 * Gets the text to place in the link, dependent on the state of the 106 * @return the text to set in the {@link HyperlinkLabel}, or {@code 107 * null} to keep the existing text 110 // Don't change link text by default
|
| HyperlinkPanel.java | 40 private String text; field in class:HyperlinkPanel 52 public HyperlinkPanel(String text) { 54 setText(text); 61 protected Component createLabel(String text) { 62 return new JLabel(text); 65 protected List<Component> createComponents(String text) { 68 while (text != null && !text.isEmpty()) { 69 String[] groups = TextUtil.match(text, 86 text = groups[6] [all...] |
| WrappingText.java | 35 * The {@code WrappingText} class displays multi-line text, wrapping words 44 private String text; field in class:WrappingText 52 public WrappingText(String text, int columns) { 53 setText(text); 62 public WrappingText(String text) { 63 this(text, -1); 170 * the longest line in the text 186 * of the longest line of text. 221 return text; 228 public void setText(String text) { 241 String text = getText(); local [all...] |
| GUIUtil.java | 51 void setText(String text); 75 Object text = action.getValue(Action.NAME); local 76 return text == null ? null : text.toString(); 90 public void setText(String text) { 91 action.putValue(Action.NAME, text); 138 public void setText(String text) { 139 button.setText(text); 186 public void setText(String text) { 187 label.setText(text); 250 String text = obj.getText(); local 482 String text = c.getText(); local [all...] |
| /vpanels/source/usr/src/java/vpanels/panels/sysid/org/opensolaris/os/vp/panels/sysid/client/swing/ |
| WelcomePanel.java | 42 String text = Finder.getString("sysid.welcome.text"); local 43 JTextArea field = new JTextArea(text);
|
| /vpanels/source/usr/src/java/util/org/opensolaris/os/vp/util/swing/property/ |
| PasswordFieldPropertySynchronizer.java | 92 String text = value == null ? "" : new String(value); local 93 getObject().setText(text);
|
| TextComponentPropertySynchronizer.java | 30 import javax.swing.text.JTextComponent; 88 String text = getObject().getText(); local 89 return getProperty().getConverter().convert(text); 94 String text = getProperty().getConverter().revert(value); local 95 getObject().setText(text);
|
| /vpanels/source/usr/src/java/vpanels/panels/sharemgr/org/opensolaris/os/vp/panels/sharemgr/client/swing/ |
| CreateGroupAction.java | 47 protected static final String text = field in class:CreateGroupAction 61 super(text, ICONS, control); 77 text, JOptionPane.PLAIN_MESSAGE, null, null, name);
|
| /vpanels/source/usr/src/java/vpanels/panel/org/opensolaris/os/vp/panel/swing/view/ |
| SearchFilter.java | 50 private static final String text = Finder.getString( field in class:SearchFilter 61 String text = field.getText(); 65 text = text.toLowerCase(); 69 return name.indexOf(text) != -1; 89 * @param text 90 * the text to display for this {@code SearchFilter} 96 public SearchFilter(String text, boolean updateImmediately) { 97 super(text, null); 134 * Constructs a {@code SearchFilter} with a default text string [all...] |
| WizardStepPanel.java | 114 String text = steps.get(index).getName(); local 116 text = Finder.getString("wizard.step.numbered", index + 1, text); 119 link.setText(text); 129 String text = index == selected ? "*" : ""; local 130 JLabel label = new JLabel(text);
|
| WizardPanel.java | 174 String text = null; local 178 text = sequence.getSteps().get(selected).getName(); 182 settingsPanel.getTitleLabel().setText(text);
|
| /vpanels/source/usr/src/java/vpanels/common/org/opensolaris/os/vp/common/smf/ |
| ServiceUtil.java | 29 import java.text.DateFormat; 141 String text = Finder.getString(key); local 142 if (text == null) { 143 text = lower; 146 return text;
|
| /vpanels/source/usr/src/java/vpanels/panels/coreadm/org/opensolaris/os/vp/panels/coreadm/client/swing/path/ |
| TokenComboBox.java | 60 private JLabel text; field in class:TokenComboBox.TokenListCellRenderer 83 text = new JLabel(); 84 text.setBackground(UIManager.getColor( 88 new BorderLayout(text.getIconTextGap(), 0)); 92 inListPanel.add(text, BorderLayout.CENTER); 113 text.setText(token.getToolTipText()); 114 text.setOpaque(isSelected); 115 text.setForeground(UIManager.getColor(isSelected ?
|
| /vpanels/source/usr/src/java/vpanels/client/org/opensolaris/os/vp/client/swing/ |
| ControlBreadCrumbs.java | 61 String text = toString(control); local 64 lastBreadCrumb.setText(text); 69 b.setText(text); 87 pkg, "breadcrumb.hidden.text"); 285 // Prevent clicks from passing through to text field
|
| LoginPane.java | 479 String text = message.getText(); local 480 visible = text != null && !text.isEmpty(); 656 // Update the connection count in the "use existing" radio button text
|
| /vpanels/source/usr/src/java/vpanels/panels/firewall/org/opensolaris/os/vp/panels/firewall/client/swing/ |
| IPMaskFormatter.java | 29 import javax.swing.text.*; 32 import java.text.ParseException; 73 String text, AttributeSet attr) throws BadLocationException { 74 replace(fb, offset, 0, text, attr); 79 String text, AttributeSet attr) throws BadLocationException { 81 if (text == null) { 82 fb.replace(offset, length, text, attr); 89 if (!text.matches(VALID_CHARS)) 92 clearSpace(fb, offset, length, text); 95 String newText = getReplaceString(curText, offset, length, text); 172 String text = field.getText(); local [all...] |
| PolicyTablePanel.java | 36 import java.text.ParseException; 40 import javax.swing.text.*; 363 String text, tooltip; local 367 text = getHostNameForIP(array[1]); 368 tooltip = (text.equals(array[1]) ? text : 369 text + "(" + array[1] + ")"); 372 tooltip = text = array[1]; 387 setText(text);
|
| /vpanels/source/usr/src/java/util/org/opensolaris/os/vp/util/swing/layout/ |
| UniformLayout.java | 336 String text = ""; local 339 text += "\n"; 342 text += c[l]; 344 JComponent comp = new JTextArea(text);
|
| /vpanels/source/usr/src/java/vpanels/panel/org/opensolaris/os/vp/panel/common/model/ |
| AbstractManagedObject.java | 305 * Calculates the status text of this {@code ManagedObject} based on its 478 * #setStatusText(String) sets} the status text of this {@link 482 String text = getCalculatedStatusText(); local 483 setStatusText(text); 487 * Sets the status text of this {@link ManagedObject}.
|