wireguard-android/app/src/main/java/com/wireguard/config/Copyable.java
Samuel Holland 5e55d196be Major renaming and refactoring in activity and service
Apparently "configuration" is the proper term, not "profile".

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2017-08-13 07:24:03 -05:00

11 lines
188 B
Java

package com.wireguard.config;
/**
* Interface for classes that can perform a deep copy of their objects.
*/
public interface Copyable<T> {
T copy();
void copyFrom(T source);
}