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

com.smartlogic.classificationserver.client.Paragraph Maven / Gradle / Ivy

There is a newer version: 5.6.1
Show newest version
package com.smartlogic.classificationserver.client;

/**
 * Container for the information associated with a paragraph returned by classification server
 * @author Smartlogic Semaphore
 *
 */
public class Paragraph {

	private String field = "text";
	public String getField() {
		return field;
	}
	public void setField(String field) {
		this.field = field;
	}
	
	private String content;
	public String getContent() {
		return content;
	}
	public void setContent(String content) {
		this.content = content;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy