Searched refs:bindings (Results 1 - 25 of 53) sorted by relevance

123

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DInternalizer.java97 * Validates attributes of a <JAXWS:bindings> element.
99 private void validate(Element bindings) { argument
100 NamedNodeMap atts = bindings.getAttributes();
114 private void internalize(Element bindings, Node inheritedTarget) { argument
118 validate(bindings); // validate this node
121 if (isTopLevelBinding(bindings)) {
123 if (bindings.getAttributeNode("wsdlLocation") != null) {
124 wsdlLocation = bindings.getAttribute("wsdlLocation");
130 wsdlLocation = new URL(new URL(forest.getSystemId(bindings.getOwnerDocument())),
142 reportError(bindings, WsdlMessage
213 insertBinding(@otNull Element bindings, @NotNull Node target) argument
317 getWSDLDefintionNode(Node bindings, Node target) argument
346 isJAXWSBindings(Node bindings) argument
350 isJAXBBindings(Node bindings) argument
354 isGlobalBinding(Node bindings) argument
381 evaluateXPathNode(Node bindings, Node target, String expression, NamespaceContext namespaceContext) argument
409 evaluateXPathMultiNode(Node bindings, Node target, String expression, NamespaceContext namespaceContext) argument
430 move(Element bindings, Map<Element, Node> targetNodes) argument
[all...]
H A DInternalizationLogic.java74 * @param bindings
75 * &lt;jaxb:bindings> element or a customization element.
79 boolean checkIfValidTargetNode( DOMForest parent, Element bindings, Element target ); argument
/openjdk7/jdk/src/share/classes/javax/script/
H A DCompiledScript.java65 * associated <code>ScriptEngine</code> during script execution. If bindings is null,
71 * @param bindings The bindings of attributes used for the <code>ENGINE_SCOPE</code>.
77 public Object eval(Bindings bindings) throws ScriptException { argument
81 if (bindings != null) {
83 tempctxt.setBindings(bindings, ScriptContext.ENGINE_SCOPE);
H A DAbstractScriptEngine.java133 * @param bindings The specified <code>Bindings</code>.
138 * @throws NullPointerException if the bindings is null and the scope is
141 public void setBindings(Bindings bindings, int scope) { argument
144 context.setBindings(bindings, ScriptContext.GLOBAL_SCOPE);;
146 context.setBindings(bindings, ScriptContext.ENGINE_SCOPE);;
201 * @param bindings A <code>Bindings</code> to use for the <code>ENGINE_SCOPE</code>
208 public Object eval(Reader reader, Bindings bindings ) throws ScriptException {
210 ScriptContext ctxt = getScriptContext(bindings);
222 * @param bindings A <code>Bindings</code> to use as the <code>ENGINE_SCOPE</code>
229 public Object eval(String script, Bindings bindings) throw argument
[all...]
H A DSimpleScriptContext.java71 * This is the engine scope bindings.
79 * This is the global scope bindings.
101 * @param bindings The <code>Bindings</code> of attributes to set.
108 public void setBindings(Bindings bindings, int scope) { argument
113 if (bindings == null) {
116 engineScope = bindings;
119 globalScope = bindings;
H A DScriptContext.java63 * @param bindings The <code>Bindings</code> to associate with the given scope
72 public void setBindings(Bindings bindings, int scope); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DInternalizer.java83 * Internalize all &lt;jaxb:bindings> customizations in the given forest.
86 * if the SCD support is enabled, the return bindings need to be applied
127 // identify target nodes for all <jaxb:bindings>
145 * Validates attributes of a &lt;jaxb:bindings> element.
147 private void validate( Element bindings ) {
148 NamedNodeMap atts = bindings.getAttributes();
172 * Determines the target node of the "bindings" element
181 * If the ancestor &lt;bindings> node specifies @scd to
184 private void buildTargetNodeMap( Element bindings, @NotNull Node inheritedTarget, argument
191 validate(bindings); // validat
387 move(Element bindings, Map<Element, List<Node>> targetNodes) argument
[all...]
H A DInternalizationLogic.java73 * @param bindings
74 * &lt;jaxb:bindings> element or a customization element.
78 boolean checkIfValidTargetNode( DOMForest parent, Element bindings, Element target ); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJTypeWildcard.java95 protected JClass substituteParams(JTypeVar[] variables, List<JClass> bindings) { argument
96 JClass nb = bound.substituteParams(variables,bindings);
H A DJNullType.java61 protected JClass substituteParams(JTypeVar[] variables, List<JClass> bindings) { argument
H A DJArrayClass.java112 protected JClass substituteParams(JTypeVar[] variables, List<JClass> bindings) { argument
116 JClass c = ((JClass)componentType).substituteParams(variables,bindings);
H A DJTypeVar.java111 protected JClass substituteParams(JTypeVar[] variables, List<JClass> bindings) { argument
114 return bindings.get(i);
H A DJDirectClass.java79 protected JClass substituteParams(JTypeVar[] variables, List<JClass> bindings) { argument
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DJavaSE6ScriptEngine.java42 private Bindings bindings; field in class:JavaSE6ScriptEngine
52 bindings = b;
61 Bindings b = bindings;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaEditorPaneUI.java66 AquaKeyBindings bindings = AquaKeyBindings.instance();
67 bindings.setDefaultAction(getKeymapName());
69 bindings.installAquaUpDownActions(c);
H A DAquaTextAreaUI.java87 AquaKeyBindings bindings = AquaKeyBindings.instance();
88 bindings.setDefaultAction(getKeymapName());
90 bindings.installAquaUpDownActions(c);
H A DAquaTextPaneUI.java84 AquaKeyBindings bindings = AquaKeyBindings.instance();
85 bindings.setDefaultAction(getKeymapName());
88 bindings.installAquaUpDownActions(c);
/openjdk7/jdk/src/share/classes/sun/rmi/registry/
H A DRegistryImpl.java79 private Hashtable<String, Remote> bindings field in class:RegistryImpl
133 synchronized (bindings) {
134 Remote obj = bindings.get(name);
150 synchronized (bindings) {
151 Remote curr = bindings.get(name);
154 bindings.put(name, obj);
167 synchronized (bindings) {
168 Remote obj = bindings.get(name);
171 bindings.remove(name);
183 bindings
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/addon/episode/
H A DPluginImpl.java156 Bindings bindings = TXW.create(Bindings.class, new StreamSerializer(os, "UTF-8"));
158 bindings._namespace(Const.JAXB_NSURI,"jaxb");
160 bindings._namespace(Const.JAXB_NSURI,"");
161 bindings.version("2.1");
162 bindings._comment("\n\n"+opt.getPrologComment()+"\n ");
167 Bindings group = bindings.bindings();
184 Bindings child = group.bindings();
190 bindings.commit();
286 public void build(OutlineAdaptor adaptor, Bindings bindings) {
304 build(OutlineAdaptor adaptor, Bindings bindings) argument
322 buildBindings(Bindings bindings) argument
[all...]
/openjdk7/jdk/test/javax/script/
H A DMyContext.java57 public void setBindings(Bindings bindings, int scope) { argument
61 if (bindings == null) {
64 appScope = bindings;
68 if (bindings == null) {
71 engineScope = bindings;
74 globalScope = bindings;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/episode/
H A DBindings.java35 @XmlElement("bindings")
38 * Nested bindings.
41 Bindings bindings(); method in interface:Bindings
/openjdk7/jdk/src/share/classes/java/beans/
H A DEncoder.java50 private Map bindings = new IdentityHashMap(); field in class:Encoder
230 Expression exp = (Expression)bindings.remove(oldInstance);
251 Expression exp = (Expression)bindings.get(oldInstance);
329 bindings.put(oldValue, (Expression)cloneStatement(oldExp));
334 bindings.clear();
/openjdk7/jdk/src/macosx/classes/apple/applescript/
H A DAppleScriptEngine.java109 // set up our noarg bindings
136 // set up our noarg bindings
211 * Create and return a new set of simple bindings.
212 * @return a new and empty set of bindings
220 * Return the engines bindings for the context indicated by the argument.
222 * @return the bindings in the engine for the scope indicated by the parameter
230 * Sets the bindings for the indicated scope
231 * @param bindings a set of bindings to assign to the engine
232 * @param scope the scope that the passed bindings shoul
234 setBindings(final Bindings bindings, final int scope) argument
278 eval(final Reader reader, final Bindings bindings) argument
349 eval(final String script, final Bindings bindings) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLModelImpl.java56 private final Map<QName, WSDLBoundPortTypeImpl> bindings = new HashMap<QName, WSDLBoundPortTypeImpl>(); field in class:WSDLModelImpl
61 = Collections.<QName,WSDLBoundPortType>unmodifiableMap(bindings);
92 assert !bindings.containsValue(boundPortType);
93 bindings.put(boundPortType.getName(), boundPortType);
97 return bindings.get(name);
248 for (WSDLBoundPortTypeImpl bp : bindings.values()) {
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DHierMemDirCtx.java46 protected Hashtable bindings; field in class:HierMemDirCtx
56 bindings = null;
87 bindings = new Hashtable(11, 0.75f);
111 // name is atomic, caller wants one of this object's bindings
112 target = bindings.get(name);
117 HierMemDirCtx ctx = (HierMemDirCtx)bindings.get(name.getPrefix(1));
193 if (bindings.get(name) != null) {
197 bindings.put(name, obj);
256 bindings.put(name, obj);
283 bindings
809 FlatBindings(Hashtable bindings, Hashtable env, boolean useFactory) argument
[all...]

Completed in 519 milliseconds

123