com.hadii.stiff.extractor.ComponentAssociationMultiplicity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stiff-lib Show documentation
Show all versions of stiff-lib Show documentation
stiff-lib is a java library for generating stiff diagrams.
The newest version!
package com.hadii.stiff.extractor;
import com.hadii.stiff.diagram.DiagramConstants;
/**
* Represents the multiplicity that can exist between two classes, implied
* context is a UML Class Diagram.
*/
public class ComponentAssociationMultiplicity {
private String value;
public ComponentAssociationMultiplicity(final DiagramConstants.DefaultClassMultiplicities multiplicity) {
this.value = multiplicity.value();
}
public final String value() {
return this.value;
}
public final void setValue(final String multiplicityValue) {
this.value = multiplicityValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy