|
@@ -105,22 +105,34 @@ namespace Invercargill {
|
|
names.add("Lot");
|
|
names.add("Lot");
|
|
}
|
|
}
|
|
if(type.is_a(typeof(ReadOnlyAddressable))) {
|
|
if(type.is_a(typeof(ReadOnlyAddressable))) {
|
|
- names.add("Addressable");
|
|
|
|
|
|
+ names.add("ReadOnlyAddressable");
|
|
}
|
|
}
|
|
if(type.is_a(typeof(ReadOnlyAssociative))) {
|
|
if(type.is_a(typeof(ReadOnlyAssociative))) {
|
|
- names.add("Associative");
|
|
|
|
|
|
+ names.add("ReadOnlyAssociative");
|
|
}
|
|
}
|
|
if(type.is_a(typeof(ReadOnlyCollection))) {
|
|
if(type.is_a(typeof(ReadOnlyCollection))) {
|
|
- names.add("Collection");
|
|
|
|
|
|
+ names.add("ReadOnlyCollection");
|
|
}
|
|
}
|
|
if(type.is_a(typeof(ReadOnlySet))) {
|
|
if(type.is_a(typeof(ReadOnlySet))) {
|
|
|
|
+ names.add("ReadOnlySet");
|
|
|
|
+ }
|
|
|
|
+ if(type.is_a(typeof(Addressable))) {
|
|
|
|
+ names.add("Addressable");
|
|
|
|
+ }
|
|
|
|
+ if(type.is_a(typeof(Associative))) {
|
|
|
|
+ names.add("Associative");
|
|
|
|
+ }
|
|
|
|
+ if(type.is_a(typeof(Collection))) {
|
|
names.add("Collection");
|
|
names.add("Collection");
|
|
}
|
|
}
|
|
|
|
+ if(type.is_a(typeof(Set))) {
|
|
|
|
+ names.add("Set");
|
|
|
|
+ }
|
|
if(type.is_a(typeof(Elements))) {
|
|
if(type.is_a(typeof(Elements))) {
|
|
names.add("Elements");
|
|
names.add("Elements");
|
|
}
|
|
}
|
|
if(type.is_a(typeof(Properties))) {
|
|
if(type.is_a(typeof(Properties))) {
|
|
- names.add("Elements");
|
|
|
|
|
|
+ names.add("Properties");
|
|
}
|
|
}
|
|
if(type.is_a(typeof(Promotion))) {
|
|
if(type.is_a(typeof(Promotion))) {
|
|
names.add("Promotion");
|
|
names.add("Promotion");
|