Constructors
Functions
Returns null if this abstract pathname does not denote a directory, or if an I/O error occurs.
Many aspects of the behavior of this method are inherently
platform-dependent: The rename operation might not be able to move a file
from one filesystem to another, it might not be atomic, and it might not
succeed if a file with the destination abstract pathname already exists.
The return value should always be checked to make sure that the rename
operation was successful.
All platforms support file-modification times to the nearest second, but some provide more precision. The argument will be truncated to fit the supported precision. If the operation succeeds and no intervening operations on the file take place, then the next invocation of the lastModified() method will return the (possibly truncated) time argument that was passed to this method.
The exact form of the URI is system-dependent. If it can be determined
that the file denoted by this abstract pathname is a directory, then the
resulting URI will end with a slash.
For a given abstract pathname f, it is guaranteed that <blockquote> new java.io.File(java.net.URI)( f.toURI()).equals( f.getAbsoluteFile()()) </blockquote> so long as the original abstract pathname, the URI, and the new abstract pathname are all created in (possibly different invocations of) the same Java virtual machine. Due to the system-dependent nature of abstract pathnames, however, this relationship typically does not hold when a file: URI that is created in a virtual machine on one operating system is converted into an abstract pathname in a virtual machine on a different operating system.
Usage note: This method does not automatically escape characters that are illegal in URLs. It is recommended that new code convert an abstract pathname into a URL by first converting it into a URI, via the toURI() method, and then converting the URI into a URL via the java.net.URI.toURL() method.
-

SG
-

AI- Point
- Rectangle
- Color
- Matrix
- Art
- Segment
- SegmentList
- Curve
- CurveList
- TextRange
- TextStory
- PathStyle
- FillStyle
- StrokeStyle
- ParagraphStyle
- FontFamily
- FontWeight
- FontList
- ArtSet
- Pathfinder
- HitTest
- Document
- DocumentList
- LayerList
- Swatch
- SwatchList
- Gradient
- GradientList
- GradientStop
- GradientStopList
- Symbol
- SymbolList
- Pattern
- PatternList
- Timer
- LiveEffect
- Annotator
- DocumentView
- DocumentViewList
-

ADM