Package org.hibernate.validator.internal.metadata.descriptor

Examples of org.hibernate.validator.internal.metadata.descriptor.MethodDescriptorImpl


  public Class<?>[] getParameterTypes() {
    return parameterTypes;
  }

  public MethodDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new MethodDescriptorImpl(
        getType(),
        getName(),
        asDescriptors( getConstraints() ),
        isCascading(),
        parametersAsDescriptors( defaultGroupSequenceRedefined, defaultGroupSequence ),
View Full Code Here


  public Class<?>[] getParameterTypes() {
    return parameterTypes;
  }

  public MethodDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new MethodDescriptorImpl(
        getType(),
        getName(),
        asDescriptors( getConstraints() ),
        isCascading(),
        parametersAsDescriptors( defaultGroupSequenceRedefined, defaultGroupSequence ),
View Full Code Here

TOP

Related Classes of org.hibernate.validator.internal.metadata.descriptor.MethodDescriptorImpl

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.