1 package xuml.tools.model.compiler.info;
2
3 public class MyPrimaryIdAttributeMember extends MyIndependentAttribute {
4
5 public MyPrimaryIdAttributeMember(String attributeName, String fieldName, String columnName,
6 MyTypeDefinition type, boolean nullable, String description,
7 MyAttributeExtensions extensions) {
8 super(attributeName, fieldName, columnName, type, nullable, description, extensions);
9 }
10
11 }