Package org.gradle.ide.visualstudio
Interface TextProvider
-
@Incubating public interface TextProvider
Provides access to the content of a generated text file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringBuilderasBuilder()Get the content as aStringBuilder, permitting direct modification.StringgetText()The text content.voidsetText(String value)Replace the content.
-
-
-
Method Detail
-
getText
String getText()
The text content.
-
setText
void setText(String value)
Replace the content.
-
asBuilder
StringBuilder asBuilder()
Get the content as aStringBuilder, permitting direct modification.
-
-