Searched refs:interfaceName (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/wsaddressing/
H A DW3CEndpointReferenceBuilder.java100 * Sets the <code>interfaceName</code> as the
107 * @param interfaceName The port type name of the endpoint to be targeted
111 * the <code>interfaceName</code> as <code>wsam:InterfaceName</code>
114 public W3CEndpointReferenceBuilder interfaceName(QName interfaceName) { argument
115 this.interfaceName = interfaceName;
336 if (elements.isEmpty() && attributes.isEmpty() && interfaceName == null) {
343 interfaceName, serviceName, endpointName, metadata, wsdlDocumentLocation,
350 private QName interfaceName; field in class:W3CEndpointReferenceBuilder
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/java/
H A DJavaInterface.java112 public boolean hasInterface(String interfaceName) { argument
114 if (interfaceName.equals((String)interfaces.get(i))) {
121 public void addInterface(String interfaceName) { argument
124 if (hasInterface(interfaceName)) {
127 interfaces.add(interfaceName);
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DHashAttributeSet.java150 * @param interfaceName The interface of which all members of this
154 * @exception NullPointerException if interfaceName is null.
156 protected HashAttributeSet(Class<?> interfaceName) { argument
157 if (interfaceName == null) {
160 myInterface = interfaceName;
169 * @param interfaceName The interface of which all members of this
176 * @exception NullPointerException if interfaceName is null.
179 * instance of <CODE>interfaceName</CODE>.
181 protected HashAttributeSet(Attribute attribute, Class<?> interfaceName) { argument
182 if (interfaceName
214 HashAttributeSet(Attribute[] attributes, Class<?> interfaceName) argument
242 HashAttributeSet(AttributeSet attributes, Class<?> interfaceName) argument
[all...]
H A DAttributeSetUtilities.java498 * @param interfaceName Interface the object must implement.
501 * that implements <CODE>interfaceName</CODE>,
510 * <CODE>interfaceName</CODE>.
513 verifyAttributeCategory(Object object, Class<?> interfaceName) { argument
516 if (interfaceName.isAssignableFrom (result)) {
530 * @param interfaceName Interface of which the object must be an instance.
533 * <CODE>interfaceName</CODE>, <CODE>object</CODE> is returned
541 * instance of <CODE>interfaceName</CODE>.
544 verifyAttributeValue(Object object, Class<?> interfaceName) { argument
549 else if (interfaceName
[all...]
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DProxy.java480 String interfaceName = interfaces[i].getName();
483 interfaceClass = Class.forName(interfaceName, false, loader);
509 interfaceNames[i] = interfaceName;
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DProvider.java399 * @param interfaceName the <code>wsam:InterfaceName</code> element in the
446 QName interfaceName, QName serviceName, QName portName,
445 createW3CEndpointReference(String address, QName interfaceName, QName serviceName, QName portName, List<Element> metadata, String wsdlDocumentLocation, List<Element> referenceParameters, List<Element> elements, Map<QName, String> attributes) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/spi/
H A DProviderImpl.java174 public W3CEndpointReference createW3CEndpointReference(String address, QName interfaceName, QName serviceName, QName portName, argument
238 address, serviceName, portName, interfaceName, metadata, wsdlDocumentLocation, wsdlTargetNamespace,referenceParameters, elements, attributes).toSpec(W3CEndpointReference.class);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DWSDLModeler.java2248 String interfaceName = "javax.xml.ws.Provider";
2249 JavaInterface intf = new JavaInterface(interfaceName);
2258 String interfaceName = getJavaNameOfSEI(port);
2260 if (isConflictingPortClassName(interfaceName)) {
2261 interfaceName += "_PortType";
2264 JavaInterface intf = new JavaInterface(interfaceName);
2309 String interfaceName;
2312 interfaceName =
2316 interfaceName =
2319 return interfaceName;
[all...]

Completed in 76 milliseconds