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

org.dc.riot.lol.rx.model.staticdata.ItemTreeDto Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package org.dc.riot.lol.rx.model.staticdata;

/**
 * This object contains item tree data.
 * 
 * @author Dc
 * @since 1.0.0
 */
public class ItemTreeDto {
	private static long COUNT = 0;
	public static long getInstanceCount() {
		return COUNT;
	}

    private String header;
    private String[] tags;
    
    public ItemTreeDto() {
    	COUNT++;
    }

    /**
     * @return Header.
     */
    public String getHeader() {
        return header;
    }

    /**
     * @return Tags.
     */
    public String[] getTags() {
    	if (tags == null) {
    		return new String[0];
    	}

        return tags;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy