Java Doc for FScript.java in  » Scripting » FScript » murlen » util » fscript » 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 » Scripting » FScript » murlen.util.fscript 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   murlen.util.fscript.FScript

All known Subclasses:   murlen.util.fscript.BasicIO,
FScript
public class FScript implements FSExtension(Code)

Femto Script - This is the main FScript package class

Copyright (C) 2000-2003 murlen.

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details.

You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA


author:
   murlen
author:
   Joachim Van der Auwera
version:
   1.12
version:
   modifications by Joachim Van der Auwera
version:
   02.08.2002 added support for FSParserExtension
version:
   15.03.2003 getContext()



Constructor Summary
public  FScript()
    

Method Summary
public  ObjectcallFunction(String name, ArrayList params)
    
 ObjectcallFunctionEntry(String name, ArrayList params)
    
final public  ObjectcallScriptFunction(String name, ArrayList params)
     Calls a function in the script - note that if the function is not defined calls will be made to the subclass callFunction methods - therefore this method should be used with caution from within an overriden callFunction.
public  Objectcont()
     Continues execution from current point - only really useful in a document processing application where you may wish to add code, execute, add some more code..etc..
public  ObjectevaluateExpression(String expr)
    
public  StringgetContext()
    
public  String[]getError()
     Returns more details on any error states, indicated by FSExceptions.
final public  ObjectgetScriptVar(String name)
     Gets a variable in script space note that if the varialble is not defined in the script, calls will be made to subclass getVar methods - therefore this method should be used with caution from within an overriden getVar.
public  ObjectgetVar(String name)
     Override this method to allow external access to variables in your code.
public  ObjectgetVar(String name, Object index)
     Override this method to allow external access to variables in your code.
 ObjectgetVarEntry(String name, Object index)
    
public  voidload(Reader is)
    
public  voidloadLine(String line)
    
public  voidregisterExtension(FSExtension extension)
    
public  voidreset()
    
public  Objectrun()
    
final public  voidsetScriptVar(String name, Object value)
     Sets a variable in script space = the value passed in - the variable must be have the correct type - note that if the varialble is not defined in the script, calls will be made to subclass setVar methods - therefore this method should be used with caution from within an overriden setVar.
public  voidsetVar(String name, Object value)
    
public  voidsetVar(String name, Object index, Object value)
    
 voidsetVarEntry(String name, Object index, Object value)
    
public  voidunRegisterExtension(FSExtension extension)
    


Constructor Detail
FScript
public FScript()(Code)
Constructor




Method Detail
callFunction
public Object callFunction(String name, ArrayList params) throws FSException(Code)
Override this call to implement custom functions See the BasicIO class for an example
Parameters:
  name - the function name
Parameters:
  params - an ArrayList of parameter values an Object, currently expected to be Integer or String



callFunctionEntry
Object callFunctionEntry(String name, ArrayList params) throws FSException(Code)
Entry point for parser (checks against extensions)



callScriptFunction
final public Object callScriptFunction(String name, ArrayList params) throws IOException, FSException(Code)
Calls a function in the script - note that if the function is not defined calls will be made to the subclass callFunction methods - therefore this method should be used with caution from within an overriden callFunction.
Parameters:
  name - the name of the function
Parameters:
  params - the parameters to pass (must be correct type and number) the return value of the function (String,Integer)



cont
public Object cont() throws IOException, FSException(Code)
Continues execution from current point - only really useful in a document processing application where you may wish to add code, execute, add some more code..etc.. any return value of the script's execution (will be one ofFScript's supported type objects, Integer,String,Double)



evaluateExpression
public Object evaluateExpression(String expr) throws IOException, FSException(Code)



getContext
public String getContext()(Code)
get the current context (executed line, variables etc)



getError
public String[] getError()(Code)
Returns more details on any error states, indicated by FSExceptions. String, see below
s[0]=the error text
s[1]=the line number
s[2]=the line text
s[3]=the current token
s[4]=a variable dump (current scope)
s[5]=a global variable dump (only if currnent scope is not global



getScriptVar
final public Object getScriptVar(String name) throws FSException(Code)
Gets a variable in script space note that if the varialble is not defined in the script, calls will be made to subclass getVar methods - therefore this method should be used with caution from within an overriden getVar.
Parameters:
  name - the name of the variable the value of the variable (String,Integer)



getVar
public Object getVar(String name) throws FSException(Code)
Override this method to allow external access to variables in your code.
Parameters:
  name - the name of the variable the parser is requestinge.gadd this...
if (name.equals("one") { return new Integer(1) }
to allow the code
a=one
to work in FScript Object - currently expected to be String or Integer



getVar
public Object getVar(String name, Object index) throws FSException(Code)
Override this method to allow external access to variables in your code.

As getVar(String name) but allows an index variable to be passed so code such as : name=list[2] is possible
Parameters:
  name - the name of the variable the parser is requesting Object - currently expected to be String, Integer or Double




getVarEntry
Object getVarEntry(String name, Object index) throws FSException(Code)
Entry point for parser (checks against extensions)



load
public void load(Reader is) throws IOException(Code)
Loads FScript parser with text from an InputStreamReader
Parameters:
  is - the input stream



loadLine
public void loadLine(String line)(Code)
Load an individual line into the parser, intended for document processing applications
Parameters:
  line - the line to load



registerExtension
public void registerExtension(FSExtension extension)(Code)
Registers language extensions
Parameters:
  extension - the extension to register



reset
public void reset()(Code)
Resets the internal code store



run
public Object run() throws IOException, FSException(Code)
Run the parser over currently loaded code any return value of the script's execution (will be one ofFScript's supported type objects, Integer,String,Double)



setScriptVar
final public void setScriptVar(String name, Object value) throws FSException(Code)
Sets a variable in script space = the value passed in - the variable must be have the correct type - note that if the varialble is not defined in the script, calls will be made to subclass setVar methods - therefore this method should be used with caution from within an overriden setVar.
Parameters:
  name - the name of the variable
Parameters:
  value - the value to set variable to (String,Integer)



setVar
public void setVar(String name, Object value) throws FSException(Code)
Logical inverse of getVar
Parameters:
  name - the variable name
Parameters:
  value - the value to set it to



setVar
public void setVar(String name, Object index, Object value) throws FSException(Code)
Logical inverse of getVar (with index)
Parameters:
  name - the variable name
Parameters:
  index - the index into the 'array'
Parameters:
  value - the value to set it to



setVarEntry
void setVarEntry(String name, Object index, Object value) throws FSException(Code)
Entry point for parser (checks against extensions)



unRegisterExtension
public void unRegisterExtension(FSExtension extension)(Code)
Removes a previously registered extenison
Parameters:
  extension - the extension to remove



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.