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

io.imunity.furms.ui.view_picker.FurmsRolePickerText Maven / Gradle / Ivy

There is a newer version: 4.3.1
Show newest version
/*
 * Copyright (c) 2020 Bixbit s.c. All rights reserved.
 * See LICENSE file for licensing information.
 */

package io.imunity.furms.ui.view_picker;

import java.util.Objects;

import com.google.common.base.MoreObjects;
import com.vaadin.flow.component.Text;

import io.imunity.furms.ui.user_context.FurmsViewUserContext;

class FurmsRolePickerText extends Text {
	final FurmsViewUserContext furmsViewUserContext;

	FurmsRolePickerText(FurmsViewUserContext furmsViewUserContext) {
		super(furmsViewUserContext.name);
		this.furmsViewUserContext = furmsViewUserContext;
	}

	@Override
	public boolean equals(Object o) {
		if (this == o) return true;
		if (o == null || getClass() != o.getClass()) return false;
		FurmsRolePickerText furmsSelectText = (FurmsRolePickerText) o;
		return Objects.equals(furmsViewUserContext, furmsSelectText.furmsViewUserContext);
	}

	@Override
	public int hashCode() {
		return Objects.hash(furmsViewUserContext);
	}

	@Override
	public String toString() {
		return MoreObjects.toStringHelper(this).add("super", super.toString())
				.add("furmsViewUserContext", furmsViewUserContext).toString();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy