public class bdcSSPanel extends bdcImage{

    public void initialize(Control c) {
      super.initialize(c);
        this.setType("SSPanel");
        this.setJavaType("BDPanel");
    }

    public String addString( Control cParent) {
    String returnString;
    String thisName;

      if (isControlArray()){
         thisName = this.getName() + "[" + getIndex() +"]";
      }
      else{
         thisName = getName();
      }

      returnString = super.addString(cParent);
      returnString = returnString + "      " + thisName + ".setRaised(true);" + "\n";
      return (returnString);
    }

    public String addString11( Control cParent) {
    String returnString;
    String thisName;

      if (isControlArray()){
         thisName = this.getName() + "[" + getIndex() +"]";
      }
      else{
         thisName = getName();
      }

      returnString = super.addString11(cParent);
      returnString = returnString + "      " + thisName + ".setRaised(true);" + "\n";
      return (returnString);

    }

}
