Searched refs:component (Results 51 - 75 of 199) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsMenuBarUI.java46 * Windows rendition of the component.
77 Component component = menuBar.getTopLevelAncestor();
78 if (component instanceof Window) {
79 window = (Window) component;
90 ((Window) component).addWindowListener(windowListener);
172 * Checks if component belongs to an active window.
173 * @param c component to check
174 * @return true if component belongs to an active window
179 Component component = rootPane.getParent();
180 if (component instanceo
[all...]
/openjdk7/jdk/src/share/back/
H A DArrayReferenceImpl.c213 jobject component; local
216 component = JNI_FUNC_PTR(env,GetObjectArrayElement)(env, array, index + i);
221 (void)outStream_writeByte(out, specificTypeKey(env, component));
222 (void)outStream_writeObjectRef(env, out, component);
346 jboolean component; local
349 component = inStream_readBoolean(in);
350 JNI_FUNC_PTR(env,SetBooleanArrayRegion)(env, array, index + i, 1, &component);
360 jbyte component; local
363 component = inStream_readByte(in);
364 JNI_FUNC_PTR(env,SetByteArrayRegion)(env, array, index + i, 1, &component);
374 jchar component; local
388 jshort component; local
402 jint component; local
416 jlong component; local
430 jfloat component; local
444 jdouble component; local
[all...]
/openjdk7/jdk/make/common/internal/
H A DImportComponents.gmk26 # JDK jars where component classes come from as second choice
32 # IF the component deliverables are not available.
54 # Relative paths to import component deliverables
63 # Importing component class files
66 $(ECHO) "Importing classes from component $1"; \
71 # Importing optional component doc files (for man pages?)
74 $(ECHO) "Importing docs from component $1"; \
79 # Importing optional component src files (for jdk src.zip and javadoc)
82 $(ECHO) "Importing sources from component $1"; \
87 # Importing optional component bi
[all...]
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDropTarget.java98 component = c;
195 * <code> component.setDropTarget(droptarget); </code>
196 * or <code> droptarget.setComponent(component); </code>
204 if (component == c || component != null && component.equals(c))
210 if ((old = component) != null) {
213 component = null;
224 if ((component = c) != null) try {
242 return component;
740 private Component component; field in class:DropTarget.DropTargetAutoScroller
812 private Component component; field in class:DropTarget
[all...]
/openjdk7/jdk/test/java/awt/List/SetBackgroundTest/
H A DSetBackgroundTest.java114 for (Component component : components) {
115 testComponent(new Panel(), component, color);
121 private static void testComponent(Container container, Component component, Color color){ argument
123 component.setBackground(color);
126 container.add(component, BorderLayout.CENTER);
132 Point loc = component.getLocationOnScreen();
133 Color robotColor = robot.getPixelColor(loc.x + component.getWidth()/2, loc.y + component.getHeight()/2);
137 Sysout.println(" component = "+component);
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DBoundedZoomAction.java72 private JScrollPane findScrollPane(JComponent component) { argument
74 if (component == null) {
77 if (component instanceof JScrollPane) {
78 return ((JScrollPane) component);
80 Container parent = component.getParent();
84 component = (JComponent) parent;
H A DExtendedPanAction.java66 private JScrollPane findScrollPane(JComponent component) { argument
68 if (component == null) {
71 if (component instanceof JScrollPane) {
72 return ((JScrollPane) component);
74 Container parent = component.getParent();
78 component = (JComponent) parent;
H A DExtendedSatelliteComponent.java107 JComponent component = scene.getView();
109 Rectangle viewRectangle = component != null ? component.getVisibleRect() : null;
149 JComponent component = scene.getView();
150 if (component == null) {
169 Rectangle visibleRect = component.getVisibleRect();
172 component.scrollRectToVisible(visibleRect);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTransferHandler.java60 * to represent a drag from a component, and a drop to a component.
67 * the <code>transferHandler</code> property on a Swing component.
70 * a component property simply by specifying the name of the property in
72 * one component to another either via the clipboard or a drag and drop operation
158 * current location within the component.
172 * current location within the component.
215 private Component component; field in class:TransferHandler.TransferSupport
233 * <code>true</code> for the given component, event, and index.
235 * @param component th
238 TransferSupport(Component component, DropTargetEvent event) argument
255 TransferSupport(Component component, Transferable transferable) argument
275 setDNDVariables(Component component, DropTargetEvent event) argument
1194 JComponent component; field in class:TransferHandler.PropertyTransferable
1310 private Component component; field in class:TransferHandler.DropHandler
[all...]
H A DAncestorNotifier.java216 JComponent component = (JComponent)evt.getSource();
219 if (component == firstInvisibleAncestor) {
220 addListeners(component, false);
223 component, component.getParent());
231 firstInvisibleAncestor = component;
234 component, oldParent);
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputMethodAdapter.java65 * Informs the input method adapter about the component that has the AWT
68 protected void setAWTFocussedComponent(Component component) { argument
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DMarkToLigaturePosnSubtables.cpp96 le_int32 component = ligatureIterator.getMarkComponent(markPosition); local
98 if (component >= componentCount) {
100 component = componentCount - 1;
103 const ComponentRecord *componentRecord = &ligatureAttachTable->componentRecordArray[component * mcCount];
/openjdk7/jdk/src/share/classes/java/awt/color/
H A DICC_ColorSpace.java532 * Returns the minimum normalized color component value for the
533 * specified component. For TYPE_XYZ spaces, this method returns
539 * with a profile that requires different minimum component values,
541 * @param component The component index.
542 * @return The minimum normalized component value.
543 * @throws IllegalArgumentException if component is less than 0 or
547 public float getMinValue(int component) { argument
548 if ((component < 0) || (component > thi
572 getMaxValue(int component) argument
[all...]
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DJavaAccessibilityAction.m34 - (id)initWithEnv:(JNIEnv *)env withAccessibleAction:(jobject)accessibleAction withIndex:(jint)index withComponent:(jobject)component
40 fComponent = JNFNewGlobalRef(env, component);
95 - (id)initWithEnv:(JNIEnv *)env withTabGroup:(jobject)tabGroup withIndex:(jint)index withComponent:(jobject)component
101 fComponent = JNFNewGlobalRef(env, component);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJArrayClass.java40 // array component type
44 JArrayClass( JCodeModel owner, JType component ) {
46 this.componentType = component;
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest4759934.java62 Component component = (source instanceof Component)
66 JColorChooser.showDialog(component, "ColorChooser", Color.BLUE); // NON-NLS: title
H A DTest6524757.java162 Component component = getC(getC(dialog.getLayeredPane(), 0), 1);
163 AbstractButton ok = (AbstractButton) getC(component, 0);
164 AbstractButton cancel = (AbstractButton) getC(component, 1);
165 AbstractButton reset = (AbstractButton) getC(component, 2);
214 private static void addSize(List<Object> list, Component component, int x, int y, int w, int h) { argument
215 Dimension size = component.getPreferredSize();
221 private static Component getC(Component component, int index) { argument
222 Container container = (Container) component;
/openjdk7/jdk/test/javax/swing/JSlider/6524424/
H A Dbug6524424.java93 private static void addComponent(JPanel panel, Component component) { argument
94 panel.add(component, new GridBagConstraints(0,
/openjdk7/hotspot/src/share/vm/classfile/
H A DverificationType.cpp87 Symbol* component; local
98 component = context->create_temporary_symbol(
101 return VerificationType::reference_type(component);
103 component = context->create_temporary_symbol(
106 return VerificationType::reference_type(component);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTextPasswordFieldUI.java76 final JTextComponent component = getComponent();
77 if (component == null) return;
78 if (!component.isFocusOwner()) return;
83 final Rectangle bounds = component.getBounds();
84 getCapsLockPainter().paintBorder(component, g, bounds.x, bounds.y, bounds.width, bounds.height);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultHighlighter.java62 Rectangle a = component.getBounds();
63 Insets insets = component.getInsets();
73 a, component);
85 * @param c the editor component
89 component = c;
97 * @param c the component
101 component = null;
124 Document doc = component.getDocument();
145 component.repaint(lhi.x, lhi.y, lhi.width, lhi.height);
159 TextUI mapper = component
353 private JTextComponent component; field in class:DefaultHighlighter
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DDefaultClassBinder.java366 * Makes sure that the component doesn't carry a {@link BIClass}
382 // BIDeclaration cust=owner.getBindInfo(component).get(BIClass.NAME);
387 // "test {0}", NameGetter.get(component) );
393 * Checks if a component carries a customization to map it to a class.
404 private CElement allow( XSComponent component, String defaultBaseName ) { argument
408 if(component instanceof XSComplexType) {
409 XSType complexType = (XSType)component;
425 // use this as biclass for current component
430 BindInfo bindInfo = builder.getBindInfo(component);
446 if(component instanceo
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DContainer.java68 * A generic Abstract Window Toolkit(AWT) container object is a component
74 * component to a container, it will be added to the end of the list
103 private java.util.List<Component> component = new java.util.ArrayList<Component>(); field in class:Container
163 // keeps track of the threads that are printing this component
165 // True if there is at least one thread that's printing this component
215 * @serialField component Component[]
240 new ObjectStreamField("component", Component[].class),
273 * somewhere higher up in the component tree that is native.
306 return component.size();
310 * Gets the nth component i
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorChooserPanel.java68 for (Component component : container.getComponents()) {
69 component.setEnabled(enabled);
70 if (component instanceof Container) {
71 setEnabled((Container) component, enabled);
194 * @param component the root component of the tree
197 private static void setInheritsPopupMenu(JComponent component, boolean value) { argument
198 component.setInheritsPopupMenu(value);
199 for (Object object : component.getComponents()) {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DExtendedSatelliteComponent.java104 JComponent component = scene.getView();
106 Rectangle viewRectangle = component != null ? component.getVisibleRect() : null;
146 JComponent component = scene.getView();
147 if (component == null) {
166 Rectangle visibleRect = component.getVisibleRect();
169 component.scrollRectToVisible(visibleRect);

Completed in 91 milliseconds

12345678