Uses of Class
org.codehaus.modello.generator.java.javasource.JSourceCode

Packages that use JSourceCode
org.codehaus.modello.generator.java.javasource   
 

Uses of JSourceCode in org.codehaus.modello.generator.java.javasource
 

Fields in org.codehaus.modello.generator.java.javasource declared as JSourceCode
private  JSourceCode JConstructor.sourceCode
           
private  JSourceCode JClass._staticInitializer
          The source code for static initialization
private  JSourceCode JMethod.source
          The source code for this method
 

Methods in org.codehaus.modello.generator.java.javasource that return JSourceCode
 JSourceCode JConstructor.getSourceCode()
           
 JSourceCode JClass.getStaticInitializationCode()
          Returns the JSourceCode for the static initializer of this JClass
 JSourceCode JMethod.getSourceCode()
          Returns the JSourceCode for the method body.
 

Methods in org.codehaus.modello.generator.java.javasource with parameters of type JSourceCode
 void JSourceCode.copyInto(JSourceCode jsc)
          Copies the contents of this JSourceCode into the given JSourceCode
 void JConstructor.setSourceCode(JSourceCode sourceCode)
           
 void JMethod.setSourceCode(JSourceCode source)
          Sets the given JSourceCode as the source code (method body) for this JMethod.