├── .gitignore ├── LICENSE ├── README.md ├── app ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.jdt.ui.prefs ├── AndroidManifest.xml ├── assets │ └── city.sqlite3 ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── flota_listtop.png │ │ ├── futerbar.png │ │ ├── ic_launcher.png │ │ ├── ihelp.png │ │ ├── ihelp02.9.png │ │ ├── select_normal.png │ │ └── select_press.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ ├── button_blue.xml │ │ ├── cb_select.xml │ │ ├── pen.png │ │ ├── search_stroke.xml │ │ ├── title.xml │ │ ├── wheel_bg.xml │ │ └── wheel_val.xml │ ├── layout-large │ │ └── main.xml │ ├── layout-normal │ │ └── personal_data.xml │ ├── layout-xlarge │ │ └── main.xml │ ├── layout │ │ ├── contact_people.xml │ │ ├── general.xml │ │ ├── main.xml │ │ ├── people.xml │ │ ├── personal_data.xml │ │ └── welcome.xml │ └── values │ │ ├── color.xml │ │ ├── strings.xml │ │ └── style.xml └── src │ ├── edu │ └── stu │ │ ├── db │ │ ├── CityAdapter.java │ │ └── DataBaseHelper.java │ │ ├── ihelp │ │ └── client │ │ │ ├── General.java │ │ │ ├── IHelpActivity.java │ │ │ ├── PersonalData.java │ │ │ ├── Variable.java │ │ │ └── iHELP.java │ │ └── tool │ │ ├── Internet.java │ │ ├── Locate.java │ │ └── receiverSMS.java │ └── test │ └── whell │ ├── ItemsRange.java │ ├── OnWheelChangedListener.java │ ├── OnWheelClickedListener.java │ ├── OnWheelScrollListener.java │ ├── WheelAdapter.java │ ├── WheelRecycle.java │ ├── WheelScroller.java │ ├── WheelView.java │ └── adapters │ ├── AbstractWheelAdapter.java │ ├── AbstractWheelTextAdapter.java │ ├── ArrayWheelAdapter.java │ └── WheelViewAdapter.java ├── g0v.json └── image ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── General-Internet.png ├── General.png ├── Main.png ├── PersonalData.png └── SMS.png /.gitignore: -------------------------------------------------------------------------------- 1 | # built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # files for the dex VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # generated files 12 | bin/ 13 | gen/ 14 | 15 | # Local configuration file (sdk path, etc) 16 | local.properties 17 | 18 | # Eclipse project files 19 | .classpath 20 | .project 21 | 22 | # MAC 23 | .DS_Store 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 聾啞人士報案系統 294 | Copyright (C) 2013 stu-cylab 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | iHelp-Android 2 | ============= 3 | 4 | [Google Play 下載點](https://play.google.com/store/apps/details?id=edu.stu.ihelp.client&hl=zh_TW) 5 | 6 | 聾啞人士報案系統 7 | - 提醒:本 App 尚在開發階段,因此暫時把報案程式碼註解,如有需要使用的人可以自行開啟 8 | 9 | ▼畫面一, 主畫面 10 | 11 | ![github](https://github.com/cy-project/iHelp-android/blob/master/image/Main.png?raw=true "進入畫面") 12 | 13 | ▼畫面二,個人資料 14 | - 若有填寫個人姓名,報案時會把姓名告知警方以便到場確認身分,下方被勾選的緊急聯絡人是警方以外需要被通知的聯絡人。 15 | 16 | ![github](https://github.com/cy-project/iHelp-android/blob/master/image/PersonalData.png?raw=true "填寫個人資訊") 17 | 18 | ▼畫面三,報案畫面 19 | - 選擇災情後下方會顯示欲寄出的簡訊內容,如果想要修改詳細內容可以直接修改其內容,再點選**確定送出** 20 | - 若是下方沒有住址代表該裝置,目前**沒有網路連線能力或沒有 GPS 位置** 21 | 22 | ![github](https://github.com/cy-project/iHelp-android/blob/master/image/General-Internet.png?raw=true "報案畫面") 23 | 24 | ▼畫面四,警方及緊急聯絡人收到的簡訊 25 | - 無論警方或是緊急聯絡人收到簡訊,只要在有網路的情況下點選前面的 URL 就可以對報案者做路線規劃的動作 26 | 27 | ![github](https://github.com/cy-project/iHelp-android/blob/master/image/SMS.png?raw=true "簡訊畫面") 28 | 29 | 30 | 開發團隊 31 | ======== 32 | - @weitsai 蔡佳緯 33 | - @cht3147 陳冠廷 34 | - @aliptre1911 郭冠里 35 | - @librabilly 林尚民 36 | - @Aqua 彭佳慧 37 | 38 | 39 | 特別感謝 40 | ======== 41 | - @kny 陳坤助 42 | - @clkao 高嘉良 43 | - @ronnywang 榮尼王 44 | - @slayer 莊國煜 45 | - @afutseng 曾坤福 46 | - @water 陳小水 47 | 48 | 49 | [Facebook 社團](http://www.facebook.com/groups/308375875947826/) 50 | ================================================================ 51 | 52 | 若有任何意見可以透過此社團回覆,或是直接找[蔡佳緯](http://www.facebook.com/stuwebbertsai)。 53 | 54 | 聯絡信箱: begining1003@gmail.com 55 | -------------------------------------------------------------------------------- /app/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /app/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.formatter.align_type_members_on_columns=false 3 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16 4 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0 5 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16 6 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16 7 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=16 8 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16 9 | org.eclipse.jdt.core.formatter.alignment_for_assignment=0 10 | org.eclipse.jdt.core.formatter.alignment_for_binary_expression=16 11 | org.eclipse.jdt.core.formatter.alignment_for_compact_if=16 12 | org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80 13 | org.eclipse.jdt.core.formatter.alignment_for_enum_constants=0 14 | org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16 15 | org.eclipse.jdt.core.formatter.alignment_for_method_declaration=0 16 | org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16 17 | org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16 18 | org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=16 19 | org.eclipse.jdt.core.formatter.alignment_for_resources_in_try=80 20 | org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16 21 | org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16 22 | org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16 23 | org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16 24 | org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16 25 | org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16 26 | org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch=16 27 | org.eclipse.jdt.core.formatter.blank_lines_after_imports=1 28 | org.eclipse.jdt.core.formatter.blank_lines_after_package=1 29 | org.eclipse.jdt.core.formatter.blank_lines_before_field=0 30 | org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0 31 | org.eclipse.jdt.core.formatter.blank_lines_before_imports=1 32 | org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1 33 | org.eclipse.jdt.core.formatter.blank_lines_before_method=1 34 | org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1 35 | org.eclipse.jdt.core.formatter.blank_lines_before_package=0 36 | org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1 37 | org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1 38 | org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line 39 | org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line 40 | org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line 41 | org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line 42 | org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line 43 | org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line 44 | org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line 45 | org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line 46 | org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line 47 | org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line 48 | org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line 49 | org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=false 50 | org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=false 51 | org.eclipse.jdt.core.formatter.comment.format_block_comments=true 52 | org.eclipse.jdt.core.formatter.comment.format_header=false 53 | org.eclipse.jdt.core.formatter.comment.format_html=true 54 | org.eclipse.jdt.core.formatter.comment.format_javadoc_comments=true 55 | org.eclipse.jdt.core.formatter.comment.format_line_comments=true 56 | org.eclipse.jdt.core.formatter.comment.format_source_code=true 57 | org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true 58 | org.eclipse.jdt.core.formatter.comment.indent_root_tags=true 59 | org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert 60 | org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=insert 61 | org.eclipse.jdt.core.formatter.comment.line_length=80 62 | org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries=true 63 | org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries=true 64 | org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments=false 65 | org.eclipse.jdt.core.formatter.compact_else_if=true 66 | org.eclipse.jdt.core.formatter.continuation_indentation=2 67 | org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2 68 | org.eclipse.jdt.core.formatter.disabling_tag=@formatter\:off 69 | org.eclipse.jdt.core.formatter.enabling_tag=@formatter\:on 70 | org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false 71 | org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column=true 72 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true 73 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true 74 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true 75 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true 76 | org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true 77 | org.eclipse.jdt.core.formatter.indent_empty_lines=false 78 | org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true 79 | org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true 80 | org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true 81 | org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false 82 | org.eclipse.jdt.core.formatter.indentation.size=4 83 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert 84 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert 85 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert 86 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert 87 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert 88 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert 89 | org.eclipse.jdt.core.formatter.insert_new_line_after_label=do not insert 90 | org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert 91 | org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert 92 | org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert 93 | org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert 94 | org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert 95 | org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert 96 | org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert 97 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert 98 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert 99 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert 100 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert 101 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert 102 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert 103 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert 104 | org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert 105 | org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert 106 | org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert 107 | org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert 108 | org.eclipse.jdt.core.formatter.insert_space_after_binary_operator=insert 109 | org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert 110 | org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert 111 | org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert 112 | org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert 113 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert 114 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert 115 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert 116 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert 117 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert 118 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert 119 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert 120 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert 121 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert 122 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert 123 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert 124 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert 125 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert 126 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert 127 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert 128 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert 129 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert 130 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert 131 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert 132 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert 133 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert 134 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert 135 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert 136 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert 137 | org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert 138 | org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert 139 | org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert 140 | org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert 141 | org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=insert 142 | org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert 143 | org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert 144 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert 145 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert 146 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert 147 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert 148 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert 149 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert 150 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert 151 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert 152 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert 153 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert 154 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert 155 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert 156 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try=do not insert 157 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert 158 | org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert 159 | org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert 160 | org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert 161 | org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert 162 | org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert 163 | org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources=insert 164 | org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert 165 | org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert 166 | org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert 167 | org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert 168 | org.eclipse.jdt.core.formatter.insert_space_before_binary_operator=insert 169 | org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert 170 | org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert 171 | org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert 172 | org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=insert 173 | org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert 174 | org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert 175 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert 176 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert 177 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert 178 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert 179 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert 180 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert 181 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert 182 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert 183 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert 184 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert 185 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert 186 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert 187 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try=do not insert 188 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert 189 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert 190 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=do not insert 191 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert 192 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not insert 193 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert 194 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert 195 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert 196 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert 197 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert 198 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert 199 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert 200 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert 201 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert 202 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert 203 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert 204 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert 205 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert 206 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert 207 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert 208 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert 209 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert 210 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert 211 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert 212 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert 213 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert 214 | org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert 215 | org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert 216 | org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert 217 | org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert 218 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert 219 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert 220 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert 221 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert 222 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert 223 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert 224 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert 225 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert 226 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert 227 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert 228 | org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert 229 | org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert 230 | org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert 231 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert 232 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert 233 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert 234 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert 235 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert 236 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert 237 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert 238 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert 239 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert 240 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert 241 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert 242 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert 243 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try=insert 244 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert 245 | org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert 246 | org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw=insert 247 | org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert 248 | org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert 249 | org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert 250 | org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert 251 | org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert 252 | org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert 253 | org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources=do not insert 254 | org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert 255 | org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert 256 | org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert 257 | org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert 258 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert 259 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert 260 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert 261 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert 262 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert 263 | org.eclipse.jdt.core.formatter.join_lines_in_comments=true 264 | org.eclipse.jdt.core.formatter.join_wrapped_lines=true 265 | org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false 266 | org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false 267 | org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false 268 | org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false 269 | org.eclipse.jdt.core.formatter.lineSplit=80 270 | org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false 271 | org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false 272 | org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0 273 | org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1 274 | org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true 275 | org.eclipse.jdt.core.formatter.tabulation.char=space 276 | org.eclipse.jdt.core.formatter.tabulation.size=4 277 | org.eclipse.jdt.core.formatter.use_on_off_tags=false 278 | org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false 279 | org.eclipse.jdt.core.formatter.wrap_before_binary_operator=true 280 | org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch=true 281 | org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested=true 282 | -------------------------------------------------------------------------------- /app/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- 1 | cleanup.add_default_serial_version_id=true 2 | cleanup.add_generated_serial_version_id=false 3 | cleanup.add_missing_annotations=true 4 | cleanup.add_missing_deprecated_annotations=true 5 | cleanup.add_missing_methods=false 6 | cleanup.add_missing_nls_tags=false 7 | cleanup.add_missing_override_annotations=true 8 | cleanup.add_missing_override_annotations_interface_methods=true 9 | cleanup.add_serial_version_id=false 10 | cleanup.always_use_blocks=true 11 | cleanup.always_use_parentheses_in_expressions=false 12 | cleanup.always_use_this_for_non_static_field_access=false 13 | cleanup.always_use_this_for_non_static_method_access=false 14 | cleanup.convert_to_enhanced_for_loop=false 15 | cleanup.correct_indentation=false 16 | cleanup.format_source_code=false 17 | cleanup.format_source_code_changes_only=false 18 | cleanup.make_local_variable_final=true 19 | cleanup.make_parameters_final=false 20 | cleanup.make_private_fields_final=true 21 | cleanup.make_type_abstract_if_missing_method=false 22 | cleanup.make_variable_declarations_final=false 23 | cleanup.never_use_blocks=false 24 | cleanup.never_use_parentheses_in_expressions=true 25 | cleanup.organize_imports=false 26 | cleanup.qualify_static_field_accesses_with_declaring_class=false 27 | cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true 28 | cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true 29 | cleanup.qualify_static_member_accesses_with_declaring_class=true 30 | cleanup.qualify_static_method_accesses_with_declaring_class=false 31 | cleanup.remove_private_constructors=true 32 | cleanup.remove_trailing_whitespaces=false 33 | cleanup.remove_trailing_whitespaces_all=true 34 | cleanup.remove_trailing_whitespaces_ignore_empty=false 35 | cleanup.remove_unnecessary_casts=true 36 | cleanup.remove_unnecessary_nls_tags=true 37 | cleanup.remove_unused_imports=true 38 | cleanup.remove_unused_local_variables=false 39 | cleanup.remove_unused_private_fields=true 40 | cleanup.remove_unused_private_members=false 41 | cleanup.remove_unused_private_methods=true 42 | cleanup.remove_unused_private_types=true 43 | cleanup.sort_members=false 44 | cleanup.sort_members_all=false 45 | cleanup.use_blocks=false 46 | cleanup.use_blocks_only_for_return_and_throw=false 47 | cleanup.use_parentheses_in_expressions=false 48 | cleanup.use_this_for_non_static_field_access=false 49 | cleanup.use_this_for_non_static_field_access_only_if_necessary=true 50 | cleanup.use_this_for_non_static_method_access=false 51 | cleanup.use_this_for_non_static_method_access_only_if_necessary=true 52 | cleanup_profile=org.eclipse.jdt.ui.default.eclipse_clean_up_profile 53 | cleanup_settings_version=2 54 | eclipse.preferences.version=1 55 | formatter_profile=_android 56 | formatter_settings_version=12 57 | -------------------------------------------------------------------------------- /app/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 29 | 33 | 34 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 47 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /app/assets/city.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitsai/iHelp-android/696862ac6ce7d065cd0a76e4bd9179d40e9fef3b/app/assets/city.sqlite3 -------------------------------------------------------------------------------- /app/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /app/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}\tools\proguard\proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /app/res/drawable-hdpi/flota_listtop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitsai/iHelp-android/696862ac6ce7d065cd0a76e4bd9179d40e9fef3b/app/res/drawable-hdpi/flota_listtop.png -------------------------------------------------------------------------------- /app/res/drawable-hdpi/futerbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitsai/iHelp-android/696862ac6ce7d065cd0a76e4bd9179d40e9fef3b/app/res/drawable-hdpi/futerbar.png -------------------------------------------------------------------------------- /app/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitsai/iHelp-android/696862ac6ce7d065cd0a76e4bd9179d40e9fef3b/app/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/drawable-hdpi/ihelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitsai/iHelp-android/696862ac6ce7d065cd0a76e4bd9179d40e9fef3b/app/res/drawable-hdpi/ihelp.png -------------------------------------------------------------------------------- /app/res/drawable-hdpi/ihelp02.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitsai/iHelp-android/696862ac6ce7d065cd0a76e4bd9179d40e9fef3b/app/res/drawable-hdpi/ihelp02.9.png -------------------------------------------------------------------------------- /app/res/drawable-hdpi/select_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitsai/iHelp-android/696862ac6ce7d065cd0a76e4bd9179d40e9fef3b/app/res/drawable-hdpi/select_normal.png -------------------------------------------------------------------------------- /app/res/drawable-hdpi/select_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitsai/iHelp-android/696862ac6ce7d065cd0a76e4bd9179d40e9fef3b/app/res/drawable-hdpi/select_press.png -------------------------------------------------------------------------------- /app/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitsai/iHelp-android/696862ac6ce7d065cd0a76e4bd9179d40e9fef3b/app/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitsai/iHelp-android/696862ac6ce7d065cd0a76e4bd9179d40e9fef3b/app/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitsai/iHelp-android/696862ac6ce7d065cd0a76e4bd9179d40e9fef3b/app/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/drawable/button_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /app/res/drawable/cb_select.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/res/drawable/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitsai/iHelp-android/696862ac6ce7d065cd0a76e4bd9179d40e9fef3b/app/res/drawable/pen.png -------------------------------------------------------------------------------- /app/res/drawable/search_stroke.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /app/res/drawable/title.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /app/res/drawable/wheel_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /app/res/drawable/wheel_val.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | 21 | 22 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /app/res/layout-large/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 18 | 19 | 20 | 28 | 29 | 37 | 38 |