Java Doc for XQuery.java in  » Scripting » Kawa » gnu » xquery » lang » 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 » Kawa » gnu.xquery.lang 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   gnu.expr.Language
      gnu.xquery.lang.XQuery

All known Subclasses:   gnu.kawa.xslt.XSLT,
XQuery
public class XQuery extends Language (Code)
The XQuery language.


Field Summary
final public static  StringDEFAULT_ELEMENT_PREFIX
     Pseudo-namespace "prefix" for the default element namespace.
final public static  StringDEFAULT_FUNCTION_PREFIX
     Pseudo-namespace "prefix" for the default function namespace.
final public static  StringKAWA_FUNCTION_NAMESPACE
    
final public static  StringLOCAL_NAMESPACE
    
final public static  intPARSE_WITH_FOCUS
     Special parser flag used by evalToFocusProc.
final public static  StringQEXO_FUNCTION_NAMESPACE
    
final public static  StringSCHEMA_INSTANCE_NAMESPACE
    
final public static  StringSCHEMA_NAMESPACE
    
final public static  intVARIADIC_FUNCTION_NAMESPACE
    
final public static  StringXHTML_NAMESPACE
    
final public static  StringXQUERY_FUNCTION_NAMESPACE
    
static  booleancharIsInt
    
final public static  Namespace[]defaultFunctionNamespacePath
    
 NamespacedefaultNamespace
    
static  intenvCounter
    
public static  EnvironmentextensionsEnvEnv
     Environment of pre-defined non-standard Qexo/Kawa functions.
public static  QuoteExpfalseExp
    
final public static  ConstantFunction0falseFunction
    
final public static  XQueryinstance
    
final public static  NamespacekawaFunctionNamespace
    
final public static  NamespaceqexoFunctionNamespace
    
public static  QuoteExptrueExp
    
final public static  ConstantFunction0trueFunction
    
static  Object[]typeMap
    
final public static  EnvironmentxqEnvironment
    
final public static  NamespacexqueryFunctionNamespace
    

Constructor Summary
public  XQuery()
    

Method Summary
public  voidapplyWithFocus(Procedure proc, Object item, int position, int size, Consumer out)
     Call a procedure with a given focus (context).
public  ObjectapplyWithFocus(Procedure proc, Object item, int position, int size)
     Call a procedure with a given focus (context).
public  voidapplyWithFocus(Procedure proc, Object values, Consumer out)
     Call a procedure with each item in a sequence as the context item.
Parameters:
  proc - a 3-operand Procedure as returned byevalToFocusProc
Parameters:
  values - a sequence.
public  ObjectapplyWithFocus(Procedure proc, Object values)
     Call a procedure with each item in a sequence as the context item.
Parameters:
  proc - a 3-operand Procedure as returned byevalToFocusProc
Parameters:
  values - a sequence.
public  voidapplyWithFocus$X(Procedure proc, Object values, CallContext ctx)
     Call a procedure with each item in a sequence as the context item.
Parameters:
  proc - a 3-operand Procedure as returned byevalToFocusProc
Parameters:
  values - a sequence.
public static  charasChar(Object x)
    
public static  gnu.math.NumericasNumber(Object arg)
    
public  voiddefine(String name, Object value)
    
protected  voiddefine_method(String name, String cname, String mname)
    
public  ProcedureevalToFocusProc(String expr)
     Parse an XQuery expression that is the body of a procedure.
public  ProcedureevalToFocusProc(Reader in, SourceMessages messages)
     Parse an XQuery expression from a Reader that is the body of a procedure.
public  voidevalWithFocus(Reader in, SourceMessages messages, Object values, Consumer out)
     Evaluate an expression with each item in a sequence as the context item.
public  ObjectevalWithFocus(String expr, Object values)
     Evaluate an expression with each item in a sequence as the context item.
public  ObjectevalWithFocus(String expr, Object item, int position, int size)
     Evaluate an expression with a given focus (context).
public  voidevalWithFocus(Reader in, SourceMessages messages, Object item, int position, int size, Consumer out)
     Evaluate an expression with a given focus (context).
public  voideval_with_focus$X(String expr, Object values, CallContext ctx)
     Evaluate an expression with a given focus (context).
public  voideval_with_focus$X(String expr, Object item, int position, int size, CallContext ctx)
     Evaluate an expression with a given focus (context).
public  StringformatType(Type type)
    
public  CompilationgetCompilation(Lexer lexer, SourceMessages messages)
    
public static  ObjectgetExternal(Symbol name, Object type)
    
public static  XQuerygetInstance()
    
public  gnu.text.LexergetLexer(InPort inp, SourceMessages messages)
    
public  StringgetName()
    
public  intgetNamespaceOf(Declaration decl)
    
public  ConsumergetOutputConsumer(java.io.Writer out)
    
public  ProceduregetPrompter()
    
public static  TypegetStandardType(String name)
    
public  SymbolgetSymbol(String name)
    
public  TypegetTypeFor(String name)
    
public  TypegetTypeFor(Class clas)
    
public  booleanhasNamespace(Declaration decl, int namespace)
    
public  booleanhasSeparateFunctionNamespace()
    
public  booleanisTrue(Object value)
    
public static  StringmakeClassName(String source)
    
static  voidmangle(String name, int start, int length, StringBuffer sbuf, char mode)
     Mangle an XML name as specified by JAXB.
public static  Stringmangle(String name)
    
public static  intnamespaceForFunctions(int argCount)
    
public  booleanparse(Compilation tr, int options)
    
public static  voidregisterEnvironment()
     The compiler insert calls to this method for applications and applets.
public  voidresolve(Compilation comp)
    

Field Detail
DEFAULT_ELEMENT_PREFIX
final public static String DEFAULT_ELEMENT_PREFIX(Code)
Pseudo-namespace "prefix" for the default element namespace.



DEFAULT_FUNCTION_PREFIX
final public static String DEFAULT_FUNCTION_PREFIX(Code)
Pseudo-namespace "prefix" for the default function namespace.



KAWA_FUNCTION_NAMESPACE
final public static String KAWA_FUNCTION_NAMESPACE(Code)



LOCAL_NAMESPACE
final public static String LOCAL_NAMESPACE(Code)



PARSE_WITH_FOCUS
final public static int PARSE_WITH_FOCUS(Code)
Special parser flag used by evalToFocusProc.



QEXO_FUNCTION_NAMESPACE
final public static String QEXO_FUNCTION_NAMESPACE(Code)



SCHEMA_INSTANCE_NAMESPACE
final public static String SCHEMA_INSTANCE_NAMESPACE(Code)



SCHEMA_NAMESPACE
final public static String SCHEMA_NAMESPACE(Code)



VARIADIC_FUNCTION_NAMESPACE
final public static int VARIADIC_FUNCTION_NAMESPACE(Code)



XHTML_NAMESPACE
final public static String XHTML_NAMESPACE(Code)



XQUERY_FUNCTION_NAMESPACE
final public static String XQUERY_FUNCTION_NAMESPACE(Code)



charIsInt
static boolean charIsInt(Code)



defaultFunctionNamespacePath
final public static Namespace[] defaultFunctionNamespacePath(Code)



defaultNamespace
Namespace defaultNamespace(Code)



envCounter
static int envCounter(Code)



extensionsEnvEnv
public static Environment extensionsEnvEnv(Code)
Environment of pre-defined non-standard Qexo/Kawa functions.



falseExp
public static QuoteExp falseExp(Code)



falseFunction
final public static ConstantFunction0 falseFunction(Code)



instance
final public static XQuery instance(Code)



kawaFunctionNamespace
final public static Namespace kawaFunctionNamespace(Code)



qexoFunctionNamespace
final public static Namespace qexoFunctionNamespace(Code)



trueExp
public static QuoteExp trueExp(Code)



trueFunction
final public static ConstantFunction0 trueFunction(Code)



typeMap
static Object[] typeMap(Code)



xqEnvironment
final public static Environment xqEnvironment(Code)



xqueryFunctionNamespace
final public static Namespace xqueryFunctionNamespace(Code)




Constructor Detail
XQuery
public XQuery()(Code)




Method Detail
applyWithFocus
public void applyWithFocus(Procedure proc, Object item, int position, int size, Consumer out) throws Throwable(Code)
Call a procedure with a given focus (context).
Parameters:
  proc - a 3-operand Procedure as returned byevalToFocusProc
Parameters:
  item - the context item, passed as the first argument to proc
Parameters:
  position - the context position, passed as the second argument
Parameters:
  size - the context size, passed as the second argument
Parameters:
  out - where to send the result of proc



applyWithFocus
public Object applyWithFocus(Procedure proc, Object item, int position, int size) throws Throwable(Code)
Call a procedure with a given focus (context).
Parameters:
  proc - a 3-operand Procedure as returned byevalToFocusProc
Parameters:
  item - the context item, passed as the first argument to proc
Parameters:
  position - the context position, passed as the second argument
Parameters:
  size - the context size, passed as the second argument the result of applying proc



applyWithFocus
public void applyWithFocus(Procedure proc, Object values, Consumer out) throws Throwable(Code)
Call a procedure with each item in a sequence as the context item.
Parameters:
  proc - a 3-operand Procedure as returned byevalToFocusProc
Parameters:
  values - a sequence. The proc is called once for eachitem, with the item as the first argument, a 1-based index as thesecond argument, and the sequence size as the third argument.
Parameters:
  out - where to send the result of proc



applyWithFocus
public Object applyWithFocus(Procedure proc, Object values) throws Throwable(Code)
Call a procedure with each item in a sequence as the context item.
Parameters:
  proc - a 3-operand Procedure as returned byevalToFocusProc
Parameters:
  values - a sequence. The proc is called once for eachitem, with the item as the first argument, a 1-based index as thesecond argument, and the sequence size as the third argument. the result of applying proc



applyWithFocus$X
public void applyWithFocus$X(Procedure proc, Object values, CallContext ctx) throws Throwable(Code)
Call a procedure with each item in a sequence as the context item.
Parameters:
  proc - a 3-operand Procedure as returned byevalToFocusProc
Parameters:
  values - a sequence. The proc is called once for eachitem, with the item as the first argument, a 1-based index as thesecond argument, and the sequence size as the third argument.
Parameters:
  ctx - the CallContext. The $X in themethod name tells Kawa that this argument is implicit when invokedfrom XQuery.



asChar
public static char asChar(Object x)(Code)



asNumber
public static gnu.math.Numeric asNumber(Object arg)(Code)



define
public void define(String name, Object value)(Code)



define_method
protected void define_method(String name, String cname, String mname)(Code)



evalToFocusProc
public Procedure evalToFocusProc(String expr) throws Throwable(Code)
Parse an XQuery expression that is the body of a procedure. Helper method used by evalWithFocus methods.
Parameters:
  expr - an XQuery expression (query) to evaluate a 3-operand Procedure whose arguments becomethe context item, position, and size.



evalToFocusProc
public Procedure evalToFocusProc(Reader in, SourceMessages messages) throws Throwable(Code)
Parse an XQuery expression from a Reader that is the body of a procedure. Helper method used by evalWithFocus methods.
Parameters:
  in - where we read the expression from
Parameters:
  messages - where to write syntax errors a 3-operand Procedure whose arguments becomethe context item, position, and size.



evalWithFocus
public void evalWithFocus(Reader in, SourceMessages messages, Object values, Consumer out) throws Throwable(Code)
Evaluate an expression with each item in a sequence as the context item.
Parameters:
  in - where we read the expression from
Parameters:
  messages - where to write syntax errors
Parameters:
  values - becomes the context sequence whileevaluating expr.
Parameters:
  out - where to send the result of the expression



evalWithFocus
public Object evalWithFocus(String expr, Object values) throws Throwable(Code)
Evaluate an expression with each item in a sequence as the context item.
Parameters:
  expr - an XQuery expression (query) to evaluate
Parameters:
  values - becomes the context sequence whileevaluating the expression the result of evaluating the expression



evalWithFocus
public Object evalWithFocus(String expr, Object item, int position, int size) throws Throwable(Code)
Evaluate an expression with a given focus (context).
Parameters:
  expr - an XQuery expression (query) to evaluate
Parameters:
  item - becomes the context item while evaluating expr.
Parameters:
  position - becomes the context position
Parameters:
  size - becomes the context size the result of evaluating expr



evalWithFocus
public void evalWithFocus(Reader in, SourceMessages messages, Object item, int position, int size, Consumer out) throws Throwable(Code)
Evaluate an expression with a given focus (context).
Parameters:
  in - where we read the expression from
Parameters:
  messages - where to write syntax errors
Parameters:
  item - becomes the context item while evaluating the expression
Parameters:
  position - becomes the context position
Parameters:
  size - becomes the context size
Parameters:
  out - where to send the result of the expression



