Ejemplo n.º 1
0
        /**
         * Method declaration
         *
         *
         * @throws Exception
         */
        public void checkResolved()
        {
            Trace.check(iType != COLUMN || tFilter != null,
                        Trace.COLUMN_NOT_FOUND, sColumn);

            if (eArg != null)
            {
                eArg.checkResolved();
            }

            if (eArg2 != null)
            {
                eArg2.checkResolved();
            }

            if (sSelect != null)
            {
                sSelect.checkResolved();
            }

            /*			if (fFunction != null)
             *                      {
             *                              fFunction.checkResolved();
             *                      }
             */}
Ejemplo n.º 2
0
        /**
         * Method declaration
         *
         *
         * @throws Exception
         */
        public void checkResolved()
        {
            if (eCondition != null)
            {
                eCondition.checkResolved();
            }

            int len = eColumn.Length;

            for (int i = 0; i < len; i++)
            {
                eColumn[i].checkResolved();
            }
        }