Hi all,
i have created following class:

public class DachMultiLangLabel extends ULCLabel{

      public DachMultiLangLabel(){
      }

      public void setText(String labelText1, String labelID,
Object[] args){
            this.setText(labelText1);
            ....
      }
}

.....

private DachMultiLangLabel getDachMultiLangLabel() {
      if (dachMultiLangLabel == null) {
            dachMultiLangLabel = new DachMultiLangLabel();
            dachMultiLangLabel.setText("hallo","234", null);
      }
      return dachMultiLangLabel;
}

But I have a problem with ve, because the setText method cannot
handle variables.
I get the error message: labelText1 is too complicated
Is there a way to view the text?
Thx
 marco


_______________________________________________
ULC-developer mailing list
[email protected]
http://lists.canoo.com/mailman/listinfo/ulc-developer

Reply via email to