Back to project page android-view-selector.
The source code is released under:
Copyright (c) 2013 Nik Haldimann Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Soft...
If you think the Android project android-view-selector listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.nikhaldimann.viewselector.checker; /*from www . j a v a2 s. c om*/ import java.util.Set; import android.view.View; import com.nikhaldimann.viewselector.selection.ViewSelection; /** * Interface for checkers that traverse views trying to find views * that match some selector criterion. */ public interface ViewTraversalChecker { /** * Checks the given views for views that match some criterion. * @param views the views to check * @return the set of matched views */ ViewSelection check(Set<View> views); }