Package com.iizix.prop
Class PropErrorItemOrigin
- java.lang.Object
- com.iizix.prop.PropErrorItemOrigin
public class PropErrorItemOrigin extends java.lang.ObjectClass used to hold both a property and a property error item.- Author:
- Christopher Mindus
Field Summary
Fields Modifier and Type Field Description IPropErrorItemerrorItemThe error item.GProp<?>propertyThe property.java.lang.StringreferenceThe cached reference name, null if not set.
Constructor Summary
Constructors Constructor Description PropErrorItemOrigin(GProp<?> property, IPropErrorItem errorItem)Constructor that assigns thepropertyanderrorItemmembers.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)Checks if two instances are equal.java.lang.StringtoString()Outputs a string representation of this error.
Field Detail
property
public final GProp<?> property
The property.
errorItem
public final IPropErrorItem errorItem
The error item.
reference
public final java.lang.String reference
The cached reference name, null if not set.
Constructor Detail
PropErrorItemOrigin
public PropErrorItemOrigin(GProp<?> property, IPropErrorItem errorItem)
Constructor that assigns thepropertyanderrorItemmembers.- Parameters:
property- The property.errorItem- The error item.