Java Doc for Procedure.java in  » Scripting » Nice » gnu » mapping » 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 » Nice » gnu.mapping 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   gnu.mapping.Procedure

All known Subclasses:   gnu.mapping.Procedure4,  gnu.mapping.Procedure2,  gnu.mapping.Procedure1or2,  gnu.mapping.ProcedureN,  gnu.mapping.Procedure0or1,  gnu.mapping.Procedure0,  gnu.mapping.Procedure3,  gnu.mapping.Procedure1,
Procedure
abstract public class Procedure implements Named(Code)
The abstract parent for all Scheme functions.
author:
   Per Bothner



Constructor Summary
public  Procedure()
    
public  Procedure(String n)
    

Method Summary
public  voidapply(Runnable ctx)
    
abstract public  Objectapply0()
    
abstract public  Objectapply1(Object arg1)
    
abstract public  Objectapply2(Object arg1, Object arg2)
    
abstract public  Objectapply3(Object arg1, Object arg2, Object arg3)
    
abstract public  Objectapply4(Object arg1, Object arg2, Object arg3, Object arg4)
    
abstract public  ObjectapplyN(Object[] args)
    
public static  voidcheckArgCount(Procedure proc, int argCount)
     Check that the number of arguments in a call is valid.
public  StringgetName()
    
public  ObjectgetProperty(Object key, Object defaultValue)
    
public  ProceduregetSetter()
    
final public  intmaxArgs()
     Maximum number of arguments allowed, or -1 for unlimited.
final public  intminArgs()
     Minimum number of arguments required.
final public  Stringname()
    
public  intnumArgs()
     Return minArgs()|(maxArgs<<12).
public  ObjectremoveProperty(Object key)
    
public  voidset0(Object result)
    
public  voidset1(Object arg1, Object value)
    
public  voidsetN(Object[] args)
    
final public  voidsetName(String name)
    
public synchronized  voidsetProperty(Object key, Object value)
    
public static  Object[]setProperty(Object[] properties, Object key, Object value)
     Given a property list, update it.
public  StringtoString()
     Call this Procedure using the explicit-CallContext-convention. The input arguments are (by default) in stack.args; the result is (by default) left in stack.value.


Constructor Detail
Procedure
public Procedure()(Code)



Procedure
public Procedure(String n)(Code)




Method Detail
apply
public void apply(Runnable ctx) throws Throwable(Code)



apply0
abstract public Object apply0() throws Throwable(Code)



apply1
abstract public Object apply1(Object arg1) throws Throwable(Code)



apply2
abstract public Object apply2(Object arg1, Object arg2) throws Throwable(Code)



apply3
abstract public Object apply3(Object arg1, Object arg2, Object arg3) throws Throwable(Code)



apply4
abstract public Object apply4(Object arg1, Object arg2, Object arg3, Object arg4) throws Throwable(Code)



applyN
abstract public Object applyN(Object[] args) throws Throwable(Code)



checkArgCount
public static void checkArgCount(Procedure proc, int argCount)(Code)
Check that the number of arguments in a call is valid.
Parameters:
  proc - the Procedure being called
Parameters:
  argCount - the number of arguments in the call nothing, if the number of arguments is ok
exception:
  WrongArguments - there are too many or toofew actual arguments



getName
public String getName()(Code)



getProperty
public Object getProperty(Object key, Object defaultValue)(Code)



getSetter
public Procedure getSetter()(Code)



maxArgs
final public int maxArgs()(Code)
Maximum number of arguments allowed, or -1 for unlimited.



minArgs
final public int minArgs()(Code)
Minimum number of arguments required.



name
final public String name()(Code)



numArgs
public int numArgs()(Code)
Return minArgs()|(maxArgs<<12).



removeProperty
public Object removeProperty(Object key)(Code)



set0
public void set0(Object result) throws Throwable(Code)



set1
public void set1(Object arg1, Object value) throws Throwable(Code)



setN
public void setN(Object[] args) throws Throwable(Code)



setName
final public void setName(String name)(Code)



setProperty
public synchronized void setProperty(Object key, Object value)(Code)



setProperty
public static Object[] setProperty(Object[] properties, Object key, Object value)(Code)
Given a property list, update it.
Parameters:
  properties - the input property list
Parameters:
  key -
Parameters:
  value - associate this with key in result updated property list (maybe the same as the input)



toString
public String toString()(Code)
Call this Procedure using the explicit-CallContext-convention. The input arguments are (by default) in stack.args; the result is (by default) left in stack.value.



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.