GATE
Version 3.1-2270

Uses of Class
gate.util.GateException

Packages that use GateException
com.ontotext.gate.vr   
gate This package contains the public interface to the GATE Java API. 
gate.config   
gate.creole   
gate.creole.gazetteer   
gate.creole.ir   
gate.creole.ml   
gate.creole.ml.maxent   
gate.creole.ml.svmlight   
gate.creole.ml.weka   
gate.creole.tokeniser   
gate.gui   
gate.jape   
gate.persist   
gate.security   
gate.util   
gate.util.compilers   
gate.util.web   
gate.wordnet   
 

Uses of GateException in com.ontotext.gate.vr
 

Subclasses of GateException in com.ontotext.gate.vr
 class GeneralEditorException
          A general editor exception
 

Uses of GateException in gate
 

Methods in gate that throw GateException
 List CreoleRegister.getAllInstances(String type)
          Gets all the instantiations of a given type and all its derivate types; It doesn't return instances that have the hidden attribute set to "true"
static MainFrame Main.getMainFrame()
          Get the main frame of the GUI.
static URL Gate.getUrl()
          Get a URL that points to either an HTTP server or a file system that contains GATE files (such as test cases).
static URL Gate.getUrl(String path)
          Get a URL that points to either an HTTP server or a file system that contains GATE files (such as test cases).
static void Gate.init()
          Initialisation - must be called by all clients before using any other parts of the library.
static void Gate.initConfigData()
          Reads config data (gate.xml files).
static void Gate.initCreoleRegister()
          Initialise the CREOLE register.
static void Main.main(String[] args)
          Main routine for GATE.
 void CreoleRegister.registerBuiltins()
          Register resources that are built in to the GATE distribution.
 void CreoleRegister.registerDirectories()
          Register all the CREOLE directories that we know of.
 void CreoleRegister.registerDirectories(URL directoryUrl)
          Register a single CREOLE directory.
static void Gate.registerIREngine(String className)
          Registers a new IR engine.
 void CookBook.setUp()
          Fixture set up: initialise members before each test method
 void CookBook.testAddingDocuments()
          Adding documents to a corpus
 void CookBook.testCorpusConstruction()
          Constructing a corpus
 void CookBook.testResourceCreation()
          Constructing a resource
static void Gate.writeUserConfig()
          Update the GATE development environment configuration data in the user's gate.xml file (create one if it doesn't exist).
 

Uses of GateException in gate.config
 

Methods in gate.config that throw GateException
 void ConfigDataProcessor.parseConfigFile(InputStream configStream, URL configUrl)
          Parse a config file (represented as an open stream).
 

Constructors in gate.config that throw GateException
ConfigDataProcessor()
          Default constructor.
TestConfig(String name)
          Construction
 

Uses of GateException in gate.creole
 

Subclasses of GateException in gate.creole
 class ExecutionException
          This exception indicates failure during run() invocations on ProcessingResources.
 class ExecutionInterruptedException
          Thrown by Executables after they have stopped their execution as a result of a call to their interrupt() method.
 class ParameterException
          This exception indicates failure to set a resource parameter.
 class ResourceInstantiationException
          This exception indicates failure during instantiation of resources, which may be due to a number of causes: the resource metadata contains parameters that aren't available on the resource; the class for the resource cannot be found (e.g. because a Jar URL was incorrectly specified); because access to the resource class is denied by the class loader; because of insufficient or incorrect resource metadata.
 

Methods in gate.creole that throw GateException
 void AnnotationVisualResource.cancelAction()
          Called by the GUI when the user has pressed the "Cancel" button.
 void BootStrap.createResource(String resourceName, String packageName, String typeResource, String className, Set interfacesList, String pathNewProject)
          Creates the resource and dumps out a project structure using the structure from gate/resource/creole/templateproject/Template and the information provided by the user
 List CreoleRegisterImpl.getAllInstances(String type)
          Gets all the instantiations of a given type and all its derivate types; It doesn't return instances that have the hidden attribute set to "true"
 void AnnotationVisualResource.okAction()
          Called by the GUI when the user has pressed the "OK" button.
protected  void CreoleRegisterImpl.parseDirectory(InputStream directoryStream, URL directoryUrl, URL creoleFileUrl)
          Parse a directory file (represented as an open stream), adding resource data objects to the CREOLE register as they occur.
 void CreoleRegisterImpl.registerBuiltins()
          Register resources that are built in to the GATE distribution.
 void CreoleRegisterImpl.registerDirectories()
          Deprecated.  
 void CreoleRegisterImpl.registerDirectories(URL directoryUrl)
          Register a single CREOLE directory.
static void AbstractResource.removeResourceListeners(Resource resource, Map listeners)
          Removes listeners from a resource.
static void AbstractResource.setResourceListeners(Resource resource, Map listeners)
          Adds listeners to a resource.
 void TestControllers.setUp()
          Fixture set up
 void TestSplitterTagger.setUp()
          Fixture set up
 void BootStrap.verifyInput(String className, String pathNewProject)
          verify if the class name contains only letters and digits the path of the new project is a directory
 

Constructors in gate.creole that throw GateException
CreoleRegisterImpl()
          Default constructor.
TestCreole(String name)
          Construction
 

Uses of GateException in gate.creole.gazetteer
 

Subclasses of GateException in gate.creole.gazetteer
 class GazetteerException
          Used to signal Gazetteer specific exceptions
 class InvalidFormatException
          exception thrown when an invalid format of a file is detected
 

Uses of GateException in gate.creole.ir
 

Constructors in gate.creole.ir that throw GateException
TestIndex(String name)
           
 

Uses of GateException in gate.creole.ml
 

Methods in gate.creole.ml that throw GateException
 void MLEngine.init()
          This method will be called after an engine is created and has its dataset and options set.
static List Attribute.parseSeries(org.jdom.Element jdomElement)
          This method is a clone of gate.creole.mi.Attribute.parseSerie method with minor changes to make it compatible with ML API.
 

Constructors in gate.creole.ml that throw GateException
Attribute(org.jdom.Element jdomElement)
           
DatasetDefintion(org.jdom.Element domElement)
           
 

Uses of GateException in gate.creole.ml.maxent
 

Methods in gate.creole.ml.maxent that throw GateException
 void MaxentWrapper.init()
          Initialises the classifier and prepares for running.
 

Uses of GateException in gate.creole.ml.svmlight
 

Methods in gate.creole.ml.svmlight that throw GateException
 void SVMLightWrapper.init()
          Initialises the classifier and prepares for running.
 

Uses of GateException in gate.creole.ml.weka
 

Methods in gate.creole.ml.weka that throw GateException
 void Wrapper.init()
          Initialises the classifier and prepares for running.
 

Uses of GateException in gate.creole.tokeniser
 

Subclasses of GateException in gate.creole.tokeniser
 class InvalidRuleException
          Fired when an invalid tokeniser rule is found
 class TokeniserException
          The top level exception for all the exceptions fired by the tokeniser
 

Uses of GateException in gate.gui
 

Methods in gate.gui that throw GateException
 void SchemaAnnotationEditor.cancelAction()
           
 void SyntaxTreeViewer.cancelAction()
          Called by the GUI when the user has pressed the "Cancel" button.
 void UnrestrictedAnnotationEditor.cancelAction()
           
 void SchemaAnnotationEditor.okAction()
          Called by the GUI when the user has pressed the "OK" button.
 void SyntaxTreeViewer.okAction()
          Called by the GUI when the user has pressed the "OK" button.
 void UnrestrictedAnnotationEditor.okAction()
          Called by the GUI when the user has pressed the "OK" button.
 

Uses of GateException in gate.jape
 

Subclasses of GateException in gate.jape
 class JapeException
          Superclass of all JAPE exceptions.
 class JdmException
          THIS CLASS SHOULDN'T BE HERE.
 

Methods in gate.jape that throw GateException
 void TestJape._testCombined()
          Test using the large "combined" grammar from the gate/resources tree.
 void TestJape.DoTestBigGrammar(String textName)
           
 

Uses of GateException in gate.persist
 

Subclasses of GateException in gate.persist
 class PersistenceException
          This exception indicates failure during persistence operations.
 

Methods in gate.persist that throw GateException
protected  void JDBCDataStore.unloadLR(Long lrID)
          unloads a LR from the GUI
 

Constructors in gate.persist that throw GateException
TestPersist(String name)
          Construction
 

Uses of GateException in gate.security
 

Subclasses of GateException in gate.security
 class SecurityException
          This exception indicates security violation.
 

Constructors in gate.security that throw GateException
TestSecurity(String name)
          Construction
 

Uses of GateException in gate.util
 

Subclasses of GateException in gate.util
 class DocumentFormatException
          This exception can be used to catch any internal exception thrown by the DocumentFormat class and its subbclasses.
 class InvalidDatabaseException
          Used to signal an attempt to connect to a database in an invalid format, that is a database tha does not have the right structure (see Gate2 documentation for details on required database structure).
 class InvalidOffsetException
          Used to signal an attempt to create a node with an invalid offset.
 class NoSuchObjectException
          Raised when there is an attempt to read an inexistant object from the database(i.e. when an invalid object ID occurs).
 class OpenTransactionsException
          Used to signal an attempt to close all connections to a database while there are still connections in use by the clients of that database.
 

Methods in gate.util that throw GateException
abstract  void Javac.compile(Map sources)
          Compile a set of Java sources, and load the resulting classes into the GATE class loader.
static void Javac.loadClasses(Map sources)
          Compiles a set of java sources and loads the compiled classes in the gate class loader.
static void CorpusBenchmarkTool.main(String[] args)
           
static void CorpusSaver.main(String[] args)
           
 void JarFiles.merge(Set jarFileNames, String destinationJarName)
          This method takes the content of all jar/zip files from the set jarFileNames and put them in a file with the name outputFileName.
 

Uses of GateException in gate.util.compilers
 

Methods in gate.util.compilers that throw GateException
 void Eclipse.compile(Map sources)
          Compiles a set of java sources using the Eclipse Java compiler and loads the compiled classes in the gate class loader.
 void Sun.compile(Map sources)
          Compiles a set of java sources and loads the compiled classes in the gate class loader.
 

Uses of GateException in gate.util.web
 

Methods in gate.util.web that throw GateException
 void WebCrimeReportAnalyser.initCrimeReportAnalyser()
           
 String WebAnnie.process(javax.servlet.ServletContext app, String url, String[] annotations)
          This method should be called from a servlet or JSP.
 String WebCrimeReportAnalyser.process(javax.servlet.ServletContext app, String url, String[] annotations)
           
 

Uses of GateException in gate.wordnet
 

Subclasses of GateException in gate.wordnet
 class WordNetException
          Title: Gate2 Description: Copyright: Copyright (c) 2000 Company: University Of Sheffield
 


GATE
Version 3.1-2270