Java Doc for CLDCPlatformDescriptor.java in  » IDE-Netbeans » api » org » netbeans » spi » mobility » cldcplatform » 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 » IDE Netbeans » api » org.netbeans.spi.mobility.cldcplatform 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.spi.mobility.cldcplatform.CLDCPlatformDescriptor

CLDCPlatformDescriptor
final public class CLDCPlatformDescriptor (Code)
CLDCPlatformDescriptor is used to describe a platform detected by CustomCLDCPlatformConfigurator. This class is only a holder of information about platform type, devices, classpath, command lines, etc...
author:
   Adam Sotona

Inner Class :public static enum ProfileType
Inner Class :final public static class Device
Inner Class :final public static class Profile
Inner Class :final public static class Screen

Field Summary
final public  StringdebugCmd
     Definition of debug command line is mandatory for CUSTOM platofrm type.
final public  List<Device>devices
     Fixed list of CLDCPlatformDescriptor.Device instances that describe platform devices.
final public  StringdisplayName
     Display name of the platform.
final public  StringdocPath
     Comma-separated list of platform JavaDoc roots (might also include zip and jar files with the platform JavaDoc).
final public  Stringhome
     Home directory of the platform.
final public  StringpreverifyCmd
     Definition of preverify command line is mandatory for CUSTOM platofrm type.
final public  StringrunCmd
     Definition of run command line is mandatory for CUSTOM platofrm type.
final public  StringsrcPath
     Comma-separated list of platform source roots.
final public  Stringtype
     Type of the platform (currently supported types are UEI-1.0, UEI-1.0.1, and CUSTOM).

Constructor Summary
public  CLDCPlatformDescriptor(String displayName, String home, String type, String srcPath, String docPath, String preverifyCmd, String runCmd, String debugCmd, List<Device> devices)
     Creates a new instance of CLDCPlatformDescriptor
Parameters:
  displayName - Display name of the platform.The argument is mandatory.
Parameters:
  home - Home directory of the platform.The argument is mandatory.
Parameters:
  type - Type of the platform (currently supported types are UEI-1.0, UEI-1.0.1, and CUSTOM).It is likely that CustomCLDCPlatformConfgigurator will provide CUSTOM platform type with all the necessary information to use the platform.The argument is mandatory.
Parameters:
  srcPath - Comma-separated list of platform source roots.


Field Detail
debugCmd
final public String debugCmd(Code)
Definition of debug command line is mandatory for CUSTOM platofrm type. For other then CUSTOM platform types is this field ignored. Sample debug command line for UEI compatible platforms is: "{platformhome}{/}bin{/}emulator" {device|-Xdevice:"{device}"} {jadfile|-Xdescriptor:"{jadfile}"} {securitydomain|-Xdomain:{securitydomain}} {debug|-Xdebug -Xrunjdwp:transport={debugtransport},server={debugserver},suspend={debugsuspend},address={debugaddress}} {cmdoptions} Parameters: platformhome - platform home filled above device - device name filled above classpath - platform classpath will be defined on the next wizard step jadfile - jad file name jadurl - jad url for OTA execution securitydomain - security domain for OTA execution debug - this is just a condition indicating debug mode debugaddress - debug address debugtransport - debug transport debugserver - debug server mode - true by default debugsuspend - debug suspend mode - true by default cmdoptions - command line options propagated from project settings / - OS specific directory separator Parameter formats: {argument} is a simple replacement, so for example {jadfile} will be replaced by the real path to the jad file. {argument|command line part} is a condition, if argument is set to some value the command line part will be added to the command line. Combination of condition and simple replacement is allowed. For example: {jadfile|-Xdescriptor:"{jadfile}"} means that if the jadfile argument contains /myfolder/my.jad then -Xdescriptor:"/myfolder/my.jad" will be added to the command line.



devices
final public List<Device> devices(Code)
Fixed list of CLDCPlatformDescriptor.Device instances that describe platform devices. The list must always contain at least one device.



displayName
final public String displayName(Code)
Display name of the platform. May never be null.



