MCPcopy Create free account
hub / github.com/DiUS/java-faker / Artist

Class Artist

src/main/java/com/github/javafaker/Artist.java:3–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package com.github.javafaker;
2
3public class Artist {
4
5 private final Faker faker;
6
7 protected Artist(Faker faker) {
8 this.faker = faker;
9 }
10
11 public String name() {
12 return faker.fakeValuesService().fetchString("artist.names");
13 }
14}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected