Sha256: a33e736f2ee0affa8c8166d3546b8d200918a16cf6667b6243e0f3d93ed27199

Contents?: true

Size: 1.45 KB

Versions: 2

Compression:

Stored size: 1.45 KB

Contents

# Copyright (C) 2004, 2005, 2006, 2007 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

      if @graphviz.nil? == false
        @graphviz.set_position( @name, xKey.to_s, xValue )
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ruby-graphviz-0.7.0 lib/graphviz/attrs.rb
ruby-graphviz-0.8.0 lib/graphviz/attrs.rb