X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/html/SomeItemInputDialog.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/html/SomeItemInputDialog.java index 653bb1f..fdbfeb0 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/html/SomeItemInputDialog.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/html/SomeItemInputDialog.java @@ -1,5 +1,5 @@ /* - * $Id: SomeItemInputDialog.java,v 1.2 2005-05-06 00:57:33 stefanbjarni Exp $ + * $Id: SomeItemInputDialog.java,v 1.3 2006-10-21 23:18:43 pombredanne Exp $ * Copyright Narushima Hironori. All rights reserved. */ package net.sourceforge.phpeclipse.wizards.html; @@ -26,26 +26,32 @@ import org.eclipse.swt.widgets.Text; public class SomeItemInputDialog extends Dialog { String dialogTitle; + String[] inputMessages; - + IInputValidator[] validators; + Text[] texts; + Text error; - + String[] errorMsgs; + String[] resultValues; - public SomeItemInputDialog(Shell parentShell, String dialogTitle, String[] inputMessages, IInputValidator[] validators) { + public SomeItemInputDialog(Shell parentShell, String dialogTitle, + String[] inputMessages, IInputValidator[] validators) { super(parentShell); - if(inputMessages.length != validators.length){ - throw new IllegalArgumentException("Specify validator counts and input message count is not same."); + if (inputMessages.length != validators.length) { + throw new IllegalArgumentException( + "Specify validator counts and input message count is not same."); } - + this.dialogTitle = dialogTitle; - this.inputMessages = (String[])inputMessages.clone(); - this.validators = (IInputValidator[])validators.clone(); + this.inputMessages = (String[]) inputMessages.clone(); + this.validators = (IInputValidator[]) validators.clone(); this.errorMsgs = new String[validators.length]; - + setShellStyle(SWT.RESIZE | getShellStyle()); } @@ -55,16 +61,16 @@ public class SomeItemInputDialog extends Dialog { } protected Control createDialogArea(Composite parent) { - Composite base = (Composite)super.createDialogArea(parent); + Composite base = (Composite) super.createDialogArea(parent); GridLayout gl = new GridLayout(2, false); gl.marginWidth = 4; gl.marginHeight = 6; base.setLayout(gl); - + texts = new Text[inputMessages.length]; - for(int i=0; i