Skip to content

Commit

Permalink
Adding javadocs and copyrights
Browse files Browse the repository at this point in the history
  • Loading branch information
kevalpatel2106 committed Mar 28, 2018
1 parent f5caf33 commit 2679c34
Show file tree
Hide file tree
Showing 58 changed files with 15,497 additions and 59 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -13,3 +13,5 @@
/.idea/misc.xml
/.idea/codeStyles/
/.idea/vcs.xml
/.idea/inspectionProfiles/
/.idea/dictionaries/
6 changes: 6 additions & 0 deletions .idea/copyright/Apache_2_0.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions app/build.gradle
@@ -1,3 +1,16 @@
/*
* Copyright 2018 Keval Patel
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance wit
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
* the specific language governing permissions and limitations under the License.
*/

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
Expand Down
14 changes: 13 additions & 1 deletion app/src/main/AndroidManifest.xml
@@ -1,4 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright 2018 Keval Patel
~
~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance wit
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
~ the specific language governing permissions and limitations under the License.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.kevalpatel2106.sample">
Expand Down
18 changes: 7 additions & 11 deletions app/src/main/java/com/kevalpatel2106/sample/RulerDemoActivity.kt
@@ -1,18 +1,14 @@
/*
* Copyright 2018 Keval Patel.
* Copyright 2018 Keval Patel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance wit
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
* the specific language governing permissions and limitations under the License.
*/

package com.kevalpatel2106.sample
Expand Down
18 changes: 7 additions & 11 deletions app/src/main/res/layout/activity_ruler_demo.xml
@@ -1,18 +1,14 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright 2018 Keval Patel.
~ Copyright 2018 Keval Patel
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance wit
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
~ the specific language governing permissions and limitations under the License.
-->

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
Expand Down
14 changes: 13 additions & 1 deletion app/src/main/res/values/colors.xml
@@ -1,4 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright 2018 Keval Patel
~
~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance wit
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
~ the specific language governing permissions and limitations under the License.
-->

<resources>
<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
Expand Down
15 changes: 14 additions & 1 deletion app/src/main/res/values/strings.xml
@@ -1,3 +1,16 @@
<!--
~ Copyright 2018 Keval Patel
~
~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance wit
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
~ the specific language governing permissions and limitations under the License.
-->

<resources>
<string name="app_name">Ruler view sample</string>
<string name="app_name">Ruler Picker sample</string>
</resources>
13 changes: 13 additions & 0 deletions app/src/main/res/values/styles.xml
@@ -1,3 +1,16 @@
<!--
~ Copyright 2018 Keval Patel
~
~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance wit
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
~ the specific language governing permissions and limitations under the License.
-->

<resources>

<!-- Base application theme. -->
Expand Down
13 changes: 13 additions & 0 deletions build.gradle
@@ -1,3 +1,16 @@
/*
* Copyright 2018 Keval Patel
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance wit
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
* the specific language governing permissions and limitations under the License.
*/

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
Expand Down
49 changes: 49 additions & 0 deletions docs/allclasses-frame.html
@@ -0,0 +1,49 @@
<!--
~ Copyright 2018 Keval Patel
~
~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance wit
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
~ the specific language governing permissions and limitations under the License.
-->

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_152-release) on Wed Mar 28 21:56:50 IST 2018 -->
<title>All Classes</title>
<meta name="date" content="2018-03-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<h1 class="bar">All&nbsp;Classes</h1>
<div class="indexContainer">
<ul>
<li><a href="com/kevalpatel2106/rulerpicker/ObservableHorizontalScrollView.html"
title="class in com.kevalpatel2106.rulerpicker" target="classFrame">ObservableHorizontalScrollView</a>
</li>
<li>
<a href="com/kevalpatel2106/rulerpicker/ObservableHorizontalScrollView.OnScrollChangedListener.html"
title="interface in com.kevalpatel2106.rulerpicker" target="classFrame"><span
class="interfaceName">ObservableHorizontalScrollView.OnScrollChangedListener</span></a>
</li>
<li><a href="com/kevalpatel2106/rulerpicker/RulerView.html"
title="class in com.kevalpatel2106.rulerpicker" target="classFrame">RulerView</a>
</li>
<li><a href="com/kevalpatel2106/rulerpicker/RulerViewUtils.html"
title="class in com.kevalpatel2106.rulerpicker"
target="classFrame">RulerViewUtils</a></li>
<li><a href="com/kevalpatel2106/rulerpicker/ScrollingValuePicker.html"
title="class in com.kevalpatel2106.rulerpicker" target="classFrame">ScrollingValuePicker</a>
</li>
</ul>
</div>
</body>
</html>
45 changes: 45 additions & 0 deletions docs/allclasses-noframe.html
@@ -0,0 +1,45 @@
<!--
~ Copyright 2018 Keval Patel
~
~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance wit
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
~ the specific language governing permissions and limitations under the License.
-->

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_152-release) on Wed Mar 28 21:56:50 IST 2018 -->
<title>All Classes</title>
<meta name="date" content="2018-03-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<h1 class="bar">All&nbsp;Classes</h1>
<div class="indexContainer">
<ul>
<li><a href="com/kevalpatel2106/rulerpicker/ObservableHorizontalScrollView.html"
title="class in com.kevalpatel2106.rulerpicker">ObservableHorizontalScrollView</a>
</li>
<li>
<a href="com/kevalpatel2106/rulerpicker/ObservableHorizontalScrollView.OnScrollChangedListener.html"
title="interface in com.kevalpatel2106.rulerpicker"><span class="interfaceName">ObservableHorizontalScrollView.OnScrollChangedListener</span></a>
</li>
<li><a href="com/kevalpatel2106/rulerpicker/RulerView.html"
title="class in com.kevalpatel2106.rulerpicker">RulerView</a></li>
<li><a href="com/kevalpatel2106/rulerpicker/RulerViewUtils.html"
title="class in com.kevalpatel2106.rulerpicker">RulerViewUtils</a></li>
<li><a href="com/kevalpatel2106/rulerpicker/ScrollingValuePicker.html"
title="class in com.kevalpatel2106.rulerpicker">ScrollingValuePicker</a></li>
</ul>
</div>
</body>
</html>

0 comments on commit 2679c34

Please sign in to comment.