Component
Importing the class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
import crafttweaker.api.text.Component;
Implemented Interfaces
Component implements the following interfaces. That means all methods defined in these interfaces are also available in Component
Methods
Return Type: MutableComponent
// Component.copy() as MutableComponent
myComponent.copy();
Return Type: string
// Component.getContents() as string
myComponent.getContents();
Return Type: stdlib.List<Component>
// Component.getSiblings() as stdlib.List<Component>
myComponent.getSiblings();
Return Type: string
Component.getString(maxLength as int) as string
Parameter | Type |
---|---|
Parameter maxLength | Type int |
Return Type: Style
// Component.getStyle() as Style
myComponent.getStyle();
Return Type: MutableComponent
// Component.plainCopy() as MutableComponent
myComponent.plainCopy();
Properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name contents | Type string | Has Getter true | Has Setter false |
Name siblings | Type stdlib.List<Component> | Has Getter true | Has Setter false |
Name style | Type Style | Has Getter true | Has Setter false |