/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/ |
H A D | ExtDialog.java | 78 public ExtDialog(Dialog owner, String title) { argument 79 super(owner, title); 83 public ExtDialog(Dialog owner, String title, boolean modal) { argument 84 super(owner, title, modal); 88 public ExtDialog(Dialog owner, String title, boolean modal, argument 91 super(owner, title, modal, gc); 105 public ExtDialog(Frame owner, String title) { argument 106 super(owner, title); 110 public ExtDialog(Frame owner, String title, boolean modal) { argument 111 super(owner, title, moda 115 ExtDialog(Frame owner, String title, boolean modal, GraphicsConfiguration gc) argument 132 ExtDialog(Window owner, String title) argument 137 ExtDialog(Window owner, String title, Dialog.ModalityType modalityType) argument 144 ExtDialog(Window owner, String title, Dialog.ModalityType modalityType, GraphicsConfiguration gc) argument [all...] |
H A D | ExtInternalFrame.java | 62 public ExtInternalFrame(String title) { argument 63 super(title); 67 public ExtInternalFrame(String title, boolean resizable) { argument 68 super(title, resizable); 72 public ExtInternalFrame(String title, boolean resizable, argument 75 super(title, resizable, closable); 79 public ExtInternalFrame(String title, boolean resizable, argument 82 super(title, resizable, closable, maximizable); 86 public ExtInternalFrame(String title, boolean resizable, argument 89 super(title, resizabl [all...] |
H A D | ExtFrame.java | 84 public ExtFrame(String title) { argument 85 super(title); 89 public ExtFrame(String title, GraphicsConfiguration gc) { argument 90 super(title, gc);
|
H A D | DisablableTabTabbedPane.java | 56 public TabComponent(String title, Component mComponent) { argument 61 label = new JLabel(title); 188 public TabComponent addDisablableTab(String title, Component component) { argument 192 TabComponent tComponent = new TabComponent(title, component);
|
H A D | GUIUtil.java | 490 public static Border getTitledBorder(String title) { argument 493 BorderFactory.createEtchedBorder(), title), getEmptyBorder()); 796 * @param title 797 * the title to display in the dialog, or {@code null} to use a 811 public static int showConfirmation(Component component, String title, argument 814 if (title == null) { 815 title = Finder.getString("dialog.title.confirm"); 822 JDialog dialog = pane.createDialog(component, title); 841 * @param title 848 showError(Component component, String title, Object message) argument 876 showInfo(Component component, String title, String message) argument 893 showOptionPane(int messageType, Component component, String title, Object message) argument 916 showWarning(Component component, String title, String message) argument [all...] |
H A D | HyperlinkLabel.java | 110 public HyperlinkLabel(String title, UnderlinePolicy policy) { argument 111 super(title); 176 public HyperlinkLabel(String title) { argument 177 this(title, (UnderlinePolicy)UIManager.get(KEY_UNDERLINE_POLICY));
|
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/ |
H A D | DebugUtil.java | 56 * @param title 65 boolean dump(String title, Object object, int indent, PrintWriter out); argument 75 public boolean dump(String title, Object object, int indent, 78 out.printf("%s%s%s\n", indent(indent), title, object); 86 public boolean dump(String title, Object object, int indent, 92 title, toBaseName(object), collection.size()); 111 public boolean dump(String title, Object object, int indent, 117 title, toBaseName(object), map.size()); 137 public boolean dump(String title, Object object, int indent, 145 out.printf("%s%s%s%s\n", indent(indent), title, 206 dump(String title, Object object) argument 210 dump(String title, Object object, int indent) argument 214 dump(String title, Object object, int indent, PrintWriter out) argument [all...] |
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/view/ |
H A D | ListObjectsPanel.java | 50 StructuredAction<List<C>, ?, ?> dmAction, String title, String help, 53 super(pObject, mActions, dmAction, title, help); 48 ListObjectsPanel(ManagedObject<C> pObject, StructuredAction<List<C>, ?, ?>[] mActions, StructuredAction<List<C>, ?, ?> dmAction, String title, String help, boolean iconView) argument
|
H A D | TreeTableObjectsPanel.java | 53 StructuredAction<List<ManagedObject>, ?, ?> dmAction, String title, 57 title, help); 50 TreeTableObjectsPanel(ManagedObject<?> pObject, PropInfo<ManagedObject, ?>[] props, StructuredAction<List<ManagedObject>, ?, ?>[] mActions, StructuredAction<List<ManagedObject>, ?, ?> dmAction, String title, String help) argument
|
H A D | DualViewObjectsPanel.java | 53 StructuredAction<List<C>, ?, ?> dmAction, String title, String help, 56 super(pObject, mActions, dmAction, title, help, true); 51 DualViewObjectsPanel(ManagedObject<C> pObject, StructuredAction<List<C>, ?, ?>[] mActions, StructuredAction<List<C>, ?, ?> dmAction, String title, String help, PropInfo<C, ?>[] props) argument
|
H A D | TableObjectsPanel.java | 53 StructuredAction<List<C>, ?, ?> dmAction, String title, String help, 56 super(pObject, mActions, dmAction, title, help); 51 TableObjectsPanel(ManagedObject<C> pObject, StructuredAction<List<C>, ?, ?>[] mActions, StructuredAction<List<C>, ?, ?> dmAction, String title, String help, PropInfo<C, ?>[] props) argument
|
H A D | ObjectsHeader.java | 134 public void setTitle(String title) { argument 135 titleLabel.setText(title);
|
H A D | ObjectsPanel.java | 154 private String title; field in class:ObjectsPanel 180 StructuredAction<List<C>, ?, ?> dmAction, String title, String help) { 188 this.title = title; 324 header.setTitle(Finder.getString("objects.header.label", title, count)); 178 ObjectsPanel(ManagedObject<C> pObject, StructuredAction<List<C>, ?, ?>[] mActions, StructuredAction<List<C>, ?, ?> dmAction, String title, String help) argument
|
H A D | SelectorPanel.java | 177 public void setSelectionTitle(String title) { argument 178 titleLabel.setText(title);
|
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/control/ |
H A D | ChangeIndicatorTab.java | 55 public ChangeIndicatorTab(String title, JTabbedPane tabs, int index, argument 60 label = new JLabel(title);
|
H A D | DefaultFrameControl.java | 81 protected void setWindowTitle(String title) { argument 82 getComponent().setTitle(title);
|
H A D | DialogControl.java | 102 protected void setWindowTitle(String title) { argument 103 getComponent().setTitle(title);
|
H A D | WindowControl.java | 78 // The Control from which the window title is derived 328 * Gets the title of this {@code Window}, if supported. This default 331 * @return the title, or {@code null} if this {@code WindowControl}'s 332 * {@code Window} does not support a title 347 * Sets the title of this {@code Window}, if supported. This default 350 * @param title 351 * the title, or {@code null} if this {@code WindowControl}'s 352 * {@code Window} does not support a title 354 protected void setWindowTitle(String title) { argument 371 String title [all...] |
/solaris-userland-s11u3/components/visual-panels/coreadm/src/java/vpanels/app/coreadm/com/oracle/solaris/vp/panels/coreadm/client/swing/ |
H A D | CoresPanel.java | 59 String title = Finder.getString("core.objects.title"); 62 descriptor, actions, dAction, title, null, props);
|
H A D | CoreAdmSettingsPanel.java | 86 String title = Finder.getString("settings.scheme.title"); 88 Border titled = BorderFactory.createTitledBorder(title);
|
/solaris-userland-s11u3/components/ghostscript/Solaris/ |
H A D | GSinterface | 59 title=$3 73 logger -p lpr.debug -t ${tag} " title : ${title}" 154 ${title} 180 (${title}) 100 660 /Times-Bold 36 PrintLine
|
/solaris-userland-s11u3/components/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/ |
H A D | AdvancedSettingsDialog.java | 110 private String title = Finder.getString("usermgr.advanced.title"); field in class:AdvancedSettingsDialog 126 String utitle = title; 141 utitle = title + " (" + userObj.getUsername() + ")"; 153 String utitle = title; 156 utitle = title + " (" + userObj.getUsername() + ")";
|
/solaris-userland-s11u3/components/visual-panels/smf/src/java/vpanels/app/svcs/com/oracle/solaris/vp/panels/svcs/client/swing/ |
H A D | InstancesPanel.java | 65 String title = Finder.getString("smf.instances.title"); 69 actions, dAction, title, null, props);
|
/solaris-userland-s11u3/components/jansson/doc/html/_static/ |
H A D | default.css | 177 div.admonition p.admonition-title + p { 212 p.admonition-title { 216 p.admonition-title:after {
|
H A D | searchtools.js | 202 // The function takes a result array [filename, title, anchor, descr, score] 221 // query found in title 222 title: 15, 299 this.title = $('<h2>' + _('Searching') + '</h2>').appendTo(this.out); 300 this.dots = $('<span></span>').appendTo(this.title); 364 // array of [filename, title, anchor, descr, score] 377 .concat(this.performTermsSearch(searchterms, excluded, titleterms, Scorer.title)); 451 // no source available, just display title 458 // search finished, update title and status message 461 Search.title [all...] |