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
 boolean IURIFilter.accepts(IURI uri)
          Filters the given IURI.
 IURI IURI.append(IURI relativeURI)
           
 java.io.File IURI.asFile()
           
 java.net.URL IURI.asURL()
           
 void IURI.erase()
          Erases the resource identified by this IURI.
 java.io.InputStream IURI.getInputStream()
           
 java.io.OutputStream IURI.getOutputStream()
           
 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.
 IURI IURIScheme.newURI(IURI uri)
           
 IURI SimpleURIFactory.newURI(java.lang.String uri)
           
 IURI IURIScheme.newURI(java.lang.String uri)
           
 IURI IURIFactory.newURI(java.lang.String uri)
          Creates and returns a new IURI for the given string.
 IURI SimpleURIFactory.newURI(java.net.URL url)
           
 IURI IURIScheme.newURI(java.net.URL url)
           
 IURI IURIFactory.newURI(java.net.URL url)
          Creates and returns a new IURI for the given URL.
 IURIScheme SimpleURIFactory.newURIScheme(java.lang.String schemeOrURI)
           
 IURIScheme IURIFactory.newURIScheme(java.lang.String schemeOrURI)
          Creates and returns a new IURIScheme for the given scheme string.
 IURI IURI.parent()
           
 void IURI.rename(IURI newURI)
          Renames or moves the resource identified by this IURI to the new IURI.
 void IURI.touchFolder()
          Creates a new folder resource at the location identified by the IURI.
 void IURI.touchLeaf()
          Creates a new, empty resource at the location identified by the IURI.
 boolean IURIVisitor.visit(IURI uri)
          Visits the given 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.