Java Doc for ILanguage.java in  » IDE-Netbeans » uml » org » netbeans » modules » uml » core » reverseengineering » reframework » parsingframework » 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 » uml » org.netbeans.modules.uml.core.reverseengineering.reframework.parsingframework 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.netbeans.modules.uml.core.reverseengineering.reframework.parsingframework.ILanguage

All known Subclasses:   org.netbeans.modules.uml.core.reverseengineering.reframework.parsingframework.Language,
ILanguage
public interface ILanguage (Code)

Title:

Description:

Copyright: Copyright (c) 2003

Company:


author:
   not attributable
version:
   1.0




Method Summary
public  voidaddContext(String name, String clsid)
     Adds a new context to the the language.
public  voidaddLibrary(String name, String definitionFile)
     Adds a new library to the language definition.
public  voidaddParser(String Type, String clsid)
     Add a CLSID that implements the ILangaugeParser interface.
public  ILanguageDataTypegetAttributeDefaultType()
     The type used when creating a new attribute.
public  ETList<ICodeGenerationScript>getCodeGenerationScripts()
     The code generation scripts that will generate source code for the langauge.
public  List<CollectionType>getCollectionTypes()
     Gets the languages collection types.
public  StringgetContextCLSID(String context)
     Retrieves the CLSID for a context.
public  ILanguageDataTypegetDataType(String sName)
     Get the data type by its name.
public  ETList<ILanguageDataType>getDataTypes()
     The data types that are supported by the language.
public  StringgetDefault(String name)
    
public  StringgetDefaultSourceFileExtension()
    
public  ETList<IExpansionVariable>getExpansionVariables()
     The override expansion variables associated with this Language.
public  NodegetFormatDefinition(String elementName)
     Specifies the DOM node that specifies how to format a model elments data.
public  StringgetFormatStringFile(String name)
    
public  ILanguageManagergetLanguageManager()
    
public  StringgetLibraryDefinition(String name)
     Retrieve a library definition from the language definition.
public  IStringsgetLibraryNames()
     Retrieve all of the libraries that are registered with the langauge definition.
public  StringgetName()
     The name of the language that is represented by the ILanguage interface.
public  ILanguageDataTypegetOperationDefaultType()
     The return type to use when creating a new operation.
public  ILanguageParsergetParser(String Type)
     Retrieve the ILanguageParser for the specified parser type.
public  StringgetParserCLSID(String Type)
     Retrieves the CLSID of the parser for the specified parser type.
public  ILanguageSyntaxgetSyntax()
     The syntax that defines the language.
public  ISyntaxTokengetSyntaxToken(String sName)
     Get the token by its name.
public  booleanisCollectionType(String typeName)
     Checks if a type is a collection type.
Parameters:
  typeName - the type to check.
public  booleanisDataType(String sType)
     Is the given string the name of a predefined date type? These data types are defined in the Languages.etc file.
public  booleanisFeatureSupported(String name)
     Specifies a specific feature is supported.
public  booleanisKeyword(String sWord)
     Is the given string a reserved word in this language? These reserved tokens are defined in the Languages.etc file.
public  booleanisPrimitive(String sType)
     Is the given string the name of a primitve date type? These data types are defined in the Languages.etc file.
public  voidsetAttributeDefaultType(ILanguageDataType value)
     The type used when creating a new attribute.
public  voidsetCodeGenerationScripts(ETList<ICodeGenerationScript> value)
     The code generation scripts that will generate source code for the langauge.
public  voidsetCollectionTypes(List<CollectionType> types)
     Sets the languages collection types.
public  voidsetDataTypes(ETList<ILanguageDataType> value)
     The data types that are supported by the language.
public  voidsetDefault(String name, String Value)
    
public  voidsetExpansionVariables(ETList<IExpansionVariable> value)
     The override expansion variables associated with this Language.
public  voidsetFeatureSupported(String name, boolean newVal)
     Turns on or off a supported feature.
public  voidsetFormatDefinitions(Node value)
     Specifies the DOM node that specifies how to format a model elments data.
public  voidsetLanguageManager(ILanguageManager pManager)
    
public  voidsetName(String value)
     The name of the language that is represented by the ILanguage interface.
public  voidsetOperationDefaultType(ILanguageDataType value)
     The return type to use when creating a new operation.
public  voidsetSyntax(ILanguageSyntax value)
     The syntax that defines the language.



Method Detail
addContext
public void addContext(String name, String clsid)(Code)
Adds a new context to the the language. Contexts are used by other components to perform langauge specific operations. The interface for each context is defined by the component.



addLibrary
public void addLibrary(String name, String definitionFile)(Code)
Adds a new library to the language definition.



addParser
public void addParser(String Type, String clsid)(Code)
Add a CLSID that implements the ILangaugeParser interface. The parser will be used to parser files written in the defined langauge.



getAttributeDefaultType
public ILanguageDataType getAttributeDefaultType()(Code)
The type used when creating a new attribute.



