/* * Copyright 2016 Google Inc. * * 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 somepackage; import com.google.android.libraries.remixer.BooleanVariableBuilder; import com.google.android.libraries.remixer.Callback; import com.google.android.libraries.remixer.Remixer; import com.google.android.libraries.remixer.Variable; import com.google.android.libraries.remixer.annotation.RemixerBinder; import java.lang.Boolean; import java.lang.Override; /** * This class was generated by RemixerAnnotationProcessor */ public class Correct_RemixerBinder implements RemixerBinder.Binder<Correct> { @Override public void bindInstance(Correct activity) { Remixer remixer = Remixer.getInstance(); Generated_correct correct_callback = new Generated_correct(activity); BooleanVariableBuilder correct_remixer_item = new BooleanVariableBuilder(); correct_remixer_item.setDataType(Remixer.getInstance().getDataType("__DataTypeBoolean__")); correct_remixer_item.setKey("correct"); correct_remixer_item.setTitle("correct"); correct_remixer_item.setLayoutId(0); correct_remixer_item.setContext(activity); correct_remixer_item.setCallback(correct_callback); correct_remixer_item.setInitialValue(false); remixer.addItem(correct_remixer_item.build()); } static class Generated_correct implements Callback<Boolean> { private final Correct activity; Generated_correct(Correct activity) { this.activity = activity; } @Override public void onValueSet(Variable<Boolean> variable) { activity.correct(variable.getSelectedValue()); } } }