alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

TarTool example source code file (ArchiveTreeModel.java)

This example TarTool source code file (ArchiveTreeModel.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - TarTool tags/keywords

archivetreemodel, archivetreemodel, archivetreenode, archivetreenode, defaulttreemodel, defaulttreemodel, jtree, tree, util

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

 

new blog posts

 

Copyright 1998-2021 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.