eu.hansolo.tilesfx.tools.CountryPath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tilesfx Show documentation
Show all versions of tilesfx Show documentation
TilesFX is a JavaFX library containing tiles for dashboards
The newest version!
/*
* SPDX-License-Identifier: Apache-2.0
*
* Copyright 2016-2021 Gerrit Grunwald.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package eu.hansolo.tilesfx.tools;
import javafx.scene.control.Tooltip;
import javafx.scene.shape.SVGPath;
import java.util.Locale;
/**
* Created by hansolo on 21.12.16.
*/
public class CountryPath extends SVGPath {
private String name;
private Locale locale;
private Tooltip tooltip;
// ******************** Constructors **************************************
public CountryPath() {
this ("", null);
}
public CountryPath(final String NAME) {
this(NAME, null);
}
public CountryPath(final String NAME, final String CONTENT) {
super();
name = NAME;
locale = new Locale("", NAME);
tooltip = new Tooltip(locale.getDisplayCountry());
Tooltip.install(CountryPath.this, tooltip);
if (null == CONTENT) return;
setContent(CONTENT);
}
// ******************** Methods *******************************************
public String getName() { return name; }
public void setName(final String NAME) { this.name = NAME; }
public Locale getLocale() { return locale; }
public void setLocale(final Locale LOCALE) { locale = LOCALE; }
public Tooltip getTooltip() { return tooltip; }
public void setTooltip(final Tooltip TOOLTIP) {
tooltip = TOOLTIP;
Tooltip.install(CountryPath.this, tooltip);
}
@Override public String toString() {
return new StringBuilder("{\n").append(" name :\"").append(name).append("\"\n")
.append(" locale :\"").append(locale).append("\"\n")
.append(" tooltip:\"").append(tooltip.getText()).append("\"\n")
.append(" content:\"").append(getContent()).append("\"\n")
.append("}\n")
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy