From 11303a4d6664d9a7ff7bc408035d2ab70378a375 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Sat, 26 Nov 2011 13:20:57 +0900 Subject: adding in support for ruby 1.9.3 release version 1.0.9 --- doc/Axlsx/Relationship.html | 115 +++++++++++++++++++------------------------- 1 file changed, 49 insertions(+), 66 deletions(-) (limited to 'doc/Axlsx/Relationship.html') diff --git a/doc/Axlsx/Relationship.html b/doc/Axlsx/Relationship.html index 9aa93e52..e2fb7a6d 100644 --- a/doc/Axlsx/Relationship.html +++ b/doc/Axlsx/Relationship.html @@ -6,7 +6,7 @@ Class: Axlsx::Relationship - — Documentation by YARD 0.7.3 + — AXLSX @@ -97,15 +97,13 @@
Note: -

-Packages automatcially manage relationships. -

+
+

Packages automatcially manage relationships.

-

-A relationship defines a reference between package parts. -

+ +

A relationship defines a reference between package parts.

@@ -137,9 +135,8 @@ A relationship defines a reference between package parts. -

-The location of the relationship target. -

+
+

The location of the relationship target.

@@ -164,9 +161,8 @@ The location of the relationship target. -

-The type of relationship. -

+
+

The type of relationship.

@@ -203,9 +199,8 @@ The type of relationship. -

-A new instance of Relationship. -

+
+

A new instance of Relationship.

@@ -227,9 +222,8 @@ A new instance of Relationship. -

-Serializes the relationship. -

+
+

Serializes the relationship.

@@ -250,9 +244,8 @@ Serializes the relationship.

-

-A new instance of Relationship -

+ +

A new instance of Relationship

@@ -274,11 +267,10 @@ A new instance of Relationship
# File 'lib/axlsx/rels/relationship.rb', line 24
 
-def initialize(type, target)
-  self.Target=target
-  self.Type=type
-end
-
+def initialize(type, target) + self.Target=target + self.Type=type +end @@ -301,9 +293,8 @@ A new instance of Relationship

-

-The location of the relationship target -

+ +

The location of the relationship target

@@ -337,10 +328,9 @@ The location of the relationship target
# File 'lib/axlsx/rels/relationship.rb', line 8
 
-def Target
-  @Target
-end
-
+def Target + @Target +end @@ -361,15 +351,13 @@ The location of the relationship target
Note: -

-Supported types are defined as constants in Axlsx: -

+
+

Supported types are defined as constants in Axlsx:

-

-The type of relationship -

+ +

The type of relationship

@@ -428,10 +416,9 @@ The type of relationship
# File 'lib/axlsx/rels/relationship.rb', line 23
 
-def Type
-  @Type
-end
-
+def Type + @Type +end @@ -453,9 +440,8 @@ The type of relationship

-

-Serializes the relationship -

+ +

Serializes the relationship

@@ -474,9 +460,8 @@ Serializes the relationship — -

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

+
+

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

@@ -491,9 +476,8 @@ The document builder instance this objects xml will be added to. — -

-the reference id of the object. -

+
+

the reference id of the object.

@@ -520,21 +504,20 @@ the reference id of the object.
 
 
-36
-37
 38
 39
-40
+40 +41 +42 -
# File 'lib/axlsx/rels/relationship.rb', line 36
-
-def to_xml(xml, rId)
-  h = self.instance_values
-  h[:Id] = rId
-  xml.Relationship(h)
-end
-
+
# File 'lib/axlsx/rels/relationship.rb', line 38
+
+def to_xml(xml, rId)
+  h = self.instance_values
+  h[:Id] = rId
+  xml.Relationship(h)
+end
@@ -545,9 +528,9 @@ the reference id of the object.
-- cgit v1.2.3