Uses of Class
net.sf.jaxme.js.JavaMethod

Packages that use JavaMethod
net.sf.jaxme.js   
net.sf.jaxme.js.pattern The pattern package This package contains a set of design patterns implemented with the JaxMe JavaSource generator framework.  
 

Uses of JavaMethod in net.sf.jaxme.js
 

Methods in net.sf.jaxme.js that return JavaMethod
 JavaMethod[] JavaSource.getMethods()
          Returns the list of methods that this class has.
 JavaMethod JavaSource.getMethod(java.lang.String pMethodName, JavaQName[] pParams)
          Returns the method with the given signature or null, if there is no such method.
 JavaMethod JavaSource.newJavaMethod(java.lang.String pName, java.lang.String pType)
          Creates a new JavaMethod with the given name, return type and default protection.
 JavaMethod JavaSource.newJavaMethod(java.lang.String pName, java.lang.String pType, JavaSource.Protection pProtection)
          Creates a new JavaMethod with the given name, return type and protection.
 JavaMethod JavaSource.newJavaMethod(java.lang.String pName, java.lang.String pType, java.lang.String pProtection)
          Creates a new JavaMethod with the given name, return type and protection.
 JavaMethod JavaSource.newJavaMethod(java.lang.String pName, JavaQName pType)
          Creates a new JavaMethod with the given name, return type and default protection.
 JavaMethod JavaSource.newJavaMethod(java.lang.String pName, JavaQName pType, JavaSource.Protection pProtection)
          Creates a new JavaMethod with the given name, return type and protection.
 JavaMethod JavaSource.newJavaMethod(java.lang.String pName, JavaQName pType, java.lang.String pProtection)
          Creates a new JavaMethod with the given name, return type and protection.
 JavaMethod JavaSource.newJavaMethod(java.lang.String pName, java.lang.Class pType)
          Creates a new JavaMethod with the given name, return type and default protection.
 JavaMethod JavaSource.newJavaMethod(java.lang.String pName, java.lang.Class pType, JavaSource.Protection pProtection)
          Creates a new JavaMethod with the given name, return type and protection.
 JavaMethod JavaSource.newJavaMethod(java.lang.String pName, java.lang.Class pType, java.lang.String pProtection)
          Creates a new JavaMethod with the given name, return type and protection.
 JavaMethod JavaSource.newJavaMethod(java.lang.reflect.Method pMethod)
          Creates a new JavaMethod with the signature of the given method pMethod.
 JavaMethod JavaSource.newJavaMethod(JavaMethod pMethod)
          Creates a new JavaMethod with the given methods name and signature.
 

Methods in net.sf.jaxme.js with parameters of type JavaMethod
 JavaMethod JavaSource.newJavaMethod(JavaMethod pMethod)
          Creates a new JavaMethod with the given methods name and signature.
 

Uses of JavaMethod in net.sf.jaxme.js.pattern
 

Methods in net.sf.jaxme.js.pattern that return JavaMethod
protected  JavaMethod VersionGenerator.getInsertRowMethod(JavaSource pSource, VersionGenerator.TableInfo pTableInfo)
          Creates a method for cloning one row from the given table.
protected  JavaMethod VersionGenerator.getInnerInsertRowMethod(JavaSource pSource, VersionGenerator.TableInfo pTableInfo)
          Creates a method for cloning one row from the given table.
protected  JavaMethod VersionGenerator.getPublicCloneMethod(JavaSource pSource)
          Actually creates the public "clone" method.
 JavaMethod VersionGenerator.getCloneMethod(JavaSource pSource)
          Creates a method for updating one row in the head table.
protected  JavaMethod ProxyGenerator.getInterfaceMethod(JavaSource pJs, ProxyGenerator.InterfaceDescription pInterfaceDescription, java.lang.reflect.Method pMethod)
          Generated an instance of JavaMethod for the given ProxyGenerator.GeneratedMethod.
 JavaMethod ProxyGenerator.GeneratedMethod.getMethod()
          Returns the JavaMethod generated for this method.
 

Methods in net.sf.jaxme.js.pattern with parameters of type JavaMethod
protected  void VersionGenerator.logEntering(JavaMethod pMethod, java.lang.Object pValues)
          Creates code for logging the entrance into a method with fine level.
protected  void VersionGenerator.logFinestEntering(JavaMethod pMethod, java.lang.Object pValues)
          Creates code for logging the entrance into a method with finest level.
protected  void VersionGenerator.logExiting(JavaMethod pMethod, java.lang.Object pValues)
          Creates code for logging the exit from a method with fine level.
protected  void VersionGenerator.logFinestExiting(JavaMethod pMethod, java.lang.Object pValues)
          Creates code for logging the exit from a method with fine level.
protected  void VersionGenerator.logFinest(JavaMethod pMethod, java.lang.Object pMsg, java.lang.Object pValues)
          Creates code for logging a message with finest level.
protected  void VersionGenerator.setResultSetValue(JavaMethod pMethod, Column pColumn, DirectAccessible pResultSet, int pColumnNum, java.lang.Object pTarget)
          Generates code for reading a ResultSet's column.
protected  void VersionGenerator.setPreparedStatementValue(JavaMethod pMethod, Column pColumn, java.lang.Object pStmt, java.lang.Object pParamNum, java.lang.Object pValue)
          Generates code for setting a PreparedStatement's parameter.
protected  void VersionGenerator.getSelectRowsCode(JavaMethod pMethod, VersionGenerator.TableInfo pTableInfo, ColumnSet pColumnSet, DirectAccessible pConn, DirectAccessible pMap, DirectAccessible pValues, boolean pReturnValue)
          Generates code for reading all rows matching the given key.
protected  LocalJavaField VersionGenerator.getCacheDataClassInstance(JavaMethod pMethod, VersionGenerator.TableInfo pTableInfo, ColumnSet pColumnSet, DirectAccessible pValues)
          Creates an instance of the inner class CacheData by reading the key from the given row.
protected  void VersionGenerator.getApplyCacheData(JavaMethod pMethod, VersionGenerator.TableInfo pTableInfo, ColumnSet pColumnSet, DirectAccessible pRow, DirectAccessible pData)
          Updates a row by reading the values from an instance of the inner class CacheData.
 void VersionGenerator.ColumnUpdater.update(JavaMethod pMethod, VersionGenerator.TableInfo pTableInfo, DirectAccessible pConnection, DirectAccessible pMap, DirectAccessible pRow)
          Generates code for updating a table row.
 void ProxyGenerator.GeneratedMethod.setMethod(JavaMethod pMethod)
          Sets the JavaMethod generated for this method.