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

de.rpgframework.genericrpg.data.CustomDataSetHandle Maven / Gradle / Ivy

package de.rpgframework.genericrpg.data;

import java.util.List;

/**
 * 
 */
public class CustomDataSetHandle {
	
	public static record DataSetEntry (
			String key, 
			Class clazz, 
			Class> listClazz) {
		
	}
	
	private DataSet dataset;
	private List> orderedFileKeys;

	//-------------------------------------------------------------------
	public CustomDataSetHandle(DataSet set, List> orderedFileKeys) {
		this.dataset = set;
		this.orderedFileKeys = orderedFileKeys;
	}

	//-------------------------------------------------------------------
	/**
	 * @return the name
	 */
	public DataSet getName() {
		return dataset;
	}

	//-------------------------------------------------------------------
	/**
	 * @return the orderedFileKeys
	 */
	public List> getOrderedFileKeys() {
		return orderedFileKeys;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy