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

nosi.core.gui.fields.PlainTextField Maven / Gradle / Ivy

Go to download

IGRP Framework is a powerful and highly customizable platform developed by the Operational Nucleus for the Information Society (NOSi) to create web applications, it provides out of box, several modules to make easy to create stand-alone, production-grade web applications: authentication and access-control, business processes automation, reporting, page builder with automatic code generation and incorporation of the Once-Only-Principle, written in Java. IGRP Framework WAR - Contains some keys resources that give UI to IGRP Framework and others supports files.

There is a newer version: 2.0.0.240912-RCM
Show newest version
package nosi.core.gui.fields;
/**
 * @author: Emanuel Pereira
 * 
 * Apr 13, 2017
 *
 * Description: class to configure plaintext field
 */
public class PlainTextField extends AbstractField {

	public PlainTextField(Object model,String name) {
		super();
		this.setName(name);
		this.propertie.put("type","plaintext");
		this.setTagName(name);
		this.propertie.put("name","p_"+name);
		this.propertie.put("clear",  Boolean.valueOf(false));
		this.propertie.put("maxlength",  Integer.valueOf(30));
		this.propertie.put("right",  Boolean.valueOf(false));
		this.configValue(model);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy