Skip to content

Commit

Permalink
change in getter and setter method name
Browse files Browse the repository at this point in the history
  • Loading branch information
shashkiranr committed Jan 12, 2018
1 parent 579ab69 commit ee97d94
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 4 deletions.
18 changes: 18 additions & 0 deletions .idea/misc.xml

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

6 changes: 6 additions & 0 deletions .idea/vcs.xml

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

1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
// compile 'com.github.shashkiranr:IndexedWordSearch:0.0.2'
implementation project(':indexedwordsearchjava')
}
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@ buildscript {

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files

}

}



allprojects {
repositories {
google()
Expand Down
10 changes: 10 additions & 0 deletions indexedwordsearchjava/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,13 @@ dependencies {
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

// build a jar with source files
task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}

artifacts {
archives sourcesJar
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class IndexedWordSearchJava {
*
* @return the minimum index limit
*/
public int getMINIMUM_INDEX_LIMIT() {
public int getMinimumIndexLimit() {
return MINIMUM_INDEX_LIMIT;
}

Expand All @@ -45,7 +45,7 @@ public int getMINIMUM_INDEX_LIMIT() {
*
* @param MINIMUM_INDEX_LIMIT the minimum index limit
*/
public void setMINIMUM_INDEX_LIMIT(int MINIMUM_INDEX_LIMIT) {
public void setMinimumIndexLimit(int MINIMUM_INDEX_LIMIT) {
this.MINIMUM_INDEX_LIMIT = MINIMUM_INDEX_LIMIT;
}

Expand All @@ -54,7 +54,7 @@ public void setMINIMUM_INDEX_LIMIT(int MINIMUM_INDEX_LIMIT) {
*
* @return the maximum index limit
*/
public int getMAXIMUM_INDEX_LIMIT() {
public int getMaximumIndexLimit() {
return MAXIMUM_INDEX_LIMIT;
}

Expand All @@ -64,7 +64,7 @@ public int getMAXIMUM_INDEX_LIMIT() {
*
* @param MAXIMUM_INDEX_LIMIT the maximum index limit
*/
public void setMAXIMUM_INDEX_LIMIT(int MAXIMUM_INDEX_LIMIT) {
public void setMaximumIndexLimit(int MAXIMUM_INDEX_LIMIT) {
this.MAXIMUM_INDEX_LIMIT = MAXIMUM_INDEX_LIMIT;
}

Expand Down

0 comments on commit ee97d94

Please sign in to comment.