Searched refs:Class (Results 51 - 75 of 2176) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/lang/annotation/
H A DIncompleteAnnotationException.java44 private Class annotationType;
52 * @param annotationType the Class object for the annotation type
56 Class<? extends Annotation> annotationType,
65 * Returns the Class object for the annotation type with the
68 * @return the Class object for the annotation type with the
71 public Class<? extends Annotation> annotationType() {
/openjdk7/jdk/src/share/classes/java/lang/instrument/
H A DClassDefinition.java34 * Serves to bind the <code>Class</code> that needs redefining together with the new class file bytes.
43 private final Class mClass;
54 * @param theClass the <code>Class</code> that needs redefining
60 ClassDefinition( Class<?> theClass,
72 * @return the <code>Class</code> object referred to.
74 public Class<?>
/openjdk7/jdk/src/share/classes/java/util/
H A DIllegalFormatConversionException.java43 private Class arg;
53 * Class of the mismatched argument
55 public IllegalFormatConversionException(char c, Class<?> arg) {
76 public Class<?> getArgumentClass() {
/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DClassLoaderRepository.java67 * returns a {@link Class} object, that is the result of this
81 public Class<?> loadClass(String className)
89 * method. If it successfully returns a {@link Class} object,
113 public Class<?> loadClassWithout(ClassLoader exclude,
122 * returns a {@link Class} object, that is the result of this
147 public Class<?> loadClassBefore(ClassLoader stop,
/openjdk7/jdk/test/java/nio/file/spi/
H A DSetDefaultProvider.java35 Class<?> c = FileSystems.getDefault().provider().getClass();
37 Class<?> expected = Class.forName("TestProvider", false,
/openjdk7/jdk/src/share/classes/sun/reflect/misc/
H A DConstructorUtil.java35 public static Constructor getConstructor(Class cls, Class[] params)
41 public static Constructor[] getConstructors(Class cls) {
H A DFieldUtil.java38 public static Field getField(Class cls, String name)
44 public static Field[] getFields(Class cls) {
49 public static Field[] getDeclaredFields(Class cls) {
/openjdk7/langtools/test/tools/javac/annotations/pos/
H A DZ3.java45 Class f();
46 Class<?> h();
47 Class<? extends Enum> i();
/openjdk7/jdk/test/com/sun/jdi/
H A DRefTypes.java60 Class.forName("AllAbstract");
61 Class.forName("AllNative");
62 Class.forName("Abstract");
63 Class.forName("Native");
64 Class.forName("AbstractAndNative");
65 Class.forName("Interface");
66 Class.forName("InterfaceWithCode");
/openjdk7/jdk/test/java/io/Serializable/evolution/RenamePackage/extension/
H A DExtendedObjectInputStream.java39 protected Class resolveClass(ObjectStreamClass v)
44 Class newClass = (Class)renamedClassMap.get(v.getName());
55 Class cl = null;
61 Class componentType =
62 Class.forName(newName.substring(2));
68 // System.out.println("Class=" + cl.getName());
71 cl = Class.forName(newName);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DHttpConfigFeature.java59 Class policyClass = Class.forName("java.net.CookiePolicy");
60 Class storeClass = Class.forName("java.net.CookieStore");
61 tempConstructor = Class.forName("java.net.CookieManager").getConstructor(storeClass, policyClass);
71 Class policyClass = Class.forName("com.sun.xml.internal.ws.transport.http.client.CookiePolicy");
72 Class storeClass = Class.forName("com.sun.xml.internal.ws.transport.http.client.CookieStore");
73 tempConstructor = Class
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DFieldSignature.java45 if (t instanceof Class && ((Class)t).isPrimitive()) {
46 Class c = (Class)t;
66 } else if (t instanceof Class && ((Class)t).isArray()) {
67 return "["+vms(((Class)t).getComponentType());
68 } else if (t instanceof Class || t instanceof ParameterizedType) {
94 if (t instanceof Class) {
95 Class
[all...]
/openjdk7/langtools/test/tools/javac/FloatingPointChanges/
H A DTest.java41 assertStrict(Test.class.getDeclaredMethod("strict", new Class[0]));
42 assertStrict(Test.Inner2.class.getDeclaredMethod("strict", new Class[0]));
44 assertStrict(Test2.class.getDeclaredMethod("strict", new Class[0]));
45 assertStrict(Test2.class.getDeclaredMethod("strict2", new Class[0]));
46 assertStrict(Test2.Inner.class.getDeclaredMethod("strict", new Class[0]));
47 assertStrict(Test2.Inner2.class.getDeclaredMethod("strict", new Class[0]));
/openjdk7/langtools/test/tools/javac/generics/
H A DConditional.java27 * @summary Rule for semantics of ?: in the presence of generics and generic class Class
46 Class c = cond ? A.class : B.class;
47 Class<?> d = cond ? A.class : B.class;
49 Class<? extends B> e = cond ? B.class : C.class;
58 Class g(Class a) {
69 // Class<? extends Number&Comparable<? extends Number&Comparable<? extends
71 Class<? extends Comparable<?>> c =
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DAttributeSet.java38 * Attribute Attribute} objects, and the categories are {@link java.lang.Class
39 * Class} objects. An attribute's category is the class (or interface) at the
120 * {@link java.lang.Class Class}
133 * {@link java.lang.Class Class} that implements interface {@link
136 public Attribute get(Class<?> category);
174 public boolean remove(Class<?> category);
203 public boolean containsKey(Class<?> category);
H A DAttribute.java46 * {@link java.lang.Class java.lang.Class}.
48 public Class<? extends Attribute> getCategory();
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DSoundbankResource.java86 private final Class dataClass;
108 protected SoundbankResource(Soundbank soundBank, String name, Class<?> dataClass) {
143 public Class<?> getDataClass() {
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRMIClassLoaderSpi.java46 * <li>{@link RMIClassLoader#getClassAnnotation(Class)}
89 * @return the <code>Class</code> object representing the loaded class
99 public abstract Class<?> loadClass(String codebase, String name,
133 * {@link java.lang.reflect.Proxy#getProxyClass(ClassLoader,Class[])}
137 public abstract Class<?> loadProxyClass(String codebase,
178 * {@link RMIClassLoader#getClassAnnotation(Class)}.
191 public abstract String getClassAnnotation(Class<?> cl);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioSynthesizerPropertyInfo.java45 if (value instanceof Class)
46 valueClass = (Class)value;
71 public Class valueClass = null;
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DExceptionThrower.java71 * an Instruction implementing this interface returns a Class[] of
81 public java.lang.Class[] getExceptions();
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DUtils.java49 * returns the cached Class object if it can previously
51 * an attempt is made to load with Class.forName(classname)
57 static Class ClassForName(String classname) throws ClassNotFoundException
59 Class c;
67 c = Class.forName(classname);
76 c = (Class)o;
/openjdk7/jdk/src/share/classes/javax/print/
H A DAttributeException.java55 public Class[] getUnsupportedAttributes();
/openjdk7/jdk/src/share/classes/sun/beans/editors/
H A DEnumEditor.java32 public EnumEditor(Class type) {
/openjdk7/jdk/src/share/classes/sun/invoke/
H A DWrapperInstance.java46 public Class<?> getWrapperInstanceType();
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextServiceRevokedEvent.java49 public BeanContextServiceRevokedEvent(BeanContextServices bcs, Class sc, boolean invalidate) {
67 * @return A <code>Class</code> reference to the
70 public Class getServiceClass() { return serviceClass; }
79 public boolean isServiceClass(Class service) {
95 * A <code>Class</code> reference to the service that is being revoked.
97 protected Class serviceClass;

Completed in 88 milliseconds

1234567891011>>