Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Error Parsers behavior problems?

I didn't find this class in JDK 1.4.2 :-) Probably you meant LinkedHashMap?

Returning to the third point. Maybe this option should be saved for lazy users as a check box on the error parsers page to let them check it in preferences and do not set order for every new project, just rely on the order CDT calculates.

Lott, Jeremiah wrote:

A quick fix to the HashTable problem might be to use LinkedHashTable,
which behaves as a HashTable, but also maintains insertion order (via an
internal linked list).  I didn't look at the code, but from the
newsgroup it seems that this would help.

 Jeremiah Lott
 TimeSys Corporation

-----Original Message-----
From: Alex Chapiro [mailto:achapiro@xxxxxxx] Sent: Tuesday, May 25, 2004 9:49 AM
To: cdt-dev@xxxxxxxxxxx
Subject: Re: [cdt-dev] Error Parsers behavior problems?




Treggiari, Leo wrote:

I have the following comments:



1. The fact that error parsers are not invoked in the order specified by the user

  seems like a bug that should be fixed.



From JDK 1.4 documentation:

The Map interface provides three /collection views/, which allow a map's

contents to be viewed as a set of keys, collection of values, or set of key-value mappings. The /order/ of a map is defined as the order in which the iterators on the map's collection views return their elements.

Some map implementations, like the TreeMap class, make specific guarantees as to their order; others, like the HashMap class, do not.

So your conclusion is eventually correct
_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/cdt-dev



Back to the top