Back to project page 50AndroidHacks.
The source code is released under:
Apache License
If you think the Android project 50AndroidHacks 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.github.yftx.AndroidHacks.sectionPatterns.mvp.model; /*from ww w . j a v a 2 s. co m*/ /** * User: Liuzl * Date: 13-11-28 */ public interface IOpenStatus { enum Type { Normal, Small, Big } Type getViewType(); void setViewType(Type type); }