Java Doc for TableView.java in  » GIS » udig-1.1 » net » refractions » udig » tool » select » 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 » GIS » udig 1.1 » net.refractions.udig.tool.select 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


net.refractions.udig.tool.select.TableView

TableView
public class TableView extends ViewPart implements ISelectionProvider,IUDIGView(Code)
Table view for selected Layer, may choose to display FeatureSource with out supporting selection in the future.

Currently this is a playground using the FeatureTable to look at a FeautreSource, syncing up the slection with the Layer's filter will come next.

Long term responsibilities include:

  • Access to a Filter editor for selection specification
  • Allowing in view edits
  • Real random access for shapefile allowing the table view everyone expects (tm)

author:
   Jody Garnett, Refractions Research, Inc.
since:
   0.6


Field Summary
final protected static  StringANY
    
 MapEditorcurrentEditor
    
protected volatile  booleanediting
     Indicates that the a feature is being updated by the table view so it is not necessary to load the change indicated by the feature event.
protected volatile  booleanfilterChange
    
 Layerlayer
    
protected volatile  booleanreloadNeeded
     Indicates that the features in the view need to be reloaded when the view is visible again.
 FeatureTableControltable
    
 Texttext
    
protected volatile  booleanupdatingLayerFilter
     Indicates that the view is updating the layer's filter because the selection on the table has changed.

Constructor Summary
public  TableView()
     Construct SelectView.

Method Summary
protected  voidactivate()
    
public  voidaddSelectionChangedListener(ISelectionChangedListener listener)
    
public  voidcreatePartControl(Composite parent)
    
protected  voiddeactivate()
    
public  voiddispose()
    
public  voideditFeatureChanged(Feature feature)
    
protected  voideditorActivated(MapEditor editor)
     Watch current editor to indicate current selectable layers.
public  IToolContextgetContext()
    
public  ISelectiongetSelection()
    
 voidlayerSelected(ILayer selected)
    
protected  voidreloadFeatures(ILayer notifierLayer)
    
public  voidremoveSelectionChangedListener(ISelectionChangedListener listener)
    
public  voidsetContext(IToolContext newContext)
    
public  voidsetFocus()
    
public  voidsetSelection(ISelection selection)
    
protected  voidupdateSelection(ILayer notifierLayer)
    
protected  voidupdateTable(ILayer notifierLayer)
    

Field Detail
ANY
final protected static String ANY(Code)



currentEditor
MapEditor currentEditor(Code)
Current editor



editing
protected volatile boolean editing(Code)
Indicates that the a feature is being updated by the table view so it is not necessary to load the change indicated by the feature event.



filterChange
protected volatile boolean filterChange(Code)
Indicates that the selection filter has changed while inactive



layer
Layer layer(Code)
Current layer under study



reloadNeeded
protected volatile boolean reloadNeeded(Code)
Indicates that the features in the view need to be reloaded when the view is visible again.



table
FeatureTableControl table(Code)
Used to show the current feature source



text
Text text(Code)
Used to display status messages when no content is available



updatingLayerFilter
protected volatile boolean updatingLayerFilter(Code)
Indicates that the view is updating the layer's filter because the selection on the table has changed.




Constructor Detail
TableView
public TableView()(Code)
Construct SelectView.

Don't do setup here - there is an init method you can override that has access to configuration and stuff.





Method Detail
activate
protected void activate()(Code)



addSelectionChangedListener
public void addSelectionChangedListener(ISelectionChangedListener listener)(Code)



createPartControl
public void createPartControl(Composite parent)(Code)



deactivate
protected void deactivate()(Code)



dispose
public void dispose()(Code)



editFeatureChanged
public void editFeatureChanged(Feature feature)(Code)



editorActivated
protected void editorActivated(MapEditor editor)(Code)
Watch current editor to indicate current selectable layers.
Parameters:
  editor -



getContext
public IToolContext getContext()(Code)



getSelection
public ISelection getSelection()(Code)



layerSelected
void layerSelected(ILayer selected)(Code)



reloadFeatures
protected void reloadFeatures(ILayer notifierLayer)(Code)



removeSelectionChangedListener
public void removeSelectionChangedListener(ISelectionChangedListener listener)(Code)



setContext
public void setContext(IToolContext newContext)(Code)



setFocus
public void setFocus()(Code)



setSelection
public void setSelection(ISelection selection)(Code)



updateSelection
protected void updateSelection(ILayer notifierLayer)(Code)



updateTable
protected void updateTable(ILayer notifierLayer)(Code)



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