Package com.iizigo.prop.editor.dialog
Class HyperlinkDialog
- java.lang.Object
- org.eclipse.swt.widgets.Dialog
- com.iizigo.prop.editor.dialog.HyperlinkDialog
- All Implemented Interfaces:
IValidationMessage
public class HyperlinkDialog extends org.eclipse.swt.widgets.Dialog implements IValidationMessage
Hyperlink text dialog box.- Author:
- Christopher Mindus
Constructor Summary
Constructors Constructor Description HyperlinkDialog(org.eclipse.swt.widgets.Shell parent, ModuleModel model, java.lang.String[] dialogData)
Create the dialog.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onValidate(boolean isValid)
Call to inform validity of all validators.int
open()
Open the dialog.void
setMessage(java.lang.String newMessage, int newType)
Set the message for this page with an indication of what type of message it is.
Constructor Detail
HyperlinkDialog
public HyperlinkDialog(org.eclipse.swt.widgets.Shell parent, ModuleModel model, java.lang.String[] dialogData)
Create the dialog.- Parameters:
parent
- The parent shell.dialogData
- Dialog data [3] where [0]='Title', [1]=(KStringTag.Type.typeString
), [2]=reference, [3]=target.
Method Detail
open
public int open()
Open the dialog.- Returns:
- the gradient.
setMessage
public void setMessage(java.lang.String newMessage, int newType)
Set the message for this page with an indication of what type of message it is.The valid message types are one of
IMessageProvider.NONE
,IMessageProvider.INFORMATION
,IMessageProvider.WARNING
, orIMessageProvider.ERROR
.Note that for backward compatibility, a message of type
ERROR
is different than an error message (set usingsetErrorMessage
). An error message overrides the current message until the error message is cleared. This method replaces the current message and does not affect the error message.- Specified by:
setMessage
in interfaceIValidationMessage
- Parameters:
newMessage
- The message, ornull
to clear the message.newType
- The message type.
onValidate
public void onValidate(boolean isValid)
Call to inform validity of all validators.- Specified by:
onValidate
in interfaceIValidationMessage
- Parameters:
isValid
- true if valid, false otherwise.