Uses of Class
org.eclipse.wst.common.environment.uri.URIException

Packages that use URIException
org.eclipse.wst.common.environment.uri   
 

Uses of URIException in org.eclipse.wst.common.environment.uri
 

Methods in org.eclipse.wst.common.environment.uri that throw URIException
 IURI IURIFactory.newURI(java.lang.String uri)
          Creates and returns a new IURI for the given string.
 IURI IURIFactory.newURI(java.net.URL url)
          Creates and returns a new IURI for the given URL.
 IURIScheme IURIFactory.newURIScheme(java.lang.String schemeOrURI)
          Creates and returns a new IURIScheme for the given scheme string.
 boolean IURIFilter.accepts(IURI uri)
          Filters the given IURI.
 boolean IURIVisitor.visit(IURI uri)
          Visits the given IURI.
 IURI IURIScheme.newURI(java.lang.String uri)
           
 IURI IURIScheme.newURI(java.net.URL url)
           
 IURI IURIScheme.newURI(IURI uri)
           
 IURI SimpleURIFactory.newURI(java.lang.String uri)
           
 IURI SimpleURIFactory.newURI(java.net.URL url)
           
 IURIScheme SimpleURIFactory.newURIScheme(java.lang.String schemeOrURI)
           
 IURI IURI.parent()
           
 IURI IURI.append(IURI relativeURI)
           
 java.io.InputStream IURI.getInputStream()
           
 java.io.OutputStream IURI.getOutputStream()
           
 void IURI.touchLeaf()
          Creates a new, empty resource at the location identified by the IURI.
 void IURI.touchFolder()
          Creates a new folder resource at the location identified by the IURI.
 void IURI.erase()
          Erases the resource identified by this IURI.
 void IURI.rename(IURI newURI)
          Renames or moves the resource identified by this IURI to the new IURI.
 void IURI.visit(IURIVisitor uriVisitor)
          Visits this resource and its decendants in pre-order fashion.
 void IURI.visit(IURIVisitor uriVisitor, IURIFilter uriFilter)
          As for visit(IURIVisitor), except only resource URIs that are accepted by the given filter are visited.
 IURI[] IURI.list()
          Returns a list of URIs for the immediate children of the given hierarchical, non-leaf IURI.
 IURI[] IURI.list(IURIFilter uriFilter)
          As for list(), except only URIs that are accepted by the given filter are returned in the array.
 java.net.URL IURI.asURL()
           
 java.io.File IURI.asFile()