示例#1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public PrioSet(PrioList prioList, String setSpec) throws org.maltparser.core.exception.MaltChainedException
        public PrioSet(PrioList prioList, string setSpec)
        {
            PrioList = prioList;
            cache    = new PrioSetMember(this, null, null, -1, RelationToPrevMember.START);
            init(setSpec);
        }
示例#2
0
 public PrioSet(PrioList prioList)
 {
     PrioList = prioList;
     cache    = new PrioSetMember(this, null, null, -1, RelationToPrevMember.START);
 }