Searched refs:theClass (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/instrument/
H A DClassDefinition.java54 * @param theClass the <code>Class</code> that needs redefining
60 ClassDefinition( Class<?> theClass, argument
62 if (theClass == null || theClassFile == null) {
65 mClass = theClass;
H A DInstrumentation.java375 isModifiableClass(Class<?> theClass); argument
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DSpecialClassType.java66 public static SpecialClassType forSpecial (ClassDefinition theClass, argument
70 sun.tools.java.Type type = theClass.getType();
89 int typeCode = getTypeCode(type,theClass,stack);
95 SpecialClassType result = new SpecialClassType(stack,typeCode,theClass);
122 ClassDefinition theClass) {
123 super(stack,typeCode | TM_SPECIAL_CLASS | TM_CLASS | TM_COMPOUND, theClass);
124 Identifier id = theClass.getName();
163 private static int getTypeCode(sun.tools.java.Type type, ClassDefinition theClass, ContextStack stack) { argument
121 SpecialClassType(ContextStack stack, int typeCode, ClassDefinition theClass) argument
H A DUtil.java54 * @param theClass The fully qualified name of the class.
59 private static File getOutputDirectoryFor(Identifier theClass, argument
64 String className = theClass.getFlatName().toString().replace('.', SIGC_INNERCLASS);
67 String packageName = theClass.getQualifier().toString();
131 public static File getOutputDirectoryForIDL(Identifier theClass, argument
134 return getOutputDirectoryFor(theClass, rootDir, env, true);
137 public static File getOutputDirectoryForStub(Identifier theClass, argument
140 return getOutputDirectoryFor(theClass, rootDir, env, false);
H A DSpecialInterfaceType.java72 public static SpecialInterfaceType forSpecial ( ClassDefinition theClass, argument
79 sun.tools.java.Type type = theClass.getType();
93 if (isSpecial(type,theClass,stack)) {
97 SpecialInterfaceType result = new SpecialInterfaceType(stack,0,theClass);
128 ClassDefinition theClass) {
129 super(stack,typeCode | TM_SPECIAL_INTERFACE | TM_INTERFACE | TM_COMPOUND, theClass);
130 setNames(theClass.getName(),null,null); // Fixed in initialize.
134 ClassDefinition theClass,
146 if (env.defCorbaObject.implementedBy(env,theClass.getClassDeclaration())) return true;
127 SpecialInterfaceType(ContextStack stack, int typeCode, ClassDefinition theClass) argument
133 isSpecial(sun.tools.java.Type type, ClassDefinition theClass, ContextStack stack) argument
H A DImplementationType.java160 ClassDefinition theClass = getClassDefinition();
198 if (checkMethods(theClass,directMethods,stack,quiet)) {
242 private boolean checkMethods(ClassDefinition theClass, Vector list, argument
250 for (MemberDefinition member = theClass.getFirstMember();
H A DCompoundType.java855 ClassDefinition theClass = classDef;
857 if (theClass == null) {
858 theClass = env.getClassDeclaration(theType).getClassDefinition(env);
863 if (theClass.isInterface()) {
867 result = SpecialInterfaceType.forSpecial(theClass,stack);
873 if (env.defRemote.implementedBy(env,theClass.getClassDeclaration())) {
879 result = RemoteType.forRemote(theClass,stack,parentIsValue);
885 result = NCInterfaceType.forNCInterface(theClass,stack);
891 result = AbstractType.forAbstract(theClass,stack,true);
897 result = NCInterfaceType.forNCInterface(theClass,stac
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMBeanInstantiator.java91 Class<?> theClass;
101 theClass = clr.loadClass(className);
108 return theClass;
214 public Object instantiate(Class<?> theClass) argument
217 checkMBeanPermission(theClass, null, null, "instantiate");
223 Constructor<?> cons = findConstructor(theClass, null);
230 ReflectUtil.checkPackageAccess(theClass);
231 ensureClassAccess(theClass);
271 public Object instantiate(Class<?> theClass, Object params[], argument
275 checkMBeanPermission(theClass, nul
[all...]
H A DJmxMBeanServer.java1151 Class<?> theClass;
1154 theClass = clr.loadClass(className);
1162 return instantiator.deserialize(theClass.getClassLoader(), data);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DTypeModeler.java49 TypeMirror theClass,
53 return getDeclaringClassMethod(getDeclaration(theClass), methodName, args);
57 TypeDeclaration theClass,
62 if (theClass instanceof ClassDeclaration) {
63 ClassType superClass = ((ClassDeclaration)theClass).getSuperclass();
68 for (InterfaceType interfaceType : theClass.getSuperinterfaces())
74 methods = theClass.getMethods();
77 method.getDeclaringType().equals(theClass)) {
78 retClass = theClass;
48 getDeclaringClassMethod( TypeMirror theClass, String methodName, TypeMirror[] args) argument
56 getDeclaringClassMethod( TypeDeclaration theClass, String methodName, TypeMirror[] args) argument
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/
H A DUtil.java53 * @param theClass The fully qualified name of the class.
58 public static File getOutputDirectoryFor(Identifier theClass, argument
63 String className = theClass.getFlatName().toString().replace('.', SIGC_INNERCLASS);
66 String packageName = theClass.getQualifier().toString();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/util/
H A DDirectoryUtil.java41 public static File getOutputDirectoryFor(String theClass, File rootDir) throws GeneratorException { argument
44 String qualifiedClassName = theClass;
/openjdk7/hotspot/agent/test/jdi/
H A Drunsa.sh59 theClass=sagclient
168 clss=`echo $theClass | sed -e 's@\.@/@'`
180 $jdk/bin/java $d64 -Djava.class.path=$javacp $extraArgs $theClass $args
182 $jdk/bin/java $d64 -Djava.class.path=$javacp $extraArgs $theClass $args
H A Drunjpda.sh40 theClass=sun.jvm.hotspot.HSDB
/openjdk7/jdk/src/share/classes/sun/instrument/
H A DInstrumentationImpl.java120 isModifiableClass(Class<?> theClass) { argument
121 if (theClass == null) {
123 "null passed as 'theClass' in isModifiableClass");
125 return isModifiableClass0(mNativeAgent, theClass);
243 isModifiableClass0(long nativeAgent, Class<?> theClass); argument
/openjdk7/jdk/src/share/classes/java/awt/color/
H A DICC_Profile.java1161 int theClassSig, theClass;
1176 theClass = CLASS_INPUT;
1180 theClass = CLASS_DISPLAY;
1184 theClass = CLASS_OUTPUT;
1188 theClass = CLASS_DEVICELINK;
1192 theClass = CLASS_COLORSPACECONVERSION;
1196 theClass = CLASS_ABSTRACT;
1200 theClass = CLASS_NAMEDCOLOR;
1207 return theClass;
/openjdk7/jdk/src/share/classes/com/sun/jmx/interceptor/
H A DDefaultMBeanServerInterceptor.java235 Class<?> theClass;
267 theClass =
277 theClass = instantiator.findClass(className,
290 theClass = instantiator.findClass(className, loaderName);
293 checkMBeanTrustPermission(theClass);
296 Introspector.testCreation(theClass);
299 Introspector.checkCompliance(theClass);
301 Object moi= instantiator.instantiate(theClass, params, signature,
315 Class<?> theClass = object.getClass();
317 Introspector.checkCompliance(theClass);
1834 checkMBeanTrustPermission(final Class<?> theClass) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DUtility.java241 private static Tie loadTie(Class theClass) argument
244 getTie( theClass ) ;

Completed in 119 milliseconds