Ejemplo n.º 1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public void terminate() throws org.maltparser.core.exception.MaltChainedException
        public virtual void terminate()
        {
            if (instanceModel != null)
            {
                instanceModel.terminate();
                instanceModel = null;
            }
        }
Ejemplo n.º 2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public void terminate() throws org.maltparser.core.exception.MaltChainedException
        public virtual void terminate()
        {
            if (instanceModel != null)
            {
                instanceModel.terminate();
                instanceModel = null;
            }
            if (nextDecisionModel != null)
            {
                nextDecisionModel.terminate();
                nextDecisionModel = null;
            }
        }
Ejemplo n.º 3
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public void terminate() throws org.maltparser.core.exception.MaltChainedException
        public virtual void terminate()
        {
            if (instanceModel != null)
            {
                instanceModel.terminate();
                instanceModel = null;
            }
            if (children != null)
            {
                foreach (DecisionModel child in children.Values)
                {
                    child.terminate();
                }
            }
        }