Package gate.creole

Examples of gate.creole.ResourceData


              Iterator it = ((Controller)theTarget).getPRs().iterator();
              while(it.hasNext()) {
                ProcessingResource pr = (ProcessingResource)it.next();
                String resourceClassName = pr.getClass().getName();
                ResourceData rd = Gate.getCreoleRegister().get(resourceClassName);
                String helpURL = rd.getHelpURL();
                if(helpURL != null) {
                  if(!helpURL.startsWith("http://") && !helpURL.startsWith("file:")) {
                    helpURL = "http://gate.ac.uk/userguide/" + helpURL;
                  }
                  pr.getFeatures().put("%@helpURL", helpURL);
View Full Code Here

TOP

Related Classes of gate.creole.ResourceData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.