eval_with_focus$X
public void eval_with_focus$X(String expr, Object values, CallContext ctx) throws Throwable(Code)
Evaluate an expression with a given focus (context). Similar to evalWithFocus(String, Object, Consumer). The "$X" in the method name tells the Kawa compiler that the CallContext argument is implicit, so it can be invoked from XQuery code thus: XQuery:eval-with-focus($xquery, "expr", $sequence)



eval_with_focus$X
public void eval_with_focus$X(String expr, Object item, int position, int size, CallContext ctx) throws Throwable(Code)
Evaluate an expression with a given focus (context). Similar to evalWithFocus(String, Object, int, int, Consumer). The "$X" in the method name tells the Kawa compiler that the CallContext argument is implicit, so it can be invoked from XQuery code thus: XQuery:eval-with-focus($xquery, "expr", $item, $pos, $size)



formatType
public String formatType(Type type)(Code)



getCompilation
public Compilation getCompilation(Lexer lexer, SourceMessages messages)(Code)



getExternal
public static Object getExternal(Symbol name, Object type)(Code)



getInstance
public static XQuery getInstance()(Code)



getLexer
public gnu.text.Lexer getLexer(InPort inp, SourceMessages messages)(Code)



getName
public String getName()(Code)



getNamespaceOf
public int getNamespaceOf(Declaration decl)(Code)



getOutputConsumer
public Consumer getOutputConsumer(java.io.Writer out)(Code)



getPrompter
public Procedure getPrompter()(Code)



getStandardType
public static Type getStandardType(String name)(Code)



getSymbol
public Symbol getSymbol(String name)(Code)



getTypeFor
public Type getTypeFor(String name)(Code)



getTypeFor
public Type getTypeFor(Class clas)(Code)



hasNamespace
public boolean hasNamespace(Declaration decl, int namespace)(Code)



hasSeparateFunctionNamespace
public boolean hasSeparateFunctionNamespace()(Code)



isTrue
public boolean isTrue(Object value)(Code)



makeClassName
public static String makeClassName(String source)(Code)



mangle
static void mangle(String name, int start, int length, StringBuffer sbuf, char mode)(Code)
Mangle an XML name as specified by JAXB.



mangle
public static String mangle(String name)(Code)



namespaceForFunctions
public static int namespaceForFunctions(int argCount)(Code)



parse
public boolean parse(Compilation tr, int options) throws java.io.IOException, gnu.text.SyntaxException(Code)



registerEnvironment
public static void registerEnvironment()(Code)
The compiler insert calls to this method for applications and applets.



resolve
public void resolve(Compilation comp)(Code)



Fields inherited from gnu.expr.Language
final public static int FUNCTION_NAMESPACE(Code)(Java Doc)
final public static int NAMESPACE_PREFIX_NAMESPACE(Code)(Java Doc)
final public static int PARSE_IMMEDIATE(Code)(Java Doc)
final public static int PARSE_ONE_LINE(Code)(Java Doc)
final public static int PARSE_PROLOG(Code)(Java Doc)
final public static int VALUE_NAMESPACE(Code)(Java Doc)
final protected static ThreadLocation current(Code)(Java Doc)
protected static int env_counter(Code)(Java Doc)
protected Environment environ(Code)(Java Doc)
public static boolean requirePedantic(Code)(Java Doc)
protected Environment userEnv(Code)(Java Doc)

Methods inherited from gnu.expr.Language
final public Type asType(Object spec)(Code)(Java Doc)
public Object booleanObject(boolean b)(Code)(Java Doc)
public Object coerceFromObject(Class clas, Object obj)(Code)(Java Doc)
public Object coerceToObject(Class clas, Object obj)(Code)(Java Doc)
public Object coerceToObject(int val)(Code)(Java Doc)
public Declaration declFromField(ModuleExp mod, Object fvalue, Field fld)(Code)(Java Doc)
protected void defAliasStFld(String name, String cname, String fname)(Code)(Java Doc)
protected void defProcStFld(String name, String cname, String fname)(Code)(Java Doc)
protected void defProcStFld(String name, String cname)(Code)(Java Doc)
public void define(String sym, Object p)(Code)(Java Doc)
final public void defineFunction(Named proc)(Code)(Java Doc)
public void defineFunction(String name, Object proc)(Code)(Java Doc)
public static Language detect(InputStream in) throws IOException(Code)(Java Doc)
public static Language detect(InPort port) throws IOException(Code)(Java Doc)
public static Language detect(String line)(Code)(Java Doc)
public void emitCoerceToBoolean(CodeAttr code)(Code)(Java Doc)
public void emitPushBoolean(boolean value, CodeAttr code)(Code)(Java Doc)
final public Object eval(String string) throws Throwable(Code)(Java Doc)
final public Object eval(Reader in) throws Throwable(Code)(Java Doc)
final public Object eval(InPort port) throws Throwable(Code)(Java Doc)
final public void eval(String string, Writer out) throws Throwable(Code)(Java Doc)
final public void eval(String string, PrintConsumer out) throws Throwable(Code)(Java Doc)
final public void eval(String string, Consumer out) throws Throwable(Code)(Java Doc)
final public void eval(Reader in, Writer out) throws Throwable(Code)(Java Doc)
public void eval(Reader in, Consumer out) throws Throwable(Code)(Java Doc)
public void eval(InPort port, CallContext ctx) throws Throwable(Code)(Java Doc)
public String formatType(Type type)(Code)(Java Doc)
public Compilation getCompilation(Lexer lexer, SourceMessages messages)(Code)(Java Doc)
public static Language getDefaultLanguage()(Code)(Java Doc)
public Object getEnvPropertyFor(java.lang.reflect.Field fld, Object value)(Code)(Java Doc)
public Object getEnvPropertyFor(Declaration decl)(Code)(Java Doc)
final public Environment getEnvironment()(Code)(Java Doc)
public AbstractFormat getFormat(boolean readable)(Code)(Java Doc)
public static Language getInstance(String name)(Code)(Java Doc)
public static Language getInstance(String langName, Class langClass)(Code)(Java Doc)
public static Language getInstanceFromFilenameExtension(String filename)(Code)(Java Doc)
public Environment getLangEnvironment()(Code)(Java Doc)
final public Type getLangTypeFor(Type type)(Code)(Java Doc)
public static String[][] getLanguages()(Code)(Java Doc)
abstract public Lexer getLexer(InPort inp, SourceMessages messages)(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public int getNamespaceOf(Declaration decl)(Code)(Java Doc)
final public Environment getNewEnvironment()(Code)(Java Doc)
public Consumer getOutputConsumer(Writer out)(Code)(Java Doc)
public Procedure getPrompter()(Code)(Java Doc)
public Symbol getSymbol(String name)(Code)(Java Doc)
public Type getTypeFor(Class clas)(Code)(Java Doc)
public Type getTypeFor(String name)(Code)(Java Doc)
final public Type getTypeFor(Object spec, boolean lenient)(Code)(Java Doc)
final public Type getTypeFor(Expression exp)(Code)(Java Doc)
public Type getTypeFor(Expression exp, boolean lenient)(Code)(Java Doc)
public boolean hasNamespace(Declaration decl, int namespace)(Code)(Java Doc)
public boolean hasSeparateFunctionNamespace()(Code)(Java Doc)
public boolean isTrue(Object value)(Code)(Java Doc)
public void loadClass(String name) throws java.lang.ClassNotFoundException(Code)(Java Doc)
public Object lookup(String name)(Code)(Java Doc)
public NamedLocation lookupBuiltin(Symbol name, Object property, int hash)(Code)(Java Doc)
public Object noValue()(Code)(Java Doc)
final public Compilation parse(InPort port, gnu.text.SourceMessages messages, int options) throws java.io.IOException, gnu.text.SyntaxException(Code)(Java Doc)
final public Compilation parse(InPort port, gnu.text.SourceMessages messages, ModuleInfo info) throws java.io.IOException, gnu.text.SyntaxException(Code)(Java Doc)
final public Compilation parse(Lexer lexer, int options, ModuleInfo info) throws java.io.IOException, gnu.text.SyntaxException(Code)(Java Doc)
abstract public boolean parse(Compilation comp, int options) throws java.io.IOException, gnu.text.SyntaxException(Code)(Java Doc)
public static void registerLanguage(String[] langMapping)(Code)(Java Doc)
public void resolve(Compilation comp)(Code)(Java Doc)
public void runAsApplication(String[] args)(Code)(Java Doc)
public static void setDefaultLanguage(Language language)(Code)(Java Doc)
public static synchronized void setDefaults(Language lang)(Code)(Java Doc)
public static Type string2Type(String name)(Code)(Java Doc)

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.