Java Doc for TargetData.java in  » IDE-Netbeans » cnd » org » netbeans » modules » cnd » makewizard » 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 » cnd » org.netbeans.modules.cnd.makewizard 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.modules.cnd.makewizard.TargetData

TargetData
final public class TargetData (Code)
A TargetData record. This class should contain ALL iformation necessary to create a specific Makefile target.


Field Summary
final public static  intCOMPLEX_ARCHIVE
    
final public static  intCOMPLEX_CUSTOM_TARGET
    
final public static  intCOMPLEX_EXECUTABLE
    
final public static  intCOMPLEX_MAKE_TARGET
    
final public static  intCOMPLEX_SHAREDLIB
    
final public static  intSIMPLE_ARCHIVE
    
final public static  intSIMPLE_EXECUTABLE
    
final public static  intSIMPLE_SHAREDLIB
    

Constructor Summary
public  TargetData(int targetType, String name, String outputDirectory, int key)
    
public  TargetData(TargetData old)
    

Method Summary
public  booleancontainsAssemblyFiles()
    
public  booleancontainsCFiles()
    
public  booleancontainsCppFiles()
    
public  booleancontainsFortranFiles()
    
public  booleancontainsXdFiles()
    
public  voidconvert()
    
public  voidconvert(int newType)
    
public  voiddump()
    
public  voiddump(String in)
     Allow caller to indent all data.
public  ArrayListgetActions()
    
public  StringgetDependsOn()
    
public  String[]getIncludesList()
    
public  intgetKey()
    
public  StringgetMakeFlags()
    
public  StringgetName()
    
public  StringgetOutputDirectory()
    
public  String[]getSourcesList()
    
public  StdLibFlagsgetStdLibFlags()
    
public  StringgetSubdirectory()
    
public  StringgetTargetName()
    
public  intgetTargetType()
    
public  String[]getUserLibsList()
    
public  booleanisArchive()
    
public  booleanisAssemblyFile(String file)
    
public  booleanisCFile(String file)
    
public  booleanisCompilable()
    
public  booleanisComplete()
    
public  booleanisComplex()
    
public  booleanisConvertable(int newType)
     Let the caller know if the target can be converted to the requested type.
public  booleanisCppFile(String file)
    
public  booleanisCustomTarget()
    
public  booleanisExecutable()
    
public  booleanisFortranFile(String file)
    
public  booleanisHdrFile(String file)
    
public  booleanisLinked()
    
public  booleanisMakeTarget()
    
public  booleanisSharedLib()
    
public  booleanisXdFile(String file)
    
public  voidsetActions(ArrayList actions)
    
public  voidsetDependsOn(String dependsOn)
    
public  voidsetIncludesList(String[] includesList)
    
public  voidsetMakeFlags(String makeFlags)
    
public  voidsetName(String name)
    
public  voidsetOutputDirectory(String outputDirectory)
    
public  voidsetSourcesList(String[] sourcesList)
    
public  voidsetSubdirectory(String subdirectory)
    
public  voidsetTargetName(String targetName)
    
public  voidsetUserLibsList(String[] userLibsList)
    

Field Detail
COMPLEX_ARCHIVE
final public static int COMPLEX_ARCHIVE(Code)
Complex target for an archive



COMPLEX_CUSTOM_TARGET
final public static int COMPLEX_CUSTOM_TARGET(Code)
Custom target



COMPLEX_EXECUTABLE
final public static int COMPLEX_EXECUTABLE(Code)
Complex target for an executable



COMPLEX_MAKE_TARGET
final public static int COMPLEX_MAKE_TARGET(Code)
Complex target for calling a recursive make



COMPLEX_SHAREDLIB
final public static int COMPLEX_SHAREDLIB(Code)
Complex target for a shared library



SIMPLE_ARCHIVE
final public static int SIMPLE_ARCHIVE(Code)
Single target corresponds to ARCHIVE_MAKEFILE_TYPE



SIMPLE_EXECUTABLE
final public static int SIMPLE_EXECUTABLE(Code)
Single target corresponds to EXECUTABLE_MAKEFILE_TYPE



SIMPLE_SHAREDLIB
final public static int SIMPLE_SHAREDLIB(Code)
Single target corresponds to SHAREDLIB_MAKEFILE_TYPE




Constructor Detail
TargetData
public TargetData(int targetType, String name, String outputDirectory, int key)(Code)
Create a target data record of a single target



TargetData
public TargetData(TargetData old)(Code)
Create a target data record from another target




Method Detail
containsAssemblyFiles
public boolean containsAssemblyFiles()(Code)
Let caller know if this project contains Assembly files



containsCFiles
public boolean containsCFiles()(Code)
Let caller know if this project contains C source files



containsCppFiles
public boolean containsCppFiles()(Code)
Let caller know if this project contains C++ source files



containsFortranFiles
public boolean containsFortranFiles()(Code)
Let caller know if this project contains Fortran source files



containsXdFiles
public boolean containsXdFiles()(Code)
Let caller know if this project contains X-Designer source files



convert
public void convert()(Code)
Convert the SIMPLE_* target to the associated COMPLEX_* type



convert
public void convert(int newType)(Code)
Convert the COMPLEX_* target to the associated SIMPLE_* type



dump
public void dump()(Code)
Default dump has no indent



dump
public void dump(String in)(Code)
Allow caller to indent all data. This is usefull for indenting target dumps within MakefileData dumps.



getActions
public ArrayList getActions()(Code)
Getter for action



getDependsOn
public String getDependsOn()(Code)
Getter for dependsOn



getIncludesList
public String[] getIncludesList()(Code)
Getter for the includes list



getKey
public int getKey()(Code)
Getter for target key



getMakeFlags
public String getMakeFlags()(Code)
Getter for makeFlags



getName
public String getName()(Code)
Getter for target name



getOutputDirectory
public String getOutputDirectory()(Code)
Getter for outputDirectory



getSourcesList
public String[] getSourcesList()(Code)
Getter for the source list



getStdLibFlags
public StdLibFlags getStdLibFlags()(Code)
Getter for StdLibFlags



getSubdirectory
public String getSubdirectory()(Code)
Getter for subdirectory



getTargetName
public String getTargetName()(Code)
Getter for targetName



getTargetType
public int getTargetType()(Code)
Get the target type



getUserLibsList
public String[] getUserLibsList()(Code)
Getter for the user libraries list



isArchive
public boolean isArchive()(Code)
Helper function for checking if target is an archive



isAssemblyFile
public boolean isAssemblyFile(String file)(Code)
Check if a file is a Assembly file



isCFile
public boolean isCFile(String file)(Code)
Check if a file is a C file



isCompilable
public boolean isCompilable()(Code)
True if this target is a type which contains compilable files



isComplete
public boolean isComplete()(Code)
Let users know if this target has sufficient data



isComplex
public boolean isComplex()(Code)
Is this a simple or complex type?



isConvertable
public boolean isConvertable(int newType)(Code)
Let the caller know if the target can be converted to the requested type.



isCppFile
public boolean isCppFile(String file)(Code)
Check if a file is a C++ file



isCustomTarget
public boolean isCustomTarget()(Code)
Helper function for checking if target is a custom make target



isExecutable
public boolean isExecutable()(Code)
Helper function for checking if target is executable



isFortranFile
public boolean isFortranFile(String file)(Code)
Check if a file is a Fortran file



isHdrFile
public boolean isHdrFile(String file)(Code)
Check if a file is a C/C++ header file



isLinked
public boolean isLinked()(Code)
Does the target get linked?



isMakeTarget
public boolean isMakeTarget()(Code)
Helper function for checking if target is a recursive make target



isSharedLib
public boolean isSharedLib()(Code)
Helper function for checking if target is a shared library



isXdFile
public boolean isXdFile(String file)(Code)
Check if a file is a X-Designer file



setActions
public void setActions(ArrayList actions)(Code)
Setter for actions



setDependsOn
public void setDependsOn(String dependsOn)(Code)
Setter for dependsOn



setIncludesList
public void setIncludesList(String[] includesList)(Code)
Set the includes list



setMakeFlags
public void setMakeFlags(String makeFlags)(Code)
Setter for makeFlags



setName
public void setName(String name)(Code)
Setter for target name



setOutputDirectory
public void setOutputDirectory(String outputDirectory)(Code)
Setter for outputDirectory



setSourcesList
public void setSourcesList(String[] sourcesList)(Code)
Set the source list



setSubdirectory
public void setSubdirectory(String subdirectory)(Code)
Setter for subdirectory



setTargetName
public void setTargetName(String targetName)(Code)
Setter for targetName



setUserLibsList
public void setUserLibsList(String[] userLibsList)(Code)
Set the user libraries list



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.