Package jade.content.lang

Examples of jade.content.lang.Codec


   * to the content language used for this operation.
   * @throws OntologyException if <code>content</code> is not compliant
   * to the ontology used for this operation.
   */
  public void fillContent(ACLMessage msg, AbsContentElement content) throws CodecException, OntologyException {
    Codec    codec = lookupLanguage(msg.getLanguage());
    if (codec == null) {
      throw new CodecException("Unknown language "+msg.getLanguage());
    }
    String ontoName = msg.getOntology();
    Ontology o = null;
View Full Code Here


   * to the content language used for this operation.
   * @throws OntologyException if <code>content</code> is not compliant
   * to the ontology used for this operation.
   */
  public void fillContent(ACLMessage msg, ContentElement content) throws CodecException, OntologyException {
    Codec    codec = lookupLanguage(msg.getLanguage());
    if (codec == null) {
      throw new CodecException("Unknown language "+msg.getLanguage());
    }
    String ontoName = msg.getOntology();
    Ontology o = null;
View Full Code Here

   * to the content language used for this operation.
   * @throws OntologyException if the content of the message is not compliant
   * to the ontology used for this operation.
   */
  public AbsContentElement extractAbsContent(ACLMessage msg) throws CodecException, OntologyException {
    Codec    codec = lookupLanguage(msg.getLanguage());
    if (codec == null) {
      throw new CodecException("Unknown language "+msg.getLanguage());
    }
    String ontoName = msg.getOntology();
    Ontology o = null;
View Full Code Here

   * to the content language used for this operation.
   * @throws OntologyException if the content of the message is not compliant
   * to the ontology used for this operation.
   */
  public ContentElement extractContent(ACLMessage msg) throws CodecException, UngroundedException, OntologyException {
    Codec    codec = lookupLanguage(msg.getLanguage());
    if (codec == null) {
      throw new CodecException("Unknown language "+msg.getLanguage());
    }
    String ontoName = msg.getOntology();
    Ontology o = null;
View Full Code Here

TOP

Related Classes of jade.content.lang.Codec

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.