Modifier and Type | Field and Description |
---|---|
Class |
clazz |
Field[] |
fields |
org.kohsuke.stapler.FunctionList |
methods |
Constructor and Description |
---|
ClassDescriptor(Class clazz,
Class... wrappers) |
Modifier and Type | Method and Description |
---|---|
String[] |
loadConstructorParamNames()
Determines the constructor parameter names.
|
static String[] |
loadParameterNames(Constructor<?> m)
Loads the list of parameter names of the given method, by using a stapler-specific way of getting it.
|
static String[] |
loadParameterNames(Method m)
Loads the list of parameter names of the given method, by using a stapler-specific way of getting it.
|
public final Class clazz
public final org.kohsuke.stapler.FunctionList methods
public final Field[] fields
public ClassDescriptor(Class clazz, Class... wrappers)
clazz
- The class to build a descriptor around.wrappers
- Optional wrapper duck-typing classes.
Static methods on this class that has the first parameter
as 'clazz' will be handled as if it's instance methods on
'clazz'. Useful for adding view/controller methods on
model classes.public static String[] loadParameterNames(Method m)
This is not the best place to expose this, but for now this would do.
public static String[] loadParameterNames(Constructor<?> m)
This is not the best place to expose this, but for now this would do.
public String[] loadConstructorParamNames()
First, try to load names from the debug information. Otherwise
if there's the .stapler file, load it as a property file and determines the constructor parameter names.
Otherwise, look for CapturedParameterNames
annotation.
Copyright © 2017. All rights reserved.