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


org.eclipse.ui.ide.undo.AbstractWorkspaceOperation
   org.eclipse.ui.ide.undo.AbstractMarkersOperation

All known Subclasses:   org.eclipse.ui.ide.undo.UpdateMarkersOperation,  org.eclipse.ui.ide.undo.DeleteMarkersOperation,  org.eclipse.ui.ide.undo.CreateMarkersOperation,
AbstractMarkersOperation
abstract class AbstractMarkersOperation extends AbstractWorkspaceOperation (Code)
An AbstractMarkersOperation represents an undoable operation that affects markers on a resource. It provides implementations for marker creation, deletion, and updating. Clients may call the public API from a background thread. This class is not intended to be subclassed by clients.
since:
   3.3


Field Summary
 Map[]attributes
    
 MarkerDescription[]markerDescriptions
    
 IMarker[]markers
    

Constructor Summary
 AbstractMarkersOperation(IMarker[] markers, MarkerDescription[] markerDescriptions, Map attributes, String name)
     Create an AbstractMarkersOperation by specifying a combination of markers and attributes or marker descriptions.
Parameters:
  markers - the markers used in the operation or null if nomarkers yet exist
Parameters:
  markerDescriptions - the marker descriptions that should be used to create markers,or null if the markers already exist
Parameters:
  attributes - The map of attributes that should be assigned to any existingmarkers when the markers are updated.

Method Summary
protected  voidappendDescriptiveText(StringBuffer text)
    
public  IStatuscomputeExecutionStatus(IProgressMonitor monitor)
    
public  IStatuscomputeRedoableStatus(IProgressMonitor monitor)
    
public  IStatuscomputeUndoableStatus(IProgressMonitor monitor)
    
protected  voidcreateMarkers(int work, IProgressMonitor monitor)
     Create markers from any currently known marker descriptions.
protected  voiddeleteMarkers(int work, IProgressMonitor monitor)
     Delete any currently known markers and save their information in marker descriptions so that they can be restored.
abstract protected  IStatusgetBasicRedoStatus()
     Return a status indicating the projected outcome of redoing the marker operation.
abstract protected  IStatusgetBasicUndoStatus()
     Return a status indicating the projected outcome of undoing the marker operation.
protected  ISchedulingRulegetExecuteSchedulingRule()
    
protected  IStatusgetMarkerCreationStatus()
     Compute the status for creating any known markers.
protected  IStatusgetMarkerDeletionStatus()
     Compute the status for deleting any known markers.
protected  IStatusgetMarkerUpdateStatus()
     Compute the status for updating any known markers.
public  IMarker[]getMarkers()
     Return the array of markers that has been updated or created.
protected  ISchedulingRulegetUndoSchedulingRule()
    
protected  booleanmarkersExist()
     Return whether the markers known by this operation currently exist.
protected  voidsetMarkerDescriptions(MarkerDescription[] descriptions)
     Set the marker descriptions that describe markers that can be created.
protected  voidupdateMarkers(int work, IProgressMonitor monitor, boolean mergeAttributes)
     Update the currently known markers with the corresponding array of marker descriptions.

Field Detail
attributes
Map[] attributes(Code)



markerDescriptions
MarkerDescription[] markerDescriptions(Code)



markers
IMarker[] markers(Code)




Constructor Detail
AbstractMarkersOperation
AbstractMarkersOperation(IMarker[] markers, MarkerDescription[] markerDescriptions, Map attributes, String name)(Code)
Create an AbstractMarkersOperation by specifying a combination of markers and attributes or marker descriptions.
Parameters:
  markers - the markers used in the operation or null if nomarkers yet exist
Parameters:
  markerDescriptions - the marker descriptions that should be used to create markers,or null if the markers already exist
Parameters:
  attributes - The map of attributes that should be assigned to any existingmarkers when the markers are updated. Ignored if the markersparameter is null.
Parameters:
  name - the name used to describe the operation




Method Detail
appendDescriptiveText
protected void appendDescriptiveText(StringBuffer text)(Code)



computeExecutionStatus
public IStatus computeExecutionStatus(IProgressMonitor monitor)(Code)



computeRedoableStatus
public IStatus computeRedoableStatus(IProgressMonitor monitor)(Code)



computeUndoableStatus
public IStatus computeUndoableStatus(IProgressMonitor monitor)(Code)



createMarkers
protected void createMarkers(int work, IProgressMonitor monitor) throws CoreException(Code)
Create markers from any currently known marker descriptions.
Parameters:
  work - the number of work ticks to be used by the create
Parameters:
  monitor - the progress monitor to use for the create
throws:
  CoreException - propagates any CoreExceptions thrown from the resources API



deleteMarkers
protected void deleteMarkers(int work, IProgressMonitor monitor) throws CoreException(Code)
Delete any currently known markers and save their information in marker descriptions so that they can be restored.
Parameters:
  work - the number of work ticks to be used by the delete
Parameters:
  monitor - the progress monitor to use for the delete
throws:
  CoreException - propagates any CoreExceptions thrown from the resources API



getBasicRedoStatus
abstract protected IStatus getBasicRedoStatus()(Code)
Return a status indicating the projected outcome of redoing the marker operation. The receiver is not responsible for remembering the result of this computation. the status indicating whether the operation can be undone



getBasicUndoStatus
abstract protected IStatus getBasicUndoStatus()(Code)
Return a status indicating the projected outcome of undoing the marker operation. The receiver is not responsible for remembering the result of this computation. the status indicating whether the operation can be undone



getExecuteSchedulingRule
protected ISchedulingRule getExecuteSchedulingRule()(Code)



getMarkerCreationStatus
protected IStatus getMarkerCreationStatus()(Code)
Compute the status for creating any known markers. A status severity of OK indicates that the create is likely to be successful. A status severity of ERROR indicates that the operation is no longer valid. Other status severities are open to interpretation by the caller. the status indicating the projected outcome of creating themarkers.



getMarkerDeletionStatus
protected IStatus getMarkerDeletionStatus()(Code)
Compute the status for deleting any known markers. A status severity of OK indicates that the delete is likely to be successful. A status severity of ERROR indicates that the operation is no longer valid. Other status severities are open to interpretation by the caller. the status indicating the projected outcome of deleting themarkers.



getMarkerUpdateStatus
protected IStatus getMarkerUpdateStatus()(Code)
Compute the status for updating any known markers. A status severity of OK indicates that the update is likely to be successful. A status severity of ERROR indicates that the operation is no longer valid. Other status severities are open to interpretation by the caller. the status indicating the projected outcome of updating themarkers.



getMarkers
public IMarker[] getMarkers()(Code)
Return the array of markers that has been updated or created. the array of markers that have been updated or created, ornull if no markers have been created or updated.



getUndoSchedulingRule
protected ISchedulingRule getUndoSchedulingRule()(Code)



markersExist
protected boolean markersExist()(Code)
Return whether the markers known by this operation currently exist. true if there are existing markers andfalse if there are no known markers or any one ofthem does not exist



setMarkerDescriptions
protected void setMarkerDescriptions(MarkerDescription[] descriptions)(Code)
Set the marker descriptions that describe markers that can be created.
Parameters:
  descriptions - the descriptions of markers that can be created.



updateMarkers
protected void updateMarkers(int work, IProgressMonitor monitor, boolean mergeAttributes) throws CoreException(Code)
Update the currently known markers with the corresponding array of marker descriptions.
Parameters:
  work - the number of work ticks to be used by the update
Parameters:
  monitor - the progress monitor to use for the update
Parameters:
  mergeAttributes - a boolean specifying whether the attributes are merged orconsidered to be a replacement of the previous attributes.
throws:
  CoreException - propagates any CoreExceptions thrown from the resources API



Fields inherited from org.eclipse.ui.ide.undo.AbstractWorkspaceOperation
protected static int EXECUTE(Code)(Java Doc)
protected static int REDO(Code)(Java Doc)
protected static int UNDO(Code)(Java Doc)
String[] modelProviderIds(Code)(Java Doc)
protected boolean quietCompute(Code)(Java Doc)
protected IResource[] resources(Code)(Java Doc)

Methods inherited from org.eclipse.ui.ide.undo.AbstractWorkspaceOperation
public void aboutToNotify(OperationHistoryEvent event)(Code)(Java Doc)
protected void appendDescriptiveText(StringBuffer text)(Code)(Java Doc)
public boolean canExecute()(Code)(Java Doc)
public boolean canRedo()(Code)(Java Doc)
public boolean canUndo()(Code)(Java Doc)
public IStatus computeExecutionStatus(IProgressMonitor monitor)(Code)(Java Doc)
public IStatus computeRedoableStatus(IProgressMonitor monitor)(Code)(Java Doc)
public IStatus computeUndoableStatus(IProgressMonitor monitor)(Code)(Java Doc)
abstract protected void doExecute(IProgressMonitor monitor, IAdaptable uiInfo) throws CoreException(Code)(Java Doc)
abstract protected void doUndo(IProgressMonitor monitor, IAdaptable uiInfo) throws CoreException(Code)(Java Doc)
public IStatus execute(IProgressMonitor monitor, IAdaptable uiInfo) throws ExecutionException(Code)(Java Doc)
public Object[] getAffectedObjects()(Code)(Java Doc)
protected IStatus getErrorStatus(String message)(Code)(Java Doc)
protected ISchedulingRule getExecuteSchedulingRule()(Code)(Java Doc)
protected ISchedulingRule getRedoSchedulingRule()(Code)(Java Doc)
protected Shell getShell(IAdaptable uiInfo)(Code)(Java Doc)
protected ISchedulingRule getUndoSchedulingRule()(Code)(Java Doc)
protected IStatus getWarningStatus(String message, int code)(Code)(Java Doc)
protected IWorkspace getWorkspace()(Code)(Java Doc)
protected IResourceRuleFactory getWorkspaceRuleFactory()(Code)(Java Doc)
protected boolean isValid()(Code)(Java Doc)
protected void markInvalid()(Code)(Java Doc)
public IStatus redo(IProgressMonitor monitor, IAdaptable uiInfo) throws ExecutionException(Code)(Java Doc)
protected boolean resourcesExist()(Code)(Java Doc)
protected boolean resourcesIncludesProjects()(Code)(Java Doc)
public boolean runInBackground()(Code)(Java Doc)
public void setModelProviderIds(String[] ids)(Code)(Java Doc)
public void setQuietCompute(boolean quiet)(Code)(Java Doc)
protected void setTargetResources(IResource[] resources)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public IStatus undo(IProgressMonitor monitor, IAdaptable uiInfo) throws ExecutionException(Code)(Java Doc)
protected boolean updateResourceChangeDescriptionFactory(IResourceChangeDescriptionFactory factory, int operation)(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.