Пример #1
0
        /**
         * Constructs a condition-action rule.
         *
         * @param con
         *            a condition
         * @param action
         *            an action
         */
        public Rule(Condition c, Action act)
        {
            Debug.Assert(null != con);
            Debug.Assert(null != action);

            con = c;
            action = act;
        }