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

1234

/openjdk7/jdk/src/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</code>,
46 * <code>selected</code> 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
190 private boolean selected; field in class:InputMethodHighlight
[all...]
/openjdk7/hotspot/agent/src/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
/openjdk7/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.java43 public List<Figure> selected(Diagram d) { method in class:OrSelector
45 List<Figure> l1 = selector1.selected(d);
46 List<Figure> l2 = selector2.selected(d);
H A DAndSelector.java43 public List<Figure> selected(Diagram d) { method in class:AndSelector
44 List<Figure> l1 = selector1.selected(d);
45 List<Figure> l2 = selector2.selected(d);
H A DInvertSelector.java41 public List<Figure> selected(Diagram d) { method in class:InvertSelector
44 List<Figure> otherResult = selector.selected(d);
H A DPredecessorSelector.java41 public List<Figure> selected(Diagram d) { method in class:PredecessorSelector
42 List<Figure> inner = innerSelector.selected(d);
H A DSuccessorSelector.java41 public List<Figure> selected(Diagram d) { method in class:SuccessorSelector
42 List<Figure> inner = innerSelector.selected(d);
H A DMatcherSelector.java42 public List<Figure> selected(Diagram d) { method in class:MatcherSelector
/openjdk7/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;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOption.java58 selected = (attr.getAttribute(HTML.Attribute.SELECTED) != null);
90 * Sets the selected state.
93 selected = state;
100 return selected;
117 private boolean selected; field in class:Option
/openjdk7/hotspot/agent/src/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);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJRadioButton.java40 * An implementation of a radio button -- an item that can be selected or
43 * in which only one button at a time can be selected. (Create a ButtonGroup
83 * description: A component which can display it's state as selected or deselected.
132 * @param selected if true, the button is initially selected;
135 public JRadioButton(Icon icon, boolean selected) { argument
136 this(null, icon, selected);
153 * @param selected if true, the button is initially selected;
156 public JRadioButton (String text, boolean selected) { argument
178 JRadioButton(String text, Icon icon, boolean selected) argument
[all...]
H A DJRadioButtonMenuItem.java44 * item in the group can be selected. The selected item displays its
45 * selected state. Selecting it causes any other selected item to
47 * To control the selected state of a group of radio button menu items,
80 * description: A component within a group of menu items which can be selected.
149 * @param selected the selected state of the <code>CheckBoxMenuItem</code>
151 public JRadioButtonMenuItem(String text, boolean selected) { argument
153 setSelected(selected);
164 JRadioButtonMenuItem(Icon icon, boolean selected) argument
176 JRadioButtonMenuItem(String text, Icon icon, boolean selected) argument
[all...]
H A DJCheckBox.java40 * An implementation of a check box -- an item that can be selected or
42 * By convention, any number of check boxes in a group can be selected.
74 * description: A component which can be selected or deselected.
110 * or not it is initially selected.
113 * @param selected a boolean value indicating the initial selection
114 * state. If <code>true</code> the check box is selected
116 public JCheckBox(Icon icon, boolean selected) { argument
117 this(null, icon, selected);
143 * or not it is initially selected.
146 * @param selected
149 JCheckBox(String text, boolean selected) argument
173 JCheckBox(String text, Icon icon, boolean selected) argument
[all...]
H A DJToggleButton.java110 * @param selected if true, the button is initially selected;
113 public JToggleButton(Icon icon, boolean selected) { argument
114 this(null, icon, selected);
131 * @param selected if true, the button is initially selected;
134 public JToggleButton (String text, boolean selected) { argument
135 this(text, null, selected);
166 * @param selected if true, the button is initially selected;
169 JToggleButton(String text, Icon icon, boolean selected) argument
[all...]
/openjdk7/jdk/src/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
73 boolean selected, boolean expanded,
72 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLOptionElement.java56 * Represents the value of the HTML selected attribute. The value of this
60 * control. See the selected attribute definition in HTML 4.0.
93 * the form control, but does not change the value of the HTML selected
97 public void setSelected(boolean selected); argument
/openjdk7/jdk/src/solaris/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.java60 private boolean selected; field in class:XCheckboxPeer
75 selected = target.getState();
129 //selected=!selected;
130 action(!selected);
177 + ", selected = " + selected + ", enabled = " + isEnabled());
195 + ", selected = " + selected + ", enabled = " + isEnabled());
201 //selected
[all...]
/openjdk7/jdk/src/share/demo/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
/openjdk7/jdk/src/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);
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DChangingInterests.java71 * checks the selected key set and the key's channel.
85 int selected = sel.selectNow();
86 System.out.println("" + selected + " channel(s) selected");
89 assertTrue(selected == expected, "Expected " + expected);
91 // check selected keys
93 assertTrue(k == key, "Unexpected key selected");
125 int selected = sel.select(1000);
126 System.out.println("" + selected + " channel(s) selected");
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DList.java64 * alt="Shows a list containing: Venus, Earth, JavaSoft, and Mars. Javasoft is selected." ALIGN=center HSPACE=10 VSPACE=7>
67 * an item that is already selected deselects it. In the preceding
68 * example, only one item from the scrolling list can be selected
71 * selections, selecting an item causes any other selected item
85 * When an item is selected or deselected by the user, AWT sends an instance
91 * list is selected.
94 * in this list being selected or activated by the user, it should implement
148 * <code>selected</code> is an array that will contain
149 * the indices of items that have been selected.
155 int selected[] field in class:List
[all...]

Completed in 45 milliseconds

1234