Back to project page Operation-Valkyrie.
The source code is released under:
Terms and conditions Preamble: This Agreement, signed on Jun 10, 2012 [hereinafter: Effective Date] governs the relationship between the Enduser, a private person, (hereinafter: Licensee) and Paul N...
If you think the Android project Operation-Valkyrie 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 valkyrie.ui; /* w w w .j a v a2 s . co m*/ import android.widget.TableLayout; /** * * COPYRIGHT: Paul Neuhold, Laurenz Theuerkauf, Alexander Ritz, Jakob Schweighofer, Milo Tischler * ? Milo Tischler, Jakob Schweighofer, Alexander Ritz, Paul Neuhold, Laurenz Theuerkauf * */ /** * Interface for UI Components which shall be updated when a Filter is switched or in anyway set. */ public interface IUpdateableUI { /** * Forces the UI to update, according to the currently set active Filter. * * @param uiElements * TableLayout containing all UI Elements of the active Filter. */ public void redrawUI(TableLayout uiElements); }