Java Doc for Platform.java in  » 6.0-JDK-Modules » j2me » makedep » 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 » 6.0 JDK Modules » j2me » makedep 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   makedep.Platform

All known Subclasses:   makedep.WinGammaPlatform,  makedep.ADSPlatform,  makedep.CWPlatform,  makedep.WinCEGammaPlatform,  makedep.UnixPlatform,
Platform
abstract public class Platform (Code)


Field Summary
protected  FileNamegdFileTemplate
    
protected  FileNamegiFileTemplate
    
protected  FileNameinclFileTemplate
    
 booleanusePrecompiledHeader
    


Method Summary
public  voidabort()
    
abstract public  StringasmFileSuffix()
    
public  intdefaultGrandIncludeThreshold()
    
abstract public  StringdependentPrefix()
    
public  voidfatalError(String msg)
    
public  intfileNameLengthLimit()
    
public  voidfileNamePortabilityCheck(String name)
    
public  voidfileNamePortabilityCheck(String name, String matchingName)
    
public  booleanfileNameStringEquality(String s1, String s2)
    
abstract public  StringfileSeparator()
    
public  StringgeneratePlatformDependentInclude()
     A line with a filename and the generatePlatformDependentInclude means that an include file for the header file must be generated.
public  FileNamegetGDFileTemplate()
    
public  FileNamegetGIFileTemplate()
    
public  FileNamegetInclFileTemplate()
    
 booleangetUsePrecompiledHeader()
    
public  booleanhaveGrandInclude()
    
public  booleanincludeGIDependencies()
     For some platforms, e.g.
public  booleanincludeGIInEachIncl()
    

A gi file is the grand-include file.

public  StringnoGrandInclude()
     A line with a filename and the noGrandInclude string means that this file cannot use the precompiled header.
abstract public  StringobjFileSuffix()
    
abstract public  String[]outerSuffixes()
    
public  voidsetUsePrecompiledHeader(boolean value)
    
public  voidsetupFileTemplates()
    
public  StringtranslateFileName(String name)
    
public  booleanwriteDeps()
    
public  voidwriteGIPragma(PrintWriter out)
    
public  voidwritePlatformSpecificFiles(Database previousDB, Database currentDB, String[] args)
     Not very general, but this is a way to get platform-specific files to be written.

Field Detail
gdFileTemplate
protected FileName gdFileTemplate(Code)
A GD (grand-dependencies) file that tells Unix make all the .o's needed for linking and the include dependencies



giFileTemplate
protected FileName giFileTemplate(Code)
A GI (grand-include) file has any file used more than N times for precompiled headers



inclFileTemplate
protected FileName inclFileTemplate(Code)
An incl file is produced per .c file and contains all the includes it needs



usePrecompiledHeader
boolean usePrecompiledHeader(Code)





Method Detail
abort
public void abort()(Code)
Abort means an internal error



asmFileSuffix
abstract public String asmFileSuffix()(Code)



defaultGrandIncludeThreshold
public int defaultGrandIncludeThreshold()(Code)



dependentPrefix
abstract public String dependentPrefix()(Code)



fatalError
public void fatalError(String msg)(Code)
fatalError is used by clients to stop the system



fileNameLengthLimit
public int fileNameLengthLimit()(Code)
max is 31 on mac, so warn



fileNamePortabilityCheck
public void fileNamePortabilityCheck(String name)(Code)



fileNamePortabilityCheck
public void fileNamePortabilityCheck(String name, String matchingName)(Code)



fileNameStringEquality
public boolean fileNameStringEquality(String s1, String s2)(Code)
Default implementation performs case-sensitive comparison



fileSeparator
abstract public String fileSeparator()(Code)



generatePlatformDependentInclude
public String generatePlatformDependentInclude()(Code)
A line with a filename and the generatePlatformDependentInclude means that an include file for the header file must be generated. Does not effect the dependency computation.



getGDFileTemplate
public FileName getGDFileTemplate()(Code)



getGIFileTemplate
public FileName getGIFileTemplate()(Code)



getInclFileTemplate
public FileName getInclFileTemplate()(Code)



getUsePrecompiledHeader
boolean getUsePrecompiledHeader()(Code)



haveGrandInclude
public boolean haveGrandInclude()(Code)
empty file name -> no grand include file



includeGIDependencies
public boolean includeGIDependencies()(Code)
For some platforms, e.g. Solaris, include the grand-include dependencies in the makefile. For others, e.g. Windows, do not.



includeGIInEachIncl
public boolean includeGIInEachIncl()(Code)

A gi file is the grand-include file. It includes in one file any file that is included more than a certain number of times.

It is used for precompiled header files.

It has a source name, that is the file that this program generates, and a compiled name; that is the file that is included by other files.

Some platforms have this program actually explicitly include the preprocessed gi file-- see includeGIInEachIncl().

Also, some platforms need a pragma in the GI file.




noGrandInclude
public String noGrandInclude()(Code)
A line with a filename and the noGrandInclude string means that this file cannot use the precompiled header.



objFileSuffix
abstract public String objFileSuffix()(Code)
Prefix and suffix strings for emitting Makefile rules



outerSuffixes
abstract public String[] outerSuffixes()(Code)



setUsePrecompiledHeader
public void setUsePrecompiledHeader(boolean value)(Code)



setupFileTemplates
public void setupFileTemplates()(Code)



translateFileName
public String translateFileName(String name)(Code)



writeDeps
public boolean writeDeps()(Code)



writeGIPragma
public void writeGIPragma(PrintWriter out)(Code)
Default implementation does nothing



writePlatformSpecificFiles
public void writePlatformSpecificFiles(Database previousDB, Database currentDB, String[] args) throws IllegalArgumentException, IOException(Code)
Not very general, but this is a way to get platform-specific files to be written. Default implementation does nothing.



Methods inherited from java.lang.Object
public boolean equals(Object obj)(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.