Package com.iizix.prop
Class PropErrorItemOrigin
- java.lang.Object
- com.iizix.prop.PropErrorItemOrigin
public class PropErrorItemOrigin extends java.lang.Object
Class used to hold both a property and a property error item.- Author:
- Christopher Mindus
Field Summary
Fields Modifier and Type Field Description IPropErrorItem
errorItem
The error item.GProp<?>
property
The property.java.lang.String
reference
The cached reference name, null if not set.
Constructor Summary
Constructors Constructor Description PropErrorItemOrigin(GProp<?> property, IPropErrorItem errorItem)
Constructor that assigns theproperty
anderrorItem
members.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
Checks if two instances are equal.java.lang.String
toString()
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 theproperty
anderrorItem
members.- Parameters:
property
- The property.errorItem
- The error item.