Package nu3a.scene.exception

Examples of nu3a.scene.exception.N3AlreadyHasParentException


   *            Nodo padre
   */
  protected void setParent(N3GroupNode node)
      throws N3AlreadyHasParentException {
    if (parent != null)
      throw new N3AlreadyHasParentException(
          "This node has a parent already.");
    parent = node;
    setDirty();
  }
View Full Code Here

TOP

Related Classes of nu3a.scene.exception.N3AlreadyHasParentException

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.