Package au.net.ocean.maven.plugin.annotation

Examples of au.net.ocean.maven.plugin.annotation.Parameter.defaultValue()


                String alias = parameter.alias().trim();
                if (alias.length() > 0) {
                    parameterDescriptor.setAlias(alias);
                }
                parameterDescriptor.setExpression(parameter.expression().trim());
                parameterDescriptor.setDefaultValue(parameter.defaultValue());
            }
        }
        return parameterDescriptor;
    }
View Full Code Here


                }
                String expression = parameter.expression().trim();
                if (expression.length() > 0) {
                    parameterDescriptor.setExpression(expression);
                }
                String defaultValue = parameter.defaultValue().trim();
                if (defaultValue.length() > 0) {
                    parameterDescriptor.setDefaultValue(defaultValue);
                }
            }
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.