/[cashew-s-editor]/cashews/src/nongnu/cashews/owls/expression/Expression.java
ViewVC logotype

Diff of /cashews/src/nongnu/cashews/owls/expression/Expression.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by gnu_andrew, Thu Mar 31 16:50:14 2005 UTC revision 1.2 by gnu_andrew, Thu Mar 31 16:59:25 2005 UTC
# Line 21  Free Software Foundation, Inc., 59 Templ Line 21  Free Software Foundation, Inc., 59 Templ
21    
22  package nongnu.cashews.owls.expression;  package nongnu.cashews.owls.expression;
23    
24    import nongnu.cashews.rdf.XMLLiteral;
25    
26  /**  /**
27   * This class represents an OWL-S expression in a particular   * This class represents an OWL-S expression in a particular
28   * logical language.   * logical language.
# Line 37  public class Expression Line 39  public class Expression
39     */     */
40    private LogicLanguage language;    private LogicLanguage language;
41    
42    /* TODO: Add expression body */    /**
43       * The value of this expression, in the form of literal XML.
44       *
45       * @see nongnu.cashews.rdf.XMLLiteral
46       */
47      private XMLLiteral value;
48    
49      /**
50       * Sets the logical formalism used by this expression.
51       *
52       * @param newLang the new language to use.
53       */
54      public void setLanguage(LogicLanguage newLang)
55      {
56        language = newLang;
57      }
58    
59  }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26