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

com.podio.app.ApplicationTaskBase Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
package com.podio.app;

public class ApplicationTaskBase {

	private String text;
	
	public ApplicationTaskBase() {
		super();
	}

	public ApplicationTaskBase(String text) {
		super();
		this.text = text;
	}

	public String getText() {
		return text;
	}

	public void setText(String text) {
		this.text = text;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy