using System; using System.Collections.Generic; using System.IO; using System.Text; namespace ZeroLevel.Services.Semantic.CValue { public class Document { private String path; private List sentenceList; private List> tokenList; private String name; private List termList; public Document(String pPath, String pName) { path = pPath; name = pName; termList = new List(); } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public List getSentenceList() { return sentenceList; } public void setSentenceList(List sentenceList) { this.sentenceList = sentenceList; } public List> getTokenList() { return tokenList; } public void List(List> tokenList) { this.tokenList = tokenList; } public String getName() { return name; } public void setName(String name) { this.name = name; } public List getTermList() { return termList; } public void setTermList(List termList) { this.termList = termList; } } }