diff options
Diffstat (limited to 'doc/classes/Symbol.html')
-rw-r--r-- | doc/classes/Symbol.html | 237 |
1 files changed, 237 insertions, 0 deletions
diff --git a/doc/classes/Symbol.html b/doc/classes/Symbol.html new file mode 100644 index 0000000..893cc4c --- /dev/null +++ b/doc/classes/Symbol.html @@ -0,0 +1,237 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <title>Symbol</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <link rel="stylesheet" href="../css/reset.css" type="text/css" media="screen" /> +<link rel="stylesheet" href="../css/main.css" type="text/css" media="screen" /> +<link rel="stylesheet" href="../css/github.css" type="text/css" media="screen" /> +<script src="../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script> +<script src="../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script> +<script src="../js/main.js" type="text/javascript" charset="utf-8"></script> +<script src="../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script> + +</head> + +<body> + <div class="banner"> + + <h1> + <span class="type">Class</span> + Symbol + + <span class="parent">< + + Object + + </span> + + </h1> + <ul class="files"> + + <li><a href="../files/lib/json/add/symbol_rb.html">lib/json/add/symbol.rb</a></li> + + </ul> + </div> + <div id="bodyContent"> + <div id="content"> + + <div class="description"> + +<p><a href="Symbol.html">Symbol</a> serialization/deserialization</p> + + </div> + + + + + + + + + + + + + + + <!-- Method ref --> + <div class="sectiontitle">Methods</div> + <dl class="methods"> + + <dt>A</dt> + <dd> + <ul> + + + <li> + <a href="#method-i-as_json">as_json</a> + </li> + + </ul> + </dd> + + <dt>J</dt> + <dd> + <ul> + + + <li> + <a href="#method-c-json_create">json_create</a> + </li> + + </ul> + </dd> + + <dt>T</dt> + <dd> + <ul> + + + <li> + <a href="#method-i-to_json">to_json</a> + </li> + + </ul> + </dd> + + </dl> + + + + + + + + + + + + + + + + + + + <!-- Methods --> + + <div class="sectiontitle">Class Public methods</div> + + <div class="method"> + <div class="title method-title" id="method-c-json_create"> + + <a name="method-c-json_create"></a><b>json_create</b>(o) + + </div> + + + <div class="description"> + <p>Deserializes <a href="JSON.html">JSON</a> string by converting the +<code>string</code> value stored in the object to a <a +href="Symbol.html">Symbol</a></p> + </div> + + + + + + + <div class="sourcecode"> + + <p class="source-link"> + Source: + <a href="javascript:toggleSource('method-c-json_create_source')" id="l_method-c-json_create_source">show</a> + + </p> + <div id="method-c-json_create_source" class="dyn-source"> + <pre><span class="ruby-comment"># File lib/json/add/symbol.rb, line 22</span> +<span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">self</span>.<span class="ruby-identifier">json_create</span>(<span class="ruby-identifier">o</span>) + <span class="ruby-identifier">o</span>[<span class="ruby-string">'s'</span>].<span class="ruby-identifier">to_sym</span> +<span class="ruby-keyword">end</span></pre> + </div> + </div> + + </div> + + <div class="sectiontitle">Instance Public methods</div> + + <div class="method"> + <div class="title method-title" id="method-i-as_json"> + + <a name="method-i-as_json"></a><b>as_json</b>(*) + + </div> + + + <div class="description"> + <p>Returns a hash, that will be turned into a <a href="JSON.html">JSON</a> +object and represent this object.</p> + </div> + + + + + + + <div class="sourcecode"> + + <p class="source-link"> + Source: + <a href="javascript:toggleSource('method-i-as_json_source')" id="l_method-i-as_json_source">show</a> + + </p> + <div id="method-i-as_json_source" class="dyn-source"> + <pre><span class="ruby-comment"># File lib/json/add/symbol.rb, line 9</span> +<span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">as_json</span>(*) + { + <span class="ruby-constant">JSON</span>.<span class="ruby-identifier">create_id</span> =<span class="ruby-operator">></span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">name</span>, + <span class="ruby-string">'s'</span> =<span class="ruby-operator">></span> <span class="ruby-identifier">to_s</span>, + } +<span class="ruby-keyword">end</span></pre> + </div> + </div> + + </div> + + <div class="method"> + <div class="title method-title" id="method-i-to_json"> + + <a name="method-i-to_json"></a><b>to_json</b>(*a) + + </div> + + + <div class="description"> + <p>Stores class name (<a href="Symbol.html">Symbol</a>) with String +representation of <a href="Symbol.html">Symbol</a> as a <a +href="JSON.html">JSON</a> string.</p> + </div> + + + + + + + <div class="sourcecode"> + + <p class="source-link"> + Source: + <a href="javascript:toggleSource('method-i-to_json_source')" id="l_method-i-to_json_source">show</a> + + </p> + <div id="method-i-to_json_source" class="dyn-source"> + <pre><span class="ruby-comment"># File lib/json/add/symbol.rb, line 17</span> +<span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">to_json</span>(*<span class="ruby-identifier">a</span>) + <span class="ruby-identifier">as_json</span>.<span class="ruby-identifier">to_json</span>(*<span class="ruby-identifier">a</span>) +<span class="ruby-keyword">end</span></pre> + </div> + </div> + + </div> + </div> + </div> + </body> +</html>
\ No newline at end of file |