Java Doc for JCBaseFinder.java in  » Swing-Library » abeille-forms-designer » org » netbeans » editor » ext » java » 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 » Swing Library » abeille forms designer » org.netbeans.editor.ext.java 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.netbeans.editor.ext.java.JavaCompletion
   org.netbeans.editor.ext.java.JCBaseFinder

JCBaseFinder
public class JCBaseFinder extends JavaCompletion.AbstractProvider implements JCFinder(Code)
Java completion support finder
author:
   Miloslav Metelka
version:
   1.00

Inner Class :final public static class DefaultClassNameComparator implements Comparator

Field Summary
final static  ComparatorCLASS_NAME_COMPARATOR
    
protected  JCClass[]allClassesByName
    
protected  HashMapallClassesMap
    
protected  JCPackage[]allPackages
    
protected  HashMapallPackagesMap
    


Method Summary
public synchronized  booleanappend(JCClassProvider cp)
    
protected  booleanappendClass(JCClass cls)
    
protected  voidbuild()
    
public  StringdumpClasses()
    
public synchronized  ListfindClasses(JCPackage pkg, String name, boolean exactMatch)
     Find classes by name and possibly in some package
Parameters:
  pkg - package where the classes should be searched for.
public synchronized  ListfindFields(JCClass cls, String name, boolean exactMatch, boolean staticOnly, boolean inspectOuterClasses)
     Find fields by name in a given class.
public synchronized  ListfindMethods(JCClass cls, String name, boolean exactMatch, boolean staticOnly, boolean inspectOuterClasses)
     Find methods by name in a given class.
public synchronized  ListfindPackages(String name, boolean exactMatch, boolean subPackages)
    
protected  JCClass[]getAllClasses()
    
protected  JCClass[]getAllClassesByName()
    
protected  JCPackage[]getAllPackages()
    
public  IteratorgetClasses()
    
public synchronized  JCClassgetExactClass(String classFullName)
    
public synchronized  JCPackagegetExactPackage(String packageName)
    
protected  voidinvalidate()
    
public synchronized  voidreset()
    

Field Detail
CLASS_NAME_COMPARATOR
final static Comparator CLASS_NAME_COMPARATOR(Code)



allClassesByName
protected JCClass[] allClassesByName(Code)



allClassesMap
protected HashMap allClassesMap(Code)



allPackages
protected JCPackage[] allPackages(Code)



allPackagesMap
protected HashMap allPackagesMap(Code)





Method Detail
append
public synchronized boolean append(JCClassProvider cp)(Code)



appendClass
protected boolean appendClass(JCClass cls)(Code)



build
protected void build()(Code)



dumpClasses
public String dumpClasses()(Code)



findClasses
public synchronized List findClasses(JCPackage pkg, String name, boolean exactMatch)(Code)
Find classes by name and possibly in some package
Parameters:
  pkg - package where the classes should be searched for. It can benull
Parameters:
  begining - of the name of the class. The package name must be omitted.
Parameters:
  exactMatch - whether the given name is the exact requested name of theclass or not. list of the matching classes



findFields
public synchronized List findFields(JCClass cls, String name, boolean exactMatch, boolean staticOnly, boolean inspectOuterClasses)(Code)
Find fields by name in a given class.
Parameters:
  cls - class which is searched for the fields.
Parameters:
  name - start of the name of the field
Parameters:
  exactMatch - whether the given name of the field is exact
Parameters:
  staticOnly - whether search for the static fields only list of the matching fields



findMethods
public synchronized List findMethods(JCClass cls, String name, boolean exactMatch, boolean staticOnly, boolean inspectOuterClasses)(Code)
Find methods by name in a given class.
Parameters:
  cls - class which is searched for the methods.
Parameters:
  name - start of the name of the method
Parameters:
  exactMatch - whether the given name of the method is exact
Parameters:
  staticOnly - whether search for the static methods only list of the matching methods



findPackages
public synchronized List findPackages(String name, boolean exactMatch, boolean subPackages)(Code)



getAllClasses
protected JCClass[] getAllClasses()(Code)



getAllClassesByName
protected JCClass[] getAllClassesByName()(Code)



getAllPackages
protected JCPackage[] getAllPackages()(Code)



getClasses
public Iterator getClasses()(Code)



getExactClass
public synchronized JCClass getExactClass(String classFullName)(Code)



getExactPackage
public synchronized JCPackage getExactPackage(String packageName)(Code)



invalidate
protected void invalidate()(Code)



reset
public synchronized void reset()(Code)



Fields inherited from org.netbeans.editor.ext.java.JavaCompletion
final public static SimpleClass BOOLEAN_CLASS(Code)(Java Doc)
final public static BaseType BOOLEAN_TYPE(Code)(Java Doc)
final public static SimpleClass BYTE_CLASS(Code)(Java Doc)
final public static BaseType BYTE_TYPE(Code)(Java Doc)
final public static SimpleClass CHAR_CLASS(Code)(Java Doc)
final public static BaseType CHAR_TYPE(Code)(Java Doc)
final public static SimpleClass CLASS_CLASS(Code)(Java Doc)
final public static BaseType CLASS_TYPE(Code)(Java Doc)
final public static int DEBUG_EXP(Code)(Java Doc)
final public static int DEBUG_FIND(Code)(Java Doc)
final public static SimpleClass DOUBLE_CLASS(Code)(Java Doc)
final public static BaseType DOUBLE_TYPE(Code)(Java Doc)
final public static JCClass[] EMPTY_CLASSES(Code)(Java Doc)
final public static JCConstructor[] EMPTY_CONSTRUCTORS(Code)(Java Doc)
final public static JCField[] EMPTY_FIELDS(Code)(Java Doc)
final public static JCMethod[] EMPTY_METHODS(Code)(Java Doc)
final public static JCPackage[] EMPTY_PACKAGES(Code)(Java Doc)
final public static JCParameter[] EMPTY_PARAMETERS(Code)(Java Doc)
final public static SimpleClass FLOAT_CLASS(Code)(Java Doc)
final public static BaseType FLOAT_TYPE(Code)(Java Doc)
final static int INTERFACE_BIT(Code)(Java Doc)
final static int INTERFACE_BIT_FILTER(Code)(Java Doc)
final public static SimpleClass INT_CLASS(Code)(Java Doc)
final public static BaseType INT_TYPE(Code)(Java Doc)
final public static SimpleClass INVALID_CLASS(Code)(Java Doc)
final public static BaseType INVALID_TYPE(Code)(Java Doc)
final public static SimpleClass LONG_CLASS(Code)(Java Doc)
final public static BaseType LONG_TYPE(Code)(Java Doc)
final public static SimpleClass NULL_CLASS(Code)(Java Doc)
final public static BaseType NULL_TYPE(Code)(Java Doc)
final public static SimpleClass OBJECT_CLASS(Code)(Java Doc)
final public static SimpleClass OBJECT_CLASS_ARRAY(Code)(Java Doc)
final public static BaseType OBJECT_TYPE(Code)(Java Doc)
final public static BaseType OBJECT_TYPE_ARRAY(Code)(Java Doc)
final public static int PACKAGE_LEVEL(Code)(Java Doc)
final public static int PRIVATE_LEVEL(Code)(Java Doc)
final public static int PROTECTED_LEVEL(Code)(Java Doc)
final public static int PUBLIC_LEVEL(Code)(Java Doc)
final public static SimpleClass SHORT_CLASS(Code)(Java Doc)
final public static BaseType SHORT_TYPE(Code)(Java Doc)
final public static SimpleClass STRING_CLASS(Code)(Java Doc)
final public static BaseType STRING_TYPE(Code)(Java Doc)
final public static SimpleClass VOID_CLASS(Code)(Java Doc)
final public static BaseType VOID_TYPE(Code)(Java Doc)

Methods inherited from org.netbeans.editor.ext.java.JavaCompletion
protected CompletionQuery createQuery()(Code)(Java Doc)
public static JCClass createSimpleClass(String fullClassName)(Code)(Java Doc)
public static JCClass createSimpleClass(String name, String packageName)(Code)(Java Doc)
public static JCType createType(JCClass cls, int arrayDepth)(Code)(Java Doc)
protected CompletionView createView()(Code)(Java Doc)
public static int getDebugMode()(Code)(Java Doc)
public static synchronized JCFinder getFinder()(Code)(Java Doc)
public static int getLevel(int modifiers)(Code)(Java Doc)
public static JCClass getPrimitiveClass(String s)(Code)(Java Doc)
public static Iterator getPrimitiveClassIterator()(Code)(Java Doc)
public static JCType getPrimitiveType(String s)(Code)(Java Doc)
public static JCClass getSimpleClass(String fullClassName, int packageNameLen)(Code)(Java Doc)
public static JCClass getSimpleClass(JCClass cls)(Code)(Java Doc)
public static JCType getType(JCClass cls, int arrayDepth)(Code)(Java Doc)
public static boolean isPrimitiveClass(JCClass c)(Code)(Java Doc)
public static boolean isPrimitiveClassName(String s)(Code)(Java Doc)
public static void setDebugMode(int newDebugMode)(Code)(Java Doc)
public static synchronized void setFinder(JCFinder f)(Code)(Java Doc)
public static void setFinderInitializer(JCFinderInitializer initializer)(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.