/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/ |
H A D | InvertSelector.java | 41 public List<Figure> selected(Diagram d) { method in class:InvertSelector 44 List<Figure> otherResult = selector.selected(d);
|
H A D | MatcherSelector.java | 42 public List<Figure> selected(Diagram d) { method in class:MatcherSelector
|
H A D | PredecessorSelector.java | 41 public List<Figure> selected(Diagram d) { method in class:PredecessorSelector 42 List<Figure> inner = innerSelector.selected(d);
|
H A D | Selector.java | 34 List<Figure> selected(Diagram d); method in interface:Selector
|
H A D | SuccessorSelector.java | 41 public List<Figure> selected(Diagram d) { method in class:SuccessorSelector 42 List<Figure> inner = innerSelector.selected(d);
|
H A D | AndSelector.java | 43 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 D | OrSelector.java | 43 public List<Figure> selected(Diagram d) { method in class:OrSelector 45 List<Figure> l1 = selector1.selected(d); 46 List<Figure> l2 = selector2.selected(d);
|
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | JRadioButtonMenuItem.java | 44 * 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 D | JRadioButton.java | 40 * 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 D | JCheckBox.java | 40 * 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 D | JToggleButton.java | 110 * @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/text/html/ |
H A D | Option.java | 58 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/jdk/src/share/classes/javax/swing/tree/ |
H A D | TreeCellRenderer.java | 46 * 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/jdk/src/share/classes/sun/tools/jconsole/inspector/ |
H A D | XTreeRenderer.java | 38 JTree tree, Object value, boolean selected, boolean expanded, 41 tree, value, selected, expanded, leaf, row, hasFocus); 37 getTreeCellRendererComponent( JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
|
/openjdk7/jdk/src/share/demo/jfc/SampleTree/ |
H A D | SampleTreeCellRenderer.java | 64 /** 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/hotspot/agent/src/share/classes/com/sun/java/swing/action/ |
H A D | StateChangeAction.java | 42 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/jdk/src/share/classes/java/awt/im/ |
H A D | InputMethodHighlight.java | 36 * 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/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/ |
H A D | CheckNode.java | 38 public boolean selected; field in class:CheckNode 44 selected = false; 53 return selected; 57 if (b != selected) { 58 selected = b;
|
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/ |
H A D | XAbstractMenuItem.java | 35 void paint(Graphics g, int top, int bottom, int width, int shortcutOffset, boolean selected); argument
|
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/ |
H A D | CommonMenuBar.java | 81 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);
|
H A D | CommonUI.java | 112 public static JRadioButton createRadioButton(String text, int mnemonic, ActionListener listener, boolean selected) argument 116 button.setSelected(selected); 125 public static JRadioButton createRadioButton(String text, int mnemonic, boolean selected) argument 127 return createRadioButton(text, mnemonic, null, selected); 145 public static JCheckBox createCheckBox(String text, int mnemonic, ActionListener listener, boolean selected) argument 151 checkbox.setSelected(selected); 164 public static JCheckBox createCheckBox(String text, int mnemonic, boolean selected) argument 166 return createCheckBox(text, mnemonic, null, selected);
|
/openjdk7/jaxp/src/org/w3c/dom/html/ |
H A D | HTMLOptionElement.java | 56 * 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/macosx/classes/com/apple/laf/ |
H A D | AquaListUI.java | 141 // this is used for blinking combobox popup selections when they are selected 142 protected void repaintCell(final Object value, final int selectedIndex, final boolean selected) { argument 149 final Component rendererComponent = renderer.getListCellRendererComponent(list, value, selectedIndex, selected, true);
|
H A D | AquaTableHeaderBorder.java | 88 painter.state.set(selected ? BooleanValue.YES : BooleanValue.NO); 165 * Sets whether or not this instance of Border draws selected or not. Used by AquaFileChooserUI 167 private boolean selected = false; field in class:AquaTableHeaderBorder 169 selected = inSelected;
|
/openjdk7/jdk/src/share/classes/javax/swing/text/ |
H A D | PlainView.java | 66 * <code>drawSelectedText</code> so that the way selected and 111 if (sel0 == sel1 || selected == unselected) { 160 * Renders the given range in the model as selected text. This 163 * the selected background. 175 g.setColor(selected); 262 selected = c.isSelectionVisible() && h != null ? 705 Color selected; field in class:PlainView
|