From: axelcl
+ * Note that, if the document is modified concurrently, this method may
+ * return {@link CharacterIterator#DONE} if a {@link BadLocationException}
+ * was thrown when accessing the backing document.
+ *
+ * A tuple is said to match another if their annotations have the same comment
+ * flag and their position offsets are equal.
+ *
+ * If a match is found, the annotation gets removed from
+ *
* Value is of type
* Value is of type IDocument
based implementation of CharacterIterator
.
- *
+ * An IDocument
based implementation of
+ * CharacterIterator
and CharSequence
. Note that
+ * the supplied document is not copied; if the document is modified during the
+ * lifetime of a DocumentCharacterIterator
, the methods
+ * returning document content may not always return the same values. Also, if
+ * accessing the document fails with a {@link BadLocationException}, any of
+ * CharacterIterator
methods as well as charAt
may
+ * return {@link CharacterIterator#DONE}.
+ *
* @since 3.0
*/
public class DocumentCharacterIterator implements CharacterIterator, CharSequence {
@@ -28,48 +35,49 @@ public class DocumentCharacterIterator implements CharacterIterator, CharSequenc
private final IDocument fDocument;
private final int fFirst;
private final int fLast;
-
+
private void invariant() {
Assert.isTrue(fIndex >= fFirst);
Assert.isTrue(fIndex <= fLast);
}
-
+
/**
- * Creates an iterator for the entire sequence.
- *
- * @param sequence the sequence backing this iterator
+ * Creates an iterator for the entire document.
+ *
+ * @param document the document backing this iterator
*/
- public DocumentCharacterIterator(IDocument sequence) {
- this(sequence, 0);
+ public DocumentCharacterIterator(IDocument document) {
+ this(document, 0);
}
-
+
/**
- * Creates an iterator.
- *
- * @param sequence the sequence backing this iterator
+ * Creates an iterator, starting at offset first
.
+ *
+ * @param document the document backing this iterator
* @param first the first character to consider
* @throws IllegalArgumentException if the indices are out of bounds
*/
- public DocumentCharacterIterator(IDocument sequence, int first) throws IllegalArgumentException {
- this(sequence, first, sequence.getLength());
+ public DocumentCharacterIterator(IDocument document, int first) throws IllegalArgumentException {
+ this(document, first, document.getLength());
}
/**
- * Creates an iterator.
- *
- * @param sequence the sequence backing this iterator
+ * Creates an iterator for the document contents from first
+ * (inclusive) to last
(exclusive).
+ *
+ * @param document the document backing this iterator
* @param first the first character to consider
* @param last the last character index to consider
* @throws IllegalArgumentException if the indices are out of bounds
*/
- public DocumentCharacterIterator(IDocument sequence, int first, int last) throws IllegalArgumentException {
- if (sequence == null)
+ public DocumentCharacterIterator(IDocument document, int first, int last) throws IllegalArgumentException {
+ if (document == null)
throw new NullPointerException();
if (first < 0 || first > last)
throw new IllegalArgumentException();
- if (last > sequence.getLength())
+ if (last > document.getLength())
throw new IllegalArgumentException();
- fDocument= sequence;
+ fDocument= document;
fFirst= first;
fLast= last;
fIndex= first;
@@ -132,7 +140,7 @@ public class DocumentCharacterIterator implements CharacterIterator, CharSequenc
fIndex= position;
else
throw new IllegalArgumentException();
-
+
invariant();
return current();
}
@@ -176,25 +184,39 @@ public class DocumentCharacterIterator implements CharacterIterator, CharSequenc
return getEndIndex() - getBeginIndex();
}
- /*
- * @see java.lang.CharSequence#charAt(int)
+ /**
+ * {@inheritDoc}
+ * content
.
+ * Returns 0 if none is found.
+ *
+ * @param content
+ * the content to search
+ * @return the first index of a unicode identifier part, or zero if none can
+ * be found
+ */
+ private int findFirstContent(final CharSequence content, int prefixEnd) {
+ int lenght = content.length();
+ for (int i = prefixEnd; i < lenght; i++) {
+ if (Character.isUnicodeIdentifierPart(content.charAt(i)))
+ return i;
+ }
+ return 0;
+ }
+
+ // /**
+ // * Finds the offset of the first identifier part within
+ // content
.
+ // * Returns 0 if none is found.
+ // *
+ // * @param content the content to search
+ // * @return the first index of a unicode identifier part, or zero if none
+ // can
+ // * be found
+ // */
+ // private int findPrefixEnd(final CharSequence content) {
+ // // return the index after the leading '/*' or '/**'
+ // int len= content.length();
+ // int i= 0;
+ // while (i < len && isWhiteSpace(content.charAt(i)))
+ // i++;
+ // if (len >= i + 2 && content.charAt(i) == '/' && content.charAt(i + 1) ==
+ // '*')
+ // if (len >= i + 3 && content.charAt(i + 2) == '*')
+ // return i + 3;
+ // else
+ // return i + 2;
+ // else
+ // return i;
+ // }
+ //
+ // private boolean isWhiteSpace(char c) {
+ // return c == ' ' || c == '\t';
+ // }
+
+ /*
+ * @see org.eclipse.jface.text.source.projection.IProjectionPosition#computeCaptionOffset(org.eclipse.jface.text.IDocument)
+ */
+ public int computeCaptionOffset(IDocument document) {
+ // return 0;
+ DocumentCharacterIterator sequence = new DocumentCharacterIterator(document, offset, offset + length);
+ return findFirstContent(sequence, 0);
+ }
+ }
+
+ /**
+ * Projection position that will return two foldable regions: one folding away
+ * the lines before the one containing the simple name of the java element,
+ * one folding away any lines after the caption.
+ *
+ * @since 3.1
+ */
+ private static final class JavaElementPosition extends Position implements IProjectionPosition {
+
+ private IMember fMember;
+
+ public JavaElementPosition(int offset, int length, IMember member) {
+ super(offset, length);
+ Assert.isNotNull(member);
+ fMember = member;
+ }
+
+ public void setMember(IMember member) {
+ Assert.isNotNull(member);
+ fMember = member;
+ }
+
+ /*
+ * @see org.eclipse.jface.text.source.projection.IProjectionPosition#computeFoldingRegions(org.eclipse.jface.text.IDocument)
+ */
+ public IRegion[] computeProjectionRegions(IDocument document) throws BadLocationException {
+ int nameStart = offset;
+ try {
+ /*
+ * The member's name range may not be correct. However, reconciling
+ * would trigger another element delta which would lead to reentrant
+ * situations. Therefore, we optimistically assume that the name range
+ * is correct, but double check the received lines below.
+ */
+ ISourceRange nameRange = fMember.getNameRange();
+ if (nameRange != null)
+ nameStart = nameRange.getOffset();
+
+ } catch (JavaModelException e) {
+ // ignore and use default
+ }
+
+ int firstLine = document.getLineOfOffset(offset);
+ int captionLine = document.getLineOfOffset(nameStart);
+ int lastLine = document.getLineOfOffset(offset + length);
+
+ /*
+ * see comment above - adjust the caption line to be inside the entire
+ * folded region, and rely on later element deltas to correct the name
+ * range.
+ */
+ if (captionLine < firstLine)
+ captionLine = firstLine;
+ if (captionLine > lastLine)
+ captionLine = lastLine;
+
+ IRegion preRegion;
+ if (firstLine < captionLine) {
+ int preOffset = document.getLineOffset(firstLine);
+ IRegion preEndLineInfo = document.getLineInformation(captionLine);
+ int preEnd = preEndLineInfo.getOffset();
+ preRegion = new Region(preOffset, preEnd - preOffset);
+ } else {
+ preRegion = null;
+ }
+
+ if (captionLine < lastLine) {
+ int postOffset = document.getLineOffset(captionLine + 1);
+ IRegion postRegion = new Region(postOffset, offset + length - postOffset);
+
+ if (preRegion == null)
+ return new IRegion[] { postRegion };
+
+ return new IRegion[] { preRegion, postRegion };
+ }
+
+ if (preRegion != null)
+ return new IRegion[] { preRegion };
+
return null;
- }
+ }
+
+ /*
+ * @see org.eclipse.jface.text.source.projection.IProjectionPosition#computeCaptionOffset(org.eclipse.jface.text.IDocument)
+ */
+ public int computeCaptionOffset(IDocument document) throws BadLocationException {
+ int nameStart = offset;
+ try {
+ // need a reconcile here?
+ ISourceRange nameRange = fMember.getNameRange();
+ if (nameRange != null)
+ nameStart = nameRange.getOffset();
+ } catch (JavaModelException e) {
+ // ignore and use default
+ }
+
+ return nameStart - offset;
+ }
+
}
-
-
+
private IDocument fCachedDocument;
-
+
+ private ProjectionAnnotationModel fCachedModel;
+
private ITextEditor fEditor;
+
private ProjectionViewer fViewer;
+
private IJavaElement fInput;
+
private IElementChangedListener fElementListener;
-
- private boolean fAllowCollapsing= false;
- private boolean fCollapseJavadoc= false;
- private boolean fCollapseImportContainer= true;
- private boolean fCollapseInnerTypes= true;
- private boolean fCollapseMethods= false;
-
+
+ private boolean fAllowCollapsing = false;
+
+ private boolean fCollapseJavadoc = false;
+
+// private boolean fCollapseImportContainer = true;
+
+ private boolean fCollapseInnerTypes = true;
+
+ private boolean fCollapseMethods = false;
+
+ private boolean fCollapseHeaderComments = true;
+
+ /* caches for header comment extraction. */
+ private IType fFirstType;
+
+ private boolean fHasHeaderComment;
+
public DefaultJavaFoldingStructureProvider() {
}
-
+
public void install(ITextEditor editor, ProjectionViewer viewer) {
if (editor instanceof PHPEditor) {
- fEditor= editor;
- fViewer= viewer;
+ fEditor = editor;
+ fViewer = viewer;
fViewer.addProjectionListener(this);
}
}
-
+
public void uninstall() {
if (isInstalled()) {
projectionDisabled();
fViewer.removeProjectionListener(this);
- fViewer= null;
- fEditor= null;
+ fViewer = null;
+ fEditor = null;
}
}
-
+
protected boolean isInstalled() {
return fEditor != null;
}
-
+
/*
* @see org.eclipse.jface.text.source.projection.IProjectionListener#projectionEnabled()
*/
public void projectionEnabled() {
+ // http://home.ott.oti.com/teams/wswb/anon/out/vms/index.html
+ // projectionEnabled messages are not always paired with projectionDisabled
+ // i.e. multiple enabled messages may be sent out.
+ // we have to make sure that we disable first when getting an enable
+ // message.
+ projectionDisabled();
+
if (fEditor instanceof PHPEditor) {
initialize();
- fElementListener= new ElementChangedListener();
+ fElementListener = new ElementChangedListener();
JavaCore.addElementChangedListener(fElementListener);
}
}
-
+
/*
* @see org.eclipse.jface.text.source.projection.IProjectionListener#projectionDisabled()
*/
public void projectionDisabled() {
- fCachedDocument= null;
+ fCachedDocument = null;
if (fElementListener != null) {
JavaCore.removeElementChangedListener(fElementListener);
- fElementListener= null;
+ fElementListener = null;
}
}
-
+
public void initialize() {
-
+
if (!isInstalled())
return;
-
+
initializePreferences();
-
+
try {
-
- IDocumentProvider provider= fEditor.getDocumentProvider();
- fCachedDocument= provider.getDocument(fEditor.getEditorInput());
- fAllowCollapsing= true;
-
+
+ IDocumentProvider provider = fEditor.getDocumentProvider();
+ fCachedDocument = provider.getDocument(fEditor.getEditorInput());
+ fAllowCollapsing = true;
+
+ fFirstType = null;
+ fHasHeaderComment = false;
+
if (fEditor instanceof PHPUnitEditor) {
- IWorkingCopyManager manager= PHPeclipsePlugin.getDefault().getWorkingCopyManager();
- fInput= manager.getWorkingCopy(fEditor.getEditorInput());
- }
-// else if (fEditor instanceof ClassFileEditor) {
-// IClassFileEditorInput editorInput= (IClassFileEditorInput) fEditor.getEditorInput();
-// fInput= editorInput.getClassFile();
-// }
-
+ IWorkingCopyManager manager = PHPeclipsePlugin.getDefault().getWorkingCopyManager();
+ fInput = manager.getWorkingCopy(fEditor.getEditorInput());
+ }
+ // else if (fEditor instanceof ClassFileEditor) {
+ // IClassFileEditorInput editorInput= (IClassFileEditorInput)
+ // fEditor.getEditorInput();
+ // fInput= editorInput.getClassFile();
+ // }
+
if (fInput != null) {
- ProjectionAnnotationModel model= (ProjectionAnnotationModel) fEditor.getAdapter(ProjectionAnnotationModel.class);
+ ProjectionAnnotationModel model = (ProjectionAnnotationModel) fEditor.getAdapter(ProjectionAnnotationModel.class);
if (model != null) {
- Map additions= computeAdditions((IParent) fInput);
- model.removeAllAnnotations();
- model.replaceAnnotations(null, additions);
+ fCachedModel = model;
+ if (fInput instanceof ICompilationUnit) {
+ ICompilationUnit unit = (ICompilationUnit) fInput;
+ synchronized (unit) {
+ try {
+// unit.reconcile(ICompilationUnit.NO_AST, false, null, null);
+ unit.reconcile();
+ } catch (JavaModelException x) {
+ }
+ }
+ }
+
+ Map additions = computeAdditions((IParent) fInput);
+ /*
+ * Minimize the events being sent out - as this happens in the UI
+ * thread merge everything into one call.
+ */
+ List removals = new LinkedList();
+ Iterator existing = model.getAnnotationIterator();
+ while (existing.hasNext())
+ removals.add(existing.next());
+ model.replaceAnnotations((Annotation[]) removals.toArray(new Annotation[removals.size()]), additions);
}
}
-
+
} finally {
- fCachedDocument= null;
- fAllowCollapsing= false;
+ fCachedDocument = null;
+ fCachedModel = null;
+ fAllowCollapsing = false;
+
+ fFirstType = null;
+ fHasHeaderComment = false;
}
}
private void initializePreferences() {
- IPreferenceStore store= PHPeclipsePlugin.getDefault().getPreferenceStore();
- fCollapseInnerTypes= store.getBoolean(PreferenceConstants.EDITOR_FOLDING_INNERTYPES);
- fCollapseImportContainer= store.getBoolean(PreferenceConstants.EDITOR_FOLDING_IMPORTS);
- fCollapseJavadoc= store.getBoolean(PreferenceConstants.EDITOR_FOLDING_JAVADOC);
- fCollapseMethods= store.getBoolean(PreferenceConstants.EDITOR_FOLDING_METHODS);
+ IPreferenceStore store = PHPeclipsePlugin.getDefault().getPreferenceStore();
+ fCollapseInnerTypes = store.getBoolean(PreferenceConstants.EDITOR_FOLDING_INNERTYPES);
+// fCollapseImportContainer = store.getBoolean(PreferenceConstants.EDITOR_FOLDING_IMPORTS);
+ fCollapseJavadoc = store.getBoolean(PreferenceConstants.EDITOR_FOLDING_JAVADOC);
+ fCollapseMethods = store.getBoolean(PreferenceConstants.EDITOR_FOLDING_METHODS);
+ fCollapseHeaderComments = store.getBoolean(PreferenceConstants.EDITOR_FOLDING_HEADERS);
}
private Map computeAdditions(IParent parent) {
- Map map= new HashMap();
+ Map map = new LinkedHashMap(); // use a linked map to maintain ordering of
+ // comments
try {
computeAdditions(parent.getChildren(), map);
} catch (JavaModelException x) {
@@ -241,50 +534,57 @@ public class DefaultJavaFoldingStructureProvider implements IProjectionListener,
}
private void computeAdditions(IJavaElement[] elements, Map map) throws JavaModelException {
- for (int i= 0; i < elements.length; i++) {
- IJavaElement element= elements[i];
-
+ for (int i = 0; i < elements.length; i++) {
+ IJavaElement element = elements[i];
+
computeAdditions(element, map);
-
+
if (element instanceof IParent) {
- IParent parent= (IParent) element;
+ IParent parent = (IParent) element;
computeAdditions(parent.getChildren(), map);
}
}
}
private void computeAdditions(IJavaElement element, Map map) {
-
- boolean createProjection= false;
-
- boolean collapse= false;
+
+ boolean createProjection = false;
+
+ boolean collapse = false;
switch (element.getElementType()) {
-
- case IJavaElement.IMPORT_CONTAINER:
- collapse= fAllowCollapsing && fCollapseImportContainer;
- createProjection= true;
- break;
- case IJavaElement.TYPE:
- collapse= fAllowCollapsing && fCollapseInnerTypes && isInnerType((IType) element);
- createProjection= true;
- break;
- case IJavaElement.METHOD:
- collapse= fAllowCollapsing && fCollapseMethods;
- createProjection= true;
- break;
- }
-
+
+// case IJavaElement.IMPORT_CONTAINER:
+// collapse = fAllowCollapsing && fCollapseImportContainer;
+// createProjection = true;
+// break;
+ case IJavaElement.TYPE:
+ collapse = fAllowCollapsing && fCollapseInnerTypes && isInnerType((IType) element);
+ createProjection = true;
+ break;
+ case IJavaElement.METHOD:
+ collapse = fAllowCollapsing && fCollapseMethods;
+ createProjection = true;
+ break;
+ }
+
if (createProjection) {
- IRegion[] regions= computeProjectionRanges(element);
+ IRegion[] regions = computeProjectionRanges(element);
if (regions != null) {
// comments
- for (int i= 0; i < regions.length - 1; i++) {
- Position position= createProjectionPosition(regions[i]);
- if (position != null)
- map.put(new JavaProjectionAnnotation(element, fAllowCollapsing && fCollapseJavadoc, true), position);
+ for (int i = 0; i < regions.length - 1; i++) {
+ Position position = createProjectionPosition(regions[i], null);
+ boolean commentCollapse;
+ if (position != null) {
+ if (i == 0 && (regions.length > 2 || fHasHeaderComment) && element == fFirstType) {
+ commentCollapse = fAllowCollapsing && fCollapseHeaderComments;
+ } else {
+ commentCollapse = fAllowCollapsing && fCollapseJavadoc;
+ }
+ map.put(new JavaProjectionAnnotation(element, commentCollapse, true), position);
+ }
}
// code
- Position position= createProjectionPosition(regions[regions.length - 1]);
+ Position position = createProjectionPosition(regions[regions.length - 1], element);
if (position != null)
map.put(new JavaProjectionAnnotation(element, collapse, false), position);
}
@@ -292,58 +592,77 @@ public class DefaultJavaFoldingStructureProvider implements IProjectionListener,
}
private boolean isInnerType(IType type) {
-
+
try {
return type.isMember();
} catch (JavaModelException x) {
- IJavaElement parent= type.getParent();
+ IJavaElement parent = type.getParent();
if (parent != null) {
- int parentType= parent.getElementType();
+ int parentType = parent.getElementType();
return (parentType != IJavaElement.COMPILATION_UNIT && parentType != IJavaElement.CLASS_FILE);
}
}
-
- return false;
+
+ return false;
}
+ /**
+ * Computes the projection ranges for a given IJavaElement
.
+ * More than one range may be returned if the element has a leading comment
+ * which gets folded separately. If there are no foldable regions,
+ * null
is returned.
+ *
+ * @param element
+ * the java element that can be folded
+ * @return the regions to be folded, or null
if there are none
+ */
private IRegion[] computeProjectionRanges(IJavaElement element) {
-
+
try {
if (element instanceof ISourceReference) {
- ISourceReference reference= (ISourceReference) element;
- ISourceRange range= reference.getSourceRange();
- String contents= reference.getSource();
+ ISourceReference reference = (ISourceReference) element;
+ ISourceRange range = reference.getSourceRange();
+
+ String contents = reference.getSource();
if (contents == null)
return null;
-
- IScanner scanner= ToolFactory.createScanner(true/*tokenizeComments*/, false, false, true /* phpMode */ );
+
+ List regions = new ArrayList();
+ if (fFirstType == null && element instanceof IType) {
+ fFirstType = (IType) element;
+ IRegion headerComment = computeHeaderComment(fFirstType);
+ if (headerComment != null) {
+ regions.add(headerComment);
+ fHasHeaderComment = true;
+ }
+ }
+
+ IScanner scanner = ToolFactory.createScanner(true, false, false, false);
scanner.setSource(contents.toCharArray());
-
- List regions= new ArrayList();
- int shift= range.getOffset();
- int start= shift;
+ final int shift = range.getOffset();
+ int start = shift;
while (true) {
-
- int token= scanner.getNextToken();
- start= shift + scanner.getCurrentTokenStartPosition();
-
+
+ int token = scanner.getNextToken();
+ start = shift + scanner.getCurrentTokenStartPosition();
+
switch (token) {
- case ITerminalSymbols.TokenNameCOMMENT_PHPDOC: // COMMENT_JAVADOC:
- case ITerminalSymbols.TokenNameCOMMENT_BLOCK: {
- int end= shift + scanner.getCurrentTokenEndPosition() + 1;
- regions.add(new Region(start, end - start));
- }
- case ITerminalSymbols.TokenNameCOMMENT_LINE:
- continue;
+ case ITerminalSymbols.TokenNameCOMMENT_PHPDOC:
+ case ITerminalSymbols.TokenNameCOMMENT_BLOCK: {
+ int end = shift + scanner.getCurrentTokenEndPosition() + 1;
+ regions.add(new Region(start, end - start));
+ }
+ case ITerminalSymbols.TokenNameCOMMENT_LINE:
+ continue;
}
-
+
break;
}
-
- regions.add(new Region(start, range.getOffset() + range.getLength() - start));
-
+
+ regions.add(new Region(start, shift + range.getLength() - start));
+
if (regions.size() > 0) {
- IRegion[] result= new IRegion[regions.size()];
+ IRegion[] result = new IRegion[regions.size()];
regions.toArray(result);
return result;
}
@@ -351,188 +670,310 @@ public class DefaultJavaFoldingStructureProvider implements IProjectionListener,
} catch (JavaModelException e) {
} catch (InvalidInputException e) {
}
-
+
return null;
}
-
- private Position createProjectionPosition(IRegion region) {
-
+
+ private IRegion computeHeaderComment(IType type) throws JavaModelException {
if (fCachedDocument == null)
return null;
-
+
+ // search at most up to the first type
+ ISourceRange range = type.getSourceRange();
+ if (range == null)
+ return null;
+ int start = 0;
+ int end = range.getOffset();
+
+ if (fInput instanceof ISourceReference) {
+ String content;
+ try {
+ content = fCachedDocument.get(start, end - start);
+ } catch (BadLocationException e) {
+ return null; // ignore header comment in that case
+ }
+
+ /*
+ * code adapted from CommentFormattingStrategy: scan the header content up
+ * to the first type. Once a comment is found, accumulate any additional
+ * comments up to the stop condition. The stop condition is reaching a
+ * package declaration, import container, or the end of the input.
+ */
+ IScanner scanner = ToolFactory.createScanner(true, false, false, false);
+ scanner.setSource(content.toCharArray());
+
+ int headerStart = -1;
+ int headerEnd = -1;
+ try {
+ boolean foundComment = false;
+ int terminal = scanner.getNextToken();
+ while (terminal != ITerminalSymbols.TokenNameEOF
+ && !(terminal == ITerminalSymbols.TokenNameclass || terminal == ITerminalSymbols.TokenNameinterface || foundComment)) {
+
+ if (terminal == ITerminalSymbols.TokenNameCOMMENT_PHPDOC || terminal == ITerminalSymbols.TokenNameCOMMENT_BLOCK
+ || terminal == ITerminalSymbols.TokenNameCOMMENT_LINE) {
+ if (!foundComment)
+ headerStart = scanner.getCurrentTokenStartPosition();
+ headerEnd = scanner.getCurrentTokenEndPosition();
+ foundComment = true;
+ }
+ terminal = scanner.getNextToken();
+ }
+
+ } catch (InvalidInputException ex) {
+ return null;
+ }
+
+ if (headerEnd != -1) {
+ return new Region(headerStart, headerEnd - headerStart);
+ }
+ }
+ return null;
+ }
+
+ private Position createProjectionPosition(IRegion region, IJavaElement element) {
+
+ if (fCachedDocument == null)
+ return null;
+
try {
-
- int start= fCachedDocument.getLineOfOffset(region.getOffset());
- int end= fCachedDocument.getLineOfOffset(region.getOffset() + region.getLength());
+
+ int start = fCachedDocument.getLineOfOffset(region.getOffset());
+ int end = fCachedDocument.getLineOfOffset(region.getOffset() + region.getLength());
if (start != end) {
- int offset= fCachedDocument.getLineOffset(start);
- int endOffset= fCachedDocument.getLineOffset(end + 1);
- return new Position(offset, endOffset - offset);
+ int offset = fCachedDocument.getLineOffset(start);
+ int endOffset;
+ if (fCachedDocument.getNumberOfLines() > end + 1)
+ endOffset = fCachedDocument.getLineOffset(end + 1);
+ else if (end > start)
+ endOffset = fCachedDocument.getLineOffset(end) + fCachedDocument.getLineLength(end);
+ else
+ return null;
+ if (element instanceof IMember)
+ return new JavaElementPosition(offset, endOffset - offset, (IMember) element);
+ else
+ return new CommentPosition(offset, endOffset - offset);
}
-
+
} catch (BadLocationException x) {
}
-
+
return null;
}
-
+
protected void processDelta(IJavaElementDelta delta) {
-
+
if (!isInstalled())
return;
-
- ProjectionAnnotationModel model= (ProjectionAnnotationModel) fEditor.getAdapter(ProjectionAnnotationModel.class);
+
+ if ((delta.getFlags() & (IJavaElementDelta.F_CONTENT | IJavaElementDelta.F_CHILDREN)) == 0)
+ return;
+
+ ProjectionAnnotationModel model = (ProjectionAnnotationModel) fEditor.getAdapter(ProjectionAnnotationModel.class);
if (model == null)
return;
-
+
try {
-
- IDocumentProvider provider= fEditor.getDocumentProvider();
- fCachedDocument= provider.getDocument(fEditor.getEditorInput());
- fAllowCollapsing= false;
-
- Map additions= new HashMap();
- List deletions= new ArrayList();
- List updates= new ArrayList();
-
- Map updated= computeAdditions((IParent) fInput);
- Map previous= createAnnotationMap(model);
-
-
- Iterator e= updated.keySet().iterator();
+
+ IDocumentProvider provider = fEditor.getDocumentProvider();
+ fCachedDocument = provider.getDocument(fEditor.getEditorInput());
+ fCachedModel = model;
+ fAllowCollapsing = false;
+
+ fFirstType = null;
+ fHasHeaderComment = false;
+
+ Map additions = new HashMap();
+ List deletions = new ArrayList();
+ List updates = new ArrayList();
+
+ Map updated = computeAdditions((IParent) fInput);
+ Map previous = createAnnotationMap(model);
+
+ Iterator e = updated.keySet().iterator();
while (e.hasNext()) {
- JavaProjectionAnnotation annotation= (JavaProjectionAnnotation) e.next();
- IJavaElement element= annotation.getElement();
- Position position= (Position) updated.get(annotation);
-
- List annotations= (List) previous.get(element);
+ JavaProjectionAnnotation newAnnotation = (JavaProjectionAnnotation) e.next();
+ IJavaElement element = newAnnotation.getElement();
+ Position newPosition = (Position) updated.get(newAnnotation);
+
+ List annotations = (List) previous.get(element);
if (annotations == null) {
-
- additions.put(annotation, position);
-
+
+ additions.put(newAnnotation, newPosition);
+
} else {
-
- Iterator x= annotations.iterator();
+ Iterator x = annotations.iterator();
+ boolean matched = false;
while (x.hasNext()) {
- JavaProjectionAnnotation a= (JavaProjectionAnnotation) x.next();
- if (annotation.isComment() == a.isComment()) {
- Position p= model.getPosition(a);
- if (p != null && !position.equals(p)) {
- p.setOffset(position.getOffset());
- p.setLength(position.getLength());
- updates.add(a);
+ Tuple tuple = (Tuple) x.next();
+ JavaProjectionAnnotation existingAnnotation = tuple.annotation;
+ Position existingPosition = tuple.position;
+ if (newAnnotation.isComment() == existingAnnotation.isComment()) {
+ if (existingPosition != null && (!newPosition.equals(existingPosition))) {
+ existingPosition.setOffset(newPosition.getOffset());
+ existingPosition.setLength(newPosition.getLength());
+ updates.add(existingAnnotation);
}
+ matched = true;
x.remove();
break;
}
}
-
+ if (!matched)
+ additions.put(newAnnotation, newPosition);
+
if (annotations.isEmpty())
previous.remove(element);
}
}
-
- e= previous.values().iterator();
+
+ e = previous.values().iterator();
while (e.hasNext()) {
- List list= (List) e.next();
- int size= list.size();
- for (int i= 0; i < size; i++)
- deletions.add(list.get(i));
+ List list = (List) e.next();
+ int size = list.size();
+ for (int i = 0; i < size; i++)
+ deletions.add(((Tuple) list.get(i)).annotation);
}
-
- match(model, deletions, additions, updates);
-
- Annotation[] removals= new Annotation[deletions.size()];
+
+ match(deletions, additions, updates);
+
+ Annotation[] removals = new Annotation[deletions.size()];
deletions.toArray(removals);
- Annotation[] changes= new Annotation[updates.size()];
+ Annotation[] changes = new Annotation[updates.size()];
updates.toArray(changes);
model.modifyAnnotations(removals, additions, changes);
-
+
} finally {
- fCachedDocument= null;
- fAllowCollapsing= true;
+ fCachedDocument = null;
+ fAllowCollapsing = true;
+ fCachedModel = null;
+
+ fFirstType = null;
+ fHasHeaderComment = false;
}
}
-
- private void match(ProjectionAnnotationModel model, List deletions, Map additions, List changes) {
+
+ /**
+ * Matches deleted annotations to changed or added ones. A deleted
+ * annotation/position tuple that has a matching addition / change is updated
+ * and marked as changed. The matching tuple is not added (for additions) or
+ * marked as deletion instead (for changes). The result is that more
+ * annotations are changed and fewer get deleted/re-added.
+ */
+ private void match(List deletions, Map additions, List changes) {
if (deletions.isEmpty() || (additions.isEmpty() && changes.isEmpty()))
return;
-
- List newDeletions= new ArrayList();
- List newChanges= new ArrayList();
-
- Iterator deletionIterator= deletions.iterator();
- outer: while (deletionIterator.hasNext()) {
- JavaProjectionAnnotation deleted= (JavaProjectionAnnotation) deletionIterator.next();
- Position deletedPosition= model.getPosition(deleted);
+
+ List newDeletions = new ArrayList();
+ List newChanges = new ArrayList();
+
+ Iterator deletionIterator = deletions.iterator();
+ while (deletionIterator.hasNext()) {
+ JavaProjectionAnnotation deleted = (JavaProjectionAnnotation) deletionIterator.next();
+ Position deletedPosition = fCachedModel.getPosition(deleted);
if (deletedPosition == null)
continue;
-
- Iterator changesIterator= changes.iterator();
- while (changesIterator.hasNext()) {
- JavaProjectionAnnotation changed= (JavaProjectionAnnotation) changesIterator.next();
- if (deleted.isComment() == changed.isComment()) {
- Position changedPosition= model.getPosition(changed);
- if (changedPosition == null)
- continue;
-
- if (deletedPosition.getOffset() == changedPosition.getOffset()) {
-
- deletedPosition.setLength(changedPosition.getLength());
- deleted.setElement(changed.getElement());
-
- deletionIterator.remove();
- newChanges.add(deleted);
-
- changesIterator.remove();
- newDeletions.add(changed);
-
- continue outer;
- }
- }
+
+ Tuple deletedTuple = new Tuple(deleted, deletedPosition);
+
+ Tuple match = findMatch(deletedTuple, changes, null);
+ boolean addToDeletions = true;
+ if (match == null) {
+ match = findMatch(deletedTuple, additions.keySet(), additions);
+ addToDeletions = false;
}
-
- Iterator additionsIterator= additions.keySet().iterator();
- while (additionsIterator.hasNext()) {
- JavaProjectionAnnotation added= (JavaProjectionAnnotation) additionsIterator.next();
- if (deleted.isComment() == added.isComment()) {
- Position addedPosition= (Position) additions.get(added);
-
- if (deletedPosition.getOffset() == addedPosition.getOffset()) {
-
- deletedPosition.setLength(addedPosition.getLength());
- deleted.setElement(added.getElement());
-
- deletionIterator.remove();
- newChanges.add(deleted);
-
- additionsIterator.remove();
-
- break;
- }
+
+ if (match != null) {
+ IJavaElement element = match.annotation.getElement();
+ deleted.setElement(element);
+ deletedPosition.setLength(match.position.getLength());
+ if (deletedPosition instanceof JavaElementPosition && element instanceof IMember) {
+ JavaElementPosition jep = (JavaElementPosition) deletedPosition;
+ jep.setMember((IMember) element);
}
+
+ deletionIterator.remove();
+ newChanges.add(deleted);
+
+ if (addToDeletions)
+ newDeletions.add(match.annotation);
}
}
-
+
deletions.addAll(newDeletions);
changes.addAll(newChanges);
}
+ /**
+ * Finds a match for tuple
in a collection of annotations. The
+ * positions for the JavaProjectionAnnotation
instances in
+ * annotations
can be found in the passed
+ * positionMap
or fCachedModel
if
+ * positionMap
is null
.
+ * annotations
.
+ * JavaProjectionAnnotation
+ * @param positionMap
+ * a Map<Annotation, Position>
or
+ * null
+ * @return a matching tuple or null
for no match
+ */
+ private Tuple findMatch(Tuple tuple, Collection annotations, Map positionMap) {
+ Iterator it = annotations.iterator();
+ while (it.hasNext()) {
+ JavaProjectionAnnotation annotation = (JavaProjectionAnnotation) it.next();
+ if (tuple.annotation.isComment() == annotation.isComment()) {
+ Position position = positionMap == null ? fCachedModel.getPosition(annotation) : (Position) positionMap.get(annotation);
+ if (position == null)
+ continue;
+
+ if (tuple.position.getOffset() == position.getOffset()) {
+ it.remove();
+ return new Tuple(annotation, position);
+ }
+ }
+ }
+
+ return null;
+ }
+
private Map createAnnotationMap(IAnnotationModel model) {
- Map map= new HashMap();
- Iterator e= model.getAnnotationIterator();
+ Map map = new HashMap();
+ Iterator e = model.getAnnotationIterator();
while (e.hasNext()) {
- Object annotation= e.next();
+ Object annotation = e.next();
if (annotation instanceof JavaProjectionAnnotation) {
- JavaProjectionAnnotation java= (JavaProjectionAnnotation) annotation;
- List list= (List) map.get(java.getElement());
+ JavaProjectionAnnotation java = (JavaProjectionAnnotation) annotation;
+ Position position = model.getPosition(java);
+ Assert.isNotNull(position);
+ List list = (List) map.get(java.getElement());
if (list == null) {
- list= new ArrayList(2);
+ list = new ArrayList(2);
map.put(java.getElement(), list);
}
- list.add(java);
+ list.add(new Tuple(java, position));
+ }
+ }
+
+ Comparator comparator = new Comparator() {
+ public int compare(Object o1, Object o2) {
+ return ((Tuple) o1).position.getOffset() - ((Tuple) o2).position.getOffset();
}
+ };
+ for (Iterator it = map.values().iterator(); it.hasNext();) {
+ List list = (List) it.next();
+ Collections.sort(list, comparator);
}
return map;
}
-}
+}
\ No newline at end of file
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/PreferenceConstants.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/PreferenceConstants.java
index 220c27c..9aa8ef0 100644
--- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/PreferenceConstants.java
+++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/PreferenceConstants.java
@@ -1,10 +1,10 @@
/*******************************************************************************
* Copyright (c) 2002 International Business Machines Corp. and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
@@ -32,7 +32,7 @@ import org.eclipse.ui.texteditor.AbstractTextEditor;
/**
* Preference constants used in the JDT-UI preference store. Clients should only read the JDT-UI preference store using these
* values. Clients are not allowed to modify the preference store programmatically.
- *
+ *
* @since 2.0
*/
public class PreferenceConstants {
@@ -70,7 +70,7 @@ public class PreferenceConstants {
* Boolean
.
* Boolean
: if true
empty inner packages are folded.
*
* Value is of type Boolean
.
*
* Value is of type String
: comma separated list of prefixed
*
* Value is of type String
: comma separated list of suffixes
*
String
.
*
* @since 3.0
- */
+ */
public static final String CODEGEN_EXCEPTION_VAR_NAME= "org.eclipse.jdt.ui.exception.name"; //$NON-NLS-1$
-
+
/**
* A named preference that controls if comment stubs will be added automatically to newly created types and methods.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type String
.
*
* Value is of type String
.
*
* Value is of type Int
: an index into the list of possible JRE libraries.
*
* OPEN_TYPE_HIERARCHY_IN_VIEW_PART
.
*
- *
+ *
* @see #OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE
* @see #OPEN_TYPE_HIERARCHY_IN_VIEW_PART
*/
@@ -371,14 +371,14 @@ public class PreferenceConstants {
/**
* A string value used by the named preference OPEN_TYPE_HIERARCHY
.
- *
+ *
* @see #OPEN_TYPE_HIERARCHY
*/
public static final String OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE = "perspective"; //$NON-NLS-1$
/**
* A string value used by the named preference OPEN_TYPE_HIERARCHY
.
- *
+ *
* @see #OPEN_TYPE_HIERARCHY
*/
public static final String OPEN_TYPE_HIERARCHY_IN_VIEW_PART = "viewPart"; //$NON-NLS-1$
@@ -390,7 +390,7 @@ public class PreferenceConstants {
* DOUBLE_CLICK_GOES_INTO or
* DOUBLE_CLICK_EXPANDS
.
*
- *
+ *
* @see #DOUBLE_CLICK_EXPANDS
* @see #DOUBLE_CLICK_GOES_INTO
*/
@@ -398,14 +398,14 @@ public class PreferenceConstants {
/**
* A string value used by the named preference DOUBLE_CLICK
.
- *
+ *
* @see #DOUBLE_CLICK
*/
public static final String DOUBLE_CLICK_GOES_INTO = "packageview.gointo"; //$NON-NLS-1$
/**
* A string value used by the named preference DOUBLE_CLICK
.
- *
+ *
* @see #DOUBLE_CLICK
*/
public static final String DOUBLE_CLICK_EXPANDS = "packageview.doubleclick.expands"; //$NON-NLS-1$
@@ -418,7 +418,7 @@ public class PreferenceConstants {
* UPDATE_ON_SAVE or
* UPDATE_WHILE_EDITING
.
*
- *
+ *
* @see #UPDATE_ON_SAVE
* @see #UPDATE_WHILE_EDITING
*/
@@ -426,14 +426,14 @@ public class PreferenceConstants {
/**
* A string value used by the named preference UPDATE_JAVA_VIEWS
- *
+ *
* @see #UPDATE_JAVA_VIEWS
*/
public static final String UPDATE_ON_SAVE = "JavaUI.update.onSave"; //$NON-NLS-1$
/**
* A string value used by the named preference UPDATE_JAVA_VIEWS
- *
+ *
* @see #UPDATE_JAVA_VIEWS
*/
public static final String UPDATE_WHILE_EDITING = "JavaUI.update.whileEditing"; //$NON-NLS-1$
@@ -448,7 +448,7 @@ public class PreferenceConstants {
/**
* A named preference that defines whether hint to make hover sticky should be shown.
- *
+ *
* @see JavaUI
* @since 3.0
*/
@@ -456,7 +456,7 @@ public class PreferenceConstants {
/**
* A named preference that defines the key for the hover modifiers.
- *
+ *
* @see JavaUI
* @since 2.1
*/
@@ -464,21 +464,21 @@ public class PreferenceConstants {
/**
* The id of the best match hover contributed for extension point javaEditorTextHovers
.
- *
+ *
* @since 2.1
*/
public static String ID_BESTMATCH_HOVER = "net.sourceforge.phpdt.ui.BestMatchHover"; //$NON-NLS-1$
/**
* The id of the source code hover contributed for extension point javaEditorTextHovers
.
- *
+ *
* @since 2.1
*/
public static String ID_SOURCE_HOVER = "net.sourceforge.phpdt.ui.JavaSourceHover"; //$NON-NLS-1$
/**
* The id of the problem hover contributed for extension point javaEditorTextHovers
.
- *
+ *
* @since 2.1
*/
public static String ID_PROBLEM_HOVER = "net.sourceforge.phpdt.ui.ProblemHover"; //$NON-NLS-1$
@@ -496,7 +496,7 @@ public class PreferenceConstants {
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type Boolean
.
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type Boolean
.
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type Boolean
.
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type Boolean
.
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
"net.sourceforge.phpdt.ui.editors.textfont"
).
- *
+ *
* @since 2.1
*/
public final static String EDITOR_TEXT_FONT = "net.sourceforge.phpdt.ui.editors.textfont"; //$NON-NLS-1$
@@ -1083,7 +1083,7 @@ public class PreferenceConstants {
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type Boolean
.
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
EDITOR_DEFAULT_HOVER_CONFIGURED_ID
or the hover id of a hover contributed as phpEditorTextHovers
.
*
- *
+ *
* @see #EDITOR_NO_HOVER_CONFIGURED_ID
* @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
* @see JavaUI
@@ -1514,7 +1514,7 @@ public class PreferenceConstants {
* EDITOR_NO_HOVER_CONFIGURED_ID or
* EDITOR_DEFAULT_HOVER_CONFIGURED_ID
or the hover id of a hover contributed as phpEditorTextHovers
.
*
- *
+ *
* @see #EDITOR_NO_HOVER_CONFIGURED_ID
* @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
* @see JavaUI
@@ -1529,7 +1529,7 @@ public class PreferenceConstants {
* EDITOR_NO_HOVER_CONFIGURED_ID or
* EDITOR_DEFAULT_HOVER_CONFIGURED_ID
or the hover id of a hover contributed as phpEditorTextHovers
.
*
- *
+ *
* @see #EDITOR_NO_HOVER_CONFIGURED_ID
* @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
* @see JavaUI ID_*_HOVER
@@ -1544,7 +1544,7 @@ public class PreferenceConstants {
* EDITOR_NO_HOVER_CONFIGURED_ID or
* EDITOR_DEFAULT_HOVER_CONFIGURED_ID
or the hover id of a hover contributed as phpEditorTextHovers
.
*
- *
+ *
* @see #EDITOR_NO_HOVER_CONFIGURED_ID
* @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
* @see JavaUI ID_*_HOVER
@@ -1559,7 +1559,7 @@ public class PreferenceConstants {
* EDITOR_NO_HOVER_CONFIGURED_ID or
* EDITOR_DEFAULT_HOVER_CONFIGURED_ID
or the hover id of a hover contributed as phpEditorTextHovers
.
*
- *
+ *
* @see #EDITOR_NO_HOVER_CONFIGURED_ID
* @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
* @see JavaUI ID_*_HOVER
@@ -1574,7 +1574,7 @@ public class PreferenceConstants {
* EDITOR_NO_HOVER_CONFIGURED_ID or
* EDITOR_DEFAULT_HOVER_CONFIGURED_ID
or the hover id of a hover contributed as phpEditorTextHovers
.
*
- *
+ *
* @see #EDITOR_NO_HOVER_CONFIGURED_ID
* @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
* @see JavaUI ID_*_HOVER
@@ -1589,7 +1589,7 @@ public class PreferenceConstants {
* EDITOR_NO_HOVER_CONFIGURED_ID,
* EDITOR_DEFAULT_HOVER_CONFIGURED_ID
or the hover id of a hover contributed as phpEditorTextHovers
.
*
- *
+ *
* @see #EDITOR_NO_HOVER_CONFIGURED_ID
* @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
* @see JavaUI ID_*_HOVER
@@ -1600,7 +1600,7 @@ public class PreferenceConstants {
/**
* A string value used by the named preferences for hover configuration to descibe that no hover should be shown for the given key
* modifiers.
- *
+ *
* @since 2.1
*/
public static final String EDITOR_NO_HOVER_CONFIGURED_ID = "noHoverConfiguredId"; //$NON-NLS-1$
@@ -1608,7 +1608,7 @@ public class PreferenceConstants {
/**
* A string value used by the named preferences for hover configuration to descibe that the default hover should be shown for the
* given key modifiers. The default hover is described by the EDITOR_DEFAULT_HOVER
property.
- *
+ *
* @since 2.1
*/
public static final String EDITOR_DEFAULT_HOVER_CONFIGURED_ID = "defaultHoverConfiguredId"; //$NON-NLS-1$
@@ -1636,7 +1636,7 @@ public class PreferenceConstants {
*
* Value is of type Boolean
.
*
* Value is of type String
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
- *
+ *
* @since 3.0
*/
public static final String EDITOR_SMART_BACKSPACE = "smart_backspace"; //$NON-NLS-1$
@@ -1705,7 +1705,7 @@ public class PreferenceConstants {
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
- *
+ *
* @since 3.0
*/
public static final String EDITOR_SMART_TAB = "smart_tab"; //$NON-NLS-1$
public static final String EDITOR_P_RTRIM_ON_SAVE = "editor_p_trim_on_save"; //$NON-NLS-1$
-
+
/**
* A named preference that controls whether Java comments should be spell-checked.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type String
.
*
* Value is of type Integer
.
*
* Value is of type Integer
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Integer
. The value must be at least 4 for reasonable formatting.
*
* Value is of type Boolean
.
*
- * Value is of type Boolean
. if true
code assist only contains visible members. If
+ * Value is of type
Boolean
. if true
code assist only contains visible members. If
*
false
all members are included.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
* Value is of type String
. A RGB color value encoded as a string using class PreferenceConverter
*
REFACTOR_INFO_SEVERITY
,
* REFACTOR_OK_SEVERITY
.
*
- *
+ *
* @see #REFACTOR_FATAL_SEVERITY
* @see #REFACTOR_ERROR_SEVERITY
* @see #REFACTOR_WARNING_SEVERITY
@@ -2125,35 +2125,35 @@ public class PreferenceConstants {
/**
* A string value used by the named preference REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
.
- *
+ *
* @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
*/
public static final String REFACTOR_FATAL_SEVERITY = "4"; //$NON-NLS-1$
/**
* A string value used by the named preference REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
.
- *
+ *
* @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
*/
public static final String REFACTOR_ERROR_SEVERITY = "3"; //$NON-NLS-1$
/**
* A string value used by the named preference REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
.
- *
+ *
* @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
*/
public static final String REFACTOR_WARNING_SEVERITY = "2"; //$NON-NLS-1$
/**
* A string value used by the named preference REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
.
- *
+ *
* @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
*/
public static final String REFACTOR_INFO_SEVERITY = "1"; //$NON-NLS-1$
/**
* A string value used by the named preference REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
.
- *
+ *
* @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
*/
public static final String REFACTOR_OK_SEVERITY = "0"; //$NON-NLS-1$
@@ -2171,7 +2171,7 @@ public class PreferenceConstants {
*
* Value is of type Boolean
.
*
* Value is of type Boolean
.
*
Boolean
. If true the annotation ruler column
* uses a roll over to display multiple annotations
*
- *
+ *
* @since 3.0
*/
public static final String EDITOR_ANNOTATION_ROLL_OVER = "editor_annotation_roll_over"; //$NON-NLS-1$
@@ -2212,7 +2212,7 @@ public class PreferenceConstants {
*
* Value is of type String
.
*
- *
+ *
* @see #EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER
* @since 2.1.1
*/
@@ -2221,7 +2221,7 @@ public class PreferenceConstants {
/**
* A named preference that defines the key for the hover modifier state masks. The value is only used if the value of
* EDITOR_TEXT_HOVER_MODIFIERS
cannot be resolved to valid SWT modifier bits.
- *
+ *
* @see JavaUI
* @see #EDITOR_TEXT_HOVER_MODIFIERS
* @since 2.1.1
@@ -2233,7 +2233,7 @@ public class PreferenceConstants {
*
* Value is of type Boolean
.
*
- *
+ *
* @since 3.0
*/
public static final String EDITOR_FOLDING_ENABLED = "editor_folding_enabled"; //$NON-NLS-1$
@@ -2243,7 +2243,7 @@ public class PreferenceConstants {
*
* Value is of type String
.
*
- *
+ *
* @since 3.0
*/
public static final String EDITOR_FOLDING_PROVIDER = "editor_folding_provider"; //$NON-NLS-1$
@@ -2253,7 +2253,7 @@ public class PreferenceConstants {
*
* Value is of type Boolean
.
*
- *
+ *
* @since 3.0
*/
public static final String EDITOR_FOLDING_JAVADOC = "editor_folding_default_javadoc"; //$NON-NLS-1$
@@ -2263,7 +2263,7 @@ public class PreferenceConstants {
*
* Value is of type Boolean
.
*
- *
+ *
* @since 3.0
*/
public static final String EDITOR_FOLDING_INNERTYPES = "editor_folding_default_innertypes"; //$NON-NLS-1$
@@ -2273,7 +2273,7 @@ public class PreferenceConstants {
*
* Value is of type Boolean
.
*
- *
+ *
* @since 3.0
*/
public static final String EDITOR_FOLDING_METHODS = "editor_folding_default_methods"; //$NON-NLS-1$
@@ -2283,10 +2283,19 @@ public class PreferenceConstants {
*
* Value is of type Boolean
.
*
- *
+ *
* @since 3.0
*/
- public static final String EDITOR_FOLDING_IMPORTS = "editor_folding_default_imports"; //$NON-NLS-1$
+// public static final String EDITOR_FOLDING_IMPORTS = "editor_folding_default_imports"; //$NON-NLS-1$
+ /**
+ * A named preference that stores the value for header comment folding for the default folding provider.
+ *
+ * Value is of type Boolean
.
+ *
+ *
+ * @since 3.1
+ */
+ public static final String EDITOR_FOLDING_HEADERS= "editor_folding_default_headers"; //$NON-NLS-1$
public static void initializeDefaultValues(IPreferenceStore store) {
store.setDefault(PreferenceConstants.EDITOR_SHOW_SEGMENTS, false);
@@ -2331,7 +2340,7 @@ public class PreferenceConstants {
store.setDefault(PreferenceConstants.CODEGEN_USE_GETTERSETTER_SUFFIX, false);
store.setDefault(PreferenceConstants.CODEGEN_GETTERSETTER_PREFIX, "fg, f, _$, _, m_"); //$NON-NLS-1$
store.setDefault(PreferenceConstants.CODEGEN_GETTERSETTER_SUFFIX, "_"); //$NON-NLS-1$
-
+
store.setDefault(PreferenceConstants.CODEGEN_KEYWORD_THIS, false);
store.setDefault(PreferenceConstants.CODEGEN_IS_FOR_GETTERS, true);
store.setDefault(PreferenceConstants.CODEGEN_EXCEPTION_VAR_NAME, "e"); //$NON-NLS-1$
@@ -2424,7 +2433,7 @@ public class PreferenceConstants {
PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_VARIABLE_DOLLAR_COLOR, new RGB(127, 159, 191));
store.setDefault(PreferenceConstants.EDITOR_PHP_VARIABLE_DOLLAR_BOLD, false);
-
+
PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_CONSTANT_COLOR, new RGB(127, 0, 85));
store.setDefault(PreferenceConstants.EDITOR_PHP_CONSTANT_BOLD, false);
@@ -2436,7 +2445,7 @@ public class PreferenceConstants {
PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_STRING_COLOR_SQ, PHPColorProvider.STRING_SQ);
store.setDefault(PreferenceConstants.EDITOR_STRING_BOLD_SQ, true);
-
+
PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVA_DEFAULT_COLOR, new RGB(0, 0, 0));
store.setDefault(PreferenceConstants.EDITOR_JAVA_DEFAULT_BOLD, false);
@@ -2532,7 +2541,8 @@ public class PreferenceConstants {
store.setDefault(PreferenceConstants.EDITOR_FOLDING_JAVADOC, true);
store.setDefault(PreferenceConstants.EDITOR_FOLDING_INNERTYPES, true);
store.setDefault(PreferenceConstants.EDITOR_FOLDING_METHODS, false);
- store.setDefault(PreferenceConstants.EDITOR_FOLDING_IMPORTS, false);
+// store.setDefault(PreferenceConstants.EDITOR_FOLDING_IMPORTS, false);
+ store.setDefault(PreferenceConstants.EDITOR_FOLDING_HEADERS, true);
store.setDefault(PreferenceConstants.EDITOR_SMART_BACKSPACE, true);
store.setDefault(PreferenceConstants.EDITOR_P_RTRIM_ON_SAVE, false);
@@ -2542,7 +2552,7 @@ public class PreferenceConstants {
/**
* Returns the JDT-UI preference store.
- *
+ *
* @return the JDT-UI preference store
*/
public static IPreferenceStore getPreferenceStore() {
@@ -2561,7 +2571,7 @@ public class PreferenceConstants {
// public static String encodeJRELibrary(String description, IClasspathEntry[] entries) {
// return NewJavaProjectPreferencePage.encodeJRELibrary(description, entries);
// }
- //
+ //
// /**
// * Decodes an encoded JRE library and returns its description string.
// *
@@ -2572,7 +2582,7 @@ public class PreferenceConstants {
// public static String decodeJRELibraryDescription(String encodedLibrary) {
// return NewJavaProjectPreferencePage.decodeJRELibraryDescription(encodedLibrary);
// }
- //
+ //
// /**
// * Decodes an encoded JRE library and returns its classpath entries.
// *
@@ -2583,7 +2593,7 @@ public class PreferenceConstants {
// public static IClasspathEntry[] decodeJRELibraryClasspathEntries(String encodedLibrary) {
// return NewJavaProjectPreferencePage.decodeJRELibraryClasspathEntries(encodedLibrary);
// }
- //
+ //
// /**
// * Returns the current configuration for the JRE to be used as default in new Java projects.
// * This is a convenience method to access the named preference NEWPROJECT_JRELIBRARY_LIST