Package com.browserup.harreader.model
Class HarPageTiming
- java.lang.Object
-
- com.browserup.harreader.model.HarPageTiming
-
public class HarPageTiming extends java.lang.ObjectInformation about events occurring during page load.- See Also:
- specification
-
-
Field Summary
Fields Modifier and Type Field Description protected static java.lang.IntegerDEFAULT_TIME
-
Constructor Summary
Constructors Constructor Description HarPageTiming()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.lang.StringgetComment()java.lang.IntegergetOnContentLoad()java.lang.IntegergetOnLoad()inthashCode()voidsetComment(java.lang.String comment)voidsetOnContentLoad(java.lang.Integer onContentLoad)voidsetOnLoad(java.lang.Integer onLoad)
-
-
-
Method Detail
-
getOnContentLoad
public java.lang.Integer getOnContentLoad()
- Returns:
- Duration in ms until content is loaded.
DEFAULT_TIMEwhen no information available.
-
setOnContentLoad
public void setOnContentLoad(java.lang.Integer onContentLoad)
-
getOnLoad
public java.lang.Integer getOnLoad()
- Returns:
- Duration in ms until onLoad event is fired.
DEFAULT_TIMEwhen no information available.
-
setOnLoad
public void setOnLoad(java.lang.Integer onLoad)
-
getComment
public java.lang.String getComment()
- Returns:
- Comment provided by the user or application, null if not present.
-
setComment
public void setComment(java.lang.String comment)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-