1 package okw.log.log2html;
5 private String sourceExcerpt =
"";
6 private String type =
"";
13 this.sourceExcerpt = sourceExcerpt;
17 this.RemoteACCallCount();
22 protected void ErrorCount()
26 this.RemoteACCallFail();
30 if ( myParent !=
null)
32 myParent.ErrorCount();
38 protected void ExceptionCount()
42 this.RemoteACCallFail();
44 this.bException =
true;
46 if ( myParent !=
null)
48 myParent.ExceptionCount();
53 protected void RemoteACCallFail()
55 if ( ! (this.bError || this.bException ) )
56 myParent.RemoteACCallFail();
61 protected String getJSONNodeProperties()
63 StringBuilder myJSON =
new StringBuilder();
65 myJSON.append( this.jsonElementComma(
"sourceExcerpt", this.sourceExcerpt ) );
66 myJSON.append( this.jsonElementComma(
"type", this.type ) );
68 return myJSON.toString();