View Javadoc

1   /*
2    * $Id: BooleanExpression.java,v 1.1 2004/12/15 14:18:14 patforna Exp $
3    *
4    * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
5    * Berne University of Applied Sciences
6    * School of Engineering and Information Technology
7    * All rights reserved.
8    */
9   package bexee.model.expression;
10  
11  /***
12   * Representation of a boolean expression.
13   * 
14   * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:14 $
15   * @author Pawel Kowalski
16   */
17  public interface BooleanExpression extends Expression {
18  
19      /***
20       * Set the boolean expression litteral.
21       * 
22       * @param booleanExpression
23       *            litteral
24       */
25      public void setBooleanExpression(String booleanExpression);
26  
27      /***
28       * Get the boolean expression litteral.
29       * 
30       * @return litteral
31       */
32      public String getBooleanExpression();
33  
34  }