]> git.mxchange.org Git - jcoreee.git/blobdiff - src/org/mxchange/jsfcore/validator/string/names/NameValidator.java
Some improvements
[jcoreee.git] / src / org / mxchange / jsfcore / validator / string / names / NameValidator.java
index 45b4cf7919c1acc96fe81da44561c93dd116f71a..0994ab4d4dcbc8eb71419bf5e668752a387673ad 100644 (file)
@@ -1,46 +1,46 @@
-/*\r
- * Copyright (C) 2015 Roland Haeder\r
- *\r
- * This program is free software: you can redistribute it and/or modify\r
- * it under the terms of the GNU General Public License as published by\r
- * the Free Software Foundation, either version 3 of the License, or\r
- * (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
-  */\r
-package org.mxchange.jsfcore.validator.string.names;\r
-\r
-import java.text.MessageFormat;\r
-import javax.faces.component.UIComponent;\r
-import javax.faces.context.FacesContext;\r
-import javax.faces.validator.Validator;\r
-import javax.faces.validator.ValidatorException;\r
-import org.mxchange.jsfcore.validator.string.BaseStringValidator;\r
-\r
-/**\r
- * A validation class for names, such as first name or family name.\r
- *\r
- * @author Roland Haeder\r
- */\r
-public class NameValidator extends BaseStringValidator implements Validator {\r
-       @Override\r
-       public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {\r
-               // Trace message\r
-               this.getLogger().trace(MessageFormat.format("context={0},component={1},value={2} - CALLED!", context, component, value));\r
-\r
-               // All accepted, required fields\r
-               String[] requiredFileds = {"firstName", "familyName"};\r
-\r
-               // Pre-validation (e.g. not null, not a string, empty string ...)\r
-               super.preValidate(context, component, value, requiredFileds);\r
-\r
-               // Trace message\r
-               this.getLogger().trace("EXIT!");\r
-       }\r
-}\r
+/*
+ * Copyright (C) 2015 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+  */
+package org.mxchange.jsfcore.validator.string.names;
+
+import java.text.MessageFormat;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.validator.Validator;
+import javax.faces.validator.ValidatorException;
+import org.mxchange.jsfcore.validator.string.BaseStringValidator;
+
+/**
+ * A validation class for names, such as first name or family name.
+ *
+ * @author Roland Haeder
+ */
+public class NameValidator extends BaseStringValidator implements Validator {
+       @Override
+       public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
+               // Trace message
+               this.getLogger().trace(MessageFormat.format("context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
+
+               // All accepted, required fields
+               String[] requiredFileds = {"firstName", "familyName", "city", "street"}; //NOI18N
+
+               // Pre-validation (e.g. not null, not a string, empty string ...)
+               super.preValidate(context, component, value, requiredFileds);
+
+               // Trace message
+               this.getLogger().trace("EXIT!"); //NOI18N
+       }
+}