Package org.drools.planner.core.annotations

Examples of org.drools.planner.core.annotations.PlanningValueProperty


            Collection<? extends Object> facts) {
        this.planningVariable = planningVariable;
        this.planningVariableClass = planningVariableClass;

        for (Method method : planningVariable.getClass().getMethods()) {
            PlanningValueProperty planningValueProperty = method.getAnnotation(PlanningValueProperty.class);
            if (planningValueProperty != null) {
                valueMethod = method;
                // TODO use when refactored to getter valueMethod.getReturnType();
                Class<?> planningValueClass = valueMethod.getParameterTypes()[0];
                planningValueList = new ArrayList<Object>();
View Full Code Here

TOP

Related Classes of org.drools.planner.core.annotations.PlanningValueProperty

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.