Searched refs:selected (Results 1 - 25 of 131) sorted by relevance

123456

/openjdk10/jdk/src/java.desktop/share/classes/java/awt/im/
H A DInputMethodHighlight.java36 * text is selected; at the concrete level it specifies style attributes used
44 * The abstract description consists of three fields: {@code selected},
46 * {@code selected} indicates whether the text range is the one that the
89 * Constant for the default highlight for selected raw text.
101 * Constant for the default highlight for selected converted text.
110 * @param selected Whether the text range is selected
116 public InputMethodHighlight(boolean selected, int state) { argument
117 this(selected, state, 0, null);
123 * @param selected Whethe
130 InputMethodHighlight(boolean selected, int state, int variation) argument
146 InputMethodHighlight(boolean selected, int state, int variation, Map<TextAttribute,?> style) argument
193 private boolean selected; field in class:InputMethodHighlight
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/com/sun/java/swing/action/
H A DStateChangeAction.java42 selected = false;
48 selected = false;
53 return selected;
58 boolean oldValue = selected;
61 selected = newValue;
62 firePropertyChange("selected", Boolean.valueOf(oldValue), Boolean.valueOf(newValue));
86 protected boolean selected; field in class:StateChangeAction
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DSelector.java34 List<Figure> selected(Diagram d); method in interface:Selector
H A DOrSelector.java44 public List<Figure> selected(Diagram d) { method in class:OrSelector
46 List<Figure> l1 = selector1.selected(d);
47 List<Figure> l2 = selector2.selected(d);
H A DAndSelector.java44 public List<Figure> selected(Diagram d) { method in class:AndSelector
45 List<Figure> l1 = selector1.selected(d);
46 List<Figure> l2 = selector2.selected(d);
H A DPredecessorSelector.java42 public List<Figure> selected(Diagram d) { method in class:PredecessorSelector
43 List<Figure> inner = innerSelector.selected(d);
H A DSuccessorSelector.java42 public List<Figure> selected(Diagram d) { method in class:SuccessorSelector
43 List<Figure> inner = innerSelector.selected(d);
H A DInvertSelector.java42 public List<Figure> selected(Diagram d) { method in class:InvertSelector
45 List<Figure> otherResult = selector.selected(d);
H A DMatcherSelector.java43 public List<Figure> selected(Diagram d) { method in class:MatcherSelector
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DCheckNode.java38 public boolean selected; field in class:CheckNode
44 selected = false;
53 return selected;
57 if (b != selected) {
58 selected = b;
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DOption.java59 selected = (attr.getAttribute(HTML.Attribute.SELECTED) != null);
97 * Sets the selected state.
102 selected = state;
111 return selected;
131 private boolean selected; field in class:Option
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/com/sun/java/swing/ui/
H A DToggleActionPropertyChangeListener.java44 if(propertyName.equals("selected"))
46 Boolean selected = (Boolean)evt.getNewValue();
47 button.setSelected(selected.booleanValue());
H A DCommonMenuBar.java81 protected void addCheckBoxMenuItem(JMenu menu, StateChangeAction a, boolean selected) argument
85 mi.setSelected(selected);
95 protected void addRadioButtonMenuItem(JMenu menu, ButtonGroup group, StateChangeAction a, boolean selected) argument
99 mi.setSelected(selected);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DJRadioButtonMenuItem.java38 * item in the group can be selected. The selected item displays its
39 * selected state. Selecting it causes any other selected item to
41 * To control the selected state of a group of radio button menu items,
89 @JavaBean(description = "A component within a group of menu items which can be selected.")
155 * @param selected the selected state of the <code>CheckBoxMenuItem</code>
157 public JRadioButtonMenuItem(String text, boolean selected) { argument
159 setSelected(selected);
170 JRadioButtonMenuItem(Icon icon, boolean selected) argument
184 JRadioButtonMenuItem(String text, Icon icon, boolean selected) argument
[all...]
H A DJRadioButton.java37 * An implementation of a radio button -- an item that can be selected or
40 * in which only one button at a time can be selected. (Create a ButtonGroup
83 @JavaBean(description = "A component which can display it's state as selected or deselected.")
130 * @param selected if true, the button is initially selected;
133 public JRadioButton(Icon icon, boolean selected) { argument
134 this(null, icon, selected);
151 * @param selected if true, the button is initially selected;
154 public JRadioButton (String text, boolean selected) { argument
178 JRadioButton(String text, Icon icon, boolean selected) argument
[all...]
H A DJCheckBox.java38 * An implementation of a check box -- an item that can be selected or
40 * By convention, any number of check boxes in a group can be selected.
73 @JavaBean(description = "A component which can be selected or deselected.")
108 * or not it is initially selected.
111 * @param selected a boolean value indicating the initial selection
112 * state. If <code>true</code> the check box is selected
114 public JCheckBox(Icon icon, boolean selected) { argument
115 this(null, icon, selected);
142 * or not it is initially selected.
145 * @param selected
148 JCheckBox(String text, boolean selected) argument
172 JCheckBox(String text, Icon icon, boolean selected) argument
[all...]
/openjdk10/jaxp/src/jdk.xml.dom/share/classes/org/w3c/dom/html/
H A DHTMLOptionElement.java58 * Represents the value of the HTML selected attribute. The value of this
62 * control. See the selected attribute definition in HTML 4.0.
95 * the form control, but does not change the value of the HTML selected
99 public void setSelected(boolean selected); argument
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/tree/
H A DTreeCellRenderer.java46 * If <code>selected</code> is true, the cell will be drawn as if
47 * selected. If <code>expanded</code> is true the node is currently
72 * @param selected whether node is selected
80 boolean selected, boolean expanded,
79 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk10/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXAbstractMenuItem.java35 void paint(Graphics g, int top, int bottom, int width, int shortcutOffset, boolean selected); argument
H A DXCheckboxPeer.java61 private boolean selected; field in class:XCheckboxPeer
76 selected = target.getState();
130 //selected=!selected;
131 action(!selected);
180 + ", selected = " + selected + ", enabled = " + isEnabled());
198 + ", selected = " + selected + ", enabled = " + isEnabled());
204 //selected
[all...]
/openjdk10/jdk/test/javax/swing/plaf/basic/BasicLabelUI/
H A Dbug7172652.java47 private static Boolean selected; field in class:bug7172652
78 selected = menu.isSelected();
93 if( selected != null ) {
94 throw new RuntimeException("Menu is notified selected= " + selected);
101 if( selected != null ) {
102 throw new RuntimeException("Menu is notified selected= " + selected);
111 if( selected != null ) {
112 throw new RuntimeException("Menu is notified selected
[all...]
/openjdk10/jdk/src/demo/share/jfc/SampleTree/
H A DSampleTreeCellRenderer.java64 /** Color to use for the background when selected. */
87 /** Whether or not the item that was last configured is selected. */
88 protected boolean selected; field in class:SampleTreeCellRenderer
97 boolean selected, boolean expanded,
100 String stringValue = tree.convertValueToText(value, selected,
131 /* Update the selected flag for the next paint. */
132 this.selected = selected;
147 if (selected) {
96 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveFilter.java56 List<Figure> selected = r.getSelector().selected(diagram);
57 Set<Figure> toRemove = new HashSet<>(selected);
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/sasl/
H A DDefaultCallbackHandler.java81 int selected = 0;
84 selected = -1; // no realm chosen
87 selected = j;
90 if (selected == -1) {
102 ((RealmChoiceCallback)callbacks[i]).setSelectedIndex(selected);
/openjdk10/jdk/test/java/nio/channels/Selector/
H A DChangingInterests.java86 * checks the selected key set and the key's channel.
100 int selected = sel.selectNow();
101 System.out.println("" + selected + " channel(s) selected");
104 assertTrue(selected == expected, "Expected " + expected);
106 // check selected keys
108 assertTrue(k == key, "Unexpected key selected");
140 int selected = sel.select(1000);
141 System.out.println("" + selected + " channel(s) selected");
[all...]

Completed in 383 milliseconds

123456