Uses of Interface
io.github.somesourcecode.someguiapi.scene.lore.Paragraph
Packages that use Paragraph
-
Uses of Paragraph in io.github.somesourcecode.someguiapi.scene.lore
Subinterfaces of Paragraph in io.github.somesourcecode.someguiapi.scene.loreModifier and TypeInterfaceDescriptioninterfaceRepresents a paragraph whose content depends on the context in which it is rendered.Classes in io.github.somesourcecode.someguiapi.scene.lore that implement ParagraphModifier and TypeClassDescriptionclassA paragraph that contains just blank lines.classThe basic implementation of aReloadableParagraph.classA paragraph that acts as a divider.classA paragraph that contains a single line.classA paragraph that contains text in form of a component.Methods in io.github.somesourcecode.someguiapi.scene.lore with parameters of type ParagraphModifier and TypeMethodDescriptionLore.appendParagraph(Paragraph paragraph) Appends a paragraph to the lore.Lore.appendParagraphs(Paragraph... paragraphs) Appends multiple paragraphs to the lore.Method parameters in io.github.somesourcecode.someguiapi.scene.lore with type arguments of type ParagraphModifier and TypeMethodDescriptionLore.appendParagraphs(List<Paragraph> paragraphs) Appends multiple paragraphs to the lore.static ContextParagraphParagraph.context(java.util.function.Function<RenderContext, Paragraph> paragraphGenerator) Constructs a new context paragraph with the given paragraph generator.ContextParagraph.setContentGenerator(java.util.function.Function<RenderContext, Paragraph> paragraphGenerator) Sets the content generator of the paragraph.Lore.setParagraphs(List<Paragraph> paragraphs) Sets the paragraphs of the lore.Constructor parameters in io.github.somesourcecode.someguiapi.scene.lore with type arguments of type ParagraphModifierConstructorDescriptionContextParagraph(java.util.function.Function<RenderContext, Paragraph> contentGenerator) Constructs a new context paragraph with the given content generator.