Package com.nomagic.magicdraw.uml2.util
Interface PropertyDefaultValues
-
public interface PropertyDefaultValues
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<?>
getDefaultValues(Property property)
Used to return collection of default values to be set for propertyboolean
isValid(Property property)
Check if property needs to have multiple default values
-
-
-
Method Detail
-
isValid
boolean isValid(Property property)
Check if property needs to have multiple default values- Parameters:
property
- to check- Returns:
- true if property is valid for multiple default values
-
getDefaultValues
java.util.Collection<?> getDefaultValues(Property property)
Used to return collection of default values to be set for property- Parameters:
property
- to set default values for- Returns:
- collection of default values to be set for property
-
-