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

nosi.core.gui.components.IGRPChart2D 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.241121-RCM
Show newest version
package nosi.core.gui.components;


/**
 * Emanuel
 * 3 Apr 2019
 */
public class IGRPChart2D{

	private String eixoX;
	private Object eixoY;
	
	public IGRPChart2D( String eixoX, Object eixoY) {
		this.eixoX = eixoX;
		this.eixoY = eixoY;
	}
	
	public IGRPChart2D() {
		
	}

	public String getEixoX() {
		return eixoX;
	}

	public void setEixoX(String eixoX) {
		this.eixoX = eixoX;
	}

	public Object getEixoY() {
		return eixoY;
	}

	public void setEixoY(Object eixoY) {
		this.eixoY = eixoY;
	}

	@Override
	public String toString() {
		return "IGRPChart2D [eixoX=" + eixoX + ", eixoY=" + eixoY + "]";
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy