Example #1
0
 /** ************************************************************************* * * Get the value */
 public String getDisplayValue(SourceSrc ss) {
   StringBuffer buf = new StringBuffer();
   PertDictionary pd = ss.getPertDictionary();
   PertProperties pp = pd.getPerturbProps(typeKey_);
   String name = ss.getSourceName(srcNameKey_);
   buf.append(name);
   String useMe = pp.getAbbrev();
   if (useMe == null) {
     buf.append(" ");
     buf.append(pp.getType());
   } else {
     buf.append(useMe);
   }
   return (buf.toString());
 }
Example #2
0
 /**
  * ************************************************************************* * * Return experiment
  * type
  */
 public PertProperties getExpType(PertDictionary pd) {
   return (pd.getPerturbProps(typeKey_));
 }