public void print(RescueClassificationContext context,
                   RescueReporter reporter)
 {
     print5(nativeNdx
            , (context == null) ? 0 : context.nativeNdx
            , (reporter == null) ? 0 : reporter.nativeNdx);
 }
Пример #2
0
 public RescueClassificationContext(RescueModel model,
                                    string path,
                                    RescueReporter reporter)
 {
     nativeNdx = Create_RescueClassificationContext0((model == null) ? 0 : model.nativeNdx,
                                                     path,
                                                     (reporter == null) ? 0 : reporter.nativeNdx);
 }
Пример #3
0
        public RescueReporter reporter()
        {
            long returnNdx = reporter4(nativeNdx);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescueReporter myReturn  = new RescueReporter(returnNdx);
                String         className = myReturn.ClassName();
                if (className.equals("class RescueStreamReporter"))
                {
                    myReturn = new RescueStreamReporter(returnNdx);
                }
                return(myReturn);
            }
        }
Пример #4
0
 public void print(RescueReporter reporter)
 {
     print1(nativeNdx
            , (reporter == null) ? 0 : reporter.nativeNdx);
 }