Can someone guide me how I can implement the following in java: I need to reference two rectangles after splitting from any rectilinear polygon into two or more pieces.

My Algorithm:
ArrayList coordinates;
for (int a = 0; a < coordinates.size(); a++)
{
if (coordinates[a] at point of concave)
{
Draw intersecting line North Or South from coordinates[a] depending on
which direction remains inside the polygon.
}
}
On this particular diagram both concave edges lie on the same x-axis, however this is not always the case.
I'm guessing I need to use the Shape and Area class? I guess what I'm struggling with the most is what do I use to make the split (regular .drawLine?) and then be able to reference the two rectangles afterwards.
Thank you.