//
//  Node.h
//  Cog
//
//  Created by Vincent Spader on 8/20/2006.
//  Copyright 2006 Vincent Spader. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@class FileTreeDataSource;

@interface PathNode : NSObject {
	FileTreeDataSource *dataSource;

	NSURL *url;
	NSString *display; // The pretty path to display.

	NSImage *icon;

	NSArray *subpaths;
}

- (id)initWithDataSource:(FileTreeDataSource *)ds url:(NSURL *)u;

- (NSURL *)URL;
- (void)setURL:(NSURL *)url;

- (void)processPaths:(NSArray *)contents;

- (NSArray *)subpaths;
- (void)setSubpaths:(NSArray *)s;

- (NSString *)display;
- (void)setDisplay:(NSString *)s;

- (NSImage *)icon;

- (BOOL)isLeaf;

- (void)updatePath;

@end