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

com.regnosys.rosetta.translate.datamodel.Attribute Maven / Gradle / Ivy

There is a newer version: 11.25.1
Show newest version
package com.regnosys.rosetta.translate.datamodel;

import java.util.Set;

public interface Attribute {

	Cardinality getCardinality();

	Entity getType();

	String getName();

	/**
	 * @param alreadyWritten names of entities that have already written - used to cope with cycles
	 * @return string representation of this attribute
	 */
	String toString(Set alreadyWritten);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy