From 8cf0296bbc16e8eb535e9af932eed2557d5e66d2 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Thu, 1 Dec 2011 14:11:42 +0900 Subject: removing generated yard docs from repository --- doc/Axlsx/Relationship.html | 541 -------------------------------------------- 1 file changed, 541 deletions(-) delete mode 100644 doc/Axlsx/Relationship.html (limited to 'doc/Axlsx/Relationship.html') diff --git a/doc/Axlsx/Relationship.html b/doc/Axlsx/Relationship.html deleted file mode 100644 index e0f7b487..00000000 --- a/doc/Axlsx/Relationship.html +++ /dev/null @@ -1,541 +0,0 @@ - - - - - - Class: Axlsx::Relationship - - — AXLSX - - - - - - - - - - - - - - - - - - - - - - -

Class: Axlsx::Relationship - - - -

- -
- -
Inherits:
-
- Object - -
    -
  • Object
  • - - - -
- show all - -
- - - - - - - - - -
Defined in:
-
lib/axlsx/rels/relationship.rb
- -
-
- -

Overview

-
- -
- Note: -
-

Packages automatcially manage relationships.

-
-
- - -

A relationship defines a reference between package parts.

- - -
-
-
- - -
- -

Instance Attribute Summary (collapse)

- - - - - - -

- Instance Method Summary - (collapse) -

- - - - -
-

Constructor Details

- -
-

- - - (Relationship) initialize(type, target) - - - -

-
- -

A new instance of Relationship

- - -
-
-
- - -
- - - - -
-
-
-
-24
-25
-26
-27
-
-
# File 'lib/axlsx/rels/relationship.rb', line 24
-
-def initialize(type, target)
-  self.Target=target
-  self.Type=type
-end
-
-
-
- -
- -
-

Instance Attribute Details

- - - - -
-

- - - (String) Target - - - -

-
- -

The location of the relationship target

- - -
-
-
- -

Returns:

-
    - -
  • - - - (String) - - - -
  • - -
- -
- - - - -
-
-
-
-8
-9
-10
-
-
# File 'lib/axlsx/rels/relationship.rb', line 8
-
-def Target
-  @Target
-end
-
-
-
- - - - -
-

- - - (String) Type - - - -

-
- -
- Note: -
-

Supported types are defined as constants in Axlsx:

-
-
- - -

The type of relationship

- - -
-
-
- -

Returns:

-
    - -
  • - - - (String) - - - -
  • - -
- -

See Also:

- - -
- - - - -
-
-
-
-23
-24
-25
-
-
# File 'lib/axlsx/rels/relationship.rb', line 23
-
-def Type
-  @Type
-end
-
-
-
- -
- - -
-

Instance Method Details

- - -
-

- - - (String) to_xml(xml, rId) - - - -

-
- -

Serializes the relationship

- - -
-
-
-

Parameters:

-
    - -
  • - - xml - - - (Nokogiri::XML::Builder) - - - - — -
    -

    The document builder instance this objects xml will be added to.

    -
    - -
  • - -
  • - - rId - - - (String) - - - - — -
    -

    the reference id of the object.

    -
    - -
  • - -
- -

Returns:

-
    - -
  • - - - (String) - - - -
  • - -
- -
- - - - -
-
-
-
-38
-39
-40
-41
-42
-
-
# File 'lib/axlsx/rels/relationship.rb', line 38
-
-def to_xml(xml, rId)
-  h = self.instance_values
-  h[:Id] = rId
-  xml.Relationship(h)
-end
-
-
-
- -
- -
- - - - - \ No newline at end of file -- cgit v1.2.3