Java Doc for AbstractBuildScriptGenerator.java in  » IDE-Eclipse » Eclipse-plug-in-development » org » eclipse » pde » internal » build » builder » 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 Eclipse » Eclipse plug in development » org.eclipse.pde.internal.build.builder 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.eclipse.pde.internal.build.AbstractScriptGenerator
      org.eclipse.pde.internal.build.builder.AbstractBuildScriptGenerator

All known Subclasses:   org.eclipse.pde.internal.build.builder.ModelBuildScriptGenerator,  org.eclipse.pde.internal.build.builder.FeatureBuildScriptGenerator,
AbstractBuildScriptGenerator
abstract public class AbstractBuildScriptGenerator extends AbstractScriptGenerator (Code)
Instance of this class and subclasses are created on a plugin / feature basis.


Field Summary
protected  AssemblyInformationassemblyData
    
protected  PropertiesbuildProperties
    
protected  DevClassPathHelperdevEntries
     Additional dev entries for the compile classpath.


Method Summary
abstract protected  PropertiesgetBuildProperties()
    
public  SetgetCompiledElements()
    
public static  PropertiesgetExecutionEnvironmentMappings()
    
public  voidincludePlatformIndependent(boolean value)
    
public  booleanisIgnoreMissingPropertiesFile()
    
public  booleanisPlatformIndependentIncluded()
    
protected  StringBufferreadFile(File target)
     Return a buffer containing the contents of the file at the specified location.
protected  StringBufferreadFile(InputStream stream)
    
protected  intscan(StringBuffer buf, int start, String target)
    
protected  intscan(StringBuffer buf, int start, String[] targets)
    
public  ListselectConfigs(IPlatformEnvironment element)
     Method selectConfigs.
public  voidsetCompiledElements(Set compiledElements)
     Sets the compiledElements.
public  voidsetDevEntries(String entries)
    
public  voidsetDevEntries(DevClassPathHelper entries)
    
public  voidsetIgnoreMissingPropertiesFile(boolean value)
    
public  voidsetReportResolutionErrors(boolean value)
    
protected  voidupdateVersion(File buildFile, String propertyName, String version)
     Custom build scripts should have their version number matching the version number defined by the feature/plugin/fragment descriptor.

Field Detail
assemblyData
protected AssemblyInformation assemblyData(Code)
Contain the elements that will be assembled



buildProperties
protected Properties buildProperties(Code)
The content of the build.properties file associated to the element for which the script is generated



devEntries
protected DevClassPathHelper devEntries(Code)
Additional dev entries for the compile classpath.





Method Detail
getBuildProperties
abstract protected Properties getBuildProperties() throws CoreException(Code)



getCompiledElements
public Set getCompiledElements()(Code)



getExecutionEnvironmentMappings
public static Properties getExecutionEnvironmentMappings()(Code)



includePlatformIndependent
public void includePlatformIndependent(boolean value)(Code)



isIgnoreMissingPropertiesFile
public boolean isIgnoreMissingPropertiesFile()(Code)
Returns the ignoreMissingPropertiesFile.



isPlatformIndependentIncluded
public boolean isPlatformIndependentIncluded()(Code)



readFile
protected StringBuffer readFile(File target) throws IOException(Code)
Return a buffer containing the contents of the file at the specified location.
Parameters:
  target - the file StringBuffer
throws:
  IOException -



readFile
protected StringBuffer readFile(InputStream stream) throws IOException(Code)



scan
protected int scan(StringBuffer buf, int start, String target)(Code)

Parameters:
  buf -
Parameters:
  start -
Parameters:
  target - int



scan
protected int scan(StringBuffer buf, int start, String[] targets)(Code)

Parameters:
  buf -
Parameters:
  start -
Parameters:
  targets - int



selectConfigs
public List selectConfigs(IPlatformEnvironment element)(Code)
Method selectConfigs. Return a list containing all the configurations that are valid for the element
Parameters:
  element - List



setCompiledElements
public void setCompiledElements(Set compiledElements)(Code)
Sets the compiledElements.
Parameters:
  compiledElements - The compiledElements to set



setDevEntries
public void setDevEntries(String entries)(Code)



setDevEntries
public void setDevEntries(DevClassPathHelper entries)(Code)



setIgnoreMissingPropertiesFile
public void setIgnoreMissingPropertiesFile(boolean value)(Code)

Parameters:
  value - The ignoreMissingPropertiesFile to set.



setReportResolutionErrors
public void setReportResolutionErrors(boolean value)(Code)



updateVersion
protected void updateVersion(File buildFile, String propertyName, String version) throws IOException(Code)
Custom build scripts should have their version number matching the version number defined by the feature/plugin/fragment descriptor. This is a best effort job so do not worry if the expected tags were not found and just return without modifying the file.
Parameters:
  buildFile -
Parameters:
  propertyName -
Parameters:
  version -
throws:
  IOException -



Fields inherited from org.eclipse.pde.internal.build.AbstractScriptGenerator
protected static boolean buildingOSGi(Code)(Java Doc)
protected static boolean embeddedSource(Code)(Java Doc)
protected List featuresForFilterRoots(Code)(Java Doc)
protected boolean filterState(Code)(Java Doc)
protected static boolean forceUpdateJarFormat(Code)(Java Doc)
protected Properties platformProperties(Code)(Java Doc)
protected String[] pluginPath(Code)(Java Doc)
protected List pluginsForFilterRoots(Code)(Java Doc)
protected boolean reportResolutionErrors(Code)(Java Doc)
protected AntScript script(Code)(Java Doc)
protected BuildTimeSiteFactory siteFactory(Code)(Java Doc)
protected String[] sitePaths(Code)(Java Doc)
protected static String workingDirectory(Code)(Java Doc)

Methods inherited from org.eclipse.pde.internal.build.AbstractScriptGenerator
public void closeScript()(Code)(Java Doc)
protected String findFile(String location, boolean makeRelative)(Code)(Java Doc)
protected void flushState()(Code)(Java Doc)
abstract public void generate() throws CoreException(Code)(Java Doc)
public static List getConfigInfos()(Code)(Java Doc)
public static boolean getDefaultBuildingOSGi()(Code)(Java Doc)
public static String getDefaultConfigInfos()(Code)(Java Doc)
public static boolean getDefaultEmbeddedSource()(Code)(Java Doc)
public static String getDefaultOutputFormat()(Code)(Java Doc)
public static boolean getForceUpdateJarFormat()(Code)(Java Doc)
public static String getImmutableAntProperty(String key)(Code)(Java Doc)
public static String getImmutableAntProperty(String key, String defaultValue)(Code)(Java Doc)
public String getLocation(BundleDescription model)(Code)(Java Doc)
public String[] getPluginPath()(Code)(Java Doc)
public static boolean getPropertyAsBoolean(String key)(Code)(Java Doc)
public BuildTimeSite getSite(boolean refresh) throws CoreException(Code)(Java Doc)
public static String getWorkingDirectory()(Code)(Java Doc)
protected boolean havePDEUIState()(Code)(Java Doc)
public static boolean isBuildingOSGi()(Code)(Java Doc)
public void openScript(String scriptLocation, String scriptName) throws CoreException(Code)(Java Doc)
public static Properties readProperties(String location, String fileName, int errorLevel) throws CoreException(Code)(Java Doc)
public void setBuildSiteFactory(BuildTimeSiteFactory siteFactory)(Code)(Java Doc)
public void setBuildingOSGi(boolean b)(Code)(Java Doc)
public static void setConfigInfo(String spec) throws CoreException(Code)(Java Doc)
public static void setEmbeddedSource(boolean embed)(Code)(Java Doc)
public void setFilterState(boolean filter)(Code)(Java Doc)
public static void setForceUpdateJar(boolean force)(Code)(Java Doc)
public void setNextId(long nextId)(Code)(Java Doc)
public void setPDEState(State state)(Code)(Java Doc)
public void setPlatformProperties(String filename)(Code)(Java Doc)
public void setPluginPath(String[] path)(Code)(Java Doc)
public void setStateExtraData(HashMap classpath, Map patchData)(Code)(Java Doc)
protected static void setStaticAntProperties(Properties properties)(Code)(Java Doc)
public void setWorkingDirectory(String location)(Code)(Java Doc)

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.