if (flavors.contains(StandardFlavors.PLUGIN) || flavors.contains(StandardFlavors.PLUGIN_STATE))
{
// Create and add our standard regions
// Identifier for NORTH, this is DropCLient, shape, framecolor black, no Stroke,
// Fill Red, default cursor, no overlay, copy and move actions, this component.
CircleDropRegion region = new CircleDropRegion(PluginContainer.REGION_CENTER, this, new RectangleSegment(this, 10, PluginContainer.CENTER), 50, this);
region.setPaint(Color.GREEN);
return Collections.singletonList(region);
}
return null;
}