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

org.vebqa.vebtal.model.ConfigurationCatalog Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package org.vebqa.vebtal.model;

import javafx.beans.property.SimpleStringProperty;

@SuppressWarnings("restriction")
public class ConfigurationCatalog {
	private final SimpleStringProperty key;
	private final SimpleStringProperty value;

	public ConfigurationCatalog(String aKey, String aValue) {
		this.key = new SimpleStringProperty(aKey);
		this.value = new SimpleStringProperty(aValue);
	}

	public String getKey() {
		return key.get();
	}

	public String getValue() {
		return value.get();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy