Como declaro String[]?

Fala galera :smiley:

Como que eu posso criar outras ‘lists’ e declarar que nem esse xemplo:

    public String[] getRelationshipAttributes() {
        return new String[] {"softwareFornecedor"};


    }

Como q eu adiciono softwareDistribuidor??

[]'s

[code] public String[] getRelationshipAttributes() {
return new String[] {“softwareFornecedor”,“softwareDistribuidor”};

 }[/code]

NĂŁo Ă© isso?

Ou se preferir tem essa forma pior:

    public String[] getRelationshipAttributes() {
        String[] str = new String[2];
        str[0] = "softwareFornecedor";
        str[1] = "softwareDistribuidor";
        return str;
    }

:stuck_out_tongue:

haahha quantas maneiras!! :smiley:

Fico com a do segundo amigo é mais fĂĄcil :wink:

Valew a todos que responderam!!

[]'s

ou se preferir ainda tem essa forma

[code] public String[] getRelationshipAttributes() {
String[] str = new String[2] {“softwareFornecedor”,“softwareDistribuidor”};

      return str;
 } [/code]