Package nu3a.names.exception

Examples of nu3a.names.exception.N3NameException


   * @param node
   *            Nodo de la escena.
   */
  public void addNamedObject(N3NamedObject obj) throws N3NameException {
    if (names.get(obj.getName()) != null)
      throw new N3NameException("Name must be unique: " + obj.getName());
    names.put(obj.getName(), obj);
  }
View Full Code Here

TOP

Related Classes of nu3a.names.exception.N3NameException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.