Source Code Cross Referenced for Function.java in  » Database-ORM » MMBase » org » mmbase » util » functions » 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 » Database ORM » MMBase » org.mmbase.util.functions 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:
03:        This software is OSI Certified Open Source Software.
04:        OSI Certified is a certification mark of the Open Source Initiative.
05:
06:        The license (Mozilla version 1.0) can be read at the MMBase site.
07:        See http://www.MMBase.org/license
08:
09:         */
10:        package org.mmbase.util.functions;
11:
12:        import java.util.*;
13:
14:        /**
15:         * A representation of a piece of functionality (a 'function'). A function has a name, a
16:         * return type, and a parameter-definition (which is a {@link Parameter} array).
17:         *
18:         * The goal of a Function object is to call its {@link #getFunctionValue(Parameters)} method, which
19:         * executes it, given the specified parameters.
20:         *
21:         * @author Pierre van Rooden
22:         * @author Daniel Ockeloen
23:         * @author Michiel Meeuwissen
24:         * @version $Id: Function.java,v 1.10 2006/09/27 20:42:21 michiel Exp $
25:         * @since MMBase-1.7
26:         * @see Parameter
27:         * @see Parameters
28:         */
29:        public interface Function<R> {
30:            /**
31:             * Creates an empty 'Parameters'  object for you, which you have to fill and feed back to getFunctionValue
32:             * @see #getFunctionValue(Parameters)
33:             */
34:            public Parameters createParameters();
35:
36:            /**
37:             * Executes the defined function supplying the given arguments.
38:             * @see #createParameters
39:             * @param parameters The parameters for the function. To specify an empty parameter list use {@link Parameters#VOID}.
40:             *                   Implementors are encouraged to support <code>null</code> too.
41:             * @return The function value, which can be of any type compatible to {@link #getReturnType}
42:             */
43:            public R getFunctionValue(Parameters parameters);
44:
45:            /**
46:             * Executes the defined function supplying the given List of arguments.
47:             * This is a convenience method, as the List is mapped to a Parameters type and passed to {@link  #getFunctionValue(Parameters)}.
48:             * @param parameters The parameters for the function. To specify an empty parameter list use {@link Parameters#VOID}.
49:             *
50:             * @return The function value, which can be of any type compatible to {@link #getReturnType}
51:             */
52:            public R getFunctionValueWithList(List<?> parameters);
53:
54:            /**
55:             * @since MMBase-1.9
56:             */
57:            public R getFunctionValue(Object... parameters);
58:
59:            /**
60:             * For documentational  purposes a function object needs a description too.
61:             */
62:            public void setDescription(String description);
63:
64:            /**
65:             * @see #setDescription(String)
66:             */
67:            public String getDescription();
68:
69:            /**
70:             * A function <em>must</em> have a name. This is the name which was used to aquire the function object.
71:             * @return The function's name, never <code>null</code>
72:             */
73:            public String getName();
74:
75:            /**
76:             * @return The currently set Parameter definition array, or <code>null</code> if not set already.
77:             */
78:            public Parameter<?>[] getParameterDefinition();
79:
80:            /**
81:             * A function object is of no use, as long as it lacks a definition.
82:             * @param params An array of Parameter objects.
83:             * @throws IllegalStateException if there was already set a parameter definition for this function object.
84:             */
85:            public void setParameterDefinition(Parameter<?>[] params);
86:
87:            /**
88:             * @return The return type of the function's result value, or <code>null</code> if unknown.
89:             */
90:            public ReturnType<R> getReturnType();
91:
92:            /**
93:             * Sets the return type of the function's result value.
94:             * @param type A ReturnType object. For void functions that could be {@link ReturnType#VOID}.
95:             * @throws IllegalStateException if there was already set a return type for this function object.
96:             */
97:            public void setReturnType(ReturnType<R> type);
98:
99:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.