org.netbeans.modules.ruby

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 » ruby » org.netbeans.modules.ruby 
org.netbeans.modules.ruby
Java Source File NameTypeComment
Arity.javaClass The arity of a method is the number of arguments it takes.
ArityTest.javaClass
AstNodeAdapter.javaClass
AstPath.javaClass This represents a path in a JRuby AST.
AstUtilities.javaClass Various utilities for operating on the JRuby ASTs that are used elsewhere.
AstUtilitiesTest.javaClass
BracketCompleter.javaClass Provide bracket completion for Ruby. This class provides three broad services: - Identifying matching pairs (parentheses, begin/end pairs etc.), which is used both for highlighting in the IDE (when the caret is on for example an if statement, the corresponding end token is highlighted), and navigation where you can jump between matching pairs. - Automatically inserting corresponding pairs when you insert a character. For example, if you insert a single quote, a corresponding ending quote is inserted - unless you're typing "over" the existing quote (you should be able to type foo = "hello" without having to arrow over the second quote that was inserted after you typed the first one). - Automatically adjusting indentation in some scenarios, for example when you type the final "d" in "end" - and readjusting it back to the original indentation if you continue typing something other than "end", e.g.
BracketCompleterTest.javaClass
CodeCompleter.javaClass Code completion handler for Ruby. Bug: I add lists of fields etc.
CodeCompleterTest.javaClass
DeclarationFinder.javaClass Find a declaration from an element in the JRuby AST.
DeclarationFinderTest.javaClass
Formatter.javaClass Formatting and indentation for Ruby.
FormatterTest.javaClass
IndentPrefs.javaClass
NbUtilities.javaClass Utilities related to NetBeans - finding active editor, opening a file location, etc.
OccurrencesFinder.javaClass
OccurrencesFinderTest.javaClass
ParseTreeVisitor.javaInterface A visitor interface for visitors that want to iterate over a JRuby AST.
ParseTreeWalker.javaClass
RDocFormatter.javaClass Digest rdoc-formatter strings and format them as html, A bit hacky at the moment, but it tries to understand most of the conventions described here: http://rdoc.sourceforge.net/doc/index.html and produce reasonably similar HTML.
RDocFormatterTest.javaClass
ReflowParagraphAction.javaClass Reflow paragraphs (currently, rdoc comments and =begin/=end documentatio sections.) Take RDoc conventions into consideration such that preformatted rdoc text is left alone, bulleted lists get properly aligned, etc.
ReflowParagraphActionTest.javaClass
RenameHandler.javaClass
RenameHandlerTest.javaClass
RubyCommentLexerTest.javaClass
RubyIndex.javaClass Access to the index of known Ruby classes - core, libraries, gems, user projects, etc.
RubyIndexer.javaClass
RubyIndexerHelper.javaClass This class contains a lot of logic used to build the code indices for Ruby. This level of indexing is not performed on the user's sources, only on preindexed libraries such as the Rails gems and Ruby's own library. We need various extra information that relies on various heuristics to determine:
  • Does a method take a block? If so, how many arguments should the block take and what names should the IDE suggest?
  • Should a particular method be used with parentheses or not? For example, when calling File.exists?("foo") we normally use parens around the arguments, but when calling DSL-style methods like validates_presence_of it's common not to.
  • Are one or more of the arguments expected to to be hashes? If so, what are the available hash key names? What are their "types"? (e.g.
RubyIndexerTest.javaClass
RubyLanguage.javaClass
RubyLexAllTest.javaClass
RubyLexerRandomTest.javaClass Test Ruby lexer incremental operation.
RubyLexerTest.javaClass
RubyLexerTest2.javaClass
RubyMimeResolver.javaClass
RubyMimeResolverTest.javaClass
RubyOptions.javaClass
RubyOptionsCategory.javaClass Defines a new options category in the IDE's options dialog.
RubyOptionsPanelController.javaClass
RubyParser.javaClass Wrapper around JRuby to parse a buffer into an AST.
RubyParseResult.javaClass
RubyParserTest.javaClass
RubyPositionManager.javaClass
RubyStringLexerTest.javaClass
RubyTestBase.javaClass
RubyTokenDumpTest.javaClass Test tokens dump of Ruby code input.
RubyTypeSearcher.javaClass
RubyUtils.javaClass
RubyUtilsTest.javaClass
SemanticAnalysis.javaClass
SemanticAnalyzerTest.javaClass
StructureAnalyzer.javaClass
StructureAnalyzerTest.javaClass
TestCompilationInfo.javaClass
TestSourceModelFactory.javaClass
TypeAnalyzer.javaClass Perform type analysis on a given AST tree, attempting to provide a type associated with each variable, field etc.
TypeAnalyzerTest.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.