All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.g2forge.alexandria.data.relationship.ScalarRelationship Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version
package com.g2forge.alexandria.data.relationship;

import java.util.function.BiConsumer;
import java.util.function.Function;

public class ScalarRelationship extends ARelationship {
	public ScalarRelationship(Function get, BiConsumer set, BiConsumer setRemote) {
		super(get, set, setRemote);
	}

	@Override
	protected boolean isInitialized(R field) {
		return field != null;
	}

	@Override
	protected void setRemote(R field, L local) {
		if (setRemote != null) setRemote.accept(field, local);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy