Uses of Class
com.iizix.prop.GError
Packages that use GError Package Description com.iizix.prop Uses of GError in com.iizix.prop
Methods in com.iizix.prop that return GError Modifier and Type Method Description GError
ErrorsProp. getError(int index)
Gets an error from a specific index in the array.GError
ErrorsProp. removeError(int index)
Removes an error in the at a specific index.Methods in com.iizix.prop that return types with arguments of type GError Modifier and Type Method Description java.util.List<GError>
ErrorsProp. getArrayList()
Gets the synchronized List<GError> of all errors.Methods in com.iizix.prop with parameters of type GError Modifier and Type Method Description void
ErrorsProp. addError(GError e)
Adds a error to the array.void
ErrorsProp. addErrors(GError[] errors)
Adds all errors from an array.int
GError. compareTo(GError e)
Used for sorting errors.boolean
ErrorsProp. hasError(GError error)
Checks if an error already exists.boolean
ErrorsProp. removeError(GError error)
Removes a particular error.Method parameters in com.iizix.prop with type arguments of type GError Modifier and Type Method Description void
ErrorsProp. addErrors(java.util.List<GError> newList)
Adds all errors from a list.Constructor parameters in com.iizix.prop with type arguments of type GError Constructor Description ErrorsProp(Atom propertyAtom, java.util.List<GError> newValue)
Creates an error array property with the specified name with an empty synchronized ArrayList<GError> array initialized with the specified errors.