2
edits
Changes
1
{{Ecl_menu}}__NOTOC__
This lab example allows you to understand the process of building a BlackBerry application using '''Java Plug-in for Eclipse'''
Step 1. File->New->Others->BlackBerry Project
''Note: If you want really to learn how to build a BB app, then in the wizard choose the Empty Application option.''
The structure of BB project will be defined, but as the level on code generation, one will get only an empty Java app, with a code similar with this:
<source lang="java">
package mypackage;
public class MyApp{
/**
* Entry point for application
* @param args Command line arguments (not used)
*/
public static void main(String[] args){
}
}
</source>
This lab example allows you to understand the process of building a BlackBerry application using '''Java Plug-in for Eclipse'''
Step 1. File->New->Others->BlackBerry Project
''Note: If you want really to learn how to build a BB app, then in the wizard choose the Empty Application option.''
The structure of BB project will be defined, but as the level on code generation, one will get only an empty Java app, with a code similar with this:
<source lang="java">
package mypackage;
public class MyApp{
/**
* Entry point for application
* @param args Command line arguments (not used)
*/
public static void main(String[] args){
}
}
</source>