Sha256: 6fd32b6070edd25bd24afa83184b5d9b141b9b4e686e5b99b8b7579ed51dd38a

Contents?: true

Size: 233 Bytes

Versions: 9

Compression:

Stored size: 233 Bytes

Contents

package wordcram.text;

public class Text implements TextSource {

    private final String text;

    public Text(String _text) {
        text = _text;
    }

    @Override
    public String getText() {
        return text;
    }
}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ruby_wordcram-2.1.1 src/wordcram/text/Text.java
ruby_wordcram-2.1.0 src/wordcram/text/Text.java
ruby_wordcram-2.0.6 src/wordcram/text/Text.java
ruby_wordcram-2.0.5 src/wordcram/text/Text.java
ruby_wordcram-2.0.4 src/wordcram/text/Text.java
ruby_wordcram-2.0.3 src/wordcram/text/Text.java
ruby_wordcram-2.0.2 src/wordcram/text/Text.java
ruby_wordcram-2.0.1 src/wordcram/text/Text.java
ruby_wordcram-2.0.0 src/wordcram/text/Text.java