Searched defs:type (Results 226 - 250 of 1595) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/dt/builtin/
H A DBuiltinDatatypeLibrary.java64 public DatatypeBuilder createDatatypeBuilder(String type) argument
72 if (type.equals("string") || type.equals("token")) {
74 xsdDatatypeLibrary.createDatatype(type));
78 public Datatype createDatatype(String type) throws DatatypeException { argument
79 return createDatatypeBuilder(type).createDatatype();
H A DCompatibilityDatatypeLibrary.java63 public DatatypeBuilder createDatatypeBuilder(String type) argument
65 if (type.equals("ID")
66 || type.equals("IDREF")
67 || type.equals("IDREFS")) {
75 return xsdDatatypeLibrary.createDatatypeBuilder(type);
80 public Datatype createDatatype(String type) throws DatatypeException { argument
81 return createDatatypeBuilder(type).createDatatype();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/model/wsdl/
H A DWSDLExtensible.java46 * Gets all the extensions that is assignable to the given type.
49 * This allows clients to find specific extensions in a type-safe
52 * @param type
53 * The type of the extension to obtain. Must not be null.
58 <T extends WSDLExtension> Iterable<T> getExtensions(Class<T> type); argument
61 * Gets the extension that is assignable to the given type.
67 * Iterator itr = getExtensions(type);
75 <T extends WSDLExtension> T getExtension(Class<T> type); argument
H A DWSDLPartDescriptor.java31 * Abstracts wsdl:part descriptor that is defined using element or type attribute.
37 * Gives Qualified name of the XML Schema element or type
42 * Gives whether wsdl:part references a schema type or a global element.
44 public WSDLDescriptorKind type(); method in interface:WSDLPartDescriptor
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DRelatesToHeader.java44 protected String type; field in class:RelatesToHeader
47 public RelatesToHeader(QName name, String messageId, String type) { argument
49 this.type = type;
50 this.typeAttributeName = new QName(name.getNamespaceURI(), "type");
55 this.typeAttributeName = new QName(name.getNamespaceURI(), "type");
59 return type;
66 if (type != null)
67 w.writeAttribute("type", type);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLPartDescriptorImpl.java39 private WSDLDescriptorKind type; field in class:WSDLPartDescriptorImpl
44 this.type = kind;
51 public WSDLDescriptorKind type() { method in class:WSDLPartDescriptorImpl
52 return type;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DHandler.java85 * Internal name of the type of exceptions handled by this handler, or
91 * Constant pool index of the internal name of the type of exceptions
94 int type; field in class:Handler
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/
H A DBinding.java45 public com.sun.xml.internal.ws.wsdl.writer.document.Binding type(QName value); method in interface:Binding
H A DPart.java48 public com.sun.xml.internal.ws.wsdl.writer.document.Part type(QName value); method in interface:Part
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DSimpleTypeSet.java51 public boolean contains(XSType type) { argument
52 return typeSet.contains(type);
H A DTypeSet.java38 * Return true if this TypeSet contains the specified type.
41 * means for the TypeSet to "contain" a type.
43 * @param type the type
44 * @return true iff this TypeSet contains the specified type
46 public abstract boolean contains(XSType type); argument
58 public boolean contains(XSType type) {
59 return a.contains(type) && b.contains(type);
74 public boolean contains(XSType type) {
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DRegistryFileTypeDetector.c47 DWORD type; local
51 res = RegQueryValueExW(hKey, lpValueName, NULL, &type, (LPBYTE)&data, &size);
53 if (type == REG_SZ) {
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Mlib.cpp109 void awt_getBIColorOrder(int type, int *colorOrder) { argument
110 switch(type) {
/openjdk7/jdk/test/java/awt/image/ConvolveOp/
H A DOpCompatibleImageTest.java28 * of same type and this pair {src, dst} can be handled by the
67 public void doTest(int type) { argument
68 System.out.println("Test for type " + describeType(type));
70 BufferedImage src = createTestImage(type);
96 private BufferedImage createTestImage(int type) { argument
97 BufferedImage img = new BufferedImage(100, 100, type);
106 private static String describeType(int type) { argument
107 switch(type) {
123 throw new RuntimeException("Test FAILED: unknown type "
[all...]
/openjdk7/jdk/test/java/awt/image/
H A DIncorrectSampleMaskTest.java53 for (int type : dataTypes) {
54 doTest(type);
95 private static DataBuffer createDataBuffer(int type) { argument
96 switch (type) {
110 throw new RuntimeException("Unsupported data type.");
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4634390.java54 for (Class type : CLASSES) {
55 test(type);
59 private static void test(Class type) { argument
60 for (PropertyDescriptor pd : BeanUtils.getPropertyDescriptors(type)) {
116 System.out.println("property type not equal");
H A DTest4896879.java39 private static void test(Class type) { argument
40 if (BeanUtils.getEventSetDescriptors(type).length != 0) {
H A DTest6528714.java38 private static void test(Class type, String name, Class expected) { argument
39 PropertyDescriptor pd = BeanUtils.getPropertyDescriptor(type, name);
H A DTest6723447.java27 * @summary Tests return type for property setters
45 private static void test(Class<?> type) { argument
46 for (PropertyDescriptor pd : getPropertyDescriptors(type)) {
57 Class<?> type = method.getReturnType();
58 if (!type.equals(void.class)) {
59 throw new Error("unexpected return type: " + type);
64 private static PropertyDescriptor[] getPropertyDescriptors(Class<?> type) { argument
66 return Introspector.getBeanInfo(type).getPropertyDescriptors();
/openjdk7/jdk/test/java/beans/PropertyEditor/6380849/
H A DTestPropertyEditor.java71 private static void test(Class<?> type, Class<? extends PropertyEditor> expected) { argument
72 PropertyEditor actual = PropertyEditorManager.findEditor(type);
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DTestEditor.java30 TestEditor(Class type) { argument
31 System.out.println("Property class: " + type);
33 this.editor = PropertyEditorManager.findEditor(type);
35 throw new Error("could not find editor for " + type);
87 Class type = loader.compile(classname, content);
88 return type.getMethod(methodname).invoke(null);
/openjdk7/jdk/test/sun/security/util/asn1StringTypes/
H A DStringTypes.java142 private static void verifyDER(String type, argument
146 throw new Exception("Problem with tag for " + type);
149 throw new Exception("Problem with data for " + type);
151 System.out.println(type + " checks out OK");
155 private static void verifyString(String type, String str) argument
159 throw new Exception("Problem with string " + type);
161 System.out.println(type + "String checks out OK\n");
/openjdk7/langtools/src/share/classes/com/sun/mirror/type/
H A DPrimitiveType.java26 package com.sun.mirror.type;
30 * Represents a primitive type. These include
37 * javax.lang.model.type.PrimitiveType}.
48 * Returns the kind of primitive type that this object represents.
50 * @return the kind of primitive type that this object represents
60 * javax.lang.model.type.TypeKind}.
64 /** The primitive type <tt>boolean</tt> */ BOOLEAN,
65 /** The primitive type <tt>byte</tt> */ BYTE,
66 /** The primitive type <tt>short</tt> */ SHORT,
67 /** The primitive type <t
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/
H A DPrimitiveTypeImpl.java26 package com.sun.tools.apt.mirror.type;
30 import com.sun.mirror.type.PrimitiveType;
35 import static com.sun.mirror.type.PrimitiveType.Kind.*;
69 * Returns the javac type corresponding to a kind of primitive type.
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DParameterImpl.java36 * This includes a parameter type and parameter name.
46 private final com.sun.javadoc.Type type; field in class:ParameterImpl
54 this.type = TypeMaker.getType(env, sym.type, false);
58 * Get the type of this parameter.
60 public com.sun.javadoc.Type type() { method in class:ParameterImpl
61 return type;
73 * Get type name of this parameter.
77 return (type instanceof ClassDoc || type instanceo
[all...]

Completed in 107 milliseconds

1234567891011>>