add method

void add(
  1. Band band
)

Adds a new band to the collection.

Implementation

void add(final Band band) {
  list.add(band);
}