Esempio n. 1
0
        static public void print(ClassStdOutWriter obj, ClassString st)
        {
            String cst = Bard.cs_str(st);

            if (cst.Length > 1 || cst[0] != 10)
            {
                Bard.log(cst);
            }
        }
Esempio n. 2
0
 static public void print(ClassStdOutWriter obj, char ch)
 {
     if (ch == 10)
     {
         Bard.log(log_buffer.ToString());
         log_buffer.Length = 0;
     }
     else
     {
         log_buffer.Append(ch);
     }
 }
Esempio n. 3
0
 public static void write( ClassStdOutWriter obj, char ch )
 {
     if (ch == 10)
       {
     Bard.log(log_buffer.ToString());
     log_buffer.Length = 0;
       }
       else
       {
     log_buffer.Append(ch);
       }
 }
Esempio n. 4
0
 public static void print( ClassStdOutWriter obj, ClassString st )
 {
     String cst = Bard.cs_str(st);
       if (cst.Length > 1 || cst[0] != 10)
       {
     Bard.log(cst);
       }
 }
Esempio n. 5
0
 public static void flush( ClassStdOutWriter obj )
 {
 }
Esempio n. 6
0
 static public void flush(ClassStdOutWriter obj)
 {
 }