Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@
*/
public class LastSaveReferenceProvider implements IQuickDiffReferenceProvider, IElementStateListener {

/**
* Family for jobs started by {@link LastSaveReferenceProvider}.
*/
public static final Object JOB_FAMILY = new Object();

/** <code>true</code> if the document has been read. */
private boolean fDocumentRead= false;
/**
Expand Down Expand Up @@ -117,6 +122,11 @@ protected IStatus run(IProgressMonitor monitor) {
readDocument(monitor, false);
return Status.OK_STATUS;
}

@Override
public boolean belongsTo(Object family) {
return family == JOB_FAMILY;
}
}

@Override
Expand Down
Loading