Package org.netbeans.modules.nodejs.forks

Examples of org.netbeans.modules.nodejs.forks.UrlValidator


            if (it.hasNext()) {
                sb.append( ", " ); //NOi18N
            }
        }
        set( keywordsField, sb.toString() );
        g.add( bugTrackerField, new AllowNullValidator( new UrlValidator() ) );
        g.add( nameField, StringValidators.REQUIRE_NON_EMPTY_STRING );
        g.add( authorEmailField, new AllowNullValidator( new EmailAddressValidator() ) );
        g.add( mainFileField, new FileRelativeValidator() );
        g.add( commandLineField, new WhitespaceValidator() );
        g.add( authorURLField, new AllowNullValidator( new UrlValidator() ) );
        g.add( versionField, new VersionValidator() );
    }
View Full Code Here

TOP

Related Classes of org.netbeans.modules.nodejs.forks.UrlValidator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.