Sha256: f7a33bd3c7b68963ee6af9ce79c48cb99c07eeccb7a653561ca668d3c42b762e
Contents?: true
Size: 1.47 KB
Versions: 7
Compression:
Stored size: 1.47 KB
Contents
# Copyright (C) 2004, 2005, 2006, 2007, 2008 Gregoire Lejeune <gregoire.lejeune@free.fr> # # 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 2 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, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA class GraphViz class Attrs @data @name @attributs @graphviz attr_accessor :data def initialize( gviz, name, attributs ) @name = name @attributs = attributs @data = Hash::new( ) @graphviz = gviz end def []( xKey ) if @data.key?( xKey.to_s ) == false nil end @data[xKey.to_s] end def []=( xKey, xValue ) if @attributs.index( xKey.to_s ).nil? == true raise ArgumentError, "#{@name} attribut '#{xKey.to_s}' invalid" end @data[xKey.to_s] = xValue.to_s if @graphviz.nil? == false @graphviz.set_position( @name, xKey.to_s, xValue.to_s ) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems