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

com.github.exabrial.formbinding.spi.model.CustomBean Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package com.github.exabrial.formbinding.spi.model;

import com.github.exabrial.formbinding.FormBindingParam;

public class CustomBean {
	@FormBindingParam
	private TestField testField;

	public TestField getTestField() {
		return testField;
	}

	public void setTestField(TestField testField) {
		this.testField = testField;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy