2022-02-02 18:26:21 +01:00
|
|
|
package love.distributedrebirth.numberxd.base2t;
|
|
|
|
|
|
|
|
|
|
import java.util.Collection;
|
|
|
|
|
|
|
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
|
2022-02-02 22:51:56 +01:00
|
|
|
import love.distributedrebirth.numberxd.base2t.part.T08PartOctal;
|
2022-02-02 18:26:21 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Appender model for Octals.
|
|
|
|
|
*/
|
2022-08-24 17:33:39 +02:00
|
|
|
@BãßBȍőnAuthorInfoʸᴰ(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
2022-02-02 18:26:21 +01:00
|
|
|
public final class BaseAppenderOctal implements BaseAppender<T08PartOctal> {
|
|
|
|
|
|
|
|
|
|
private final Collection<T08PartOctal> collection;
|
|
|
|
|
|
|
|
|
|
public BaseAppenderOctal(Collection<T08PartOctal> collection) {
|
|
|
|
|
this.collection = collection;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void add(T08PartOctal value) {
|
|
|
|
|
collection.add(value);
|
|
|
|
|
}
|
|
|
|
|
}
|