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

nlp.model.Pattern Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package nlp.model;

import java.util.List;

public class Pattern {

    private String action;
    private List POSRequirementList;

    public String getAction() {
        return action;
    }

    public void setAction(String action) {
        this.action = action;
    }

    public List getPOSRequirementList() {
        return POSRequirementList;
    }

    public void setPOSRequirementList(List POSRequirementList) {
        this.POSRequirementList = POSRequirementList;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy