public static final String RESULT_TYPE_PROP = "ResultType";
public static final String EXPRESSION_PROP = "Expression";
public static final String ALLOW_MULTI_VALUE_PROP = "AllowMultipleValues";
+ public static final String ROW_SOURCE_TYPE_PROP = "RowSourceType";
+ public static final String ROW_SOURCE_PROP = "RowSource";
public String getName();
public Property put(String name, DataType type, Object value) {
// the only property which seems to go in the "primary" is the "multi
// value" property
- if(ALLOW_MULTI_VALUE_PROP.equals(name)) {
+ if(isPrimaryKey(name)) {
return _primary.put(name, DataType.BOOLEAN, value);
}
return _complex.put(name, value);
}
for(Property prop : props) {
- if(ALLOW_MULTI_VALUE_PROP.equals(prop.getName())) {
+ if(isPrimaryKey(prop.getName())) {
((PropertyMapImpl)_primary).put(prop);
} else {
((PropertyMapImpl)_complex).put(prop);
}
public Property remove(String name) {
- if(ALLOW_MULTI_VALUE_PROP.equals(name)) {
+ if(isPrimaryKey(name)) {
return _primary.remove(name);
}
return _complex.remove(name);
public String toString() {
return PropertyMapImpl.toString(this);
}
+
+ private static boolean isPrimaryKey(String name) {
+ // the multi-value key seems to be the only one on the primary column
+ return ALLOW_MULTI_VALUE_PROP.equals(name);
+ }
}
// test multi-value col props
PropertyMap props = col.getProperties();
assertEquals(Boolean.TRUE, props.getValue(PropertyMap.ALLOW_MULTI_VALUE_PROP));
- assertEquals("Value List", props.getValue("RowSourceType"));
+ assertEquals("Value List", props.getValue(PropertyMap.ROW_SOURCE_TYPE_PROP));
assertEquals("\"value1\";\"value2\";\"value3\";\"value4\"",
- props.getValue("RowSource"));
+ props.getValue(PropertyMap.ROW_SOURCE_PROP));
db.close();
}