|
TarTool example source code file (ArchiveTreeModel.java)
The TarTool ArchiveTreeModel.java source code/* ** This code has been placed into the Public Domain. ** This code was written by Timothy Gerard Endres in 1999. ** */ package com.ice.tartool; import java.util.Vector; import java.util.Enumeration; import java.util.StringTokenizer; import javax.swing.tree.TreeNode; import javax.swing.tree.DefaultTreeModel; import com.ice.tar.TarEntry; public class ArchiveTreeModel extends DefaultTreeModel { public ArchiveTreeModel() { this( new ArchiveTreeNode() ); } public ArchiveTreeModel( ArchiveTreeNode root ) { super( root ); } } Other TarTool examples (source code examples)Here is a short list of links related to this TarTool ArchiveTreeModel.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.