Java Doc for PathWrapper.java in  » EJB-Server-resin-3.1.5 » util » com » caucho » vfs » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » EJB Server resin 3.1.5 » util » com.caucho.vfs 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.caucho.vfs.Path
      com.caucho.vfs.PathWrapper

PathWrapper
abstract public class PathWrapper extends Path (Code)
Wraps a path object.


Field Summary
final protected static  L10NL
    

Constructor Summary
protected  PathWrapper(Path path)
     Creates a new Path object.

Method Summary
public  voidbind(Path context)
     Binds the context to the current path.
public  booleancanRead()
     Tests if the file can be read.
public  booleancanWrite()
     Tests if the file can be written.
public  booleanchangeGroup(int gid)
    
public  booleanchangeGroup(String groupName)
    
public  booleanchangeOwner(int uid)
    
public  booleanchangeOwner(String ownerName)
    
public  booleanchmod(int value)
    
public  booleancreateNewFile()
     Creates the file named by this Path and returns true if the file is new.
public  PathcreateRoot()
     Creates a restricted root, like the Unix chroot call.
public  PathcreateRoot(SchemeMap schemeMap)
    
public  PathcreateTempFile(String prefix, String suffix)
     Creates a unique temporary file as a child of this directory.
public  booleanequals(Object o)
    
public  booleanexists()
     Tests if the file exists.
public  ObjectgetAttribute(String name)
     Gets an attribute of the object.
public  IteratorgetAttributeNames()
     Returns a iterator of all attribute names set for this object.
public  StringgetContentType()
     Returns the mime-type of the file.
public  longgetCrc64()
     Returns the crc64 code.
public  longgetCreateTime()
     Returns the create time of the file.
public  longgetDiskSpaceFree()
    
public  longgetDiskSpaceTotal()
    
public  StringgetFullPath()
     Returns the full path, including the restricted root.
public  intgetGroup()
    
public  StringgetHost()
    
public  longgetInode()
    
public  longgetLastAccessTime()
     Returns the last access time of the file.
public  longgetLastModified()
     Returns the last modified time of the file.
public  longgetLength()
     Returns the length of the file in bytes.
public  StringgetNativePath()
     Returns the native representation of the path.
public  ObjectgetObject()
     Returns the object at this path.
public  intgetOwner()
    
public  PathgetParent()
     Returns the parent path.
public  StringgetPath()
     Returns the path.
public  intgetPort()
     Returns the port.
public  StringgetQuery()
     Returns the query string of the path.
public  StringgetRelativePath()
     For union paths like MergePath, return the relative path into that path.
public  ArrayList<Path>getResources(String name)
     Looks up all the resources matching a name.
public  ArrayList<Path>getResources()
     Looks up all the existing resources.
public  StringgetScheme()
    
public  StringgetTail()
     Returns the last segment of the path.

e.g.

public  StringgetURL()
     Returns the full url for the given path.
public  StringgetUserPath()
     Returns the last string used as a lookup, if available.
public  ObjectgetValue()
     Gets the object at the path.
public  PathgetWrappedPath()
     Returns the wrapped path.
public  inthashCode()
    
public  booleanisDirectory()
     Tests if the path refers to a directory.
public  booleanisExecutable()
    
public  booleanisFile()
     Tests if the path refers to a file.
public  booleanisObject()
     Tests if the path refers to an object.
public  Iterator<String>iterator()
     Returns a jdk1.2 Iterator for the contents of this directory.
public  String[]list()
    
public  Pathlookup(String userPath, Map<String, Object> newAttributes)
     Returns a new path relative to the current one.

Path only handles scheme:xxx.

public  PathlookupImpl(String userPath, Map<String, Object> newAttributes)
     Returns a new path relative to the current one.

Path only handles scheme:xxx.

public  PathlookupNative(String name, Map<String, Object> attributes)
     Looks up a native path, adding attributes.
public  booleanmkdir()
     Creates the directory named by this path.
public  booleanmkdirs()
     Creates the directory named by this path and any parent directories.
public  WriteStreamopenAppend()
     Opens a resin stream for appending.
public  StreamImplopenAppendImpl()
    
public  RandomAccessStreamopenRandomAccess()
     Opens a random-access stream.
public  StreamImplopenReadImpl()
    
public  ReadWritePairopenReadWrite()
     Opens a resin ReadWritePair for reading and writing.
public  voidopenReadWrite(ReadStream is, WriteStream os)
     Opens a resin ReadWritePair for reading and writing.
public  StreamImplopenReadWriteImpl()
    
public  StreamImplopenWriteImpl()
    
public  booleanremove()
     Removes the file or directory named by this path.
public  booleanremoveAll()
     Removes the all files and directories below this path.
public  booleanrenameTo(Path path)
     Renames the file or directory to the name given by the path.
protected  PathschemeWalk(String userPath, Map<String, Object> newAttributes, String newPath, int offset)
     Path-specific lookup.
public  booleansetExecutable(boolean isExecutable)
    
public  voidsetLastModified(long time)
    
public  voidsetObject(Object obj)
     Sets the object at this path.
public  voidsetUserPath(String userPath)
     Sets the user path.
public  voidsetValue(Object obj)
     Sets the object at the path.

Normal filesystems will generally do nothing.

public  StringtoString()
    
public  voidunbind()
     unbinds a link.
public  voidwriteToStream(OutputStream os)
     Utility to write the contents of this path to the destination stream.
public  voidwriteToStream(OutputStreamWithBuffer os)
     Utility to write the contents of this path to the destination stream.

Field Detail
L
final protected static L10N L(Code)




Constructor Detail
PathWrapper
protected PathWrapper(Path path)(Code)
Creates a new Path object.
Parameters:
  path - the new Path root.




Method Detail
bind
public void bind(Path context)(Code)
Binds the context to the current path. Later lookups will return the new context instead of the current path. Essentially, this is a software symbolic link.



canRead
public boolean canRead()(Code)
Tests if the file can be read.



canWrite
public boolean canWrite()(Code)
Tests if the file can be written.



changeGroup
public boolean changeGroup(int gid) throws IOException(Code)



changeGroup
public boolean changeGroup(String groupName) throws IOException(Code)



changeOwner
public boolean changeOwner(int uid) throws IOException(Code)



changeOwner
public boolean changeOwner(String ownerName) throws IOException(Code)



chmod
public boolean chmod(int value)(Code)
Changes the permissions



createNewFile
public boolean createNewFile() throws IOException(Code)
Creates the file named by this Path and returns true if the file is new.



createRoot
public Path createRoot()(Code)
Creates a restricted root, like the Unix chroot call. Restricted roots cannot access schemes, so file:/etc/passwd cannot be used.

createRoot is useful for restricting JavaScript scripts without resorting to the dreadfully slow security manager.




createRoot
public Path createRoot(SchemeMap schemeMap)(Code)



createTempFile
public Path createTempFile(String prefix, String suffix) throws IOException(Code)
Creates a unique temporary file as a child of this directory.
Parameters:
  prefix - filename prefix
Parameters:
  suffix - filename suffix, defaults to .tmp Path to the new file.



equals
public boolean equals(Object o)(Code)



exists
public boolean exists()(Code)
Tests if the file exists.



getAttribute
public Object getAttribute(String name) throws IOException(Code)
Gets an attribute of the object.



getAttributeNames
public Iterator getAttributeNames() throws IOException(Code)
Returns a iterator of all attribute names set for this object. null if path has no attributes.



getContentType
public String getContentType()(Code)
Returns the mime-type of the file.

Mime-type ignorant filesystems return 'application/octet-stream'




getCrc64
public long getCrc64()(Code)
Returns the crc64 code.



getCreateTime
public long getCreateTime()(Code)
Returns the create time of the file. 0 for non-files.



getDiskSpaceFree
public long getDiskSpaceFree()(Code)



getDiskSpaceTotal
public long getDiskSpaceTotal()(Code)



getFullPath
public String getFullPath()(Code)
Returns the full path, including the restricted root.

For the following, path.getPath() returns '/file.html', while path.getFullPath() returns '/chroot/file.html'.

 Path chroot = Pwd.lookup("/chroot").createRoot();
 Path path = chroot.lookup("/file.html");
 



getGroup
public int getGroup()(Code)



getHost
public String getHost()(Code)
Returns the hostname



getInode
public long getInode()(Code)



getLastAccessTime
public long getLastAccessTime()(Code)
Returns the last access time of the file. 0 for non-files.



getLastModified
public long getLastModified()(Code)
Returns the last modified time of the file. According to the jdk, this may not correspond to the system time. 0 for non-files.



getLength
public long getLength()(Code)
Returns the length of the file in bytes. 0 for non-files



getNativePath
public String getNativePath()(Code)
Returns the native representation of the path. On Windows, getNativePath() returns 'd:\\foo\bar.html', getPath() returns '/d:/foo/bar.html'



getObject
public Object getObject() throws IOException(Code)
Returns the object at this path. Normally, only paths like JNDI will support this.



getOwner
public int getOwner()(Code)



getParent
public Path getParent()(Code)
Returns the parent path.



getPath
public String getPath()(Code)
Returns the path. e.g. for HTTP, returns the part after the host and port.



getPort
public int getPort()(Code)
Returns the port.



getQuery
public String getQuery()(Code)
Returns the query string of the path.



getRelativePath
public String getRelativePath()(Code)
For union paths like MergePath, return the relative path into that path.



getResources
public ArrayList<Path> getResources(String name)(Code)
Looks up all the resources matching a name. (Generally only useful with MergePath.



getResources
public ArrayList<Path> getResources()(Code)
Looks up all the existing resources. (Generally only useful with MergePath.



getScheme
public String getScheme()(Code)
Returns the url scheme



getTail
public String getTail()(Code)
Returns the last segment of the path.

e.g. for http://www.caucho.com/products/index.html, getTail() returns 'index.html'




getURL
public String getURL()(Code)
Returns the full url for the given path.



getUserPath
public String getUserPath()(Code)
Returns the last string used as a lookup, if available. This allows parsers to give intelligent error messages, with the user's path instead of the whole path. The following will print '../test.html':
 Path path = Pwd.lookup("/some/dir").lookup("../test.html");
 System.out.println(path.getUserPath());
 



getValue
public Object getValue() throws Exception(Code)
Gets the object at the path. Normal filesystems will generally typically return null.

A bean filesystem or a mime-type aware filesystem could deserialize the contents of the file.




getWrappedPath
public Path getWrappedPath()(Code)
Returns the wrapped path.



hashCode
public int hashCode()(Code)



isDirectory
public boolean isDirectory()(Code)
Tests if the path refers to a directory.



isExecutable
public boolean isExecutable()(Code)



isFile
public boolean isFile()(Code)
Tests if the path refers to a file.



isObject
public boolean isObject()(Code)
Tests if the path refers to an object.



iterator
public Iterator<String> iterator() throws IOException(Code)
Returns a jdk1.2 Iterator for the contents of this directory.



list
public String[] list() throws IOException(Code)
The contents of this directory or null if the path does notrefer to a directory.



lookup
public Path lookup(String userPath, Map<String, Object> newAttributes)(Code)
Returns a new path relative to the current one.

Path only handles scheme:xxx. Subclasses of Path will specialize the xxx.
Parameters:
  userPath - relative or absolute path, essentially any url.
Parameters:
  newAttributes - attributes for the new path. the new path or null if the scheme doesn't exist




lookupImpl
public Path lookupImpl(String userPath, Map<String, Object> newAttributes)(Code)
Returns a new path relative to the current one.

Path only handles scheme:xxx. Subclasses of Path will specialize the xxx.
Parameters:
  userPath - relative or absolute path, essentially any url.
Parameters:
  newAttributes - attributes for the new path. the new path or null if the scheme doesn't exist




lookupNative
public Path lookupNative(String name, Map<String, Object> attributes)(Code)
Looks up a native path, adding attributes.



mkdir
public boolean mkdir() throws IOException(Code)
Creates the directory named by this path. true if successful.



mkdirs
public boolean mkdirs() throws IOException(Code)
Creates the directory named by this path and any parent directories. true if successful.



openAppend
public WriteStream openAppend() throws IOException(Code)
Opens a resin stream for appending.



openAppendImpl
public StreamImpl openAppendImpl() throws IOException(Code)



openRandomAccess
public RandomAccessStream openRandomAccess() throws IOException(Code)
Opens a random-access stream.



openReadImpl
public StreamImpl openReadImpl() throws IOException(Code)



openReadWrite
public ReadWritePair openReadWrite() throws IOException(Code)
Opens a resin ReadWritePair for reading and writing.

A chat channel, for example, would open its socket using this interface.




openReadWrite
public void openReadWrite(ReadStream is, WriteStream os) throws IOException(Code)
Opens a resin ReadWritePair for reading and writing.

A chat channel, for example, would open its socket using this interface.
Parameters:
  is - pre-allocated ReadStream to be initialized
Parameters:
  os - pre-allocated WriteStream to be initialized




openReadWriteImpl
public StreamImpl openReadWriteImpl() throws IOException(Code)



openWriteImpl
public StreamImpl openWriteImpl() throws IOException(Code)



remove
public boolean remove() throws IOException(Code)
Removes the file or directory named by this path. true if successful.



removeAll
public boolean removeAll() throws IOException(Code)
Removes the all files and directories below this path. true if successful.



renameTo
public boolean renameTo(Path path) throws IOException(Code)
Renames the file or directory to the name given by the path. true if successful



schemeWalk
protected Path schemeWalk(String userPath, Map<String, Object> newAttributes, String newPath, int offset)(Code)
Path-specific lookup. Path implementations will override this.
Parameters:
  userPath - the user's lookup() path.
Parameters:
  newAttributes - the attributes for the new path.
Parameters:
  newPath - the lookup() path
Parameters:
  offset - offset into newPath to start lookup. the found path



setExecutable
public boolean setExecutable(boolean isExecutable)(Code)



setLastModified
public void setLastModified(long time)(Code)



setObject
public void setObject(Object obj) throws IOException(Code)
Sets the object at this path. Normally, only paths like JNDI will support this.



setUserPath
public void setUserPath(String userPath)(Code)
Sets the user path. Useful for temporary files caching another URL.



setValue
public void setValue(Object obj) throws Exception(Code)
Sets the object at the path.

Normal filesystems will generally do nothing. However, a bean filesystem or a mime-type aware filesystem could serialize the object and store it.




toString
public String toString()(Code)



unbind
public void unbind()(Code)
unbinds a link.



writeToStream
public void writeToStream(OutputStream os) throws IOException(Code)
Utility to write the contents of this path to the destination stream.
Parameters:
  os - destination stream.



writeToStream
public void writeToStream(OutputStreamWithBuffer os) throws IOException(Code)
Utility to write the contents of this path to the destination stream.
Parameters:
  os - destination stream.



Fields inherited from com.caucho.vfs.Path
final protected static L10N L(Code)(Java Doc)
protected static char _pathSeparatorChar(Code)(Java Doc)
protected SchemeMap _schemeMap(Code)(Java Doc)
protected static char _separatorChar(Code)(Java Doc)
static long _startTime(Code)(Java Doc)

Methods inherited from com.caucho.vfs.Path
public void bind(Path context)(Code)(Java Doc)
protected Path cacheCopy()(Code)(Java Doc)
public boolean canExecute()(Code)(Java Doc)
public boolean canRead()(Code)(Java Doc)
public boolean canWrite()(Code)(Java Doc)
public boolean changeGroup(int gid) throws IOException(Code)(Java Doc)
public boolean changeGroup(String groupName) throws IOException(Code)(Java Doc)
public boolean changeOwner(int uid) throws IOException(Code)(Java Doc)
public boolean changeOwner(String ownerName) throws IOException(Code)(Java Doc)
public boolean chmod(int value)(Code)(Java Doc)
protected Path copy()(Code)(Java Doc)
public PersistentDependency createDepend()(Code)(Java Doc)
public boolean createLink(Path target, boolean hardLink) throws IOException(Code)(Java Doc)
public boolean createNewFile() throws IOException(Code)(Java Doc)
public Path createRoot()(Code)(Java Doc)
public Path createRoot(SchemeMap schemeMap)(Code)(Java Doc)
public Path createTempFile(String prefix, String suffix) throws IOException(Code)(Java Doc)
public boolean equals(Object o)(Code)(Java Doc)
protected static String escapeURL(String rawURL)(Code)(Java Doc)
public boolean exists()(Code)(Java Doc)
public Object getAttribute(String name) throws IOException(Code)(Java Doc)
public Iterator getAttributeNames() throws IOException(Code)(Java Doc)
public long getBlockCount()(Code)(Java Doc)
public long getBlockSize()(Code)(Java Doc)
public Certificate[] getCertificates()(Code)(Java Doc)
public String getContentType()(Code)(Java Doc)
public long getCrc64()(Code)(Java Doc)
public long getCreateTime()(Code)(Java Doc)
public long getDevice()(Code)(Java Doc)
public long getDeviceId()(Code)(Java Doc)
public long getDiskSpaceFree()(Code)(Java Doc)
public long getDiskSpaceTotal()(Code)(Java Doc)
final public static char getFileSeparatorChar()(Code)(Java Doc)
public String getFullPath()(Code)(Java Doc)
public int getGroup()(Code)(Java Doc)
public String getHost()(Code)(Java Doc)
public long getInode()(Code)(Java Doc)
public long getLastAccessTime()(Code)(Java Doc)
public long getLastModified()(Code)(Java Doc)
public long getLastStatusChangeTime()(Code)(Java Doc)
public long getLength()(Code)(Java Doc)
public int getMode()(Code)(Java Doc)
public String getNativePath()(Code)(Java Doc)
public static String getNewlineString()(Code)(Java Doc)
public int getNumberOfLinks()(Code)(Java Doc)
public Object getObject() throws IOException(Code)(Java Doc)
public int getOwner()(Code)(Java Doc)
public Path getParent()(Code)(Java Doc)
abstract public String getPath()(Code)(Java Doc)
final public static char getPathSeparatorChar()(Code)(Java Doc)
public int getPort()(Code)(Java Doc)
public String getQuery()(Code)(Java Doc)
public String getRelativePath()(Code)(Java Doc)
public ArrayList<Path> getResources(String name)(Code)(Java Doc)
public ArrayList<Path> getResources()(Code)(Java Doc)
abstract public String getScheme()(Code)(Java Doc)
final protected static char getSeparatorChar()(Code)(Java Doc)
public String getTail()(Code)(Java Doc)
public String getURL()(Code)(Java Doc)
public int getUser()(Code)(Java Doc)
protected static String getUserDir()(Code)(Java Doc)
public String getUserPath()(Code)(Java Doc)
public Object getValue() throws Exception(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public boolean isBlockDevice()(Code)(Java Doc)
public boolean isCharacterDevice()(Code)(Java Doc)
public boolean isDirectory()(Code)(Java Doc)
public boolean isExecutable()(Code)(Java Doc)
public boolean isFIFO()(Code)(Java Doc)
public boolean isFile()(Code)(Java Doc)
public boolean isHardLink()(Code)(Java Doc)
public boolean isLink()(Code)(Java Doc)
public boolean isObject()(Code)(Java Doc)
protected boolean isPathCacheable()(Code)(Java Doc)
public boolean isSocket()(Code)(Java Doc)
public boolean isSymbolicLink()(Code)(Java Doc)
final public static boolean isWindows()(Code)(Java Doc)
public boolean isWindowsInsecure()(Code)(Java Doc)
public Iterator<String> iterator() throws IOException(Code)(Java Doc)
public String[] list() throws IOException(Code)(Java Doc)
final public Path lookup(String name)(Code)(Java Doc)
public Path lookup(String userPath, Map<String, Object> newAttributes)(Code)(Java Doc)
public Path lookupImpl(String userPath, Map<String, Object> newAttributes)(Code)(Java Doc)
final public Path lookupNative(String name)(Code)(Java Doc)
public Path lookupNative(String name, Map<String, Object> attributes)(Code)(Java Doc)
public String lookupRelativeNativePath(Path path)(Code)(Java Doc)
public boolean mkdir() throws IOException(Code)(Java Doc)
public boolean mkdirs() throws IOException(Code)(Java Doc)
public WriteStream openAppend() throws IOException(Code)(Java Doc)
public StreamImpl openAppendImpl() throws IOException(Code)(Java Doc)
public RandomAccessStream openRandomAccess() throws IOException(Code)(Java Doc)
final public ReadStream openRead() throws IOException(Code)(Java Doc)
public StreamImpl openReadImpl() throws IOException(Code)(Java Doc)
public ReadWritePair openReadWrite() throws IOException(Code)(Java Doc)
public void openReadWrite(ReadStream is, WriteStream os) throws IOException(Code)(Java Doc)
public StreamImpl openReadWriteImpl() throws IOException(Code)(Java Doc)
final public WriteStream openWrite() throws IOException(Code)(Java Doc)
public StreamImpl openWriteImpl() throws IOException(Code)(Java Doc)
public boolean remove() throws IOException(Code)(Java Doc)
public boolean removeAll() throws IOException(Code)(Java Doc)
public boolean renameTo(Path path) throws IOException(Code)(Java Doc)
final public boolean renameTo(String path) throws IOException(Code)(Java Doc)
protected String scanScheme(String uri)(Code)(Java Doc)
abstract protected Path schemeWalk(String userPath, Map<String, Object> newAttributes, String newPath, int offset)(Code)(Java Doc)
final public static void setDefaultSchemeMap(SchemeMap schemeMap)(Code)(Java Doc)
public boolean setExecutable(boolean isExecutable)(Code)(Java Doc)
public void setLastModified(long time)(Code)(Java Doc)
public void setObject(Object obj) throws IOException(Code)(Java Doc)
final public static void setTestWindows(boolean isTest)(Code)(Java Doc)
public void setUserPath(String userPath)(Code)(Java Doc)
public void setValue(Object obj) throws Exception(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public boolean truncate() throws IOException(Code)(Java Doc)
public boolean truncate(long length) throws IOException(Code)(Java Doc)
public void unbind()(Code)(Java Doc)
public void writeToStream(OutputStream os) throws IOException(Code)(Java Doc)
public void writeToStream(OutputStreamWithBuffer os) throws IOException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.