Package org.speakright.core

Examples of org.speakright.core.ModelBindingSpec


    addBinding(m_slotName, modelVar);
  }
 
  public void addBinding(String slotName, String modelVar)
  {
    ModelBindingSpec spec = new ModelBindingSpec();
    spec.m_flow = null; //will be set in grammarpipeline
    spec.m_slotName = slotName;
    spec.m_target = modelVar;
   
    m_bindingL.add(spec); //later avoid repeats!
View Full Code Here

TOP

Related Classes of org.speakright.core.ModelBindingSpec

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.