getXRDSAt() public méthode

public getXRDSAt ( int n ) : XRDS
n int
Résultat XRDS
Exemple #1
0
 public void addAll(XRDS other)
 {
     for (int i = 0; i < other.getNumChildren(); i++) {
     if (other.isXRDSAt(i))
         add(other.getXRDSAt(i));
     else
         add(other.getDescriptorAt(i));
     }
 }