Searched refs:context (Results 1 - 25 of 854) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/javax/script/
H A DTest5.js12 if (context.getAttribute("key", context.GLOBAL_SCOPE ) != null) {
22 if (context.getAttribute("key", context.GLOBAL_SCOPE ) !=
33 if (context.getAttribute("key", context.GLOBAL_SCOPE ) !=
H A DTest3.js5 // pre-defined context variable refers to current ScriptContext
6 if (context.getAttribute('key', context.GLOBAL_SCOPE) != 'global value') {
13 if (context.getAttribute('key', context.GLOBAL_SCOPE) != 'global value') {
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMAxisTraverser.java50 * By the nature of the stateless traversal, the context node can not be
57 * @param context The context node of this traversal. This is the point
61 public int first(int context) argument
63 return next(context, context);
67 * By the nature of the stateless traversal, the context node can not be
74 * @param context The context node of this traversal. This is the point
80 public int first(int context, in argument
99 next(int context, int current) argument
117 next(int context, int current, int extendedTypeID) argument
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkType.hpp37 static SharkContext& context() { function in class:SharkType
44 return context().void_type();
47 return context().bit_type();
50 return context().jbyte_type();
53 return context().jshort_type();
56 return context().jint_type();
59 return context().jlong_type();
62 return context().jfloat_type();
65 return context().jdouble_type();
68 return context()
[all...]
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLServerSocketFactoryImpl.java43 private SSLContextImpl context; field in class:SSLServerSocketFactoryImpl
52 this.context = SSLContextImpl.DefaultSSLContext.getDefaultImpl();
58 SSLServerSocketFactoryImpl (SSLContextImpl context) argument
60 this.context = context;
71 return new SSLServerSocketImpl(context);
77 return new SSLServerSocketImpl (port, DEFAULT_BACKLOG, context);
84 return new SSLServerSocketImpl (port, backlog, context);
91 return new SSLServerSocketImpl (port, backlog, ifAddress, context);
102 return context
[all...]
H A DSSLSocketFactoryImpl.java39 * authentication context (and the keys held there) rather than offering
40 * any flexibility about which keys to use; that context defaults to the
41 * process-default context, but may be explicitly specified.
48 private SSLContextImpl context; field in class:SSLSocketFactoryImpl
56 this.context = SSLContextImpl.DefaultSSLContext.getDefaultImpl();
62 SSLSocketFactoryImpl(SSLContextImpl context) { argument
63 this.context = context;
73 return new SSLSocketImpl(context);
79 * existing SSL sessions allowed by the authentication context whic
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DNamespaceContextIterator.java38 Node context; field in class:NamespaceContextIterator
46 public NamespaceContextIterator(Node context) { argument
47 this.context = context;
51 public NamespaceContextIterator(Node context, boolean traverseStack) { argument
52 this(context);
57 while (context != null) {
58 int type = context.getNodeType();
60 attributes = context.getAttributes();
65 context
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/pipe/
H A DStandalonePipeAssembler.java45 public Pipe createClient(ClientPipeAssemblerContext context) { argument
46 Pipe head = context.createTransportPipe();
47 head = context.createSecurityPipe(head);
52 head = context.createDumpPipe("client", System.out, head);
54 head = context.createWsaPipe(head);
55 head = context.createClientMUPipe(head);
56 return context.createHandlerPipe(head);
64 public Pipe createServer(ServerPipeAssemblerContext context) { argument
65 Pipe head = context.getTerminalPipe();
66 head = context
[all...]
H A DStandaloneTubeAssembler.java44 public Tube createClient(ClientTubeAssemblerContext context) { argument
45 Tube head = context.createTransportTube();
46 head = context.createSecurityTube(head);
50 head = context.createDumpTube("client", System.out, head);
52 head = context.createWsaTube(head);
53 head = context.createClientMUTube(head);
54 head = context.createValidationTube(head);
55 return context.createHandlerTube(head);
63 public Tube createServer(ServerTubeAssemblerContext context) { argument
64 Tube head = context
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DThreadContext.java36 * <p>This class associates a context with each thread that
37 * references it. The context is a set of mappings between Strings
56 * <p>A thread can consult its own context using
60 * <p>A thread cannot read or modify the context of another thread.</p>
67 /* The context of a thread is stored as a linked list. At the
74 push context entries with a null key.
79 sentinel value, you can erase the context stack. Only the
125 ThreadContext context = contextContaining(key);
126 if (context == null)
129 return context
307 setInitialContext(ThreadContext context) argument
320 setContext(ThreadContext context) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpsConfigurator.java72 private SSLContext context; field in class:HttpsConfigurator
76 * @param context the SSLContext to use for this configurator
79 public HttpsConfigurator (SSLContext context) { argument
80 if (context == null) {
83 this.context = context;
91 return context;
/openjdk7/jdk/src/macosx/native/apple/applescript/
H A DAppleScriptExecutionContext.h32 NSDictionary *context; variable
38 @property (nonatomic, retain) NSDictionary *context; variable
42 - (id) initWithSource:(NSString *)source context:(NSDictionary *)context;
43 - (id) initWithFile:(NSString *)filename context:(NSDictionary *)context;
/openjdk7/jaxws/src/share/jaxws_classes/org/relaxng/datatype/helpers/
H A DStreamingValidatorImpl.java51 * public DatatypeStreamingValidator createStreamingValidator( ValidationContext context ) {
52 * return new StreamingValidatorImpl(this,context);
68 /** The current context. */
69 private final ValidationContext context; field in class:StreamingValidatorImpl
77 return baseType.isValid(buffer.toString(),context);
81 baseType.checkValid(buffer.toString(),context);
84 public StreamingValidatorImpl( Datatype baseType, ValidationContext context ) {
86 this.context = context;
/openjdk7/jdk/src/share/classes/java/security/
H A DAccessControlContext.java38 * based on the context it encapsulates.
40 * <p>More specifically, it encapsulates a context and
45 * context it encapsulates,
49 * a security check that should be made within a given context
51 * <i>different</i> context (for example, from within a worker thread).
56 * of the current calling context, and places
65 * Code within a different context can subsequently call the
81 private ProtectionDomain context[]; field in class:AccessControlContext
112 * context.
114 * @param context th
119 AccessControlContext(ProtectionDomain context[]) argument
188 AccessControlContext(ProtectionDomain context[], DomainCombiner combiner) argument
200 AccessControlContext(ProtectionDomain context[], boolean isPrivileged) argument
211 AccessControlContext(ProtectionDomain[] context, AccessControlContext privilegedContext) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/font/
H A DX11FontScaler.c53 NativeScalerContext *context = (NativeScalerContext*)pScalerContext; local
55 if (context != NULL) {
56 if (context->xFont != NULL) {
57 AWTFreeFont(context->xFont);
59 free(context);
67 NativeScalerContext *context = local
69 context->xFont = NULL;
70 context->minGlyph = 0;
71 context->maxGlyph = 0;
72 context
83 NativeScalerContext *context; local
205 NativeScalerContext *context = (NativeScalerContext*) local
223 NativeScalerContext *context = (NativeScalerContext*)pScalerContext; local
235 NativeScalerContext *context = (NativeScalerContext*)pScalerContext; local
274 NativeScalerContext *context = (NativeScalerContext*)pScalerContext; local
295 NativeScalerContext *context = (NativeScalerContext*)pScalerContext; local
316 NativeScalerContext *context = (NativeScalerContext*)pScalerContext; local
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DImagePainter.java125 private void paint(SynthContext context, Graphics g, int x, int y, int w, argument
143 imageCache.paint(context.getComponent(), g, x, y, w, h,
151 public void paintArrowButtonBackground(SynthContext context, argument
154 paint(context, g, x, y, w, h);
157 public void paintArrowButtonBorder(SynthContext context, argument
160 paint(context, g, x, y, w, h);
163 public void paintArrowButtonForeground(SynthContext context, argument
167 paint(context, g, x, y, w, h);
171 public void paintButtonBackground(SynthContext context, argument
174 paint(context,
177 paintButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
184 paintCheckBoxMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
190 paintCheckBoxMenuItemBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
197 paintCheckBoxBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
203 paintCheckBoxBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
210 paintColorChooserBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
216 paintColorChooserBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
223 paintComboBoxBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
229 paintComboBoxBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
236 paintDesktopIconBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
242 paintDesktopIconBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
249 paintDesktopPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
255 paintDesktopPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
262 paintEditorPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
268 paintEditorPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
275 paintFileChooserBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
281 paintFileChooserBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
288 paintFormattedTextFieldBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
294 paintFormattedTextFieldBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
301 paintInternalFrameTitlePaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
307 paintInternalFrameTitlePaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
314 paintInternalFrameBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
320 paintInternalFrameBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
327 paintLabelBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
333 paintLabelBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
340 paintListBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
346 paintListBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
353 paintMenuBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
359 paintMenuBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
366 paintMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
372 paintMenuItemBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
379 paintMenuBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
385 paintMenuBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
392 paintOptionPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
398 paintOptionPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
405 paintPanelBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
411 paintPanelBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
418 paintPasswordFieldBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
424 paintPasswordFieldBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
431 paintPopupMenuBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
437 paintPopupMenuBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
444 paintProgressBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
450 paintProgressBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
456 paintProgressBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
462 paintProgressBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
468 paintProgressBarForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
475 paintRadioButtonMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
481 paintRadioButtonMenuItemBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
488 paintRadioButtonBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
494 paintRadioButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
501 paintRootPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
507 paintRootPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
514 paintScrollBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
520 paintScrollBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
526 paintScrollBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
532 paintScrollBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
539 paintScrollBarThumbBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
545 paintScrollBarThumbBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
552 paintScrollBarTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
558 paintScrollBarTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
564 paintScrollBarTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
570 paintScrollBarTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
577 paintScrollPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
583 paintScrollPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
590 paintSeparatorBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
596 paintSeparatorBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
602 paintSeparatorBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
608 paintSeparatorBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
614 paintSeparatorForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
621 paintSliderBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
627 paintSliderBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
633 paintSliderBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
639 paintSliderBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
646 paintSliderThumbBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
652 paintSliderThumbBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
659 paintSliderTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
665 paintSliderTrackBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
671 paintSliderTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
678 paintSliderTrackBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
685 paintSpinnerBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
691 paintSpinnerBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
698 paintSplitPaneDividerBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
704 paintSplitPaneDividerBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
710 paintSplitPaneDividerForeground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
716 paintSplitPaneDragDivider(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
723 paintSplitPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
729 paintSplitPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
736 paintTabbedPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
742 paintTabbedPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
749 paintTabbedPaneTabAreaBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
755 paintTabbedPaneTabAreaBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
761 paintTabbedPaneTabAreaBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
767 paintTabbedPaneTabAreaBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
774 paintTabbedPaneTabBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex) argument
780 paintTabbedPaneTabBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex, int orientation) argument
786 paintTabbedPaneTabBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex) argument
792 paintTabbedPaneTabBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int tabIndex, int orientation) argument
799 paintTabbedPaneContentBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
805 paintTabbedPaneContentBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
811 paintTableHeaderBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
817 paintTableHeaderBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
824 paintTableBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
830 paintTableBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
837 paintTextAreaBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
843 paintTextAreaBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
850 paintTextPaneBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
856 paintTextPaneBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
863 paintTextFieldBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
869 paintTextFieldBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
876 paintToggleButtonBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
882 paintToggleButtonBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
889 paintToolBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
895 paintToolBarBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
901 paintToolBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
907 paintToolBarBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
914 paintToolBarContentBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
920 paintToolBarContentBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
926 paintToolBarContentBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
932 paintToolBarContentBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
939 paintToolBarDragWindowBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
945 paintToolBarDragWindowBackground(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
951 paintToolBarDragWindowBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
957 paintToolBarDragWindowBorder(SynthContext context, Graphics g, int x, int y, int w, int h, int orientation) argument
964 paintToolTipBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
970 paintToolTipBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
977 paintTreeBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
983 paintTreeBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
990 paintTreeCellBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
996 paintTreeCellBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
1002 paintTreeCellFocus(SynthContext context, Graphics g, int x, int y, int w, int h) argument
1009 paintViewportBackground(SynthContext context, Graphics g, int x, int y, int w, int h) argument
1015 paintViewportBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
[all...]
H A DSynthColorChooserUI.java65 SynthContext context = getContext(chooser, ENABLED);
67 context.getStyle().get(context, "ColorChooser.panels");
68 context.dispose();
86 SynthContext context = getContext(c, ENABLED);
87 style = SynthLookAndFeel.updateStyle(context, this);
88 context.dispose();
96 SynthContext context = getContext(chooser, ENABLED);
98 style.uninstallDefaults(context);
99 context
187 paint(SynthContext context, Graphics g) argument
194 paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
[all...]
H A DSynthViewportUI.java84 SynthContext context = getContext(c, ENABLED);
90 SynthStyle newStyle = SynthLookAndFeel.getStyle(context.getComponent(),
91 context.getRegion());
92 SynthStyle oldStyle = context.getStyle();
96 oldStyle.uninstallDefaults(context);
98 context.setStyle(newStyle);
99 newStyle.installDefaults(context);
102 context.dispose();
129 SynthContext context = getContext(c, ENABLED);
130 style.uninstallDefaults(context);
188 paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
216 paint(SynthContext context, Graphics g) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DBufImgVolatileSurfaceManager.java46 public BufImgVolatileSurfaceManager(SunVolatileImage vImg, Object context) { argument
47 super(vImg, context);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DUnmarshallerChain.java50 public final JAXBContextImpl context; field in class:UnmarshallerChain
52 public UnmarshallerChain(JAXBContextImpl context) { argument
53 this.context = context;
/openjdk7/jaxws/src/share/jaxws_classes/org/relaxng/datatype/
H A DDatatype.java46 * context information.
62 * with respect to the current context.
66 * @param context
67 * If this datatype is context-dependent
69 * then the caller must provide a non-null valid context object.
76 boolean isValid( String literal, ValidationContext context );
98 void checkValid( String literal, ValidationContext context )
109 * @param context
110 * If this datatype is context-dependent
112 * then the caller must provide a non-null valid context objec
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jconsole/
H A DJConsolePlugin.java76 private volatile JConsoleContext context = null; field in class:JConsolePlugin
89 * is called. The given {@code context} can be in any
93 * @param context a {@code JConsoleContext} object
95 public final synchronized void setContext(JConsoleContext context) { argument
96 this.context = context;
99 context.addPropertyChangeListener(l);
109 * if it is called before the {@link #setContext context} is initialized.
115 return context;
204 if (context
[all...]
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDropTargetEvent.java60 context = dtc;
71 return context;
80 protected DropTargetContext context; field in class:DropTargetEvent
/openjdk7/jdk/test/java/beans/beancontext/
H A DTest4233980.java36 BeanContextSupport context = new BeanContextSupport(); // The BeanContext
38 // add the bean to the context
39 context.add(bean);
41 context.getResourceAsStream("Readme.txt", bean);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/handler/
H A DHandler.java42 * @param context the message context.
56 public boolean handleMessage(C context); argument
62 * @param context the message context
76 public boolean handleFault(C context); argument
84 * @param context the message context
86 public void close(MessageContext context); argument

Completed in 109 milliseconds

1234567891011>>