Searched refs:packageName (Results 26 - 50 of 75) sorted by relevance

123

/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/logutil/
H A DInput.java46 private String packageName; field in class:Input
108 packageName = classInfo[0].substring(2, classInfo[0].length() - 1);
175 return packageName;
204 "[packageName=" + packageName +
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVirtualBaseConstructor.java45 public VirtualBaseConstructor(TypeDataBase db, Type baseType, String packageName, Class unknownTypeHandler) { argument
64 c = Class.forName(packageName + "." + superType.getName());
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DType.java130 private String packageName; field in class:Type
165 return packageName;
591 String packageName = getPackageName();
592 if (packageName != null) {
593 writer.pln("package " + packageName + ";");
707 packageName = null;
790 packageName = null;
793 packageName = id.getQualifier().toString();
794 qualifiedName = packageName + NAME_SEPARATOR + name;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DIDLNameTranslatorImpl.java780 String packageName = getPackageName(c);
782 if (packageName == null) {
788 packageName = "org.omg.boxedIDL." + packageName ;
799 new StringTokenizer(packageName, ".");
824 String packageName = null;
829 packageName = thePackage.getName();
834 packageName = (lastDot == -1) ? null :
837 return packageName;
852 String packageName
[all...]
H A DIDLNameTranslatorImpl_save.sjava757 String packageName = getPackageName(c);
759 if (packageName == null) {
765 packageName = "org.omg.boxedIDL." + packageName ;
776 new StringTokenizer(packageName, ".");
801 String packageName = null;
806 packageName = thePackage.getName();
811 packageName = (lastDot == -1) ? null :
814 return packageName;
829 String packageName
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/generator/
H A DNames.java75 String packageName = ClassNameInfo.getQualifier(className);
76 return packageName != null ? packageName : "";
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DJavacPathFileManager.java306 String packageName, Set<Kind> kinds, boolean recurse)
308 // validatePackageName(packageName);
309 nullCheck(packageName);
318 list(path, packageName, kinds, recurse, results);
323 private void list(Path path, String packageName, final Set<Kind> kinds, argument
339 Path packageDir = packageName.isEmpty() ? pathDir
340 : pathDir.resolve(packageName.replace(".", sep));
422 String packageName, String relativeName) throws IOException {
423 return getFileForInput(location, getRelativePath(packageName, relativeName));
452 public FileObject getFileForOutput(Location location, String packageName, argument
305 list(Location location, String packageName, Set<Kind> kinds, boolean recurse) argument
421 getFileForInput(Location location, String packageName, String relativeName) argument
520 getRelativePath(String packageName, String relativeName) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DPackageUseWriter.java186 String packageName = itp.next();
187 PackageDoc usingPackage = configuration.root.packageNamed(packageName);
203 usingPackageToUsedClasses.get(packageName).iterator();
211 addClassRow(itc.next(), packageName, tr);
224 * @param packageName the name of the package to which the class belongs
227 protected void addClassRow(ClassDoc usedClass, String packageName, argument
232 getHyperLink(path, packageName, new StringContent(usedClass.name())));
H A DSerializedFormWriterImpl.java111 * @param packageName the package header to write
114 public Content getPackageHeader(String packageName) { argument
118 heading.addContent(packageName);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DRelativePath.java96 static RelativeDirectory forPackage(CharSequence packageName) { argument
97 return new RelativeDirectory(packageName.toString().replace('.', '/'));
H A DJavacFileManager.java230 private static void validatePackageName(String packageName) { argument
231 if (packageName.length() > 0 && !isValidName(packageName))
232 throw new IllegalArgumentException("Invalid packageName name: " + packageName);
628 String packageName,
633 // validatePackageName(packageName);
634 nullCheck(packageName);
640 RelativeDirectory subdirectory = RelativeDirectory.forPackage(packageName);
692 String packageName,
627 list(Location location, String packageName, Set<JavaFileObject.Kind> kinds, boolean recurse) argument
691 getFileForInput(Location location, String packageName, String relativeName) argument
747 getFileForOutput(Location location, String packageName, String relativeName, FileObject sibling) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpot.java791 showLineNumber(packageName(m.getMethodHolder().getName().asString()),
798 private String packageName(String str) { method in class:BugSpot
1030 private String packageName; field in class:BugSpot.JavaFileFilter
1033 JavaFileFilter(String packageName, String fileName) { argument
1034 this.packageName = packageName;
1049 if (!pkg.equals(packageName)) {
1060 private String packageName; // External format field in class:BugSpot.JavaUserData
1065 JavaUserData(String packageName, String sourceFileName) { argument
1066 this.packageName
1070 String packageName() { return packageName; } method in class:BugSpot.JavaUserData
1135 showLineNumber(String packageName, String fileName, int lineNumber) argument
[all...]
/openjdk7/langtools/test/tools/javac/processing/6378728/
H A DT6378728.java50 String packageName,
49 getFileForOutput(Location location, String packageName, String relativeName, FileObject sibling) argument
/openjdk7/jdk/make/tools/swing-beans/
H A DGenSwingBeanInfo.java363 public void genBeanInfo(String packageName, String classname, Hashtable dochash) { argument
372 Class cls = getClass(packageName, classname);
449 out.print(packageName);
476 * @param packageName The name of the package of the containing class.
480 private Class getClass(String packageName, String rootname) { argument
484 if (packageName != null || !packageName.equals("")) {
485 classname = packageName + "." + rootname;
/openjdk7/jdk/make/tools/src/build/tools/compileproperties/
H A DCompileProperties.java224 String packageName = inferPackageName(propertiesPath, outputPath);
225 System.out.println("inferred package name: " + packageName);
254 if (packageName != null && !packageName.equals("")) {
255 packageString = "package " + packageName + ";\n\n";
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DContextFinder.java286 String packageName = packages.nextToken(":").replace('.','/');
288 propFileName = new StringBuilder().append(packageName).append("/jaxb.properties");
296 throw new JAXBException(Messages.format(Messages.MISSING_PROPERTY, packageName, factoryId));
366 String packageName = pkg.getName().replace('.', '/');
375 String resourceName = packageName+"/jaxb.properties";
387 throw new JAXBException(Messages.format(Messages.MISSING_PROPERTY, packageName, JAXB_CONTEXT_FACTORY));
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/jrmp/
H A DJrmpGenerator.java209 String packageName = binaryName.substring(0, i);
210 String packagePath = packageName.replace('.', File.separatorChar);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/impl/s2j/
H A DSchemaCompilerImpl.java186 public void setDefaultPackageName(String packageName) { argument
187 opts.defaultPackage2 = packageName;
190 public void forcePackageName(String packageName) { argument
191 opts.defaultPackage = packageName;
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DSerializedFormWriter.java70 * @param packageName the package header to write
73 public Content getPackageHeader(String packageName); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/utils/
H A DObjectFactory.java313 String packageName = className;
314 if (lastDot != -1) packageName = className.substring(0, lastDot);
315 security.checkPackageAccess(packageName);
/openjdk7/jdk/test/java/nio/charset/Charset/
H A DNIOCharsetAvailabilityTest.java84 private static void addCharsets(Set charsets, final String packageName) argument
125 return getClassList(packageName, "");
131 Class clazz = Class.forName(packageName + "." + classList[i]);
/openjdk7/langtools/make/tools/CompileProperties/
H A DCompileProperties.java218 String packageName = inferPackageName(propertiesPath, outputPath);
219 log.verbose("inferred package name: " + packageName);
248 if (packageName != null && !packageName.equals("")) {
249 packageString = "package " + packageName + ";\n\n";
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DRuntimeModeler.java86 private String packageName; field in class:RuntimeModeler
303 packageName = "";
305 packageName = clazz.getPackage().getName();
307 targetNamespace = getNamespace(packageName);
413 * gets the namespace <code>String</code> for a given <code>packageName</code>
414 * @param packageName the name of the package used to find a namespace.
416 * @return the namespace for the specified <code>packageName</code>
418 public static String getNamespace(@NotNull String packageName) { argument
419 if (packageName.length() == 0)
422 StringTokenizer tokenizer = new StringTokenizer(packageName, "
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DClientCodeWrapper.java210 public Iterable<JavaFileObject> list(Location location, String packageName, Set<Kind> kinds, boolean recurse) throws IOException { argument
212 return wrapJavaFileObjects(clientJavaFileManager.list(location, packageName, kinds, recurse));
301 public FileObject getFileForInput(Location location, String packageName, String relativeName) throws IOException { argument
303 return wrap(clientJavaFileManager.getFileForInput(location, packageName, relativeName));
314 public FileObject getFileForOutput(Location location, String packageName, String relativeName, FileObject sibling) throws IOException { argument
316 return wrap(clientJavaFileManager.getFileForOutput(location, packageName, relativeName, unwrap(sibling)));
/openjdk7/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java320 public Iterable<JavaFileObject> list(Location location, String packageName, Set<Kind> kinds, boolean recurse) throws IOException { argument
322 return wrap(super.list(location, packageName, kinds, recurse));
362 public FileObject getFileForInput(Location location, String packageName, String relativeName) throws IOException { argument
364 return wrap(super.getFileForInput(location, packageName, relativeName));
368 public FileObject getFileForOutput(Location location, String packageName, String relativeName, FileObject sibling) throws IOException { argument
370 return wrap(super.getFileForOutput(location, packageName, relativeName, sibling));

Completed in 92 milliseconds

123