getNames() публичный Метод

public getNames ( ) : String[]
Результат String[]
Пример #1
0
 /**
  * <p>
  * Get a list of all known registered names on the same {@link OtpNode node}
  * as this mailbox.
  * </p>
  *
  * <p>
  * This method calls a method with the same name in {@link OtpNode#getNames
  * Otpnode} but is provided here for convenience.
  * </p>
  *
  * @return an array of Strings containing all registered names on this
  *         {@link OtpNode node}.
  */
 public String[] getNames()
 {
     return(home.getNames());
 }