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

org.graphstream.graph.implementations.OneAttributeElement Maven / Gradle / Ivy

/*
 * This file is part of GraphStream .
 * 
 * GraphStream is a library whose purpose is to handle static or dynamic
 * graph, create them from scratch, file or any source and display them.
 * 
 * This program is free software distributed under the terms of two licenses, the
 * CeCILL-C license that fits European law, and the GNU Lesser General Public
 * License. You can  use, modify and/ or redistribute the software under the terms
 * of the CeCILL-C license as circulated by CEA, CNRS and INRIA at the following
 * URL  or under the terms of the GNU LGPL 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 Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see .
 * 
 * The fact that you are presently reading this means that you have had
 * knowledge of the CeCILL-C and LGPL licenses and that you accept their terms.
 */

/**
 * @since 2009-02-19
 * 
 * @author Guilhelm Savin 
 * @author Yoann Pigné 
 * @author Antoine Dutot 
 * @author Alex Bowen 
 * @author Hicham Brahimi 
 */
package org.graphstream.graph.implementations;

import org.graphstream.graph.Element;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.Map;

/**
 * An implementation of an {@link org.graphstream.graph.Element}.
 * 
 * 

* It allows only one attribute and has no internal map structure. It is not * used and may be removed. *

* */ public abstract class OneAttributeElement implements Element { // Constants // Attributes /** * Tag of this element. */ protected String id; /** * The only one attribute */ Object attribute = null; // Constructors /** * New element. * * @param id * The unique identifier of this element. */ public OneAttributeElement(String id) { assert id != null : "Graph elements cannot have a null identifier"; this.id = id; } // Accessors public String getId() { return id; } public Object getAttribute(String key) { return attribute; } public Object getFirstAttributeOf(String... keys) { return attribute; } @SuppressWarnings("all") public T getAttribute(String key, Class clazz) { return (T) attribute; } @SuppressWarnings("all") public T getFirstAttributeOf(Class clazz, String... keys) { return (T) attribute; } public CharSequence getLabel(String key) { if (attribute != null && attribute instanceof CharSequence) return (CharSequence) attribute; return null; } public double getNumber(String key) { if (attribute != null && attribute instanceof Number) return ((Number) attribute).doubleValue(); return Double.NaN; } @SuppressWarnings("unchecked") public ArrayList getVector(String key) { if (attribute != null && attribute instanceof ArrayList) return ((ArrayList) attribute); return null; } public boolean hasAttribute(String key) { return true; } public boolean hasAttribute(String key, Class clazz) { if (attribute != null) return (clazz.isInstance(attribute)); return false; } public boolean hasLabel(String key) { if (attribute != null) return (attribute instanceof CharSequence); return false; } public boolean hasNumber(String key) { if (attribute != null) return (attribute instanceof Number); return false; } public boolean hasVector(String key) { if (attribute != null && attribute instanceof ArrayList) return true; return false; } public Iterator getAttributeKeyIterator() { return null; } public Map getAttributeMap() { return null; } /** * Override the Object method */ @Override public String toString() { return id; } // Commands public void clearAttributes() { attribute = null; } public void addAttribute(String attribute, Object value) { this.attribute = value; } public void changeAttribute(String attribute, Object value) { addAttribute(attribute, value); } public void setAttributes(Map attributes) { if (attributes.size() >= 1) addAttribute("", attributes.get((attributes.keySet().toArray()[0]))); } public void removeAttribute(String attribute) { this.attribute = null; } public static enum AttributeChangeEvent { ADD, CHANGE, REMOVE }; /** * Called for each change in the attribute set. This method must be implemented * by sub-elements in order to send events to the graph listeners. * * @param sourceId * The source of the change. * @param timeId * The source time of the change, for synchronization. * @param attribute * The attribute name that changed. * @param event * The type of event among ADD, CHANGE and REMOVE. * @param oldValue * The old value of the attribute, null if the attribute was added. * @param newValue * The new value of the attribute, null if the attribute is about to * be removed. */ protected abstract void attributeChanged(String sourceId, long timeId, String attribute, AttributeChangeEvent event, Object oldValue, Object newValue); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy