
core.main.ReferenceMethodInvocationParser Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2014 Objectos, Fábrica de Software LTDA.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package br.com.objectos.rio.core.main;
import java.lang.reflect.Method;
import br.com.objectos.rio.RioParser.MethodInvocationContext;
/**
* @author [email protected] (Marcio Endo)
*/
class ReferenceMethodInvocationParser extends MethodInvocationParser {
private final String referenceName;
private MethodInvocation methodInvocation;
public ReferenceMethodInvocationParser(ScriptRio rio, String referenceName) {
super(rio);
this.referenceName = referenceName;
}
@Override
public ExpressionParser exitMethodInvocation(MethodInvocationContext ctx) {
super.exitMethodInvocation(ctx);
Reference reference = rio.parseReference(referenceName);
Method method = rio.parseMethod(reference, methodName, methodArgumentList);
methodInvocation = ReferenceMethodInvocation.builder()
.method(method)
.argumentList(argumentList())
.reference(reference)
.build();
rio.add(methodInvocation);
return this;
}
@Override
MethodInvocation methodInvocation() {
return methodInvocation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy