Property pCouplingMatrix;
if (isValueSet()) {
/*
* Create a property descriptor with a set matrix
*/
pCouplingMatrix = new PCouplingMatrix(getValue());
}
else {
/*
* Create a property descriptor with no default value
*/
pCouplingMatrix = new PCouplingMatrix(getFromSize(), getToSize());
}
String configName = getFromSize() + " to " + getToSize() + " Coupling Matrix";
try {