This repository was archived by the owner on Mar 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparams.json
More file actions
6 lines (6 loc) · 5.41 KB
/
Copy pathparams.json
File metadata and controls
6 lines (6 loc) · 5.41 KB
1
2
3
4
5
6
{
"name": "Simplelog",
"tagline": "Simple Log for Android by Park, Woocheol",
"body": "# SimpleLog\r\n\r\nYou can use easily Log.\r\n\r\nJavaDoc\r\n============\r\n<http://mrparkwc.com/simplelog>\r\n\r\nExample\r\n============\r\n```java\r\npublic class DemoActivity extends Activity {\r\n\r\n @Override\r\n protected void onCreate(Bundle savedInstanceState) {\r\n super.onCreate(savedInstanceState);\r\n\r\n /**\r\n * Print Form :\r\n * Class Name : Method Name, Line\r\n */\r\n Logging.i(); \r\n /**\r\n * Print Form :\r\n * Class Name : Method Name, Line, Comment\r\n */ \r\n Logging.i(\"Comment\"); \r\n /**\r\n * Print Form :\r\n * TAG : Class Name , Method Name, Line, Comment\r\n */\r\n Logging.i(\"TAG\",\"Comment\"); \r\n /**\r\n * Print Form :\r\n * Class Name : [Object Name], Variable Name, Value\r\n */\r\n Logging.i(Object); \r\n /**\r\n * Print Form :\r\n * TAG : [Object Name], Variable Name, Value\r\n */\r\n Logging.i(TAG,Object); \r\n /**\r\n * Print Form :\r\n * ClassName : [Object Name], Variable Name, Value\r\n */\r\n Logging.i(Object,\"Comment\");\r\n /**\r\n * Print Form :\r\n * Class Name\r\n * Comment\r\n * TAG : [Object Name], Variable Name, Value\r\n */\r\n Logging.i(TAG,Object,\"Comment\");\r\n /**\r\n * Print Form :\r\n * Class Name : [Object Name] [ArrayList Index], Variable Name, Value\r\n */\r\n Logging.i(ArrayList<?>); \r\n /**\r\n * Print Form :\r\n * TAG : [Object Name] [ArrayList Index], Variable Name, Value\r\n */\r\n Logging.i(TAG,ArrayList<?>); \r\n /**\r\n * Print Form :\r\n * Class Name\r\n * Comment\r\n * Class Name : [Object Name] [ArrayList Index], Variable Name, Value\r\n */\r\n Logging.i(ArrayList<?>,\"Comment\");\r\n /**\r\n * Print Form :\r\n * Class Name\r\n * Comment\r\n * TAG : [Object Name] [ArrayList Index], Variable Name, Value\r\n */\r\n Logging.i(TAG,ArrayList<?>,\"Comment\");\r\n /**\r\n * Print Form :\r\n * Class Name\r\n * Class Name : [Object Name] [ArrayList Index], Variable Name, Value\r\n */\r\n Logging.i(ArrayList<?>, int index); \r\n /**\r\n * Print Form :\r\n * Class Name, Index\r\n * TAG : [Object Name] [ArrayList Index], Variable Name, Value\r\n */\r\n Logging.i(TAG,ArrayList<?>, int index); \r\n /**\r\n * Print Form :\r\n * Class Name, Index\r\n * Comment\r\n * Class Name : [Object Name] [ArrayList Index], Variable Name, Value\r\n */\r\n Logging.i(ArrayList<?>, int index,\"Comment\");\r\n /**\r\n * Print Form :\r\n * Class Name, Index\r\n * Comment\r\n * TAG : [Object Name] [ArrayList Index], Variable Name, Value\r\n */\r\n Logging.i(TAG,ArrayList<?>, int index,\"Comment\");\r\n /**\r\n * Print Form :\r\n * Class Name, Start Index,End Index\r\n * Class Name : [Object Name] [ArrayList Index], Variable Name, Value\r\n */\r\n Logging.i(ArrayList<?>, int startIndex, int endIndex); \r\n /**\r\n * Print Form :\r\n * Class Name, Start Index,End Index\r\n * TAG : [Object Name] [ArrayList Index], Variable Name, Value\r\n */\r\n Logging.i(TAG,ArrayList<?>, int startIndex, int endIndex); \r\n /**\r\n * Print Form :\r\n * Class Name, Start Index,End Index\r\n * Comment\r\n * Class Name : [Object Name] [ArrayList Index], Variable Name, Value\r\n */\r\n Logging.i(ArrayList<?>, int startIndex, int endIndex,\"Comment\"); \r\n /**\r\n * Print Form :\r\n * Class Name, Start Index,End Index\r\n * Comment\r\n * TAG : [Object Name] [ArrayList Index], Variable Name, Value\r\n */\r\n Logging.i(TAG,ArrayList<?>, int startIndex, int endIndex,\"Comment\"); \r\n \r\n Logging.e();\r\n ...\r\n Logging.w();\r\n ...\r\n Logging.d();\r\n ...\r\n }\r\n}\r\n```\r\nDownload\r\n============\r\nMaven:\r\n```xml\r\n<dependency>\r\n <groupId>com.mrparkwc</groupId>\r\n <artifactId>simplelog</artifactId>\r\n <version>1.2.2</version>\r\n <type>aar</type>\r\n</dependency>\r\n```\r\nGradle:\r\n```groovy\r\ncompile 'com.mrparkwc:simplelog:1.2.2'\r\n```\r\nDeveloped By\r\n============\r\n\r\n* Park, Woocheol - <admin@mrparkwc.com>\r\n\r\n\r\n\r\nLicense\r\n=======\r\n\r\n Copyright (C) 2015 Park, Woocheol\r\n\r\n Licensed under the Apache License, Version 2.0 (the \"License\");\r\n you may not use this file except in compliance with the License.\r\n You may obtain a copy of the License at\r\n\r\n http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n Unless required by applicable law or agreed to in writing, software\r\n distributed under the License is distributed on an \"AS IS\" BASIS,\r\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n See the License for the specific language governing permissions and\r\n limitations under the License.\r\n",
"note": "Don't delete this file! It's used internally to help with page regeneration."
}