Fala galera
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
Fala galera
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;
}
haahha quantas maneiras!!
Fico com a do segundo amigoâŠĂ© mais fĂĄcil
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]