Skip to content
Snippets Groups Projects
Commit bcffe617 authored by Alasdair Bruce SD2018's avatar Alasdair Bruce SD2018
Browse files
parent eb278469
No related branches found
No related tags found
No related merge requests found
package com.example.newroomapp;
import android.support.annotation.NonNull;
public class Word {
private String mWord;
public Word(@NonNull String mWord) {
this.mWord = mWord;
}
public String getWord(){
return mWord;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment