Java Doc for GenIC.java in  » J2EE » JOnAS-4.8.6 » org » objectweb » jonas_ejb » genic » 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 » J2EE » JOnAS 4.8.6 » org.objectweb.jonas_ejb.genic 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.objectweb.jonas_ejb.genic.GenIC

GenIC
public class GenIC (Code)
This class allows to generate:
  • the classes that implements the Enterprise bean's remote interface,
  • the classes that implements the Enterprise bean's home interface,
  • the classes that implements the Handles of the Entity beans,
  • the classes that implements the persistence of the Entity beans with CMP,
of all the Enterprise Java Beans defined in the given Deployment Descriptor.
author:
   Helene Joanin : Initial developer
author:
   Christophe Ney (Lutris Technologies) : Fix to handle arguments containing white spaces.
author:
   Guillaume Riviere : Fix the addClassesInJar() method (on David, the Stub/Skel classes names are different).
author:
   Dean Jennings : Remove System Exit (called now from server)
author:
   Sami Lehtinen : use of java.util.jar api instead of jar command



Constructor Summary
public  GenIC(DeploymentDesc ejbJarDesc, GenICParameters gp)
    

Method Summary
public  voidaddClassesInJar()
     Add the generated classes in the given ejb-jar file.
public  voidclean()
     Clean the intermediate generated files.
public  voidcompilClasses(String classpath)
     Compiles the java sources generated by the constructor I.e.
protected  StringconvertName(String name)
    
static  StringcreateTempDir()
     Create a cleaned temporary directory.
static  voiderror(String msg)
     Display the specified error message.
static  voidfatalError(String msg, Exception e)
     Display the specified error message and exits with an EXIT_FAILURE status.
static  voidfatalError(Exception e)
     Display the specified error message and exits with an EXIT_FAILURE status.
static  voidgetFilesList(String dir, ArrayList list, boolean onlyClass)
    
static  voidinfo(String msg)
     Display the specified message.
public static  voidmain(String[] args)
     GenIC allows to generate the container classes for JOnAS for the given Enterprise Java Beans.
static  voidprintException(Exception e, PrintStream out)
     Display the exception and its nested exception if exists, on the given printstream.
 voidtrace(String msg)
     Display the specified message only if verbose.
static  voidusage()
    
static  voidwarning(String msg)
     Display the specified warning message.


Constructor Detail
GenIC
public GenIC(DeploymentDesc ejbJarDesc, GenICParameters gp) throws GenICException(Code)
GenIC Constructor: generates the container classes sources of each beans
Parameters:
  ejbJarDesc - deployment descriptors of the beans
Parameters:
  gp - GenIC parameters
throws:
  GenICException - In error case




Method Detail
addClassesInJar
public void addClassesInJar() throws GenICException(Code)
Add the generated classes in the given ejb-jar file.
throws:
  GenICException - if the classes cannot be added in the jar file



clean
public void clean()(Code)
Clean the intermediate generated files.



compilClasses
public void compilClasses(String classpath) throws GenICException(Code)
Compiles the java sources generated by the constructor I.e. :
  • compile the classes via javac,
  • create the stubs and skeletons for the protocols supported(RMI/JRMP, RMI/IIOP,JEREMIE) via rmic/jrmic

Parameters:
  classpath - classpath value
exception:
  GenICException - In error case



convertName
protected String convertName(String name)(Code)
Convert a name from any format in Jar filename format
Parameters:
  name - filename to be converted converted filename



createTempDir
static String createTempDir() throws IOException(Code)
Create a cleaned temporary directory. the temp directory file name
throws:
  IOException - if a temp directory cannot be created.



error
static void error(String msg)(Code)
Display the specified error message.
Parameters:
  msg - the error message to display



fatalError
static void fatalError(String msg, Exception e)(Code)
Display the specified error message and exits with an EXIT_FAILURE status.
Parameters:
  msg - the error message to display
Parameters:
  e - the exception raised



fatalError
static void fatalError(Exception e)(Code)
Display the specified error message and exits with an EXIT_FAILURE status.
Parameters:
  e - the error to display



getFilesList
static void getFilesList(String dir, ArrayList list, boolean onlyClass)(Code)
Get the list file names recursively of the given directory
Parameters:
  dir - the directory used to list files
Parameters:
  list - list to store filenames
Parameters:
  onlyClass - stores only class or not ?



info
static void info(String msg)(Code)
Display the specified message.
Parameters:
  msg - the message to display



main
public static void main(String[] args)(Code)
GenIC allows to generate the container classes for JOnAS for the given Enterprise Java Beans.

Usage: java org.objectweb.jonas_ejb.genic.GenIC -help
to print this help message

or java org.objectweb.jonas_ejb.genic.GenIC
to generate the container classes for the given EJBs.

Options include:

  • -d specify where to place the generated files
  • -noaddinjar do not add the generated classes in the given ejb-jar file
  • -classpath define the classpath to be used to compile classes
  • -nocompil do not compile the generated source files via the java and rmi compilers
  • -novalidation parse the XML deployment descriptors without validation
  • -javac specify the name of the java compiler to use
  • -javacopts specify the options to pass to the java compiler
  • -rmicopts specify the options to pass to the rmi compiler
  • -protocols list of protocol, separated by comma
  • -keepgenerated do not delete intermediate generated source files
  • -verbose
  • -invokecmd invoke, in some case, directly the method of the java class corresponding to the command

Input_File file name of the standard deployment descriptor (.xml ended), or file name of the EJB-jar (.jar ended).
Parameters:
  args - arguments for GenIC




printException
static void printException(Exception e, PrintStream out)(Code)
Display the exception and its nested exception if exists, on the given printstream.
Parameters:
  e - the exception to display
Parameters:
  out - the PrintStream on which the exception has to displayed



trace
void trace(String msg)(Code)
Display the specified message only if verbose.
Parameters:
  msg - the message to display



usage
static void usage()(Code)
Display the usage



warning
static void warning(String msg)(Code)
Display the specified warning message.
Parameters:
  msg - the warning message to display



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.