Searched defs:implementation (Results 1 - 19 of 19) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/org/omg/SendingContext/
H A DCodeBaseOperations.java43 // Operations to obtain a URL to the implementation code
44 String implementation (String x); method in interface:CodeBaseOperations
H A D_CodeBaseStub.java74 // Operations to obtain a URL to the implementation code
75 public String implementation (String x) method in class:_CodeBaseStub
79 org.omg.CORBA.portable.OutputStream _out = _request ("implementation", true);
89 return implementation (x);
93 } // implementation
/openjdk7/jdk/test/javax/management/standardmbean/
H A DDeadlockTest.java36 public <T> DeadlockTest(T implementation, Class<T> mbeanInterface) argument
38 super(implementation, mbeanInterface);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DFVDCodeBaseImpl.java83 // Operations to obtain a URL to the implementation code
84 public String implementation (String x){ method in class:FVDCodeBaseImpl
109 result[i] = implementation(x[i]);
/openjdk7/jdk/src/share/classes/javax/management/
H A DStandardEmitterMBean.java34 * StandardEmitterMBean(implementation, mbeanInterface, emitter)} to
36 * implementation class name <i>Impl</i>, with a management
38 * <i>Intf</i>, and with any implementation of the interface
40 * {@link NotificationBroadcasterSupport} as an implementation
75 * {@code mbeanInterface}, with the given implementation and
79 * for {@code implementation} and {@code emitter} to be the same object.</p>
94 * @param implementation the implementation of the MBean interface.
100 * if the given {@code implementation} does not implement the
103 public <T> StandardEmitterMBean(T implementation, Clas argument
143 StandardEmitterMBean(T implementation, Class<T> mbeanInterface, boolean isMXBean, NotificationEmitter emitter) argument
[all...]
H A DStandardMBean.java58 * means that there is a fixed relationship between the implementation
60 * implementation class is Thing, the management interface must be
64 * implementation and interface classes.</p>
76 * implementation class name <i>Impl</i> and with a management
116 * implementation and interface classes are of course still
132 * The DynamicMBean that wraps the MXBean or Standard MBean implementation.
142 * Make a DynamicMBean out of <var>implementation</var>, using the
144 * @param implementation The implementation of this MBean.
145 * If <code>null</code>, and null implementation i
159 construct(T implementation, Class<T> mbeanInterface, boolean nullImplementationAllowed, boolean isMXBean) argument
210 StandardMBean(T implementation, Class<T> mbeanInterface) argument
266 StandardMBean(T implementation, Class<T> mbeanInterface, boolean isMXBean) argument
324 setImplementation(Object implementation) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCachedCodeBase.java48 * RepId to implementation URL(s)
81 public synchronized String implementation (String repId) { method in class:CachedCodeBase
90 urlResult = delegate.implementation(repId);
103 urlResults[i] = implementation(repIds[i]);
H A DCodeSetConversion.java698 private static CodeSetConversion implementation; field in class:CodeSetConversion
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/
H A DImplStructureStrategy.java209 public final JDefinedClass implementation; field in class:ImplStructureStrategy.Result
211 public Result(JDefinedClass exposed, JDefinedClass implementation) { argument
213 this.implementation = implementation;
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBinaryAssignExpression.java39 Expression implementation; field in class:BinaryAssignExpression
49 if (implementation != null)
50 return implementation;
78 if (implementation != null)
79 return implementation.inline(env, ctx);
83 if (implementation != null)
84 return implementation.inlineValue(env, ctx);
91 if (implementation != null)
92 return implementation.copyInline(ctx);
97 if (implementation !
[all...]
H A DThisExpression.java41 Expression implementation; field in class:ThisExpression
73 if (implementation != null)
74 return implementation;
102 implementation = ctx.makeReference(env, field);
134 if (implementation != null)
135 return implementation.inlineValue(env, ctx);
152 if (implementation != null)
153 return implementation.copyInline(ctx);
H A DMethodExpression.java43 Expression implementation; field in class:MethodExpression
73 if (implementation != null)
74 return implementation;
497 implementation = new MethodExpression(where, rightI, m, newargs);
498 implementation.type = type; // Is this needed?
510 implementation = new MethodExpression(where, right, m, newargs);
523 implementation = new CommaExpression(where, right, call);
532 implementation = new MethodExpression(where, null, implMethod, newargs);
542 if (implementation == null)
543 implementation
[all...]
H A DFieldExpression.java42 Expression implementation; field in class:FieldExpression
65 if (implementation != null)
66 return implementation;
327 // 'implementation' not be set to non-null if the
450 implementation = new FieldExpression(where, wcls, idTYPE);
451 vset = implementation.checkValue(env, ctx, vset, exp);
452 type = implementation.type; // java.lang.Class
487 implementation =
495 implementation =
499 vset = implementation
[all...]
H A DIdentifierExpression.java43 Expression implementation; field in class:IdentifierExpression
62 if (implementation != null)
63 return implementation;
119 implementation = null;
166 implementation = ctx.makeReference(env, local);
205 implementation = new FieldExpression(where, null, f);
209 implementation = new FieldExpression(where, base, f);
243 if (implementation != null)
244 vset = implementation.checkValue(env, ctx, vset, exp);
257 if (implementation !
[all...]
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dvm_version_solaris_sparc.cpp165 const char* implementation = "UNKNOWN"; local
170 if (strcmp((const char*)&(knm[i].name),"implementation") == 0) {
176 implementation = &(knm[i].value.c[0]);
190 implementation = KSTAT_NAMED_STR_PTR(&knm[i]);
194 tty->print_cr("cpu_info.implementation: %s", implementation);
198 char* impl = strdup(implementation);
216 // returns "(unsupported)" implementation.
217 warning("kstat cpu_info implementation = '%s', should contain SPARC", impl);
219 implementation
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/config/management/policy/
H A DManagedServiceAssertion.java159 final PolicyAssertion implementation = implementations.next();
160 if (COMMUNICATION_SERVER_IMPLEMENTATION_PARAMETER_QNAME.equals(implementation.getName())) {
161 result.add(getImplementation(implementation));
166 COMMUNICATION_SERVER_IMPLEMENTATION_PARAMETER_QNAME, implementation.getName())));
249 * Return the implementation class name along with all parameters for the
250 * implementation.
254 private final String implementation; field in class:ManagedServiceAssertion.ImplementationRecord
258 protected ImplementationRecord(String implementation, Map<QName, String> parameters, argument
260 this.implementation = implementation;
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymbol.java1121 // check for a direct implementation
1127 // check for an inherited implementation
1135 /** The implementation of this (abstract) symbol in class origin,
1137 * implementation in class.
1138 * @param origin The class of which the implementation is a member.
1168 // check for a direct implementation
1181 // check for an inherited implementation
1216 /** The implementation of this (abstract) symbol in class origin;
1220 public MethodSymbol implementation(TypeSymbol origin, Types types, boolean checkResult) { method in class:Symbol.MethodSymbol
1221 return implementation(origi
1231 public MethodSymbol implementation(TypeSymbol origin, Types types, boolean checkResult, Filter<Symbol> implFilter) { method in class:Symbol.MethodSymbol
[all...]
H A DTypes.java2033 // <editor-fold defaultstate="collapsed" desc="Determining method implementation in given site">
2101 public MethodSymbol implementation(MethodSymbol ms, TypeSymbol origin, boolean checkResult, Filter<Symbol> implFilter) { method in class:Types
3708 * subclasses must provide an implementation of visitType and can
3734 * subclasses must provide an implementation of visitSymbol and can
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMNodeProxy.java80 static final DOMImplementation implementation=new DTMNodeProxyImplementation(); field in class:DTMNodeProxy
273 return implementation.hasFeature(feature,version);
290 return implementation.hasFeature(feature,version);
609 return implementation;
1482 * When set to <code>false</code>, the implementation is free to not
1503 * When set to <code>false</code>, the implementation is free to not
1617 //RAMESH : Pending proper implementation of DOM Level 3
2005 * <code>Node</code> references returned by the implementation reference
2063 * fit in a <code>DOMString</code> variable on the implementation
2113 * fit in a <code>DOMString</code> variable on the implementation
[all...]

Completed in 55 milliseconds