All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.hansolo.fx.countries.tools.CRegion Maven / Gradle / Ivy

Go to download

Countries is a JavaFX library containing controls and info for countries and cities

There is a newer version: 21.0.3
Show newest version
package eu.hansolo.fx.countries.tools;

import eu.hansolo.fx.countries.Country;
import javafx.scene.paint.Color;

import java.util.Collection;
import java.util.List;
import java.util.Map;


public interface CRegion {

    String name();

    List getCountries();

    void setFill(Color stroke);

    void setStroke(Color stroke);

    List getRegionBounds();

    Map> getCountryPaths();

    Collection getPaths();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy