Searched defs:directory (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DAttributeInUseException.java26 package javax.naming.directory;
H A DInvalidAttributeIdentifierException.java26 package javax.naming.directory;
33 * The validity of an attribute identifier is directory-specific.
H A DInvalidAttributeValueException.java26 package javax.naming.directory;
H A DInvalidAttributesException.java26 package javax.naming.directory;
H A DInvalidSearchControlsException.java27 package javax.naming.directory;
H A DInvalidSearchFilterException.java27 package javax.naming.directory;
H A DNoSuchAttributeException.java26 package javax.naming.directory;
H A DSchemaViolationException.java27 package javax.naming.directory;
H A DModificationItem.java26 package javax.naming.directory;
H A DAttributeModificationException.java26 package javax.naming.directory;
H A DAttributes.java27 package javax.naming.directory;
38 * In a directory, named objects can have associated with them
40 * For example, you can request from the directory the attributes
54 * do not affect the corresponding representation in the directory.
55 * Updates to the directory can only be effected
H A DSearchResult.java26 package javax.naming.directory;
H A DAttribute.java26 package javax.naming.directory;
39 * In a directory, named objects can have associated with them
52 * if the underlying directory service supports schemas.
62 * to get the values dynamically from the directory.
66 * in the directory. Updates to the directory can only be effected
185 * definition refers to the directory's notion of <em>syntax</em>.
188 * a Java String object, its directory syntax might be "Printable String"
190 * directory syntax is "JPEG" or "Certificate".
195 * is directory
[all...]
H A DDirContext.java26 package javax.naming.directory;
31 * The directory service interface, containing
33 * associated with objects, and for searching the directory.
100 * With attribute type synonyms, a directory can assign multiple names to
106 * Asking such a directory for the "description" attribute, for example,
119 * attributes associated with a directory object for administrative
204 * specified, the directory will ignore the nonexistent attribute
207 * <p> A directory might return more attributes than was requested
445 * in the directory remain unchanged.
447 * the object already bound in the directory ar
[all...]
H A DInitialDirContext.java27 package javax.naming.directory;
35 * directory operations. The documentation in the class description
H A DBasicAttributes.java27 package javax.naming.directory;
50 * does not affect the corresponding representation in the directory.
51 * Updates to the directory can only be effected
H A DSearchControls.java27 package javax.naming.directory;
H A DBasicAttribute.java26 package javax.naming.directory;
56 * to get the values dynamically from the directory (or implement
61 * in the directory. Updates to the directory can only be effected
282 * from the directory.
294 * from the directory.
/openjdk7/langtools/test/tools/javac/
H A DT6558476.java38 private static File copyFileTo(File file, File directory) throws IOException { argument
39 File newFile = new File(directory, file.getName());
/openjdk7/jdk/test/java/io/File/
H A DNulFile.java357 throw new RuntimeException("File should not be a directory");
422 + " create directory");
589 // test directory
597 File directory) {
598 // createTempFile(String prefix, String suffix, File directory)
603 File.createTempFile(prefix, suffix, directory);
613 File.createTempFile(prefix, suffix, directory);
596 testCreateTempFile(String prefix, String suffix, File directory) argument
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixDirectoryStream.java42 // path to directory when originally opened
45 // directory pointer (returned by opendir)
51 // used to coorindate closing of directory stream
55 // indicates if directory stream is open (synchronize on closeLock)
58 // directory iterator
70 protected final UnixPath directory() { method in class:UnixDirectoryStream
/openjdk7/jdk/src/share/classes/java/lang/
H A DProcessBuilder.java64 * <li>a <i>working directory</i>. The default value is the current
65 * working directory of the current process, usually the directory
143 * <p>Starting a new process which uses the default working directory
151 * directory and environment, and redirects standard output and error
161 * pb.directory(new File("myDir"));
182 private File directory; field in class:ProcessBuilder
382 * Returns this process builder's working directory.
385 * #start()} method will use this as their working directory.
387 * the working directory o
393 public File directory() { method in class:ProcessBuilder
410 directory(File directory) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DRelativePath.java35 * container, such as a directory or zip file.
55 public File getFile(File directory) { argument
57 return directory;
58 return new File(directory, path.replace('/', File.separatorChar));
90 * container, such as a directory or zip file.
148 * container, such as a directory or zip file.
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DGtkFileDialogPeer.java69 private void setFileInternal(String directory, String[] filenames) { argument
79 String with_separator = directory;
80 if (directory != null) {
81 with_separator = directory.endsWith(File.separator) ?
82 directory : (directory + File.separator);
90 files[i] = new File(directory, filenames[i]);
157 // File path has a priority against directory path.
/openjdk7/jdk/src/share/classes/java/io/
H A DFilePermission.java41 * This class represents access to a file or directory. A FilePermission consists
44 * Pathname is the pathname of the file or directory granted the specified
47 * all the files and directories contained in that directory. A pathname
49 * and subdirectories contained in that directory. A pathname consisting of
53 * in the current directory, while a pathname consisting of a single "-"
54 * indicates all the files in the current directory and
56 * directory.
89 * directory it's in (or a subdirectory of that directory); it does not
139 // does path indicate a directory
140 private transient boolean directory; field in class:FilePermission
[all...]

Completed in 129 milliseconds

12