Java Doc for InboundContext.java in  » Ajax » dwr » org » directwebremoting » extend » 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 » Ajax » dwr » org.directwebremoting.extend 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.directwebremoting.extend.InboundContext

InboundContext
final public class InboundContext (Code)
InboundContext is the context for set of inbound conversions. Since a data set may be recursive parts of some data members may refer to others so we need to keep track of who is converted for what.
author:
   Joe Walker [joe at getahead dot ltd dot uk]

Inner Class :protected static class Conversion



Method Summary
public  voidaddConverted(InboundVariable iv, Class type, Object bean)
    
public  voidclearConverted()
     Clear the list of converted objects.
public  voidcreateInboundVariable(int callNum, String key, String type, String value)
     Create an inbound variable.
public  voidcreateInboundVariable(int callNum, String key, String type, FormField value)
     Create an inbound file variable.
public  voiddereference()
     When we are sure we have finished parsing the input, we can begin to fix all cross-references.
public  ObjectgetConverted(InboundVariable iv, Class type)
    
public  TypeHintContextgetCurrentTypeHintContext()
    
public  InboundVariablegetInboundVariable(String name)
    
public  Iterator<String>getInboundVariableNames()
    
public  InboundVariablegetParameter(int callNum, int index)
    
public  intgetParameterCount()
    
public  intgetParameterCount(int callNum)
    
public  voidpopContext()
     Someone wants to tell us about a finished conversion context.
public  voidpushContext(TypeHintContext context)
     Someone wants to tell us about a new conversion context.
public  StringtoString()
    



Method Detail
addConverted
public void addConverted(InboundVariable iv, Class type, Object bean)(Code)
Add to the (temporary) list of converted objects
Parameters:
  iv - The converted object
Parameters:
  type - The type that we converted the object to
Parameters:
  bean - The converted version



clearConverted
public void clearConverted()(Code)
Clear the list of converted objects. If the conversion attempt for a given method failed, we may want to try another so we will need to ditch the list of converted objects because the next method could well have different parameter types.



createInboundVariable
public void createInboundVariable(int callNum, String key, String type, String value)(Code)
Create an inbound variable. Usually called by a query parser to setup a list of known variables. This method also checks to see if the new variable is a parameter and if it is it updates the count of parameters
Parameters:
  callNum - The call number to work on
Parameters:
  key - The name of the variable
Parameters:
  type - The javascript type of the variable
Parameters:
  value - The value of the variable



createInboundVariable
public void createInboundVariable(int callNum, String key, String type, FormField value)(Code)
Create an inbound file variable. Usually called by a query parser to setup a list of known variables. This method also checks to see if the new variable is a parameter and if it is it updates the count of parameters
Parameters:
  callNum - The call number to work on
Parameters:
  key - The name of the variable
Parameters:
  type - The javascript type of the variable
Parameters:
  value - The value of the file



dereference
public void dereference() throws MarshallException(Code)
When we are sure we have finished parsing the input, we can begin to fix all cross-references.
throws:
  MarshallException - If cross-references don't add up



getConverted
public Object getConverted(InboundVariable iv, Class type)(Code)
Check to see if the conversion has already been done
Parameters:
  iv - The inbound data to check
Parameters:
  type - The type that we want the object converted to The converted data or null if it has not been converted



getCurrentTypeHintContext
public TypeHintContext getCurrentTypeHintContext()(Code)
The method that we are currently converting data for



getInboundVariable
public InboundVariable getInboundVariable(String name)(Code)
Internal method to allow entries to resolve references
Parameters:
  name - The name of the variable to lookup The found variable



getInboundVariableNames
public Iterator<String> getInboundVariableNames()(Code)
A debug method so people can get a list of all the variable names an iterator over the known variable names



getParameter
public InboundVariable getParameter(int callNum, int index)(Code)
Get a parameter by index
Parameters:
  callNum - The call number to work on
Parameters:
  index - The parameter index The found parameter



getParameterCount
public int getParameterCount()(Code)
How many parameters are there? The parameter count



getParameterCount
public int getParameterCount(int callNum)(Code)
This is a bit of a hack, needed for debug purposes - it counts the parameters (including method and script params) for a given call number
Parameters:
  callNum - The Call number to count the parameters of The parameter count for a given Call



popContext
public void popContext()(Code)
Someone wants to tell us about a finished conversion context.



pushContext
public void pushContext(TypeHintContext context)(Code)
Someone wants to tell us about a new conversion context.
Parameters:
  context - The current conversion context



toString
public String toString()(Code)



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.