PropertyError Class
- public class PropertyError
extends Object
Contains a property validation error or warning message.
Setting the warning flag will allow the user to choose
whether to continue with the set of the value.
If this represents an error, then the edited value
will be rejected.
Related Topics
IProperty
-
Hierarchy
-
Object
PropertyError
-
PropertyError(
String msg, boolean isWarning)
- Creates a PropertyError with the given message
and a flag indicating whether this is an error
or warning.
|
public String |
-
getMessage ()
- Returns message string.
|
public boolean |
-
isWarning ()
- Indicates whether this object represents an error or warning.
|
Methods from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PropertyError
public PropertyError(String
msg,
boolean isWarning)
- Creates a PropertyError with the given message
and a flag indicating whether this is an error
or warning.
getMessage() Method
public String
getMessage()
Returns message string.
Returns
- String message.
isWarning() Method
public boolean isWarning()
Indicates whether this object represents an error or warning.
Returns
- true if a warning, false if an error.