com.smartlogic.classificationserver.client.Paragraph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Semaphore-CS-Client Show documentation
Show all versions of Semaphore-CS-Client Show documentation
Client for the Smartlogic Semaphore Classification Server
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;
}
}