/* * 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.Callback; import com.google.android.libraries.remixer.RangeVariable; 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.Float; import java.lang.Override; /** * This class was generated by RemixerAnnotationProcessor */ public class FixesInitialValue_RemixerBinder implements RemixerBinder.Binder<FixesInitialValue> { @Override public void bindInstance(FixesInitialValue activity) { Remixer remixer = Remixer.getInstance(); Generated_fixValue fixValue_callback = new Generated_fixValue(activity); RangeVariable.Builder fixValue_remixer_item = new RangeVariable.Builder(); fixValue_remixer_item.setDataType(Remixer.getInstance().getDataType("__DataTypeNumber__")); fixValue_remixer_item.setKey("fixValue"); fixValue_remixer_item.setTitle("fixValue"); fixValue_remixer_item.setLayoutId(0); fixValue_remixer_item.setContext(activity); fixValue_remixer_item.setCallback(fixValue_callback); fixValue_remixer_item.setMinValue(15f); fixValue_remixer_item.setMaxValue(100f); fixValue_remixer_item.setInitialValue(15f); fixValue_remixer_item.setIncrement(1f); remixer.addItem(fixValue_remixer_item.build()); } static class Generated_fixValue implements Callback<Float> { private final FixesInitialValue activity; Generated_fixValue(FixesInitialValue activity) { this.activity = activity; } @Override public void onValueSet(Variable<Float> variable) { activity.fixValue(variable.getSelectedValue()); } } }