⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstracttreeobject.java

📁 SWT开发的Java调用COM的工具集
💻 JAVA
字号:
/*
 * Copyright (c) 2007 Software Wizards Pty Ltd, Victoria, Australia.
 * mailto:enquires@swz.com.au. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted. See the GNU General Public License
 * for more details.
 *
 * Redistribution of the SWTtoCOM software is not permitted as part of any
 * commercial product. Licensing terms for such distribution may be
 * obtained from the copyright holder.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
package au.com.swz.swttocom.example.win32explorer.views;

import org.eclipse.swt.graphics.Image;

import au.com.swz.swttocom.example.win32explorer.shell.FolderItem;

public abstract class AbstractTreeObject {
	private AbstractTreeObject parent;
	private FolderItem folderItem;
	
	AbstractTreeObject(FolderItem folderItem, AbstractTreeObject parent) {
		this.folderItem = folderItem;
		this.parent = parent;
	}

	public AbstractTreeObject getParent() {
		return parent;
	}
	
	public FolderItem getFolderItem() {
		return folderItem;
	}
	

	public abstract String getText();
	
	public abstract Image getImage();
	
	public abstract Object[] getChildren();

	public abstract boolean hasChildren();
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -