Java Doc for ResourceComparator.java in  » IDE-Eclipse » ui-ide » org » eclipse » ui » internal » ide » dialogs » 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 » ui ide » org.eclipse.ui.internal.ide.dialogs 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.eclipse.ui.internal.ide.dialogs.ResourceComparator

ResourceComparator
public class ResourceComparator extends ViewerComparator (Code)
Sorter for viewers that display items of type IResource. The sorter supports two sort criteria:

NAME: Folders are given order precedence, followed by files. Within these two groups resources are ordered by name. All name comparisons are case-insensitive.

TYPE: Folders are given order precedence, followed by files. Within these two groups resources are ordered by extension. All extension comparisons are case-insensitive.

This class may be instantiated; it is not intended to be subclassed.



Field Summary
final public static  intNAME
     Constructor argument value that indicates to sort items by name.
final public static  intTYPE
     Constructor argument value that indicates to sort items by extension.

Constructor Summary
public  ResourceComparator(int criteria)
     Creates a resource sorter that will use the given sort criteria.

Method Summary
protected  intclassComparison(Object element)
     Returns an integer value representing the relative sort priority of the given element based on its class.
public  intcompare(Viewer viewer, Object o1, Object o2)
    
protected  intcompareClass(Object element1, Object element2)
     Returns a number reflecting the collation order of the given elements based on their class.
protected  intcompareNames(IResource resource1, IResource resource2)
     Returns a number reflecting the collation order of the given resources based on their resource names.
protected  intcompareTypes(IResource resource1, IResource resource2)
     Returns a number reflecting the collation order of the given resources based on their respective file extensions.
public  intgetCriteria()
     Returns the sort criteria of this this sorter.

Field Detail
NAME
final public static int NAME(Code)
Constructor argument value that indicates to sort items by name.



TYPE
final public static int TYPE(Code)
Constructor argument value that indicates to sort items by extension.




Constructor Detail
ResourceComparator
public ResourceComparator(int criteria)(Code)
Creates a resource sorter that will use the given sort criteria.
Parameters:
  criteria - the sort criterion to use: one of NAME or TYPE




Method Detail
classComparison
protected int classComparison(Object element)(Code)
Returns an integer value representing the relative sort priority of the given element based on its class.

  • resources (IResource) - 2
  • project references (ProjectReference) - 1
  • everything else - 0


Parameters:
  element - the element the sort priority (larger numbers means more important)



compare
public int compare(Viewer viewer, Object o1, Object o2)(Code)



compareClass
protected int compareClass(Object element1, Object element2)(Code)
Returns a number reflecting the collation order of the given elements based on their class.
Parameters:
  element1 - the first element to be ordered
Parameters:
  element2 - the second element to be ordered a negative number if the first element is less than the second element; the value 0 if the first element isequal to the second element; and a positive number if the firstelement is greater than the second element



compareNames
protected int compareNames(IResource resource1, IResource resource2)(Code)
Returns a number reflecting the collation order of the given resources based on their resource names.
Parameters:
  resource1 - the first resource element to be ordered
Parameters:
  resource2 - the second resource element to be ordered a negative number if the first element is less than the second element; the value 0 if the first element isequal to the second element; and a positive number if the firstelement is greater than the second element



compareTypes
protected int compareTypes(IResource resource1, IResource resource2)(Code)
Returns a number reflecting the collation order of the given resources based on their respective file extensions. Resources with the same file extension will be collated based on their names.
Parameters:
  resource1 - the first resource element to be ordered
Parameters:
  resource2 - the second resource element to be ordered a negative number if the first element is less than the second element; the value 0 if the first element isequal to the second element; and a positive number if the firstelement is greater than the second element



getCriteria
public int getCriteria()(Code)
Returns the sort criteria of this this sorter. the sort criterion: one of NAME or TYPE



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