docPath
final public String docPath(Code)
Comma-separated list of platform JavaDoc roots (might also include zip and jar files with the platform JavaDoc). Each of the root can be defined as a relative path prefixed with ${platform.home} Definition of JavaDoc roots is optional however it is usefull for Java development to have direct access to JavaDoc.



home
final public String home(Code)
Home directory of the platform. May never be null.



preverifyCmd
final public String preverifyCmd(Code)
Definition of preverify command line is mandatory for CUSTOM platofrm type. For other then CUSTOM platform types is this field ignored. Sample preverify command line for all UEI compatible platforms is: "{platformhome}{/}bin{/}preverify" {classpath|-classpath "{classpath}"} -d "{destdir}" "{srcdir}" Parameters: platformhome - platform home filled above srcdir - source directory of classes to preverify destdir - destination directory for preverified classes classpath - platform classpath will be defined on the next wizard step / - OS specific directory separator Parameter formats: {argument} is a simple replacement, so for example {jadfile} will be replaced by the real path to the jad file. {argument|command line part} is a condition, if argument is set to some value the command line part will be added to the command line. Combination of condition and simple replacement is allowed. For example: {jadfile|-Xdescriptor:"{jadfile}"} means that if the jadfile argument contains /myfolder/my.jad then -Xdescriptor:"/myfolder/my.jad" will be added to the command line.



runCmd
final public String runCmd(Code)
Definition of run command line is mandatory for CUSTOM platofrm type. For other then CUSTOM platform types is this field ignored. Sample run command line for UEI compatible platforms is: "{platformhome}{/}bin{/}emulator" {device|-Xdevice:"{device}"} {jadfile|-Xdescriptor:"{jadfile}"} {securitydomain|-Xdomain:{securitydomain}} {cmdoptions} Parameters: platformhome - platform home filled above device - device name filled above classpath - platform classpath will be defined on the next wizard step jadfile - jad file name jadurl - jad url for OTA execution securitydomain - security domain for OTA execution cmdoptions - command line options propagated from project settings / - OS specific directory separator Parameter formats: {argument} is a simple replacement, so for example {jadfile} will be replaced by the real path to the jad file. {argument|command line part} is a condition, if argument is set to some value the command line part will be added to the command line. Combination of condition and simple replacement is allowed. For example: {jadfile|-Xdescriptor:"{jadfile}"} means that if the jadfile argument contains /myfolder/my.jad then -Xdescriptor:"/myfolder/my.jad" will be added to the command line.



srcPath
final public String srcPath(Code)
Comma-separated list of platform source roots. Each of the root can be defined as a relative path prefixed with ${platform.home} Definition of source roots is optional and most of the platforms are provided without sources available however it is usefull for Java development to have direct access to all sources.



type
final public String type(Code)
Type of the platform (currently supported types are UEI-1.0, UEI-1.0.1, and CUSTOM). It is likely that CustomCLDCPlatformConfgigurator will provide CUSTOM platform type with all the necessary information to use the platform. May never be null.




Constructor Detail
CLDCPlatformDescriptor
public CLDCPlatformDescriptor(String displayName, String home, String type, String srcPath, String docPath, String preverifyCmd, String runCmd, String debugCmd, List<Device> devices)(Code)
Creates a new instance of CLDCPlatformDescriptor
Parameters:
  displayName - Display name of the platform.The argument is mandatory.
Parameters:
  home - Home directory of the platform.The argument is mandatory.
Parameters:
  type - Type of the platform (currently supported types are UEI-1.0, UEI-1.0.1, and CUSTOM).It is likely that CustomCLDCPlatformConfgigurator will provide CUSTOM platform type with all the necessary information to use the platform.The argument is mandatory.
Parameters:
  srcPath - Comma-separated list of platform source roots. Each of the root can be defined as a relative path prefixed with ${platform.home}Definition of source roots is optional and most of the platforms are provided without sources available however it is usefull for Java development to have direct access to all sources.
