Exemple #1
0
  public Any exec(Any a) throws AnyException {
    Composite container =
        (Composite) EvalExpr.evalFunc(getTransaction(), a, container_, Composite.class);

    Any contained = EvalExpr.evalFunc(getTransaction(), a, contained_);

    AnyBoolean ret = new AnyBoolean();

    if (container != null) {
      ret.setValue(container.contains(contained));
    }

    return ret;
  }