(NodeStyle style, Color... colorlist)
| 245 | @SuppressWarnings("unchecked") |
| 246 | interface NodeStyled<E> extends Attributable<E> { |
| 247 | default E style(NodeStyle style, Color... colorlist) { |
| 248 | style(style); |
| 249 | if (colorlist.length > 0) { |
| 250 | String clist = Arrays.stream(colorlist).map(Object::toString).collect(Collectors.joining(":")); |