Hi Simon,
I have a question about your comment in the Style.java code.
/**
* Returns the names of the properties defined by this style.
*/
// -= Simon Lessard =-
// FIXME: This should be changed to <String> once the issues
// with ArrayMap are fixed. ATM (2006-08-04) ArrayMap
// have huge problem working with anything but Object
public Iterator<Object> getPropertyNames();
/**
* Returns the value of the property with the specified name.
*
* @param name The property name for the property to return
*/
public String getProperty(String name);
What issues about ArrayMap are you talking about?
I'm working on a task to make the Style object a public API,
and I was going to change the api to:
public Map<String, String> getProperties()
I am concerned about your comment because I don't understand it.
I see you have a comment in the ArrayMap code as well, and I see that
Adam added a comment in
response to your comment. If I use Map<String, String> getProperties and
the implementation
is using an ArrayMap do you think this won't work?
Thanks,
Jeanne