/**
  * Option Part
  *
  * @throws AutoException
  */
 public void setOption(String opset_name, String name, float price) throws AutoException {
   OptionSet temp = this.findOpset(opset_name);
   if (temp != null) {
     temp.setOpt(name, price);
   }
 }