This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. | |
| * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. | |
| * | |
| * This is a modified version of javax.swing.tree.DefaultMutableTreeNode | |
| * from Oracle Java 8. | |
| */ | |
| package com.github.mike10004.tree; | |
| import javax.annotation.Nullable; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * ArrayBinaryTree implements the BinaryTreeADT interface using an array | |
| * | |
| * @author Dr. Lewis | |
| * @author Dr. Chase | |
| * @version 1.0, 8/19/08 | |
| */ | |
| package jss2; | |
| import java.util.Iterator; | |
| import jss2.exceptions.*; |