1 2 3 4 5 6 7 8 9
package com.wireguard.config; /** * Interface for classes that can perform a deep copy of their objects. */ public interface Copyable<T> { T copy(); }