Searched defs:title (Results 1 - 24 of 24) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/control/
H A DDefaultFrameControl.java81 protected void setWindowTitle(String title) { argument
82 getComponent().setTitle(title);
H A DChangeIndicatorTab.java55 public ChangeIndicatorTab(String title, JTabbedPane tabs, int index, argument
60 label = new JLabel(title);
H A DDialogControl.java102 protected void setWindowTitle(String title) { argument
103 getComponent().setTitle(title);
H A DPanelFrameControl.java97 private String title; field in class:PanelFrameControl
262 return title;
266 protected void setWindowTitle(String title) { argument
267 this.title = title;
510 String resource = "window.title.defaultlogin";
518 resource = "window.title.nondefaultlogin";
521 String frameTitle = Finder.getString(resource, title, login);
H A DWindowControl.java78 // 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/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/view/
H A DDualViewObjectsPanel.java53 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 DListObjectsPanel.java50 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 DTableObjectsPanel.java53 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 DTreeTableObjectsPanel.java53 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 DObjectsHeader.java134 public void setTitle(String title) { argument
135 titleLabel.setText(title);
H A DSelectorPanel.java177 public void setSelectionTitle(String title) { argument
178 titleLabel.setText(title);
H A DObjectsPanel.java154 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
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/
H A DExtFrame.java84 public ExtFrame(String title) { argument
85 super(title);
89 public ExtFrame(String title, GraphicsConfiguration gc) { argument
90 super(title, gc);
H A DExtInternalFrame.java62 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 DDisablableTabTabbedPane.java56 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 DExtDialog.java78 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 DHyperlinkLabel.java110 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));
H A DSleekTabbedPaneUI.java312 FontMetrics metrics, int tabIndex, String title, Rectangle textRect,
325 tabIndex, title, tmp, isSelected);
311 paintText(Graphics g, int tabPlacement, Font font, FontMetrics metrics, int tabIndex, String title, Rectangle textRect, boolean isSelected) argument
H A DGUIUtil.java490 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...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DDebugUtil.java56 * @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/firewall/src/java/vpanels/app/firewall/com/oracle/solaris/vp/panels/firewall/client/swing/
H A DOpenPortsTablePanel.java126 public void createDialog(Component parentComp, String title) argument
130 dialog = new JDialog(f, title, true);
287 Finder.getString("openports.table.title");
289 Finder.getString("openports.table.title.tcpcol");
291 Finder.getString("openports.table.title.udpcol");
293 Finder.getString("openports.table.title.portcol");
H A DPolicyTablePanel.java192 public void createDialog(Component parentComp, String title) argument
196 dialog = new JDialog(f, title, true);
397 public PolicyTablePanel(String title) { argument
399 addTitle(title);
422 public void addTitle(String title) { argument
426 Border titled = BorderFactory.createTitledBorder(empty, title);
/solaris-userland-s11u3/components/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/
H A DAdvancedSettingsDialog.java110 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/openstack/ironic/files/drivers/modules/
H A Dsolaris_ipmitool.py112 title='Options for the Automated Install driver') variable
118 title="Options defined in ironic.drivers.modules.solaris_ipmi") variable

Completed in 123 milliseconds