RE: CFV: New OpenJFX Committer: Nir Lisker

2019-06-30 Thread Rajath Kamath
Vote: YES

Best Regards,
Rajath

-Original Message-
From: Kevin Rushforth 
Sent: Wednesday, June 26, 2019 3:14 AM
To: openjfx-dev@openjdk.java.net; Nir Lisker 
Subject: CFV: New OpenJFX Committer: Nir Lisker

I hereby nominate Nir Lisker [1] to OpenJFX Committer.

Nir is an OpenJFX community member, who has contributed 16 changesets [2][3] to 
OpenJFX.

Votes are due by July 13, 2019.

Only current OpenJFX Committers [4] are eligible to vote on this nomination. 
Votes must be cast in the open by replying to this mailing list.

For Lazy Consensus voting instructions, see [5]. Nomination to a project 
Committer is described in [6].

Thanks.

-- Kevin


[1] http://openjdk.java.net/census#nlisker

[2]
http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20=author%28nlisker%29

[3]
http://hg.openjdk.java.net/openjfx/jfx-dev/rt/log?revcount=20=nlisker%40gmail

[4] http://openjdk.java.net/census#openjfx

[5] http://openjdk.java.net/bylaws#lazy-consensus

[6] http://openjdk.java.net/projects#project-committer



Review Request: JDK-8226912: Color, Point2D and Point3D's fields should be made final

2019-06-30 Thread Nir Lisker
Hi Kevin,

Please review the simple fix for:
https://bugs.openjdk.java.net/browse/JDK-8226912
http://cr.openjdk.java.net/~nlisker/8226912/webrev.00/

I planned this for 14, but it can go into 13 too.

- Nir


O(1) access to rows in TableView by Key lookup?

2019-06-30 Thread Andrew Munn
I have a question similar to this one:
https://stackoverflow.com/questions/16941980/populate-tableview-with-observablemap-javafx

I have a TableView in which rows can be added/updated/deleted. I want to 
be able to delete rows in a TableView without having to iteratively search the 
collection of rows.

There should be a table backed by a map for this.  Otherwise I have to 
keep my own map synchronized with the TableView's data structure.