Package nexj.core.persistence.operator

Examples of nexj.core.persistence.operator.UnaryOperator


      /**
       * @see nexj.core.persistence.Query.OperatorFactory#create(nexj.core.scripting.Pair, nexj.core.persistence.Query, Object, byte)
       */
      public Operator create(Pair args, Query query, Object key, byte nOutput)
      {
         UnaryOperator op = create(query);

         if (args == null || args.getTail() != null)
         {
            throw new InvalidQueryException("err.persistence.unaryOperatorArgCount",
               new Object[]{op.getSymbol()});
         }

         if (!op.setOperand(query.createOperator(key, args.getHead(), nOutput)))
         {
            return null;
         }

         return op;
View Full Code Here

TOP

Related Classes of nexj.core.persistence.operator.UnaryOperator

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.