Package com.iizigo.prop
Class PasteFeedback
java.lang.Object
com.iizigo.prop.PasteFeedback
- Direct Known Subclasses:
PasteFeedback.DropValidationFeedback
Paste feed-back. This class is returned in response to the Designer Property Paste operation in order to provide visual feed-back on the operation, typically if the operation is allowed (if Paste was requested without perform the actual paste) or successful (if performed).
The error message is set when the operation cannot be performed or failed. The feed-back members indicate how the operation would take place or has taken place.
- Author:
- Christopher Mindus
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
Specialized class for validation "paste" where drop could take place in multiple places, e.g.Field Summary
Modifier and TypeFieldDescriptionstatic final PasteFeedback
Standard error: "Element is read-only".static final PasteFeedback
Standard error: "Unsupported operation: file is not loaded".static final PasteFeedback
Standard error: "Invalid operation".static final PasteFeedback
Standard error: "Target does not support operation".static final PasteFeedback
Standard error: "Target is read-only".final int
Feed-back value, -1 for not defined.static final int
Feed-back for operation canceled by user due to e.g.static final int
Feed-back for link instead of paste with selected target.static final int
Feed-back for paste into selected container's parent after the target.static final int
Feed-back for paste into selected container's parent before the target.static final int
Feed-back for paste into selected target container (non-index based target container).static final int
Feed-back for paste into selected container's folder parent (resource based).static final int
Feed-back for valid drops.final String
Error message, null indicates no error.static final PasteFeedback
Success: operation canceled by user due to e.g.static final PasteFeedback
Success: link with target: feedBack = FEEDBACK_LINK_WITH_TARGET.static final PasteFeedback
Success: paste after target in target parent: feedBack = FEEDBACK_AFTER_TARGET_IN_PARENT.static final PasteFeedback
Success: paste before target in target parent: feedBack = FEEDBACK_BEFORE_TARGET_IN_PARENT.static final PasteFeedback
Success: paste in target: feedBack = FEEDBACK_IN_TARGET.static final PasteFeedback
Success: paste in target folder: feedBack = FEEDBACK_IN_TARGET_FOLDER.final IStatus
Potential status code, if originating from a status, otherwise null.Constructor Summary
ConstructorDescriptionPasteFeedback
(String message) Constructor for paste not allowed or error in paste.PasteFeedback
(IStatus status) Constructor for error message from status.Method Summary
Field Details
ERR_TARGET_DOES_NOT_SUPPORT_OPERATION
Standard error: "Target does not support operation".ERR_INVALID_OPERATION
Standard error: "Invalid operation".ERR_TARGET_READ_ONLY
Standard error: "Target is read-only".ERR_ELEMENT_READ_ONLY
Standard error: "Element is read-only".ERR_FILE_NOT_LOADED
Standard error: "Unsupported operation: file is not loaded".FEEDBACK_PASTE_IN_TARGET
public static final int FEEDBACK_PASTE_IN_TARGETFeed-back for paste into selected target container (non-index based target container).- See Also:
FEEDBACK_PASTE_IN_TARGET_FOLDER
public static final int FEEDBACK_PASTE_IN_TARGET_FOLDERFeed-back for paste into selected container's folder parent (resource based).- See Also:
FEEDBACK_PASTE_BEFORE_TARGET_IN_PARENT
public static final int FEEDBACK_PASTE_BEFORE_TARGET_IN_PARENTFeed-back for paste into selected container's parent before the target.- See Also:
FEEDBACK_PASTE_AFTER_TARGET_IN_PARENT
public static final int FEEDBACK_PASTE_AFTER_TARGET_IN_PARENTFeed-back for paste into selected container's parent after the target.- See Also:
FEEDBACK_LINK_WITH_TARGET
public static final int FEEDBACK_LINK_WITH_TARGETFeed-back for link instead of paste with selected target.- See Also:
FEEDBACK_CANCELED_BY_USER
public static final int FEEDBACK_CANCELED_BY_USERFeed-back for operation canceled by user due to e.g. dialog boxes.- See Also:
FEEDBACK_VALID_DROPS
public static final int FEEDBACK_VALID_DROPSFeed-back for valid drops.- See Also:
OK_PASTE_IN_TARGET
Success: paste in target: feedBack = FEEDBACK_IN_TARGET.OK_PASTE_IN_TARGET_FOLDER
Success: paste in target folder: feedBack = FEEDBACK_IN_TARGET_FOLDER.OK_PASTE_BEFORE_TARGET_IN_PARENT
Success: paste before target in target parent: feedBack = FEEDBACK_BEFORE_TARGET_IN_PARENT.OK_PASTE_AFTER_TARGET_IN_PARENT
Success: paste after target in target parent: feedBack = FEEDBACK_AFTER_TARGET_IN_PARENT.OK_LINK_WITH_TARGET
Success: link with target: feedBack = FEEDBACK_LINK_WITH_TARGET.OK_CANCELED_BY_USER
Success: operation canceled by user due to e.g. dialog boxes.message
Error message, null indicates no error.status
Potential status code, if originating from a status, otherwise null.feedBack
public final int feedBackFeed-back value, -1 for not defined.
Constructor Details
PasteFeedback
Constructor for error message from status. If status isOK(), this method will cause IllegalArgumentException!- Throws:
IllegalArgumentException
- If status.isOK() is true.
PasteFeedback
Constructor for paste not allowed or error in paste.
Method Details