getCodeGenerationScripts
public ETList<ICodeGenerationScript> getCodeGenerationScripts()(Code)
The code generation scripts that will generate source code for the langauge. a collection of code generation scripts.



getCollectionTypes
public List<CollectionType> getCollectionTypes()(Code)
Gets the languages collection types. types the list of collection types.



getContextCLSID
public String getContextCLSID(String context)(Code)
Retrieves the CLSID for a context. Contexts are used by other components to perform langauge specific operations. The interface for each context is defined by the component.



getDataType
public ILanguageDataType getDataType(String sName)(Code)
Get the data type by its name.



getDataTypes
public ETList<ILanguageDataType> getDataTypes()(Code)
The data types that are supported by the language. the data types



getDefault
public String getDefault(String name)(Code)
Gets a Default setting



getDefaultSourceFileExtension
public String getDefaultSourceFileExtension()(Code)
Returns the default source code file extension



getExpansionVariables
public ETList<IExpansionVariable> getExpansionVariables()(Code)
The override expansion variables associated with this Language. ExpansionVariables is the collection type.



getFormatDefinition
public Node getFormatDefinition(String elementName)(Code)
Specifies the DOM node that specifies how to format a model elments data.



getFormatStringFile
public String getFormatStringFile(String name)(Code)



getLanguageManager
public ILanguageManager getLanguageManager()(Code)



getLibraryDefinition
public String getLibraryDefinition(String name)(Code)
Retrieve a library definition from the language definition. If the language definition is not registered with the language definition then an empty string is returned.



getLibraryNames
public IStrings getLibraryNames()(Code)
Retrieve all of the libraries that are registered with the langauge definition.



getName
public String getName()(Code)
The name of the language that is represented by the ILanguage interface. The name of the language.



getOperationDefaultType
public ILanguageDataType getOperationDefaultType()(Code)
The return type to use when creating a new operation.



getParser
public ILanguageParser getParser(String Type)(Code)
Retrieve the ILanguageParser for the specified parser type.
Parameters:
  Type - The type of parser examples: default, java5 A parser can can be used to parse the language files.



getParserCLSID
public String getParserCLSID(String Type)(Code)
Retrieves the CLSID of the parser for the specified parser type.



getSyntax
public ILanguageSyntax getSyntax()(Code)
The syntax that defines the language. A syntax is made up of a collection of tokens that together define the syntax. The syntax object



getSyntaxToken
public ISyntaxToken getSyntaxToken(String sName)(Code)
Get the token by its name.



isCollectionType
public boolean isCollectionType(String typeName)(Code)
Checks if a type is a collection type.
Parameters:
  typeName - the type to check. true if the type is a collection type.



isDataType
public boolean isDataType(String sType)(Code)
Is the given string the name of a predefined date type? These data types are defined in the Languages.etc file.



isFeatureSupported
public boolean isFeatureSupported(String name)(Code)
Specifies a specific feature is supported.



isKeyword
public boolean isKeyword(String sWord)(Code)
Is the given string a reserved word in this language? These reserved tokens are defined in the Languages.etc file.



isPrimitive
public boolean isPrimitive(String sType)(Code)
Is the given string the name of a primitve date type? These data types are defined in the Languages.etc file.



setAttributeDefaultType
public void setAttributeDefaultType(ILanguageDataType value)(Code)
The type used when creating a new attribute.



setCodeGenerationScripts
public void setCodeGenerationScripts(ETList<ICodeGenerationScript> value)(Code)
The code generation scripts that will generate source code for the langauge.
Parameters:
  value - A collection of code generation scripts



setCollectionTypes
public void setCollectionTypes(List<CollectionType> types)(Code)
Sets the languages collection types.
Parameters:
  types - the list of collection types.



setDataTypes
public void setDataTypes(ETList<ILanguageDataType> value)(Code)
The data types that are supported by the language.
Parameters:
  value - the data types



setDefault
public void setDefault(String name, String Value)(Code)
Sets a Default setting



setExpansionVariables
public void setExpansionVariables(ETList<IExpansionVariable> value)(Code)
The override expansion variables associated with this Language. ExpansionVariables is the collection type.



setFeatureSupported
public void setFeatureSupported(String name, boolean newVal)(Code)
Turns on or off a supported feature.



setFormatDefinitions
public void setFormatDefinitions(Node value)(Code)
Specifies the DOM node that specifies how to format a model elments data.



setLanguageManager
public void setLanguageManager(ILanguageManager pManager)(Code)



setName
public void setName(String value)(Code)
The name of the language that is represented by the ILanguage interface.
Parameters:
  value - The name of the language



setOperationDefaultType
public void setOperationDefaultType(ILanguageDataType value)(Code)
The return type to use when creating a new operation.



setSyntax
public void setSyntax(ILanguageSyntax value)(Code)
The syntax that defines the language. A syntax is made up of a collection of tokens that together define the syntax.
Parameters:
  value - The syntax object



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.