├── .classpath ├── .gitattributes ├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml ├── uiDesigner.xml └── vcs.xml ├── .project ├── Android ├── Activity.java ├── Adapter.java ├── RecyclerAdapter.java ├── item.xml ├── item_recyclerview.xml └── layout.xml ├── CodeUtils.iml ├── Json\JsonBean.java ├── README.md ├── lib ├── kotlin-reflect-sources.jar ├── kotlin-reflect.jar ├── kotlin-stdlib-jdk7-sources.jar ├── kotlin-stdlib-jdk7.jar ├── kotlin-stdlib-jdk8-sources.jar ├── kotlin-stdlib-jdk8.jar ├── kotlin-stdlib-sources.jar ├── kotlin-stdlib.jar ├── kotlin-test-sources.jar └── kotlin-test.jar ├── libs ├── commons-codec-1.6.jar ├── commons-logging-1.1.1.jar ├── dom4j-1.6.1.jar ├── fluent-hc-4.2.5.jar ├── freemarker.jar ├── greendao-2.0.0.jar ├── greendao-generator-2.0.0.jar ├── gson-1.7.1.jar ├── httpclient-4.2.5.jar ├── httpclient-cache-4.2.5.jar ├── httpcore-4.2.4.jar ├── httpmime-4.2.5.jar ├── jsoup-1.8.1.jar ├── jts-core-1.19.0-sources.jar ├── jts-core-1.19.0.jar ├── junit-4.11.jar ├── juniversalchardet-1.0.3.jar ├── poi-3.11-20141221.jar ├── poi-examples-3.11-20141221.jar ├── poi-excelant-3.11-20141221.jar ├── poi-ooxml-3.11-20141221.jar ├── poi-ooxml-schemas-3.11-20141221.jar ├── poi-scratchpad-3.11-20141221.jar └── xmlbeans-2.6.0.jar ├── parse └── entities │ └── Book.java ├── res ├── drawable │ ├── sel.xml │ └── shape_correct.xml └── layout │ └── test.xml ├── src ├── androidtest │ └── Main.java ├── ano │ ├── Activity.java │ └── MyAnno.java ├── apidoc │ ├── ApiDocUtils.java │ ├── ApiField.java │ ├── ApiInfo.java │ ├── Main.java │ ├── ServerBean2ClientBean.java │ └── SwaggerParse.java ├── archex │ ├── CompetChance.java │ ├── Definition.java │ ├── EnumUtils.java │ ├── JiraIssue.java │ ├── JiraUtils.java │ ├── Path.java │ ├── Swagger2Utils.java │ └── UiUtils.java ├── de │ └── greenrobot │ │ └── daogenerator │ │ ├── ContentProvider.java │ │ ├── DaoGenerator.java │ │ ├── DaoUtil.java │ │ ├── Entity.java │ │ ├── Index.java │ │ ├── Property.java │ │ ├── PropertyOrderList.java │ │ ├── PropertyType.java │ │ ├── Query.java │ │ ├── QueryParam.java │ │ ├── Schema.java │ │ ├── ToMany.java │ │ ├── ToManyBase.java │ │ ├── ToManyWithJoinEntity.java │ │ ├── ToOne.java │ │ └── _GreenDaoMain.java ├── entity │ ├── AndroidTestAction.java │ ├── AndroidTestAssertion.java │ ├── AndroidTestInfo.java │ ├── ArrayType.java │ ├── ClassInfo.java │ ├── EnumData.java │ ├── IdNamingBean.java │ ├── Json2JavaElement.java │ ├── RequestInfo.java │ ├── RequestParam.java │ └── ResultInfo.java ├── kotlin │ └── KotlinParse.java ├── parse │ ├── BmobHttpUtils.java │ ├── LeanCloudHttpUtils.java │ ├── ParseUtils.java │ ├── Pointer.java │ ├── Relation.java │ └── diandianbo │ │ ├── Book.java │ │ ├── BookUnit.java │ │ ├── LeanFile.java │ │ ├── ListResponse.java │ │ ├── Main.java │ │ └── SetMain.java ├── polygon │ └── JtsUtils.java ├── reptile │ ├── HXSD.java │ ├── ReptileUtils.java │ ├── bcgm │ │ ├── BCGMUtils.java │ │ ├── Cao.java │ │ ├── CaoImg.java │ │ ├── CaoMain.java │ │ ├── CaoYao.java │ │ └── Main.java │ ├── gif │ │ ├── Hnbang.java │ │ └── Xedtt.java │ ├── origami │ │ └── OrigamiClub.java │ ├── uxarchive │ │ └── Main.java │ ├── xinlangweibo │ │ └── XLWBReptile.java │ └── zhihu │ │ └── ZhiHuReptile.java ├── spring │ └── SpringBoot.java ├── test │ ├── Compare.java │ ├── JsoupUtils.java │ ├── JxMain.java │ ├── Main.java │ └── TempUtils.java ├── utils │ ├── AndroidUtils.java │ ├── CharacterParser.java │ ├── ClassUtils.java │ ├── DbUtils.java │ ├── FileUtils.java │ ├── HtmlUtils.java │ ├── HttpUtils.java │ ├── JsonUtils.java │ ├── MapUtils.java │ ├── OfficeUtils.java │ ├── ProjectUtils.java │ ├── ShUser.java │ ├── StringUtils.java │ ├── TraceUtils.java │ ├── TransUtils.java │ └── XmlUtil.java └── work │ ├── SH.java │ ├── WorkMain.java │ ├── config.properties │ ├── confluence.html │ └── gen_jira.js └── temp ├── Json └── JsonBean.java ├── SetSize ├── Layout_Size.java ├── layout_size.xml └── layout_size_new.xml ├── androidtest └── test.xlsx ├── api_company.txt ├── api_search.txt ├── api_stone.txt ├── apidoc └── swagger.txt ├── correct_red.xml ├── correct_red2red_dark_sel.xml ├── correct_red_dark.xml ├── office ├── Android 开发实战微博之我页面和个人中心页面的开发.pptx ├── ppt2007.pptx ├── ppt2007plus_new.pptx └── tran.xlsx ├── rectangle_red2red_dark_sel.xml ├── strings.xml ├── strings_eng.xml └── test.html /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/.classpath -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/.project -------------------------------------------------------------------------------- /Android/Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/Android/Activity.java -------------------------------------------------------------------------------- /Android/Adapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/Android/Adapter.java -------------------------------------------------------------------------------- /Android/RecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/Android/RecyclerAdapter.java -------------------------------------------------------------------------------- /Android/item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/Android/item.xml -------------------------------------------------------------------------------- /Android/item_recyclerview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/Android/item_recyclerview.xml -------------------------------------------------------------------------------- /Android/layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/Android/layout.xml -------------------------------------------------------------------------------- /CodeUtils.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/CodeUtils.iml -------------------------------------------------------------------------------- /Json\JsonBean.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/README.md -------------------------------------------------------------------------------- /lib/kotlin-reflect-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/lib/kotlin-reflect-sources.jar -------------------------------------------------------------------------------- /lib/kotlin-reflect.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/lib/kotlin-reflect.jar -------------------------------------------------------------------------------- /lib/kotlin-stdlib-jdk7-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/lib/kotlin-stdlib-jdk7-sources.jar -------------------------------------------------------------------------------- /lib/kotlin-stdlib-jdk7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/lib/kotlin-stdlib-jdk7.jar -------------------------------------------------------------------------------- /lib/kotlin-stdlib-jdk8-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/lib/kotlin-stdlib-jdk8-sources.jar -------------------------------------------------------------------------------- /lib/kotlin-stdlib-jdk8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/lib/kotlin-stdlib-jdk8.jar -------------------------------------------------------------------------------- /lib/kotlin-stdlib-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/lib/kotlin-stdlib-sources.jar -------------------------------------------------------------------------------- /lib/kotlin-stdlib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/lib/kotlin-stdlib.jar -------------------------------------------------------------------------------- /lib/kotlin-test-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/lib/kotlin-test-sources.jar -------------------------------------------------------------------------------- /lib/kotlin-test.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/lib/kotlin-test.jar -------------------------------------------------------------------------------- /libs/commons-codec-1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/commons-codec-1.6.jar -------------------------------------------------------------------------------- /libs/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /libs/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /libs/fluent-hc-4.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/fluent-hc-4.2.5.jar -------------------------------------------------------------------------------- /libs/freemarker.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/freemarker.jar -------------------------------------------------------------------------------- /libs/greendao-2.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/greendao-2.0.0.jar -------------------------------------------------------------------------------- /libs/greendao-generator-2.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/greendao-generator-2.0.0.jar -------------------------------------------------------------------------------- /libs/gson-1.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/gson-1.7.1.jar -------------------------------------------------------------------------------- /libs/httpclient-4.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/httpclient-4.2.5.jar -------------------------------------------------------------------------------- /libs/httpclient-cache-4.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/httpclient-cache-4.2.5.jar -------------------------------------------------------------------------------- /libs/httpcore-4.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/httpcore-4.2.4.jar -------------------------------------------------------------------------------- /libs/httpmime-4.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/httpmime-4.2.5.jar -------------------------------------------------------------------------------- /libs/jsoup-1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/jsoup-1.8.1.jar -------------------------------------------------------------------------------- /libs/jts-core-1.19.0-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/jts-core-1.19.0-sources.jar -------------------------------------------------------------------------------- /libs/jts-core-1.19.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/jts-core-1.19.0.jar -------------------------------------------------------------------------------- /libs/junit-4.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/junit-4.11.jar -------------------------------------------------------------------------------- /libs/juniversalchardet-1.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/juniversalchardet-1.0.3.jar -------------------------------------------------------------------------------- /libs/poi-3.11-20141221.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/poi-3.11-20141221.jar -------------------------------------------------------------------------------- /libs/poi-examples-3.11-20141221.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/poi-examples-3.11-20141221.jar -------------------------------------------------------------------------------- /libs/poi-excelant-3.11-20141221.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/poi-excelant-3.11-20141221.jar -------------------------------------------------------------------------------- /libs/poi-ooxml-3.11-20141221.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/poi-ooxml-3.11-20141221.jar -------------------------------------------------------------------------------- /libs/poi-ooxml-schemas-3.11-20141221.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/poi-ooxml-schemas-3.11-20141221.jar -------------------------------------------------------------------------------- /libs/poi-scratchpad-3.11-20141221.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/poi-scratchpad-3.11-20141221.jar -------------------------------------------------------------------------------- /libs/xmlbeans-2.6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/libs/xmlbeans-2.6.0.jar -------------------------------------------------------------------------------- /parse/entities/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/parse/entities/Book.java -------------------------------------------------------------------------------- /res/drawable/sel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/res/drawable/sel.xml -------------------------------------------------------------------------------- /res/drawable/shape_correct.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/res/drawable/shape_correct.xml -------------------------------------------------------------------------------- /res/layout/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/res/layout/test.xml -------------------------------------------------------------------------------- /src/androidtest/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/androidtest/Main.java -------------------------------------------------------------------------------- /src/ano/Activity.java: -------------------------------------------------------------------------------- 1 | package ano; 2 | 3 | @MyAnno(uri = "/mypath") 4 | public class Activity { 5 | 6 | 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/ano/MyAnno.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/ano/MyAnno.java -------------------------------------------------------------------------------- /src/apidoc/ApiDocUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/apidoc/ApiDocUtils.java -------------------------------------------------------------------------------- /src/apidoc/ApiField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/apidoc/ApiField.java -------------------------------------------------------------------------------- /src/apidoc/ApiInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/apidoc/ApiInfo.java -------------------------------------------------------------------------------- /src/apidoc/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/apidoc/Main.java -------------------------------------------------------------------------------- /src/apidoc/ServerBean2ClientBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/apidoc/ServerBean2ClientBean.java -------------------------------------------------------------------------------- /src/apidoc/SwaggerParse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/apidoc/SwaggerParse.java -------------------------------------------------------------------------------- /src/archex/CompetChance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/archex/CompetChance.java -------------------------------------------------------------------------------- /src/archex/Definition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/archex/Definition.java -------------------------------------------------------------------------------- /src/archex/EnumUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/archex/EnumUtils.java -------------------------------------------------------------------------------- /src/archex/JiraIssue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/archex/JiraIssue.java -------------------------------------------------------------------------------- /src/archex/JiraUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/archex/JiraUtils.java -------------------------------------------------------------------------------- /src/archex/Path.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/archex/Path.java -------------------------------------------------------------------------------- /src/archex/Swagger2Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/archex/Swagger2Utils.java -------------------------------------------------------------------------------- /src/archex/UiUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/archex/UiUtils.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/ContentProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/ContentProvider.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/DaoGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/DaoGenerator.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/DaoUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/DaoUtil.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/Entity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/Entity.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/Index.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/Index.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/Property.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/Property.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/PropertyOrderList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/PropertyOrderList.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/PropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/PropertyType.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/Query.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/Query.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/QueryParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/QueryParam.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/Schema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/Schema.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/ToMany.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/ToMany.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/ToManyBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/ToManyBase.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/ToManyWithJoinEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/ToManyWithJoinEntity.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/ToOne.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/ToOne.java -------------------------------------------------------------------------------- /src/de/greenrobot/daogenerator/_GreenDaoMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/de/greenrobot/daogenerator/_GreenDaoMain.java -------------------------------------------------------------------------------- /src/entity/AndroidTestAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/entity/AndroidTestAction.java -------------------------------------------------------------------------------- /src/entity/AndroidTestAssertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/entity/AndroidTestAssertion.java -------------------------------------------------------------------------------- /src/entity/AndroidTestInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/entity/AndroidTestInfo.java -------------------------------------------------------------------------------- /src/entity/ArrayType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/entity/ArrayType.java -------------------------------------------------------------------------------- /src/entity/ClassInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/entity/ClassInfo.java -------------------------------------------------------------------------------- /src/entity/EnumData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/entity/EnumData.java -------------------------------------------------------------------------------- /src/entity/IdNamingBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/entity/IdNamingBean.java -------------------------------------------------------------------------------- /src/entity/Json2JavaElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/entity/Json2JavaElement.java -------------------------------------------------------------------------------- /src/entity/RequestInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/entity/RequestInfo.java -------------------------------------------------------------------------------- /src/entity/RequestParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/entity/RequestParam.java -------------------------------------------------------------------------------- /src/entity/ResultInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/entity/ResultInfo.java -------------------------------------------------------------------------------- /src/kotlin/KotlinParse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/kotlin/KotlinParse.java -------------------------------------------------------------------------------- /src/parse/BmobHttpUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/parse/BmobHttpUtils.java -------------------------------------------------------------------------------- /src/parse/LeanCloudHttpUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/parse/LeanCloudHttpUtils.java -------------------------------------------------------------------------------- /src/parse/ParseUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/parse/ParseUtils.java -------------------------------------------------------------------------------- /src/parse/Pointer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/parse/Pointer.java -------------------------------------------------------------------------------- /src/parse/Relation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/parse/Relation.java -------------------------------------------------------------------------------- /src/parse/diandianbo/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/parse/diandianbo/Book.java -------------------------------------------------------------------------------- /src/parse/diandianbo/BookUnit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/parse/diandianbo/BookUnit.java -------------------------------------------------------------------------------- /src/parse/diandianbo/LeanFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/parse/diandianbo/LeanFile.java -------------------------------------------------------------------------------- /src/parse/diandianbo/ListResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/parse/diandianbo/ListResponse.java -------------------------------------------------------------------------------- /src/parse/diandianbo/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/parse/diandianbo/Main.java -------------------------------------------------------------------------------- /src/parse/diandianbo/SetMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/parse/diandianbo/SetMain.java -------------------------------------------------------------------------------- /src/polygon/JtsUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/polygon/JtsUtils.java -------------------------------------------------------------------------------- /src/reptile/HXSD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/HXSD.java -------------------------------------------------------------------------------- /src/reptile/ReptileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/ReptileUtils.java -------------------------------------------------------------------------------- /src/reptile/bcgm/BCGMUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/bcgm/BCGMUtils.java -------------------------------------------------------------------------------- /src/reptile/bcgm/Cao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/bcgm/Cao.java -------------------------------------------------------------------------------- /src/reptile/bcgm/CaoImg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/bcgm/CaoImg.java -------------------------------------------------------------------------------- /src/reptile/bcgm/CaoMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/bcgm/CaoMain.java -------------------------------------------------------------------------------- /src/reptile/bcgm/CaoYao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/bcgm/CaoYao.java -------------------------------------------------------------------------------- /src/reptile/bcgm/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/bcgm/Main.java -------------------------------------------------------------------------------- /src/reptile/gif/Hnbang.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/gif/Hnbang.java -------------------------------------------------------------------------------- /src/reptile/gif/Xedtt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/gif/Xedtt.java -------------------------------------------------------------------------------- /src/reptile/origami/OrigamiClub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/origami/OrigamiClub.java -------------------------------------------------------------------------------- /src/reptile/uxarchive/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/uxarchive/Main.java -------------------------------------------------------------------------------- /src/reptile/xinlangweibo/XLWBReptile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/xinlangweibo/XLWBReptile.java -------------------------------------------------------------------------------- /src/reptile/zhihu/ZhiHuReptile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/reptile/zhihu/ZhiHuReptile.java -------------------------------------------------------------------------------- /src/spring/SpringBoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/spring/SpringBoot.java -------------------------------------------------------------------------------- /src/test/Compare.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/test/Compare.java -------------------------------------------------------------------------------- /src/test/JsoupUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/test/JsoupUtils.java -------------------------------------------------------------------------------- /src/test/JxMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/test/JxMain.java -------------------------------------------------------------------------------- /src/test/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/test/Main.java -------------------------------------------------------------------------------- /src/test/TempUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/test/TempUtils.java -------------------------------------------------------------------------------- /src/utils/AndroidUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/AndroidUtils.java -------------------------------------------------------------------------------- /src/utils/CharacterParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/CharacterParser.java -------------------------------------------------------------------------------- /src/utils/ClassUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/ClassUtils.java -------------------------------------------------------------------------------- /src/utils/DbUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/DbUtils.java -------------------------------------------------------------------------------- /src/utils/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/FileUtils.java -------------------------------------------------------------------------------- /src/utils/HtmlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/HtmlUtils.java -------------------------------------------------------------------------------- /src/utils/HttpUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/HttpUtils.java -------------------------------------------------------------------------------- /src/utils/JsonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/JsonUtils.java -------------------------------------------------------------------------------- /src/utils/MapUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/MapUtils.java -------------------------------------------------------------------------------- /src/utils/OfficeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/OfficeUtils.java -------------------------------------------------------------------------------- /src/utils/ProjectUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/ProjectUtils.java -------------------------------------------------------------------------------- /src/utils/ShUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/ShUser.java -------------------------------------------------------------------------------- /src/utils/StringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/StringUtils.java -------------------------------------------------------------------------------- /src/utils/TraceUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/TraceUtils.java -------------------------------------------------------------------------------- /src/utils/TransUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/TransUtils.java -------------------------------------------------------------------------------- /src/utils/XmlUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/utils/XmlUtil.java -------------------------------------------------------------------------------- /src/work/SH.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/work/SH.java -------------------------------------------------------------------------------- /src/work/WorkMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/work/WorkMain.java -------------------------------------------------------------------------------- /src/work/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/work/config.properties -------------------------------------------------------------------------------- /src/work/confluence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/work/confluence.html -------------------------------------------------------------------------------- /src/work/gen_jira.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/src/work/gen_jira.js -------------------------------------------------------------------------------- /temp/Json/JsonBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/Json/JsonBean.java -------------------------------------------------------------------------------- /temp/SetSize/Layout_Size.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/SetSize/Layout_Size.java -------------------------------------------------------------------------------- /temp/SetSize/layout_size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/SetSize/layout_size.xml -------------------------------------------------------------------------------- /temp/SetSize/layout_size_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/SetSize/layout_size_new.xml -------------------------------------------------------------------------------- /temp/androidtest/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/androidtest/test.xlsx -------------------------------------------------------------------------------- /temp/api_company.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/api_company.txt -------------------------------------------------------------------------------- /temp/api_search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/api_search.txt -------------------------------------------------------------------------------- /temp/api_stone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/api_stone.txt -------------------------------------------------------------------------------- /temp/apidoc/swagger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/apidoc/swagger.txt -------------------------------------------------------------------------------- /temp/correct_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/correct_red.xml -------------------------------------------------------------------------------- /temp/correct_red2red_dark_sel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/correct_red2red_dark_sel.xml -------------------------------------------------------------------------------- /temp/correct_red_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/correct_red_dark.xml -------------------------------------------------------------------------------- /temp/office/Android 开发实战微博之我页面和个人中心页面的开发.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/office/Android 开发实战微博之我页面和个人中心页面的开发.pptx -------------------------------------------------------------------------------- /temp/office/ppt2007.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/office/ppt2007.pptx -------------------------------------------------------------------------------- /temp/office/ppt2007plus_new.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/office/ppt2007plus_new.pptx -------------------------------------------------------------------------------- /temp/office/tran.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/office/tran.xlsx -------------------------------------------------------------------------------- /temp/rectangle_red2red_dark_sel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/rectangle_red2red_dark_sel.xml -------------------------------------------------------------------------------- /temp/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/strings.xml -------------------------------------------------------------------------------- /temp/strings_eng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/strings_eng.xml -------------------------------------------------------------------------------- /temp/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boredream/CodeUtils/HEAD/temp/test.html --------------------------------------------------------------------------------