Searched refs:fullClassName (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DRhinoClassShutter.java59 public boolean visibleToScripts(String fullClassName) { argument
63 int i = fullClassName.lastIndexOf(".");
66 sm.checkPackageAccess(fullClassName.substring(0, i));
73 return protectedClasses.get(fullClassName) == null;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/
H A DJavaGroupOrganizer.java152 String fullClassName = name.substring(current + 1, firstParenthese);
153 int lastPoint = fullClassName.lastIndexOf(".");
157 lastPoint = fullClassName.lastIndexOf(".", lastPoint - 1);
162 String packageName = fullClassName.substring(0, lastPoint);
189 String fullClassName = name.substring(current + 1, firstParenthese);
190 int lastPoint = fullClassName.lastIndexOf(".");
194 int lastlastPoint = fullClassName.lastIndexOf(".", lastPoint - 1);
196 String className = fullClassName.substring(lastlastPoint + 1, lastPoint);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DClassNameAllocatorImpl.java55 String fullClassName = packageName+"."+className;
59 if(seiClassNames != null && seiClassNames.contains(fullClassName)){
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DEnumGen.java88 fullClassName = Util.javaName (e);
136 stream.println (" private static " + fullClassName + "[] __array = new " + fullClassName + " [__size];");
142 stream.println (" public static final " + fullClassName + ' ' + label + " = new " + fullClassName + "(_" + label + ");");
167 stream.println (" public static " + fullClassName + " from_int (int value)");
269 String fullClassName = null; field in class:EnumGen
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerFactoryImpl.java1203 * @param fullClassName The full name of the translet
1206 private byte[][] getBytecodesFromClasses(Source source, String fullClassName) argument
1208 if (fullClassName == null)
1218 int lastDotIndex = fullClassName.lastIndexOf('.');
1220 transletName = fullClassName.substring(lastDotIndex+1);
1222 transletName = fullClassName;
1225 String transletPath = fullClassName.replace('.', '/');
1340 * @param fullClassName The full name of the translet
1343 private byte[][] getBytecodesFromJar(Source source, String fullClassName) argument
1384 String transletPath = fullClassName
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java1484 static Perm getPerm(String clazz, boolean fullClassName) { argument
1487 if (fullClassName) {
1504 static Prin getPrin(String clazz, boolean fullClassName) { argument
1507 if (fullClassName) {

Completed in 68 milliseconds