Ignore:
Timestamp:
Jan 19, 2007, 3:34:12 AM (19 years ago)
Author:
dai
Message:

Trace/Debugクラスを実装(リスナ系にちょっとTODOが残っている…)。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/Classes/System/Diagnostics/TraceListener.ab

    r58 r69  
    4141        '派生クラスで実装 (基底では何もしない)
    4242    End Sub
    43     Virtual Sub Write( o As Object )
    44         Write( o.ToString() )
     43    Virtual Sub Write( value As Object )
     44        Write( value.ToString() )
    4545    End Sub
    46     Virtual Sub Write( o As Object, category As String )
    47         Write( category + ": " + o.ToString() )
     46    Virtual Sub Write( value As Object, category As String )
     47        Write( category + ": " + value.ToString() )
    4848    End Sub
    4949    Virtual Sub Write( message As String, category As String )
     
    5454        '派生クラスで実装 (基底では何もしない)
    5555    End Sub
    56     Virtual Sub WriteLine( o As Object )
    57         WriteLine( o.ToString() )
     56    Virtual Sub WriteLine( value As Object )
     57        WriteLine( value.ToString() )
    5858    End Sub
    59     Virtual Sub WriteLine( o As Object, category As String )
    60         WriteLine( category + ": " + o.ToString() )
     59    Virtual Sub WriteLine( value As Object, category As String )
     60        WriteLine( category + ": " + value.ToString() )
    6161    End Sub
    6262    Virtual Sub WriteLine( message As String, category As String )
Note: See TracChangeset for help on using the changeset viewer.