Searched defs:text (Results 1 - 25 of 45) sorted by relevance

12

/solaris-userland-s11u3/components/visual-panels/apache/src/java/vpanels/app/apache/com/oracle/solaris/vp/panels/apache/client/swing/
H A DNoContentPanel.java60 public static String formatAsHTML(String text, int width) { argument
61 if (text != null && !text.matches("(?i)^<html\\b.*")) {
62 text = "<html>" + TextUtil.escapeHTMLChars(
63 TextUtil.format(text, width, false)) + "</html>";
65 return text;
H A DChangeButton.java53 public ChangeButton(String text) { argument
54 super(text);
58 public ChangeButton(String text, Icon icon) { argument
59 super(text, icon);
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DDialogMessage.java35 private String text; field in class:DialogMessage
46 * @param text
47 * the message text
56 public DialogMessage(String text, int type) { argument
57 this.text = text;
61 public DialogMessage(String text) { argument
62 this(text, JOptionPane.PLAIN_MESSAGE);
70 return text;
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/
H A DFlowTextArea.java29 import javax.swing.text.Document;
33 * displays multi-line text, wrapping words at whitespace.
50 public FlowTextArea(Document doc, String text, int rows, int columns) { argument
51 super(doc, text, rows, columns);
60 public FlowTextArea(String text) { argument
61 super(text);
65 public FlowTextArea(String text, int rows, int columns) { argument
66 super(text, rows, columns);
H A DHyperlinkPanel.java39 private String text; field in class:HyperlinkPanel
51 public HyperlinkPanel(String text) { argument
53 setText(text);
60 protected Component createLabel(String text) { argument
61 return new JLabel(text);
64 protected List<Component> createComponents(String text) { argument
67 while (text != null && !text.isEmpty()) {
68 String[] groups = TextUtil.match(text,
85 text
91 createHyperlink(String text) argument
99 setText(String text) argument
[all...]
H A DInfoLabel.java58 public InfoLabel(String text, int width) { argument
61 setToolTipText(text);
66 public InfoLabel(String text) { argument
67 this(text, DEFAULT_WIDTH);
79 public void setToolTipText(String text) { argument
80 super.setToolTipText(text);
102 String text = getToolTipText();
104 if (text != null && !text.matches("(?i)^<html\\b.*")) {
107 text
[all...]
H A DThrowableEditorPane.java44 setContentType("text/html");
58 public void setText(String text) { argument
59 super.setText(text);
H A DAutoHideLabel.java33 * automatically set to {@code false} when its text and icon are {@code null} or
53 label.removePropertyChangeListener("text", this);
58 label.addPropertyChangeListener("text", this);
69 * has a non-{@code null}/empty icon or text.
72 String text = label.getText();
73 label.setVisible((text != null && !text.isEmpty()) ||
102 public AutoHideLabel(String text) { argument
103 super(text);
107 public AutoHideLabel(String text, Ico argument
112 AutoHideLabel(String text, int horizontalAlignment) argument
[all...]
H A DAutoHideTextArea.java30 import javax.swing.text.*;
34 * automatically set to {@code false} when its text is {@code null} or empty,
76 * whether it has a non-{@code null}/empty text.
79 String text = comp.getText();
80 comp.setVisible(text != null && !text.isEmpty());
103 public AutoHideTextArea(Document doc, String text, int rows, int columns) { argument
104 super(doc, text, rows, columns);
113 public AutoHideTextArea(String text) { argument
114 super(text);
118 AutoHideTextArea(String text, int rows, int columns) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/swing/
H A DCertificateEditorPane.java48 setContentType("text/html");
62 public void setText(String text) { argument
63 super.setText(text);
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/action/
H A DAddManagedObjectAction.java53 public AddManagedObjectAction(String text, Collection<? extends Icon> icons, argument
56 super(text, icons, context, hasComponent);
59 public AddManagedObjectAction(String text, Collection<? extends Icon> icons, argument
62 this(text, icons, control.getClientContext(), control);
H A DCloneManagedObjectAction.java54 public CloneManagedObjectAction(String text, argument
58 super(text, icons, context, hasComponent);
61 public CloneManagedObjectAction(String text, argument
64 this(text, icons, control.getClientContext(), control);
H A DDeleteManagedObjectAction.java54 public DeleteManagedObjectAction(String text, argument
58 super(text, icons, context, hasComponent);
61 public DeleteManagedObjectAction(String text, argument
64 this(text, icons, control.getClientContext(), control);
H A DEditManagedObjectAction.java54 public EditManagedObjectAction(String text, argument
58 super(text, icons, context, hasComponent);
61 public EditManagedObjectAction(String text, argument
64 this(text, icons, control.getClientContext(), control);
H A DMoveManagedObjectAction.java54 public MoveManagedObjectAction(String text, argument
58 super(text, icons, context, hasComponent);
61 public MoveManagedObjectAction(String text, argument
64 this(text, icons, control.getClientContext(), control);
H A DSwingManagedObjectAction.java58 public SwingManagedObjectAction(String text, argument
62 super(text, (List<S>)(List)Collections.emptyList(), icons, context,
67 public SwingManagedObjectAction(String text, argument
70 super(text, (List<S>)(List)Collections.emptyList(), icons, control);
H A DUpdateManagedObjectAction.java54 public UpdateManagedObjectAction(String text, argument
58 super(text, icons, context, hasComponent);
61 public UpdateManagedObjectAction(String text, argument
64 this(text, icons, control.getClientContext(), control);
H A DSwingStructuredAction.java56 public SwingStructuredAction(String text, P pInput, argument
60 super(text, pInput, context);
66 public SwingStructuredAction(String text, P pInput, argument
69 this(text, pInput, icons, control.getClientContext(), control);
/solaris-userland-s11u3/components/visual-panels/zconsole/src/java/vpanels/app/zconsole/com/oracle/solaris/vp/panels/zconsole/client/text/
H A DBeanToStdout.java26 package com.oracle.solaris.vp.panels.zconsole.client.text;
H A DZoneConsolePanelDescriptor.java26 package com.oracle.solaris.vp.panels.zconsole.client.text;
H A DStdinToBean.java26 package com.oracle.solaris.vp.panels.zconsole.client.text;
H A DZoneIOThread.java26 package com.oracle.solaris.vp.panels.zconsole.client.text;
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/action/
H A DDefaultStructuredAction.java57 public DefaultStructuredAction(String text, P pInput, argument
60 super(text, pInput);
64 public DefaultStructuredAction(String text, ClientContext context) { argument
65 this(text, null, context);
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/view/
H A DCustomObjectsFilter.java51 public CustomObjectsFilter(String text, Component comp) { argument
52 super(text, null);
H A DObjectsFilter.java56 * Constructs an {@code ObjectsFilter} with the given text.
58 public ObjectsFilter(String text, Predicate<? super C> predicate) { argument
59 text_ = text;
64 * Constructs an {@code ObjectsFilter} with the given text.
66 public ObjectsFilter(String text) { argument
67 this(text, TruePredicate.getInstance());
71 * Constructs an {@code ObjectsFilter} with default text indicating that all
109 protected void setText(String text) { argument
110 text_ = text;

Completed in 45 milliseconds

12