Parameters:
  docPath - Comma-separated list of platform JavaDoc roots (might also include zip and jar files with the platform JavaDoc). Each of the root can be defined as a relative path prefixed with ${platform.home}Definition of JavaDoc roots is optional however it is usefull for Java development to have direct access to JavaDoc.
Parameters:
  preverifyCmd - Definition of preverify command line is mandatory for CUSTOM platofrm type. For other then CUSTOM platform types is this field ignored.Sample preverify command line for all UEI compatible platforms is:"{platformhome}{/}bin{/}preverify" {classpath|-classpath "{classpath}"} -d "{destdir}" "{srcdir}"Parameters:platformhome - platform home filled abovesrcdir - source directory of classes to preverifydestdir - destination directory for preverified classesclasspath - platform classpath will be defined on the next wizard step/ - OS specific directory separatorParameter formats:{argument} is a simple replacement, so for example {jadfile} will be replaced by the real path to the jad file.{argument|command line part} is a condition, if argument is set to some value the command line part will be added to the command line.Combination of condition and simple replacement is allowed. For example: {jadfile|-Xdescriptor:"{jadfile}"} means that if the jadfile argument contains /myfolder/my.jad then -Xdescriptor:"/myfolder/my.jad" will be added to the command line.
Parameters:
  runCmd - Definition of run command line is mandatory for CUSTOM platofrm type. For other then CUSTOM platform types is this field ignored.Sample run command line for UEI compatible platforms is:"{platformhome}{/}bin{/}emulator" {device|-Xdevice:"{device}"} {jadfile|-Xdescriptor:"{jadfile}"} {securitydomain|-Xdomain:{securitydomain}} {cmdoptions}Parameters:platformhome - platform home filled abovedevice - device name filled aboveclasspath - platform classpath will be defined on the next wizard stepjadfile - jad file namejadurl - jad url for OTA executionsecuritydomain - security domain for OTA executioncmdoptions - command line options propagated from project settings/ - OS specific directory separatorParameter formats:{argument} is a simple replacement, so for example {jadfile} will be replaced by the real path to the jad file.{argument|command line part} is a condition, if argument is set to some value the command line part will be added to the command line.Combination of condition and simple replacement is allowed. For example: {jadfile|-Xdescriptor:"{jadfile}"} means that if the jadfile argument contains /myfolder/my.jad then -Xdescriptor:"/myfolder/my.jad" will be added to the command line.
Parameters:
  debugCmd - Definition of debug command line is mandatory for CUSTOM platofrm type. For other then CUSTOM platform types is this field ignored.Sample debug command line for UEI compatible platforms is:"{platformhome}{/}bin{/}emulator" {device|-Xdevice:"{device}"} {jadfile|-Xdescriptor:"{jadfile}"} {securitydomain|-Xdomain:{securitydomain}} {debug|-Xdebug -Xrunjdwp:transport={debugtransport},server={debugserver},suspend={debugsuspend},address={debugaddress}} {cmdoptions}Parameters:platformhome - platform home filled abovedevice - device name filled aboveclasspath - platform classpath will be defined on the next wizard stepjadfile - jad file namejadurl - jad url for OTA executionsecuritydomain - security domain for OTA executiondebug - this is just a condition indicating debug modedebugaddress - debug addressdebugtransport - debug transportdebugserver - debug server mode - true by defaultdebugsuspend - debug suspend mode - true by defaultcmdoptions - command line options propagated from project settings/ - OS specific directory separatorParameter formats:{argument} is a simple replacement, so for example {jadfile} will be replaced by the real path to the jad file.{argument|command line part} is a condition, if argument is set to some value the command line part will be added to the command line.Combination of condition and simple replacement is allowed. For example: {jadfile|-Xdescriptor:"{jadfile}"} means that if the jadfile argument contains /myfolder/my.jad then -Xdescriptor:"/myfolder/my.jad" will be added to the command line.
Parameters:
  devices - List of CLDCPlatformDescriptor.Device instances that describe platform devices.The list must always contain at least one device.




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.