//
// Created by Grishul Eugeny
//
// Copyright © Grishul Eugeny 2008
//

import java.awt.Color;

class ListViewItem {

	public String Text;
	public Object Tag;
	public Color ForeColor = Color.black;
	public Color BackColor = null;

	public ListViewItem() {
	}

	public ListViewItem( String text ) {
		Text = text;
	}

	public ListViewItem( String text, Object tag ) {
		Text = text;
		Tag = tag;
	}
	
	public String toString(){
		return Text;
	}
}
Соседние файлы в папке src