All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fxconnector.node.SVNodeImpl Maven / Gradle / Ivy

The newest version!
/*
 * Scenic View,
 * Copyright (C) 2012 Jonathan Giles, Ander Ruiz, Amy Fowler
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * 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, see .
 */
package org.fxconnector.node;

import javafx.scene.image.Image;

import java.io.Serializable;

abstract class SVNodeImpl implements SVNode, Serializable {

	/**
	 *
	 */
	private static final long serialVersionUID = -3301868461718461962L;
	boolean invalidForFilter;
	boolean showID;
	boolean expanded;
	protected String nodeClass;
	protected String nodeClassName;

	protected SVNodeImpl() {

	}

	protected SVNodeImpl(final String nodeClass, final String nodeClassName) {
		this.nodeClass = nodeClass;
		this.nodeClassName = nodeClassName;
	}

	@Override
	public final void setInvalidForFilter(final boolean invalid) {
		this.invalidForFilter = invalid;
	}

	@Override
	public final boolean isInvalidForFilter() {
		return invalidForFilter;
	}

	@Override
	public final void setShowId(final boolean showID) {
		this.showID = showID;
	}

	@Override
	public boolean isExpanded() {
		return this.expanded;
	}

	@Override
	public final void setExpanded(final boolean expanded) {
		this.expanded = expanded;
	}

	@Override
	public Image getIcon() {
		return null;
	}

	@Override
	public final String getNodeClass() {
		return nodeClass;
	}

	@Override
	public final String getNodeClassName() {
		return nodeClassName;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy