mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Merge branch 'master' of github.com:igniterealtime/Smack
This commit is contained in:
commit
adfca965b5
1 changed files with 10 additions and 5 deletions
|
@ -161,11 +161,16 @@ public final class UserTuneElement implements ExtensionElement {
|
|||
|
||||
/**
|
||||
* This class defines a Builder class for {@link UserTuneElement}. <br>
|
||||
* {@link UserTuneElement} instance can be obtained using the {@link #build()} method as follows. <br>
|
||||
* UserTuneElement.Builder builder = new UserTuneElement.Builder();
|
||||
* builder.setSource("Yessongs"); builder.setTitle("Heart of the Sunrise");
|
||||
* UserTuneElement userTuneElement = builder.build(); <br>
|
||||
* Values such as title, source, artist, length, source, track and uri can be set using their respective setters through {@link Builder}
|
||||
* {@link UserTuneElement} instance can be obtained using the {@link #build()} method as follows. <br><br>
|
||||
* <pre>
|
||||
* {@code
|
||||
* UserTuneElement.Builder builder = UserTuneElement.getBuilder();
|
||||
* builder.setSource("Yessongs");
|
||||
* builder.setTitle("Heart of the Sunrise");
|
||||
* UserTuneElement userTuneElement = builder.build();
|
||||
* }
|
||||
* </pre>
|
||||
* Values such as title, source, artist, length, source, track and uri can be set using their respective setters through {@link Builder}.
|
||||
*/
|
||||
public static final class Builder {
|
||||
private String artist;
|
||||
|
|
Loading…
Reference in a new issue