Package jodd.petite

Examples of jodd.petite.DestroyMethodPoint


        continue;
      }
      if (method.getParameterTypes().length > 0) {
        throw new PetiteException("Arguments are not allowed for Petite destroy method: " + type.getName() + '#' + method.getName());
      }
      list.add(new DestroyMethodPoint(method));
    }

    DestroyMethodPoint[] methods;

    if (list.isEmpty()) {
View Full Code Here

TOP

Related Classes of jodd.petite.DestroyMethodPoint

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.