org.androidannotations.handler.ItemSelectHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidannotations Show documentation
Show all versions of androidannotations Show documentation
The Annotation Processor jar that generates code
/**
* Copyright (C) 2010-2013 eBusiness Information, Excilys Group
*
* 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 org.androidannotations.handler;
import static com.sun.codemodel.JExpr._null;
import static com.sun.codemodel.JExpr.invoke;
import static com.sun.codemodel.JExpr.lit;
import java.util.List;
import javax.annotation.processing.ProcessingEnvironment;
import javax.lang.model.element.Element;
import javax.lang.model.element.ExecutableElement;
import javax.lang.model.element.VariableElement;
import javax.lang.model.type.TypeKind;
import javax.lang.model.type.TypeMirror;
import org.androidannotations.annotations.ItemSelect;
import org.androidannotations.model.AnnotationElements;
import org.androidannotations.process.IsValid;
import com.sun.codemodel.JBlock;
import com.sun.codemodel.JClass;
import com.sun.codemodel.JDefinedClass;
import com.sun.codemodel.JExpr;
import com.sun.codemodel.JInvocation;
import com.sun.codemodel.JMethod;
import com.sun.codemodel.JMod;
import com.sun.codemodel.JType;
import com.sun.codemodel.JVar;
public class ItemSelectHandler extends AbstractListenerHandler {
private JMethod onNothingSelectedMethod;
public ItemSelectHandler(ProcessingEnvironment processingEnvironment) {
super(ItemSelect.class, processingEnvironment);
}
@Override
public void validate(Element element, AnnotationElements validatedElements, IsValid valid) {
super.validate(element, validatedElements, valid);
ExecutableElement executableElement = (ExecutableElement) element;
validatorHelper.returnTypeIsVoid(executableElement, valid);
validatorHelper.param.hasOneOrTwoParametersAndFirstIsBoolean(executableElement, valid);
}
@Override
protected void makeCall(JBlock listenerMethodBody, JInvocation call, TypeMirror returnType) {
listenerMethodBody.add(call);
}
@Override
protected void processParameters(JMethod listenerMethod, JInvocation itemSelectedCall, List extends VariableElement> parameters) {
JClass narrowAdapterViewClass = classes().ADAPTER_VIEW.narrow(codeModel().wildcard());
JVar onItemClickParentParam = listenerMethod.param(narrowAdapterViewClass, "parent");
listenerMethod.param(classes().VIEW, "view");
JVar onItemClickPositionParam = listenerMethod.param(codeModel().INT, "position");
listenerMethod.param(codeModel().LONG, "id");
itemSelectedCall.arg(JExpr.TRUE);
boolean hasItemParameter = parameters.size() == 2;
boolean secondParameterIsInt = false;
String secondParameterQualifiedName = null;
if (hasItemParameter) {
VariableElement secondParameter = parameters.get(1);
TypeMirror secondParameterType = secondParameter.asType();
secondParameterQualifiedName = secondParameterType.toString();
secondParameterIsInt = secondParameterType.getKind() == TypeKind.INT;
}
if (hasItemParameter) {
if (secondParameterIsInt) {
itemSelectedCall.arg(onItemClickPositionParam);
} else {
itemSelectedCall.arg(JExpr.cast(refClass(secondParameterQualifiedName), invoke(onItemClickParentParam, "getAdapter").invoke("getItem").arg(onItemClickPositionParam)));
}
}
onNothingSelectedMethod.param(narrowAdapterViewClass, "parent");
JInvocation nothingSelectedCall = onNothingSelectedMethod.body().invoke(getMethodName());
nothingSelectedCall.arg(JExpr.FALSE);
if (hasItemParameter) {
if (secondParameterIsInt) {
nothingSelectedCall.arg(lit(-1));
} else {
nothingSelectedCall.arg(_null());
}
}
}
@Override
protected JMethod createListenerMethod(JDefinedClass listenerAnonymousClass) {
onNothingSelectedMethod = listenerAnonymousClass.method(JMod.PUBLIC, codeModel().VOID, "onNothingSelected");
onNothingSelectedMethod.annotate(Override.class);
return listenerAnonymousClass.method(JMod.PUBLIC, codeModel().VOID, "onItemSelected");
}
@Override
protected String getSetterName() {
return "setOnItemSelectedListener";
}
@Override
protected JClass getListenerClass() {
return classes().ON_ITEM_SELECTED_LISTENER;
}
@Override
protected JType getViewClass() {
return classes().ADAPTER_VIEW.narrow(codeModel().wildcard());
}
}