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

be.personify.iam.frontend.wicket.model.common.EnumerationsModel Maven / Gradle / Ivy

There is a newer version: 1.5.2.RELEASE
Show newest version
package be.personify.iam.frontend.wicket.model.common;

import java.util.List;

import org.apache.wicket.model.util.ListModel;

public class EnumerationsModel  extends ListModel {

	private static final long serialVersionUID = 4862995885447822353L;

	private List enums;

	public EnumerationsModel(List enums) {
		super();
		this.enums = enums;
		
	}
	
	@Override
	public List getObject() {
	   return enums;
	}
	
	
	public int getCount() {
		return getObject().size();
	}
	
	

	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy