Home | History | Annotate | Download | only in state

Lines Matching refs:State

17 package com.android.gallery3d.filtershow.state;
32 public class StateAdapter extends ArrayAdapter<State> {
52 State state = getItem(position);
53 view.setState(state);
56 FilterRepresentation stateRep = state.getFilterRepresentation();
67 public boolean contains(State state) {
69 if (state == getItem(i)) {
81 add(new State(mOriginalText));
84 public boolean same(Vector<State> states) {
85 // we have the original state in addition
90 State state = getItem(i);
91 if (!state.equals(states.elementAt(i-1))) {
98 public void fill(Vector<State> states) {
109 public void remove(State state) {
110 super.remove(state);
111 FilterRepresentation filterRepresentation = state.getFilterRepresentation();