com.applitools.eyes.universal.Refer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-core-java5 Show documentation
Show all versions of eyes-sdk-core-java5 Show documentation
Applitools Eyes SDK base for Java
package com.applitools.eyes.universal;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
public abstract class Refer {
public static final String APPLITOOLS_REF_ID = "applitools-ref-id";
protected Map references;
protected Map> relations;
public Refer() {
references = new HashMap<>();
relations = new HashMap<>();
}
protected abstract void destroy(Reference root);
}