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

WEBPIECESxPACKAGE.base.mgmt.SomeBean Maven / Gradle / Ivy

package WEBPIECESxPACKAGE.base.mgmt;

import WEBPIECESxPACKAGE.base.libs.EducationEnum;

public class SomeBean implements SomeBeanWebpiecesManaged {

	private int count;
	private Class clazz = SomeBean.class;
	private EducationEnum educationLevel;
	
	@Override
	public void setCount(int count) {
		this.count = count;
	}

	@Override
	public int getCount() {
		return count;
	}

	@Override
	public String getCategory() {
		return "General";
	}

	@Override
	public Class getPropertyNoConverter() {
		return clazz;
	}

	@Override
	public void setPropertyNoConverter(Class clazz) {
		this.clazz = clazz;
	}

	@Override
	public EducationEnum getEducationLevel() {
		return educationLevel;
	}

	@Override
	public void setEducationLevel(EducationEnum educationLevel) {
		this.educationLevel = educationLevel;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy