code
stringlengths
2
1.05M
repo_name
stringlengths
5
101
path
stringlengths
4
991
language
stringclasses
3 values
license
stringclasses
5 values
size
int64
2
1.05M
<!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> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> <title>RegionSplitPolicy xref</title> <link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" /> </head> <body> <div id="overview"><a href="../../../../../../apidocs/org/apache/hadoop/hbase/regionserver/RegionSplitPolicy.html">View Javadoc</a></div><pre> <a name="1" href="#1">1</a> <em class="jxr_javadoccomment">/**</em> <a name="2" href="#2">2</a> <em class="jxr_javadoccomment"> * Licensed to the Apache Software Foundation (ASF) under one</em> <a name="3" href="#3">3</a> <em class="jxr_javadoccomment"> * or more contributor license agreements. See the NOTICE file</em> <a name="4" href="#4">4</a> <em class="jxr_javadoccomment"> * distributed with this work for additional information</em> <a name="5" href="#5">5</a> <em class="jxr_javadoccomment"> * regarding copyright ownership. The ASF licenses this file</em> <a name="6" href="#6">6</a> <em class="jxr_javadoccomment"> * to you under the Apache License, Version 2.0 (the</em> <a name="7" href="#7">7</a> <em class="jxr_javadoccomment"> * "License"); you may not use this file except in compliance</em> <a name="8" href="#8">8</a> <em class="jxr_javadoccomment"> * with the License. You may obtain a copy of the License at</em> <a name="9" href="#9">9</a> <em class="jxr_javadoccomment"> *</em> <a name="10" href="#10">10</a> <em class="jxr_javadoccomment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em> <a name="11" href="#11">11</a> <em class="jxr_javadoccomment"> *</em> <a name="12" href="#12">12</a> <em class="jxr_javadoccomment"> * Unless required by applicable law or agreed to in writing, software</em> <a name="13" href="#13">13</a> <em class="jxr_javadoccomment"> * distributed under the License is distributed on an "AS IS" BASIS,</em> <a name="14" href="#14">14</a> <em class="jxr_javadoccomment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em> <a name="15" href="#15">15</a> <em class="jxr_javadoccomment"> * See the License for the specific language governing permissions and</em> <a name="16" href="#16">16</a> <em class="jxr_javadoccomment"> * limitations under the License.</em> <a name="17" href="#17">17</a> <em class="jxr_javadoccomment"> */</em> <a name="18" href="#18">18</a> <strong class="jxr_keyword">package</strong> org.apache.hadoop.hbase.regionserver; <a name="19" href="#19">19</a> <a name="20" href="#20">20</a> <strong class="jxr_keyword">import</strong> java.io.IOException; <a name="21" href="#21">21</a> <strong class="jxr_keyword">import</strong> java.util.Map; <a name="22" href="#22">22</a> <a name="23" href="#23">23</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.conf.Configuration; <a name="24" href="#24">24</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.conf.Configured; <a name="25" href="#25">25</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.HConstants; <a name="26" href="#26">26</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.HTableDescriptor; <a name="27" href="#27">27</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.util.ReflectionUtils; <a name="28" href="#28">28</a> <a name="29" href="#29">29</a> <strong class="jxr_keyword">import</strong> com.google.common.base.Preconditions; <a name="30" href="#30">30</a> <a name="31" href="#31">31</a> <em class="jxr_javadoccomment">/**</em> <a name="32" href="#32">32</a> <em class="jxr_javadoccomment"> * A split policy determines when a region should be split.</em> <a name="33" href="#33">33</a> <em class="jxr_javadoccomment"> * @see IncreasingToUpperBoundRegionSplitPolicy Default split policy since</em> <a name="34" href="#34">34</a> <em class="jxr_javadoccomment"> * 0.94.0</em> <a name="35" href="#35">35</a> <em class="jxr_javadoccomment"> * @see ConstantSizeRegionSplitPolicy Default split policy before 0.94.0</em> <a name="36" href="#36">36</a> <em class="jxr_javadoccomment"> */</em> <a name="37" href="#37">37</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">abstract</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/RegionSplitPolicy.html">RegionSplitPolicy</a> <strong class="jxr_keyword">extends</strong> Configured { <a name="38" href="#38">38</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Class&lt;? <strong class="jxr_keyword">extends</strong> RegionSplitPolicy&gt; <a name="39" href="#39">39</a> DEFAULT_SPLIT_POLICY_CLASS = IncreasingToUpperBoundRegionSplitPolicy.<strong class="jxr_keyword">class</strong>; <a name="40" href="#40">40</a> <a name="41" href="#41">41</a> <em class="jxr_javadoccomment">/**</em> <a name="42" href="#42">42</a> <em class="jxr_javadoccomment"> * The region configured for this split policy.</em> <a name="43" href="#43">43</a> <em class="jxr_javadoccomment"> */</em> <a name="44" href="#44">44</a> <strong class="jxr_keyword">protected</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/HRegion.html">HRegion</a> region; <a name="45" href="#45">45</a> <a name="46" href="#46">46</a> <em class="jxr_javadoccomment">/**</em> <a name="47" href="#47">47</a> <em class="jxr_javadoccomment"> * Upon construction, this method will be called with the region</em> <a name="48" href="#48">48</a> <em class="jxr_javadoccomment"> * to be governed. It will be called once and only once.</em> <a name="49" href="#49">49</a> <em class="jxr_javadoccomment"> */</em> <a name="50" href="#50">50</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> configureForRegion(<a href="../../../../../org/apache/hadoop/hbase/regionserver/HRegion.html">HRegion</a> region) { <a name="51" href="#51">51</a> Preconditions.checkState( <a name="52" href="#52">52</a> <strong class="jxr_keyword">this</strong>.region == <strong class="jxr_keyword">null</strong>, <a name="53" href="#53">53</a> <span class="jxr_string">"Policy already configured for region {}"</span>, <a name="54" href="#54">54</a> <strong class="jxr_keyword">this</strong>.region); <a name="55" href="#55">55</a> <a name="56" href="#56">56</a> <strong class="jxr_keyword">this</strong>.region = region; <a name="57" href="#57">57</a> } <a name="58" href="#58">58</a> <a name="59" href="#59">59</a> <em class="jxr_javadoccomment">/**</em> <a name="60" href="#60">60</a> <em class="jxr_javadoccomment"> * @return true if the specified region should be split.</em> <a name="61" href="#61">61</a> <em class="jxr_javadoccomment"> */</em> <a name="62" href="#62">62</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">abstract</strong> <strong class="jxr_keyword">boolean</strong> shouldSplit(); <a name="63" href="#63">63</a> <a name="64" href="#64">64</a> <em class="jxr_javadoccomment">/**</em> <a name="65" href="#65">65</a> <em class="jxr_javadoccomment"> * @return the key at which the region should be split, or null</em> <a name="66" href="#66">66</a> <em class="jxr_javadoccomment"> * if it cannot be split. This will only be called if shouldSplit</em> <a name="67" href="#67">67</a> <em class="jxr_javadoccomment"> * previously returned true.</em> <a name="68" href="#68">68</a> <em class="jxr_javadoccomment"> */</em> <a name="69" href="#69">69</a> <strong class="jxr_keyword">protected</strong> byte[] getSplitPoint() { <a name="70" href="#70">70</a> byte[] explicitSplitPoint = <strong class="jxr_keyword">this</strong>.region.getExplicitSplitPoint(); <a name="71" href="#71">71</a> <strong class="jxr_keyword">if</strong> (explicitSplitPoint != <strong class="jxr_keyword">null</strong>) { <a name="72" href="#72">72</a> <strong class="jxr_keyword">return</strong> explicitSplitPoint; <a name="73" href="#73">73</a> } <a name="74" href="#74">74</a> Map&lt;byte[], Store&gt; stores = region.getStores(); <a name="75" href="#75">75</a> <a name="76" href="#76">76</a> byte[] splitPointFromLargestStore = <strong class="jxr_keyword">null</strong>; <a name="77" href="#77">77</a> <strong class="jxr_keyword">long</strong> largestStoreSize = 0; <a name="78" href="#78">78</a> <strong class="jxr_keyword">for</strong> (Store s : stores.values()) { <a name="79" href="#79">79</a> byte[] splitPoint = s.getSplitPoint(); <a name="80" href="#80">80</a> <strong class="jxr_keyword">long</strong> storeSize = s.getSize(); <a name="81" href="#81">81</a> <strong class="jxr_keyword">if</strong> (splitPoint != <strong class="jxr_keyword">null</strong> &amp;&amp; largestStoreSize &lt; storeSize) { <a name="82" href="#82">82</a> splitPointFromLargestStore = splitPoint; <a name="83" href="#83">83</a> largestStoreSize = storeSize; <a name="84" href="#84">84</a> } <a name="85" href="#85">85</a> } <a name="86" href="#86">86</a> <a name="87" href="#87">87</a> <strong class="jxr_keyword">return</strong> splitPointFromLargestStore; <a name="88" href="#88">88</a> } <a name="89" href="#89">89</a> <a name="90" href="#90">90</a> <em class="jxr_javadoccomment">/**</em> <a name="91" href="#91">91</a> <em class="jxr_javadoccomment"> * Create the RegionSplitPolicy configured for the given table.</em> <a name="92" href="#92">92</a> <em class="jxr_javadoccomment"> * Each</em> <a name="93" href="#93">93</a> <em class="jxr_javadoccomment"> * @param htd</em> <a name="94" href="#94">94</a> <em class="jxr_javadoccomment"> * @param conf</em> <a name="95" href="#95">95</a> <em class="jxr_javadoccomment"> * @return</em> <a name="96" href="#96">96</a> <em class="jxr_javadoccomment"> * @throws IOException</em> <a name="97" href="#97">97</a> <em class="jxr_javadoccomment"> */</em> <a name="98" href="#98">98</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/RegionSplitPolicy.html">RegionSplitPolicy</a> create(<a href="../../../../../org/apache/hadoop/hbase/regionserver/HRegion.html">HRegion</a> region, <a name="99" href="#99">99</a> Configuration conf) <strong class="jxr_keyword">throws</strong> IOException { <a name="100" href="#100">100</a> <a name="101" href="#101">101</a> Class&lt;? <strong class="jxr_keyword">extends</strong> RegionSplitPolicy&gt; clazz = getSplitPolicyClass( <a name="102" href="#102">102</a> region.getTableDesc(), conf); <a name="103" href="#103">103</a> <a href="../../../../../org/apache/hadoop/hbase/regionserver/RegionSplitPolicy.html">RegionSplitPolicy</a> policy = ReflectionUtils.newInstance(clazz, conf); <a name="104" href="#104">104</a> policy.configureForRegion(region); <a name="105" href="#105">105</a> <strong class="jxr_keyword">return</strong> policy; <a name="106" href="#106">106</a> } <a name="107" href="#107">107</a> <a name="108" href="#108">108</a> <strong class="jxr_keyword">static</strong> Class&lt;? <strong class="jxr_keyword">extends</strong> RegionSplitPolicy&gt; getSplitPolicyClass( <a name="109" href="#109">109</a> <a href="../../../../../org/apache/hadoop/hbase/HTableDescriptor.html">HTableDescriptor</a> htd, Configuration conf) <strong class="jxr_keyword">throws</strong> IOException { <a name="110" href="#110">110</a> String className = htd.getRegionSplitPolicyClassName(); <a name="111" href="#111">111</a> <strong class="jxr_keyword">if</strong> (className == <strong class="jxr_keyword">null</strong>) { <a name="112" href="#112">112</a> className = conf.get(HConstants.HBASE_REGION_SPLIT_POLICY_KEY, <a name="113" href="#113">113</a> DEFAULT_SPLIT_POLICY_CLASS.getName()); <a name="114" href="#114">114</a> } <a name="115" href="#115">115</a> <a name="116" href="#116">116</a> <strong class="jxr_keyword">try</strong> { <a name="117" href="#117">117</a> Class&lt;? <strong class="jxr_keyword">extends</strong> RegionSplitPolicy&gt; clazz = <a name="118" href="#118">118</a> Class.forName(className).asSubclass(RegionSplitPolicy.<strong class="jxr_keyword">class</strong>); <a name="119" href="#119">119</a> <strong class="jxr_keyword">return</strong> clazz; <a name="120" href="#120">120</a> } <strong class="jxr_keyword">catch</strong> (Exception e) { <a name="121" href="#121">121</a> <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IOException( <a name="122" href="#122">122</a> <span class="jxr_string">"Unable to load configured region split policy '"</span> + <a name="123" href="#123">123</a> className + <span class="jxr_string">"' for table '"</span> + htd.getNameAsString() + <span class="jxr_string">"'"</span>, <a name="124" href="#124">124</a> e); <a name="125" href="#125">125</a> } <a name="126" href="#126">126</a> } <a name="127" href="#127">127</a> <a name="128" href="#128">128</a> } </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
zqxjjj/NobidaBase
docs/xref/org/apache/hadoop/hbase/regionserver/RegionSplitPolicy.html
HTML
apache-2.0
13,641
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <!-- @(#)package.html 1.60 98/01/27 This software is the confidential and proprietary information of Kasper B. Graversen. --> </head> <body bgcolor="white"> This package is placeholder for the <code>CellProcessor</code> classes confined to those who set up constraints. Note however, that in order for these processors to carry out their constraint logic, they may convert the input data. E.g. the <tt>StrLen</tt> given the number 17 converts it to the string <tt>"17"</tt> before doing its length check. <!-- Put @see and @since tags down here. --> </body> </html>
junegunn/SuperCSV
src/org/supercsv/cellprocessor/constraint/package.html
HTML
apache-2.0
671
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Foo</title> </head> <body> </body> </html>
spring-projects/spring-framework
spring-webmvc/src/test/resources/org/springframework/web/servlet/resource/test/foo.html
HTML
apache-2.0
236
<!doctype html><html lang=en><head><title>Redirecting&mldr;</title><link rel=canonical href=/v1.5/pt-br/news/support/announcing-1.0-eol-final/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=/v1.5/pt-br/news/support/announcing-1.0-eol-final/"></head><body><h1>Redirecting&mldr;</h1><a href=/v1.5/pt-br/news/support/announcing-1.0-eol-final/>Click here if you are not redirected.</a></body></html>
istio/istio.io
archive/v1.5/news/2019/announcing-1.0-eol-final/index.html
HTML
apache-2.0
445
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_102) on Thu Sep 29 16:37:38 CEST 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class energy.usef.core.util.VersionUtil (usef-root-pom 1.3.6 API)</title> <meta name="date" content="2016-09-29"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class energy.usef.core.util.VersionUtil (usef-root-pom 1.3.6 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../energy/usef/core/util/VersionUtil.html" title="class in energy.usef.core.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?energy/usef/core/util/class-use/VersionUtil.html" target="_top">Frames</a></li> <li><a href="VersionUtil.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class energy.usef.core.util.VersionUtil" class="title">Uses of Class<br>energy.usef.core.util.VersionUtil</h2> </div> <div class="classUseContainer">No usage of energy.usef.core.util.VersionUtil</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../energy/usef/core/util/VersionUtil.html" title="class in energy.usef.core.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?energy/usef/core/util/class-use/VersionUtil.html" target="_top">Frames</a></li> <li><a href="VersionUtil.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p> </body> </html>
USEF-Foundation/ri.usef.energy
usef-javadoc/energy/usef/core/util/class-use/VersionUtil.html
HTML
apache-2.0
4,529
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_21) on Tue May 07 21:03:38 BST 2013 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>com.google.zxing.pdf417.decoder.ec (ZXing Core 2.2-SNAPSHOT API)</title> <meta name="date" content="2013-05-07"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="com.google.zxing.pdf417.decoder.ec (ZXing Core 2.2-SNAPSHOT API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-788492-5']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script></em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../com/google/zxing/pdf417/decoder/package-summary.html">Prev Package</a></li> <li><a href="../../../../../../com/google/zxing/pdf417/detector/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/google/zxing/pdf417/decoder/ec/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;com.google.zxing.pdf417.decoder.ec</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../../com/google/zxing/pdf417/decoder/ec/ErrorCorrection.html" title="class in com.google.zxing.pdf417.decoder.ec">ErrorCorrection</a></td> <td class="colLast"> <div class="block">PDF417 error correction implementation.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../../com/google/zxing/pdf417/decoder/ec/ModulusGF.html" title="class in com.google.zxing.pdf417.decoder.ec">ModulusGF</a></td> <td class="colLast"> <div class="block">A field based on powers of a generator integer, modulo some modulus.</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-788492-5']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script></em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../com/google/zxing/pdf417/decoder/package-summary.html">Prev Package</a></li> <li><a href="../../../../../../com/google/zxing/pdf417/detector/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/google/zxing/pdf417/decoder/ec/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2007-2013. All Rights Reserved.</small></p> </body> </html>
hcleon/zxingExtend
zxingorg/web/w/docs/javadoc/com/google/zxing/pdf417/decoder/ec/package-summary.html
HTML
apache-2.0
6,679
<!DOCTYPE html> <html> <body> <em>Emphasized text</em><br> <strong>Strong text</strong><br> <dfn>Definition term</dfn><br> <code>A piece of computer code</code><br> <samp>Sample output from a computer program</samp><br> <kbd>Keyboard input</kbd><br> <var>Variable</var> </body> </html>
syseye/syseye.github.io
tutorials/html/examples/formatting/phrase.html
HTML
apache-2.0
292
{{ template "layout.html" . }} {{ define "css" }} {{ end}} {{ define "content" }} <div class="page-header"> <h1>Credential List</h1> </div> <div class="row"> <div class="col-md-12"> <div class="pull-right"> <div class="btn-group"> {{ str2html .hiddenTagGuiSystemHostCredentialEdit }} <a class="btn btn-md btn-success pull-right" onclick="$('#idWaitingPanel').modal({backdrop: 'static'});" href="/gui/system/host/credential/edit">Create</a> </div> </div> </div> <table class="table table-condensed tree"> <thead> <tr> <th>#</th> <th>IP</th> <th>SSH Port</th> <th>SSH User</th> <th>SSH Password</th> <th>Disabled</th> <th>Action</th> </tr> </thead> <tbody> {{range $credentialKey, $credential := .credentialSlice}} <tr> <td>{{$credentialKey}}</td> <td>{{$credential.IP}}</td> <td>{{$credential.SSH.Port}}</td> <td>{{$credential.SSH.User}}</td> <td>******</td> <td>{{$credential.Disabled}}</td> <td> <div class="btn-group"> {{ str2html $credential.HiddenTagGuiSystemHostCredentialEdit }} <a class="btn btn-xs btn-info" onclick="$('#idWaitingPanel').modal({backdrop: 'static'});" href="/gui/system/host/credential/edit?ip={{$credential.IP}}">Update</a> </div> {{ str2html $credential.HiddenTagGuiSystemHostCredentialDelete }} <button class="btn btn-xs btn-danger" type="button" data-toggle="modal" data-target="#linkModal" data-action="Delete {{$credential.IP}}" data-color="btn-danger" data-herf="/gui/system/host/credential/delete?ip={{$credential.IP}}">Delete</button> </div> </div> </td> </tr> {{end}} </tbody> </table> </div> </div> {{ end }} {{ define "js" }} {{ end}}
cloudawan/kubernetes_management_gui
views/system/host/credential/list.html
HTML
apache-2.0
1,817
<!doctype html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>docplex.mp.basic &#8212; DOcplex.MP: Mathematical Programming Modeling for Python V2.20 documentation</title> <link rel="stylesheet" href="../../../_static/bizstyle.css" type="text/css" /> <link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" /> <script type="text/javascript" id="documentation_options" data-url_root="../../../" src="../../../_static/documentation_options.js"></script> <script type="text/javascript" src="../../../_static/jquery.js"></script> <script type="text/javascript" src="../../../_static/underscore.js"></script> <script type="text/javascript" src="../../../_static/doctools.js"></script> <script type="text/javascript" src="../../../_static/language_data.js"></script> <script async="async" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="../../../_static/bizstyle.js"></script> <link rel="index" title="Index" href="../../../genindex.html" /> <link rel="search" title="Search" href="../../../search.html" /> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <!--[if lt IE 9]> <script type="text/javascript" src="_static/css3-mediaqueries.js"></script> <![endif]--> </head><body> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../../../genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="../../../py-modindex.html" title="Python Module Index" >modules</a> |</li> <li class="nav-item nav-item-0"><a href="../../../index.html">DOcplex.MP: Mathematical Programming Modeling for Python V2.20 documentation</a> &#187;</li> <li class="nav-item nav-item-1"><a href="../../index.html" accesskey="U">Module code</a> &#187;</li> </ul> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <div id="searchbox" style="display: none" role="search"> <h3>Quick search</h3> <div class="searchformwrapper"> <form class="search" action="../../../search.html" method="get"> <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> </div> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <h1>Source code for docplex.mp.basic</h1><div class="highlight"><pre> <span></span><span class="c1"># --------------------------------------------------------------------------</span> <span class="c1"># Source file provided under Apache License, Version 2.0, January 2004,</span> <span class="c1"># http://www.apache.org/licenses/</span> <span class="c1"># (c) Copyright IBM Corp. 2015, 2016</span> <span class="c1"># --------------------------------------------------------------------------</span> <span class="kn">import</span> <span class="nn">sys</span> <span class="kn">from</span> <span class="nn">io</span> <span class="k">import</span> <span class="n">StringIO</span> <span class="kn">from</span> <span class="nn">enum</span> <span class="k">import</span> <span class="n">Enum</span> <span class="kn">from</span> <span class="nn">docplex.mp.operand</span> <span class="k">import</span> <span class="n">Operand</span> <span class="kn">from</span> <span class="nn">docplex.mp.utils</span> <span class="k">import</span> <span class="n">is_number</span><span class="p">,</span> <span class="n">is_string</span><span class="p">,</span> <span class="n">str_maxed</span> <span class="kn">from</span> <span class="nn">docplex.mp.sttck</span> <span class="k">import</span> <span class="n">StaticTypeChecker</span> <div class="viewcode-block" id="ModelingObjectBase"><a class="viewcode-back" href="../../../docplex.mp.basic.html#docplex.mp.basic.ModelingObjectBase">[docs]</a><span class="k">class</span> <span class="nc">ModelingObjectBase</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;ModelingObjectBase()</span> <span class="sd"> Parent class for all modeling objects (variables and constraints).</span> <span class="sd"> This class is not intended to be instantiated directly.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="n">__array_priority__</span> <span class="o">=</span> <span class="mi">100</span> <span class="vm">__slots__</span> <span class="o">=</span> <span class="p">(</span><span class="s2">&quot;_name&quot;</span><span class="p">,</span> <span class="s2">&quot;_model&quot;</span><span class="p">)</span> <span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">model</span><span class="p">,</span> <span class="n">name</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">_name</span> <span class="o">=</span> <span class="n">name</span> <span class="bp">self</span><span class="o">.</span><span class="n">_model</span> <span class="o">=</span> <span class="n">model</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">name</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot; This property is used to get or set the name of the modeling object.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_name</span> <span class="nd">@name</span><span class="o">.</span><span class="n">setter</span> <span class="k">def</span> <span class="nf">name</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">new_name</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">set_name</span><span class="p">(</span><span class="n">new_name</span><span class="p">)</span> <span class="k">def</span> <span class="nf">get_name</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_name</span> <span class="k">def</span> <span class="nf">set_name</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">new_name</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">check_name</span><span class="p">(</span><span class="n">new_name</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">_set_name</span><span class="p">(</span><span class="n">new_name</span><span class="p">)</span> <span class="k">def</span> <span class="nf">_set_name</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">name</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">_name</span> <span class="o">=</span> <span class="n">name</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">safe_name</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_name</span> <span class="ow">or</span> <span class="s1">&#39;&#39;</span> <span class="k">def</span> <span class="nf">check_name</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">new_name</span><span class="p">):</span> <span class="c1"># INTERNAL: basic method for checking names.</span> <span class="k">pass</span> <span class="c1"># pragma: no cover</span> <span class="k">def</span> <span class="nf">check_lp_name</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">qualifier</span><span class="p">,</span> <span class="n">new_name</span><span class="p">,</span> <span class="n">accept_empty</span><span class="p">,</span> <span class="n">accept_none</span><span class="p">):</span> <span class="k">return</span> <span class="n">StaticTypeChecker</span><span class="o">.</span><span class="n">check_lp_name</span><span class="p">(</span><span class="n">logger</span><span class="o">=</span><span class="bp">self</span><span class="p">,</span> <span class="n">qualifier</span><span class="o">=</span><span class="n">qualifier</span><span class="p">,</span> <span class="n">obj</span><span class="o">=</span><span class="bp">self</span><span class="p">,</span> <span class="n">new_name</span><span class="o">=</span><span class="n">new_name</span><span class="p">,</span> <span class="n">accept_empty</span><span class="o">=</span><span class="n">accept_empty</span><span class="p">,</span> <span class="n">accept_none</span><span class="o">=</span><span class="n">accept_none</span><span class="p">)</span> <div class="viewcode-block" id="ModelingObjectBase.has_name"><a class="viewcode-back" href="../../../docplex.mp.basic.html#docplex.mp.basic.ModelingObjectBase.has_name">[docs]</a> <span class="k">def</span> <span class="nf">has_name</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot; Checks whether the object has a name.</span> <span class="sd"> Returns:</span> <span class="sd"> True if the object has a name.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_name</span> <span class="ow">is</span> <span class="ow">not</span> <span class="kc">None</span></div> <div class="viewcode-block" id="ModelingObjectBase.has_user_name"><a class="viewcode-back" href="../../../docplex.mp.basic.html#docplex.mp.basic.ModelingObjectBase.has_user_name">[docs]</a> <span class="k">def</span> <span class="nf">has_user_name</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot; Checks whether the object has a valid name given by the user.</span> <span class="sd"> Returns:</span> <span class="sd"> True if the object has a valid name given by the user.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">has_name</span><span class="p">()</span></div> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">model</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> This property returns the :class:`docplex.mp.model.Model` to which the object belongs.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_model</span> <span class="k">def</span> <span class="nf">get_linear_factory</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_model</span><span class="o">.</span><span class="n">_lfactory</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">lfactory</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_model</span><span class="o">.</span><span class="n">_lfactory</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">qfactory</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_model</span><span class="o">.</span><span class="n">_qfactory</span> <span class="k">def</span> <span class="nf">_check_model_has_solution</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">model</span><span class="o">.</span><span class="n">_check_has_solution</span><span class="p">()</span> <span class="k">def</span> <span class="nf">fatal</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">msg</span><span class="p">,</span> <span class="o">*</span><span class="n">args</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">error_handler</span><span class="o">.</span><span class="n">fatal</span><span class="p">(</span><span class="n">msg</span><span class="p">,</span> <span class="n">args</span><span class="p">)</span> <span class="k">def</span> <span class="nf">error</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">msg</span><span class="p">,</span> <span class="o">*</span><span class="n">args</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">error_handler</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="n">msg</span><span class="p">,</span> <span class="n">args</span><span class="p">)</span> <span class="k">def</span> <span class="nf">warning</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">msg</span><span class="p">,</span> <span class="o">*</span><span class="n">args</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">error_handler</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span><span class="n">msg</span><span class="p">,</span> <span class="n">args</span><span class="p">)</span> <span class="k">def</span> <span class="nf">trace</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">msg</span><span class="p">,</span> <span class="o">*</span><span class="n">args</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">error_handler</span><span class="o">.</span><span class="n">trace</span><span class="p">(</span><span class="n">msg</span><span class="p">,</span> <span class="n">args</span><span class="p">)</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">error_handler</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_model</span><span class="o">.</span><span class="n">error_handler</span> <span class="k">def</span> <span class="nf">truncated_str</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="n">str_maxed</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">maxlen</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">_model</span><span class="o">.</span><span class="n">_max_repr_len</span><span class="p">)</span> <span class="k">def</span> <span class="nf">zero_expr</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="c1"># INTERNAL</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_model</span><span class="o">.</span><span class="n">_lfactory</span><span class="o">.</span><span class="n">new_zero_expr</span><span class="p">()</span> <span class="k">def</span> <span class="nf">_unsupported_binary_operation</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">lhs</span><span class="p">,</span> <span class="n">op</span><span class="p">,</span> <span class="n">rhs</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">fatal</span><span class="p">(</span><span class="s2">&quot;Unsupported operation: </span><span class="si">{0!s}</span><span class="s2"> </span><span class="si">{1:s}</span><span class="s2"> </span><span class="si">{2!s}</span><span class="s2">&quot;</span><span class="p">,</span> <span class="n">lhs</span><span class="p">,</span> <span class="n">op</span><span class="p">,</span> <span class="n">rhs</span><span class="p">)</span> <span class="k">def</span> <span class="nf">__unicode__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">to_string</span><span class="p">()</span> <span class="k">def</span> <span class="nf">__str__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">if</span> <span class="n">sys</span><span class="o">.</span><span class="n">version_info</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">==</span> <span class="mi">2</span><span class="p">:</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">__unicode__</span><span class="p">()</span><span class="o">.</span><span class="n">encode</span><span class="p">(</span><span class="s1">&#39;utf-8&#39;</span><span class="p">)</span> <span class="k">else</span><span class="p">:</span> <span class="c1"># pragma: no cover</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">__unicode__</span><span class="p">()</span></div> <div class="viewcode-block" id="IndexableObject"><a class="viewcode-back" href="../../../docplex.mp.basic.html#docplex.mp.basic.IndexableObject">[docs]</a><span class="k">class</span> <span class="nc">IndexableObject</span><span class="p">(</span><span class="n">ModelingObjectBase</span><span class="p">):</span> <span class="vm">__slots__</span> <span class="o">=</span> <span class="p">(</span><span class="s2">&quot;_index&quot;</span><span class="p">,)</span> <span class="nd">@staticmethod</span> <span class="k">def</span> <span class="nf">is_valid_index</span><span class="p">(</span><span class="n">idx</span><span class="p">):</span> <span class="c1"># INTERNAL: This is where the valid index check is performed</span> <span class="k">return</span> <span class="n">idx</span> <span class="o">&gt;=</span> <span class="mi">0</span> <span class="n">_invalid_index</span> <span class="o">=</span> <span class="o">-</span><span class="mi">2</span> <span class="c1"># noinspection PyMissingConstructor</span> <span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">model</span><span class="p">,</span> <span class="n">name</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">index</span><span class="o">=</span><span class="n">_invalid_index</span><span class="p">):</span> <span class="c1"># ModelingObjectBase.__init__(self, model, name)</span> <span class="bp">self</span><span class="o">.</span><span class="n">_model</span> <span class="o">=</span> <span class="n">model</span> <span class="bp">self</span><span class="o">.</span><span class="n">_name</span> <span class="o">=</span> <span class="n">name</span> <span class="bp">self</span><span class="o">.</span><span class="n">_index</span> <span class="o">=</span> <span class="n">index</span> <div class="viewcode-block" id="IndexableObject.is_generated"><a class="viewcode-back" href="../../../docplex.mp.basic.html#docplex.mp.basic.IndexableObject.is_generated">[docs]</a> <span class="k">def</span> <span class="nf">is_generated</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot; Checks whether this object has been generated by another modeling object.</span> <span class="sd"> If so, the origin object is stored in the ``_origin`` attribute.</span> <span class="sd"> Returns:</span> <span class="sd"> True if the objects has been generated.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">origin</span> <span class="ow">is</span> <span class="ow">not</span> <span class="kc">None</span></div> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">origin</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">model</span><span class="o">.</span><span class="n">get_obj_origin</span><span class="p">(</span><span class="bp">self</span><span class="p">)</span> <span class="nd">@origin</span><span class="o">.</span><span class="n">setter</span> <span class="k">def</span> <span class="nf">origin</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">origin</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">model</span><span class="o">.</span><span class="n">set_obj_origin</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">origin</span><span class="p">)</span> <span class="k">def</span> <span class="nf">__hash__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="nb">id</span><span class="p">(</span><span class="bp">self</span><span class="p">)</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">index</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_index</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">index1</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="n">raw</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_index</span> <span class="k">return</span> <span class="n">raw</span> <span class="k">if</span> <span class="n">raw</span> <span class="o">==</span> <span class="bp">self</span><span class="o">.</span><span class="n">_invalid_index</span> <span class="k">else</span> <span class="n">raw</span> <span class="o">+</span> <span class="mi">1</span> <span class="c1"># @index.setter</span> <span class="c1"># def index(self, idx):</span> <span class="c1"># self._index = idx</span> <span class="k">def</span> <span class="nf">_set_index</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">idx</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">_index</span> <span class="o">=</span> <span class="n">idx</span> <span class="k">def</span> <span class="nf">has_valid_index</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_index</span> <span class="o">&gt;=</span> <span class="mi">0</span> <span class="k">def</span> <span class="nf">_set_invalid_index</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">_index</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_invalid_index</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">safe_index</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">if</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">has_valid_index</span><span class="p">():</span> <span class="bp">self</span><span class="o">.</span><span class="n">fatal</span><span class="p">(</span><span class="s2">&quot;Modeling object </span><span class="si">{0!s}</span><span class="s2"> has invalid index: </span><span class="si">{1:d}</span><span class="s2">&quot;</span><span class="p">,</span> <span class="bp">self</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">_index</span><span class="p">)</span> <span class="c1"># pragma: no cover</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_index</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">container</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">model</span><span class="o">.</span><span class="n">get_var_container</span><span class="p">(</span><span class="bp">self</span><span class="p">)</span> <span class="nd">@container</span><span class="o">.</span><span class="n">setter</span> <span class="k">def</span> <span class="nf">container</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">ctn</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">_model</span><span class="o">.</span><span class="n">set_var_container</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">ctn</span><span class="p">)</span></div> <div class="viewcode-block" id="Expr"><a class="viewcode-back" href="../../../docplex.mp.basic.html#docplex.mp.basic.Expr">[docs]</a><span class="k">class</span> <span class="nc">Expr</span><span class="p">(</span><span class="n">ModelingObjectBase</span><span class="p">,</span> <span class="n">Operand</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;Expr()</span> <span class="sd"> Parent class for all expression classes.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="vm">__slots__</span> <span class="o">=</span> <span class="p">()</span> <span class="k">def</span> <span class="nf">clone</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">raise</span> <span class="ne">NotImplementedError</span> <span class="c1"># pragma: no cover</span> <span class="k">def</span> <span class="nf">iter_variables</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="c1"># internal</span> <span class="k">raise</span> <span class="ne">NotImplementedError</span> <span class="c1"># pragma: no cover</span> <span class="k">def</span> <span class="nf">copy</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">target_model</span><span class="p">,</span> <span class="n">var_mapping</span><span class="p">):</span> <span class="c1"># internal</span> <span class="k">raise</span> <span class="ne">NotImplementedError</span> <span class="c1"># pragma: no cover</span> <div class="viewcode-block" id="Expr.number_of_variables"><a class="viewcode-back" href="../../../docplex.mp.basic.html#docplex.mp.basic.Expr.number_of_variables">[docs]</a> <span class="k">def</span> <span class="nf">number_of_variables</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Returns:</span> <span class="sd"> integer: The number of variables in the expression.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">return</span> <span class="nb">sum</span><span class="p">(</span><span class="mi">1</span> <span class="k">for</span> <span class="n">_</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">iter_variables</span><span class="p">())</span> <span class="c1"># pragma: no cover</span></div> <div class="viewcode-block" id="Expr.contains_var"><a class="viewcode-back" href="../../../docplex.mp.basic.html#docplex.mp.basic.Expr.contains_var">[docs]</a> <span class="k">def</span> <span class="nf">contains_var</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">dvar</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot; Checks whether a variable is present in the expression.</span> <span class="sd"> :param: dvar (:class:`docplex.mp.linear.Var`): A decision variable.</span> <span class="sd"> Returns:</span> <span class="sd"> Boolean: True if the variable is present in the expression, else False.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">return</span> <span class="nb">any</span><span class="p">(</span><span class="n">dvar</span> <span class="ow">is</span> <span class="n">v</span> <span class="k">for</span> <span class="n">v</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">iter_variables</span><span class="p">())</span></div> <span class="k">def</span> <span class="nf">to_string</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">nb_digits</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">use_space</span><span class="o">=</span><span class="kc">False</span><span class="p">):</span> <span class="n">oss</span> <span class="o">=</span> <span class="n">StringIO</span><span class="p">()</span> <span class="k">if</span> <span class="n">nb_digits</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span> <span class="n">nb_digits</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">model</span><span class="o">.</span><span class="n">float_precision</span> <span class="bp">self</span><span class="o">.</span><span class="n">to_stringio</span><span class="p">(</span><span class="n">oss</span><span class="p">,</span> <span class="n">nb_digits</span><span class="o">=</span><span class="n">nb_digits</span><span class="p">,</span> <span class="n">use_space</span><span class="o">=</span><span class="n">use_space</span><span class="p">)</span> <span class="k">return</span> <span class="n">oss</span><span class="o">.</span><span class="n">getvalue</span><span class="p">()</span> <span class="k">def</span> <span class="nf">to_stringio</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">oss</span><span class="p">,</span> <span class="n">nb_digits</span><span class="p">,</span> <span class="n">use_space</span><span class="p">,</span> <span class="n">var_namer</span><span class="o">=</span><span class="k">lambda</span> <span class="n">v</span><span class="p">:</span> <span class="n">v</span><span class="o">.</span><span class="n">name</span><span class="p">):</span> <span class="k">raise</span> <span class="ne">NotImplementedError</span> <span class="c1"># pragma: no cover</span> <span class="k">def</span> <span class="nf">_num_to_stringio</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">oss</span><span class="p">,</span> <span class="n">num</span><span class="p">,</span> <span class="n">ndigits</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">print_sign</span><span class="o">=</span><span class="kc">False</span><span class="p">,</span> <span class="n">force_plus</span><span class="o">=</span><span class="kc">False</span><span class="p">,</span> <span class="n">use_space</span><span class="o">=</span><span class="kc">False</span><span class="p">):</span> <span class="n">k</span> <span class="o">=</span> <span class="n">num</span> <span class="k">if</span> <span class="n">print_sign</span><span class="p">:</span> <span class="k">if</span> <span class="n">k</span> <span class="o">&lt;</span> <span class="mi">0</span><span class="p">:</span> <span class="n">sign</span> <span class="o">=</span> <span class="sa">u</span><span class="s1">&#39;-&#39;</span> <span class="n">k</span> <span class="o">=</span> <span class="o">-</span><span class="n">k</span> <span class="k">elif</span> <span class="n">k</span> <span class="o">&gt;</span> <span class="mi">0</span> <span class="ow">and</span> <span class="n">force_plus</span><span class="p">:</span> <span class="c1"># force a plus</span> <span class="n">sign</span> <span class="o">=</span> <span class="sa">u</span><span class="s1">&#39;+&#39;</span> <span class="k">else</span><span class="p">:</span> <span class="n">sign</span> <span class="o">=</span> <span class="kc">None</span> <span class="k">if</span> <span class="n">use_space</span><span class="p">:</span> <span class="n">oss</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="sa">u</span><span class="s1">&#39; &#39;</span><span class="p">)</span> <span class="k">if</span> <span class="n">sign</span><span class="p">:</span> <span class="n">oss</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="n">sign</span><span class="p">)</span> <span class="k">if</span> <span class="n">use_space</span><span class="p">:</span> <span class="n">oss</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="sa">u</span><span class="s1">&#39; &#39;</span><span class="p">)</span> <span class="c1"># INTERNAL</span> <span class="n">ndigits</span> <span class="o">=</span> <span class="n">ndigits</span> <span class="ow">or</span> <span class="bp">self</span><span class="o">.</span><span class="n">model</span><span class="o">.</span><span class="n">float_precision</span> <span class="k">if</span> <span class="n">k</span> <span class="o">==</span> <span class="nb">int</span><span class="p">(</span><span class="n">k</span><span class="p">):</span> <span class="n">oss</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="sa">u</span><span class="s1">&#39;</span><span class="si">%d</span><span class="s1">&#39;</span> <span class="o">%</span> <span class="n">k</span><span class="p">)</span> <span class="k">else</span><span class="p">:</span> <span class="c1"># use second arg as nb digits:</span> <span class="n">oss</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="sa">u</span><span class="s2">&quot;{0:.</span><span class="si">{1}</span><span class="s2">f}&quot;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">k</span><span class="p">,</span> <span class="n">ndigits</span><span class="p">))</span> <span class="c1"># def __pos__(self):</span> <span class="c1"># # + e is identical to e</span> <span class="c1"># return self</span> <span class="k">def</span> <span class="nf">is_discrete</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">raise</span> <span class="ne">NotImplementedError</span> <span class="c1"># pragma: no cover</span> <div class="viewcode-block" id="Expr.is_quad_expr"><a class="viewcode-back" href="../../../docplex.mp.basic.html#docplex.mp.basic.Expr.is_quad_expr">[docs]</a> <span class="k">def</span> <span class="nf">is_quad_expr</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot; Returns True if the expression is quadratic</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">return</span> <span class="kc">False</span></div> <span class="k">def</span> <span class="nf">get_linear_part</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span> <span class="c1"># should be not implemented...</span> <span class="k">def</span> <span class="nf">is_zero</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="kc">False</span> <span class="n">constant</span> <span class="o">=</span> <span class="nb">property</span><span class="p">(</span><span class="n">Operand</span><span class="o">.</span><span class="n">get_constant</span><span class="p">)</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">float_precision</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="mi">0</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_discrete</span><span class="p">()</span> <span class="k">else</span> <span class="bp">self</span><span class="o">.</span><span class="n">model</span><span class="o">.</span><span class="n">float_precision</span> <span class="k">def</span> <span class="nf">_round_if_discrete</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">raw_value</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">model</span><span class="o">.</span><span class="n">_round_element_value_if_necessary</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">raw_value</span><span class="p">)</span> <span class="k">def</span> <span class="nf">_get_solution_value</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">s</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span> <span class="c1"># INTERNAL: compute solution value.</span> <span class="k">raise</span> <span class="ne">NotImplementedError</span> <span class="c1"># pragma: no cover</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">solution_value</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">_check_model_has_solution</span><span class="p">()</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_get_solution_value</span><span class="p">()</span> <span class="k">def</span> <span class="nf">__pow__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">power</span><span class="p">):</span> <span class="c1"># INTERNAL</span> <span class="k">if</span> <span class="mi">0</span> <span class="o">==</span> <span class="n">power</span><span class="p">:</span> <span class="k">return</span> <span class="mi">1</span> <span class="k">elif</span> <span class="mi">1</span> <span class="o">==</span> <span class="n">power</span><span class="p">:</span> <span class="k">return</span> <span class="bp">self</span> <span class="k">elif</span> <span class="mi">2</span> <span class="o">==</span> <span class="n">power</span><span class="p">:</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">square</span><span class="p">()</span> <span class="k">else</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">model</span><span class="o">.</span><span class="n">unsupported_power_error</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">power</span><span class="p">)</span> <span class="k">def</span> <span class="nf">square</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="c1"># redefine for each class of expression</span> <span class="k">return</span> <span class="kc">None</span> <span class="c1"># pragma: no cover</span> <span class="k">def</span> <span class="nf">__gt__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">e</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot; The strict &gt; operator is not supported</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="bp">self</span><span class="o">.</span><span class="n">model</span><span class="o">.</span><span class="n">unsupported_relational_operator_error</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="s2">&quot;&gt;&quot;</span><span class="p">,</span> <span class="n">e</span><span class="p">)</span> <span class="k">def</span> <span class="nf">__lt__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">e</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot; The strict &lt; operator is not supported</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="bp">self</span><span class="o">.</span><span class="n">model</span><span class="o">.</span><span class="n">unsupported_relational_operator_error</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="s2">&quot;&lt;&quot;</span><span class="p">,</span> <span class="n">e</span><span class="p">)</span></div> <span class="c1"># --- Priority class used for relaxation</span> <div class="viewcode-block" id="Priority"><a class="viewcode-back" href="../../../docplex.mp.basic.html#docplex.mp.basic.Priority">[docs]</a><span class="k">class</span> <span class="nc">Priority</span><span class="p">(</span><span class="n">Enum</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> This enumerated class defines the priorities: VERY_LOW, LOW, MEDIUM, HIGH, VERY_HIGH, MANDATORY.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">def</span> <span class="nf">__new__</span><span class="p">(</span><span class="bp">cls</span><span class="p">,</span> <span class="n">value</span><span class="p">,</span> <span class="n">print_name</span><span class="p">):</span> <span class="n">obj</span> <span class="o">=</span> <span class="nb">object</span><span class="o">.</span><span class="fm">__new__</span><span class="p">(</span><span class="bp">cls</span><span class="p">)</span> <span class="c1"># predefined</span> <span class="n">obj</span><span class="o">.</span><span class="n">_value_</span> <span class="o">=</span> <span class="n">value</span> <span class="n">obj</span><span class="o">.</span><span class="n">_print_name</span> <span class="o">=</span> <span class="n">print_name</span> <span class="k">return</span> <span class="n">obj</span> <span class="n">VERY_LOW</span> <span class="o">=</span> <span class="mi">100</span><span class="p">,</span> <span class="s1">&#39;Very Low&#39;</span> <span class="n">LOW</span> <span class="o">=</span> <span class="mi">200</span><span class="p">,</span> <span class="s1">&#39;Low&#39;</span> <span class="n">MEDIUM</span> <span class="o">=</span> <span class="mi">300</span><span class="p">,</span> <span class="s1">&#39;Medium&#39;</span> <span class="n">HIGH</span> <span class="o">=</span> <span class="mi">400</span><span class="p">,</span> <span class="s1">&#39;High&#39;</span> <span class="n">VERY_HIGH</span> <span class="o">=</span> <span class="mi">500</span><span class="p">,</span> <span class="s1">&#39;Very High&#39;</span> <span class="n">MANDATORY</span> <span class="o">=</span> <span class="mi">999999999</span><span class="p">,</span> <span class="s1">&#39;Mandatory&#39;</span> <span class="k">def</span> <span class="nf">__repr__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="s1">&#39;Priority&lt;</span><span class="si">{}</span><span class="s1">&gt;&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">name</span><span class="p">)</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">cplex_preference</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_get_geometric_preference_factor</span><span class="p">(</span><span class="n">base</span><span class="o">=</span><span class="mf">10.0</span><span class="p">)</span> <span class="k">def</span> <span class="nf">_get_geometric_preference_factor</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">base</span><span class="p">):</span> <span class="c1"># INTERNAL: returns a CPLEX preference factor as a power of &quot;base&quot;</span> <span class="c1"># MEDIUM priority is the balance point with a preference of 1.</span> <span class="k">assert</span> <span class="n">is_number</span><span class="p">(</span><span class="n">base</span><span class="p">)</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_mandatory</span><span class="p">():</span> <span class="k">return</span> <span class="mf">1e+20</span> <span class="k">else</span><span class="p">:</span> <span class="c1"># noinspection PyTypeChecker</span> <span class="n">medium_index</span> <span class="o">=</span> <span class="n">Priority</span><span class="o">.</span><span class="n">MEDIUM</span><span class="o">.</span><span class="n">value</span> <span class="o">/</span> <span class="mi">100</span> <span class="c1"># pylint complains about no value member but is wrong!</span> <span class="n">diff</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">value</span> <span class="o">/</span> <span class="mi">100</span> <span class="o">-</span> <span class="n">medium_index</span> <span class="n">factor</span> <span class="o">=</span> <span class="mf">1.0</span> <span class="n">pdiff</span> <span class="o">=</span> <span class="n">diff</span> <span class="k">if</span> <span class="n">diff</span> <span class="o">&gt;=</span> <span class="mi">0</span> <span class="k">else</span> <span class="o">-</span><span class="n">diff</span> <span class="k">for</span> <span class="n">_</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="nb">int</span><span class="p">(</span><span class="n">pdiff</span><span class="p">)):</span> <span class="n">factor</span> <span class="o">*=</span> <span class="n">base</span> <span class="k">return</span> <span class="n">factor</span> <span class="k">if</span> <span class="n">diff</span> <span class="o">&gt;=</span> <span class="mi">0</span> <span class="k">else</span> <span class="mf">1.0</span> <span class="o">/</span> <span class="n">factor</span> <span class="k">def</span> <span class="nf">less_than</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">other</span><span class="p">):</span> <span class="k">assert</span> <span class="nb">isinstance</span><span class="p">(</span><span class="n">other</span><span class="p">,</span> <span class="n">Priority</span><span class="p">)</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">value</span> <span class="o">&lt;</span> <span class="n">other</span><span class="o">.</span><span class="n">value</span> <span class="k">def</span> <span class="nf">__lt__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">other</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">less_than</span><span class="p">(</span><span class="n">other</span><span class="p">)</span> <span class="k">def</span> <span class="nf">__gt__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">other</span><span class="p">):</span> <span class="k">return</span> <span class="n">other</span><span class="o">.</span><span class="n">less_than</span><span class="p">(</span><span class="bp">self</span><span class="p">)</span> <span class="k">def</span> <span class="nf">is_mandatory</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span> <span class="o">==</span> <span class="n">Priority</span><span class="o">.</span><span class="n">MANDATORY</span> <span class="nd">@classmethod</span> <span class="k">def</span> <span class="nf">parse</span><span class="p">(</span><span class="bp">cls</span><span class="p">,</span> <span class="n">arg</span><span class="p">,</span> <span class="n">logger</span><span class="p">,</span> <span class="n">accept_none</span><span class="o">=</span><span class="kc">True</span><span class="p">,</span> <span class="n">do_raise</span><span class="o">=</span><span class="kc">True</span><span class="p">):</span> <span class="sd">&#39;&#39;&#39; Converts its argument to a ``Priority`` object.</span> <span class="sd"> Returns `default_priority` if the text is not a string, empty, or does not match.</span> <span class="sd"> Args;</span> <span class="sd"> arg: The argument to convert.</span> <span class="sd"> logger: An error logger</span> <span class="sd"> accept_none: True if None is a possible value. Typically,</span> <span class="sd"> Constraint.set_priority accepts None as a way to</span> <span class="sd"> remove the constraint&#39;s own priority.</span> <span class="sd"> do_raise: A Boolean flag indicating if an exception is to be raised if the value</span> <span class="sd"> is not recognized.</span> <span class="sd"> Returns:</span> <span class="sd"> A Priority enumerated object.</span> <span class="sd"> &#39;&#39;&#39;</span> <span class="k">if</span> <span class="nb">isinstance</span><span class="p">(</span><span class="n">arg</span><span class="p">,</span> <span class="bp">cls</span><span class="p">):</span> <span class="k">return</span> <span class="n">arg</span> <span class="k">elif</span> <span class="n">is_string</span><span class="p">(</span><span class="n">arg</span><span class="p">):</span> <span class="n">key</span> <span class="o">=</span> <span class="n">arg</span><span class="o">.</span><span class="n">lower</span><span class="p">()</span> <span class="c1"># noinspection PyTypeChecker</span> <span class="k">for</span> <span class="n">p</span> <span class="ow">in</span> <span class="bp">cls</span><span class="p">:</span> <span class="k">if</span> <span class="n">key</span> <span class="o">==</span> <span class="n">p</span><span class="o">.</span><span class="n">name</span><span class="o">.</span><span class="n">lower</span><span class="p">()</span> <span class="ow">or</span> <span class="n">key</span> <span class="o">==</span> <span class="nb">str</span><span class="p">(</span><span class="n">p</span><span class="o">.</span><span class="n">value</span><span class="p">):</span> <span class="k">return</span> <span class="n">p</span> <span class="k">if</span> <span class="n">do_raise</span><span class="p">:</span> <span class="n">logger</span><span class="o">.</span><span class="n">fatal</span><span class="p">(</span><span class="s1">&#39;String does not match priority type: </span><span class="si">{}</span><span class="s1">&#39;</span><span class="p">,</span> <span class="n">arg</span><span class="p">)</span> <span class="k">else</span><span class="p">:</span> <span class="n">logger</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="s1">&#39;String does not match priority type: </span><span class="si">{}</span><span class="s1">&#39;</span><span class="p">,</span> <span class="n">arg</span><span class="p">)</span> <span class="k">return</span> <span class="kc">None</span> <span class="k">return</span> <span class="kc">None</span> <span class="k">elif</span> <span class="n">accept_none</span> <span class="ow">and</span> <span class="n">arg</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span> <span class="k">return</span> <span class="kc">None</span> <span class="k">else</span><span class="p">:</span> <span class="n">logger</span><span class="o">.</span><span class="n">fatal</span><span class="p">(</span><span class="s1">&#39;Cannot convert to a priority: </span><span class="si">{0!s}</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">arg</span><span class="p">))</span></div> <span class="c1"># ---</span> <span class="k">class</span> <span class="nc">UserPriority</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span> <span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">pref</span><span class="p">,</span> <span class="n">name</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span> <span class="k">assert</span> <span class="n">pref</span> <span class="o">&gt;=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">_preference</span> <span class="o">=</span> <span class="n">pref</span> <span class="bp">self</span><span class="o">.</span><span class="n">_name</span> <span class="o">=</span> <span class="n">name</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">cplex_preference</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_preference</span> <span class="c1"># noinspection PyMethodMayBeStatic</span> <span class="k">def</span> <span class="nf">is_mandatory</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="kc">False</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">name</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_name</span> <span class="ow">or</span> <span class="s1">&#39;_user_&#39;</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">value</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_preference</span> <span class="k">def</span> <span class="nf">__str__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="n">name</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_name</span> <span class="n">sname</span> <span class="o">=</span> <span class="s1">&#39;</span><span class="si">%s</span><span class="s1">: &#39;</span> <span class="o">%</span> <span class="n">name</span> <span class="k">if</span> <span class="n">name</span> <span class="k">else</span> <span class="s1">&#39;&#39;</span> <span class="k">return</span> <span class="s1">&#39;UserPriority(</span><span class="si">{0}{1}</span><span class="s1">)&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">sname</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">_preference</span><span class="p">)</span> <span class="c1"># noinspection PyUnusedLocal,PyPropertyAccess</span> <span class="k">class</span> <span class="nc">_SubscriptionMixin</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span> <span class="vm">__slots__</span> <span class="o">=</span> <span class="p">()</span> <span class="c1"># INTERNAL:</span> <span class="c1"># This class is absolutely not meant to be directly instantiated</span> <span class="c1"># but used as a mixin</span> <span class="nd">@classmethod</span> <span class="k">def</span> <span class="nf">_new_empty_subscribers</span><span class="p">(</span><span class="bp">cls</span><span class="p">):</span> <span class="k">return</span> <span class="p">[]</span> <span class="k">def</span> <span class="nf">notify_used</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">user</span><span class="p">):</span> <span class="c1"># INTERNAL</span> <span class="bp">self</span><span class="o">.</span><span class="n">_subscribers</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">user</span><span class="p">)</span> <span class="n">notify_subscribed</span> <span class="o">=</span> <span class="n">notify_used</span> <span class="k">def</span> <span class="nf">notify_unsubscribed</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">subscriber</span><span class="p">):</span> <span class="c1"># 1 find index</span> <span class="k">for</span> <span class="n">s</span><span class="p">,</span> <span class="n">sc</span> <span class="ow">in</span> <span class="nb">enumerate</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_subscribers</span><span class="p">):</span> <span class="k">if</span> <span class="n">sc</span> <span class="ow">is</span> <span class="n">subscriber</span><span class="p">:</span> <span class="k">del</span> <span class="bp">self</span><span class="o">.</span><span class="n">_subscribers</span><span class="p">[</span><span class="n">s</span><span class="p">]</span> <span class="k">break</span> <span class="k">def</span> <span class="nf">clear_subscribers</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">_subscribers</span> <span class="o">=</span> <span class="p">[]</span> <span class="k">def</span> <span class="nf">is_in_use</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="nb">bool</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_subscribers</span><span class="p">)</span> <span class="nd">@property</span> <span class="k">def</span> <span class="nf">nb_subscribers</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="nb">len</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_subscribers</span><span class="p">)</span> <span class="k">def</span> <span class="nf">is_shared</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">nb_subscribers</span> <span class="o">&gt;=</span> <span class="mi">2</span> <span class="k">def</span> <span class="nf">is_used_by</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">obj</span><span class="p">):</span> <span class="c1"># lists are not optimal here, but we favor insertion: append is faster than set.add</span> <span class="k">return</span> <span class="nb">any</span><span class="p">(</span><span class="n">obj</span> <span class="ow">is</span> <span class="n">sc</span> <span class="k">for</span> <span class="n">sc</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">iter_subscribers</span><span class="p">())</span> <span class="k">def</span> <span class="nf">notify_modified</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">event</span><span class="p">):</span> <span class="k">for</span> <span class="n">s</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">_subscribers</span><span class="p">:</span> <span class="n">s</span><span class="o">.</span><span class="n">notify_expr_modified</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">event</span><span class="p">)</span> <span class="k">def</span> <span class="nf">iter_subscribers</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="nb">iter</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_subscribers</span><span class="p">)</span> <span class="k">def</span> <span class="nf">notify_replaced</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">new_expr</span><span class="p">):</span> <span class="k">for</span> <span class="n">s</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">_subscribers</span><span class="p">:</span> <span class="n">s</span><span class="o">.</span><span class="n">notify_expr_replaced</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">new_expr</span><span class="p">)</span> <span class="k">def</span> <span class="nf">grab_subscribers</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">other</span><span class="p">):</span> <span class="c1"># grab subscribers from another expression</span> <span class="c1"># typically when an expression is replaced by another.</span> <span class="k">for</span> <span class="n">s</span> <span class="ow">in</span> <span class="n">other</span><span class="o">.</span><span class="n">iter_subscribers</span><span class="p">():</span> <span class="bp">self</span><span class="o">.</span><span class="n">_subscribers</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">s</span><span class="p">)</span> <span class="c1"># delete all subscriptions on old</span> <span class="n">other</span><span class="o">.</span><span class="n">clear_subscribers</span><span class="p">()</span> <span class="k">class</span> <span class="nc">_BendersAnnotatedMixin</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span> <span class="vm">__slots__</span> <span class="o">=</span> <span class="p">()</span> <span class="k">def</span> <span class="nf">set_benders_annotation</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">group</span><span class="p">):</span> <span class="bp">self</span><span class="o">.</span><span class="n">_model</span><span class="o">.</span><span class="n">set_benders_annotation</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">group</span><span class="p">)</span> <span class="k">def</span> <span class="nf">get_benders_annotation</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_model</span><span class="o">.</span><span class="n">get_benders_annotation</span><span class="p">(</span><span class="bp">self</span><span class="p">)</span> </pre></div> </div> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../../../genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="../../../py-modindex.html" title="Python Module Index" >modules</a> |</li> <li class="nav-item nav-item-0"><a href="../../../index.html">DOcplex.MP: Mathematical Programming Modeling for Python V2.20 documentation</a> &#187;</li> <li class="nav-item nav-item-1"><a href="../../index.html" >Module code</a> &#187;</li> </ul> </div> <div class="footer" role="contentinfo"> &#169; Copyright 2016-2021, IBM&reg;. </div> </body> </html>
IBMDecisionOptimization/docplex-doc
docs/2.21.207/mp/_modules/docplex/mp/basic.html
HTML
apache-2.0
67,918
<!DOCTYPE HTML> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc --> <title>Uses of Class org.apache.sysds.runtime.matrix.data.RandomMatrixGenerator.PDF (Apache SystemDS 2.3.0-SNAPSHOT API)</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../../jquery/jquery-ui.css" title="Style"> <script type="text/javascript" src="../../../../../../../script.js"></script> <script type="text/javascript" src="../../../../../../../jquery/jszip/dist/jszip.min.js"></script> <script type="text/javascript" src="../../../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> <!--[if IE]> <script type="text/javascript" src="../../../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> <![endif]--> <script type="text/javascript" src="../../../../../../../jquery/jquery-3.5.1.js"></script> <script type="text/javascript" src="../../../../../../../jquery/jquery-ui.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.sysds.runtime.matrix.data.RandomMatrixGenerator.PDF (Apache SystemDS 2.3.0-SNAPSHOT API)"; } } catch(err) { } //--> var pathtoroot = "../../../../../../../"; var useModuleDirectories = true; loadScripts(document, 'script');</script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <header role="banner"> <nav role="navigation"> <div class="fixedNav"> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a id="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a id="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../index.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses.html">All&nbsp;Classes</a></li> </ul> <ul class="navListSearch"> <li><label for="search">SEARCH:</label> <input type="text" id="search" value="search" disabled="disabled"> <input type="reset" id="reset" value="reset" disabled="disabled"> </li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> </div> <a id="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> </div> <div class="navPadding">&nbsp;</div> <script type="text/javascript"><!-- $('.navPadding').css('padding-top', $('.fixedNav').css("height")); //--> </script> </nav> </header> <main role="main"> <div class="header"> <h2 title="Uses of Class org.apache.sysds.runtime.matrix.data.RandomMatrixGenerator.PDF" class="title">Uses of Class<br>org.apache.sysds.runtime.matrix.data.RandomMatrixGenerator.PDF</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary"> <caption><span>Packages that use <a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <th class="colFirst" scope="row"><a href="#org.apache.sysds.runtime.matrix.data">org.apache.sysds.runtime.matrix.data</a></th> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"> <section role="region"><a id="org.apache.sysds.runtime.matrix.data"> <!-- --> </a> <h3>Uses of <a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a> in <a href="../package-summary.html">org.apache.sysds.runtime.matrix.data</a></h3> <table class="useSummary"> <caption><span>Methods in <a href="../package-summary.html">org.apache.sysds.runtime.matrix.data</a> that return <a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colSecond" scope="col">Method</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a></code></td> <th class="colSecond" scope="row"><span class="typeNameLabel">RandomMatrixGenerator.PDF.</span><code><span class="memberNameLink"><a href="../RandomMatrixGenerator.PDF.html#valueOf(java.lang.String)">valueOf</a></span>&#8203;(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th> <td class="colLast"> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a>[]</code></td> <th class="colSecond" scope="row"><span class="typeNameLabel">RandomMatrixGenerator.PDF.</span><code><span class="memberNameLink"><a href="../RandomMatrixGenerator.PDF.html#values()">values</a></span>()</code></th> <td class="colLast"> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </tbody> </table> <table class="useSummary"> <caption><span>Methods in <a href="../package-summary.html">org.apache.sysds.runtime.matrix.data</a> with parameters of type <a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colSecond" scope="col">Method</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <th class="colSecond" scope="row"><span class="typeNameLabel">RandomMatrixGenerator.</span><code><span class="memberNameLink"><a href="../RandomMatrixGenerator.html#init(org.apache.sysds.runtime.matrix.data.RandomMatrixGenerator.PDF,int,int,int,double,double,double)">init</a></span>&#8203;(<a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a>&nbsp;pdf, int&nbsp;r, int&nbsp;c, int&nbsp;blen, double&nbsp;sp, double&nbsp;min, double&nbsp;max)</code></th> <td class="colLast"> <div class="block">Initializes internal data structures.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <th class="colSecond" scope="row"><span class="typeNameLabel">RandomMatrixGenerator.</span><code><span class="memberNameLink"><a href="../RandomMatrixGenerator.html#init(org.apache.sysds.runtime.matrix.data.RandomMatrixGenerator.PDF,int,int,int,double,double,double,double)">init</a></span>&#8203;(<a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a>&nbsp;pdf, int&nbsp;r, int&nbsp;c, int&nbsp;blen, double&nbsp;sp, double&nbsp;min, double&nbsp;max, double&nbsp;mean)</code></th> <td class="colLast"> <div class="block">Instantiates a Random number generator with a specific poisson mean</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static boolean</code></td> <th class="colSecond" scope="row"><span class="typeNameLabel">LibMatrixDatagen.</span><code><span class="memberNameLink"><a href="../LibMatrixDatagen.html#isShortcutRandOperation(double,double,double,org.apache.sysds.runtime.matrix.data.RandomMatrixGenerator.PDF)">isShortcutRandOperation</a></span>&#8203;(double&nbsp;min, double&nbsp;max, double&nbsp;sparsity, <a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a>&nbsp;pdf)</code></th> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> <table class="useSummary"> <caption><span>Constructors in <a href="../package-summary.html">org.apache.sysds.runtime.matrix.data</a> with parameters of type <a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Constructor</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../RandomMatrixGenerator.html#%3Cinit%3E(org.apache.sysds.runtime.matrix.data.RandomMatrixGenerator.PDF,int,int,int,double)">RandomMatrixGenerator</a></span>&#8203;(<a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a>&nbsp;pdf, int&nbsp;r, int&nbsp;c, int&nbsp;blen, double&nbsp;sp)</code></th> <td class="colLast"> <div class="block">Instantiates a Random number generator</div> </td> </tr> <tr class="rowColor"> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../RandomMatrixGenerator.html#%3Cinit%3E(org.apache.sysds.runtime.matrix.data.RandomMatrixGenerator.PDF,int,int,int,double,double,double)">RandomMatrixGenerator</a></span>&#8203;(<a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a>&nbsp;pdf, int&nbsp;r, int&nbsp;c, int&nbsp;blen, double&nbsp;sp, double&nbsp;min, double&nbsp;max)</code></th> <td class="colLast"> <div class="block">Instantiates a Random number generator</div> </td> </tr> <tr class="altColor"> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../RandomMatrixGenerator.html#%3Cinit%3E(org.apache.sysds.runtime.matrix.data.RandomMatrixGenerator.PDF,int,int,int,double,double,double,double)">RandomMatrixGenerator</a></span>&#8203;(<a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">RandomMatrixGenerator.PDF</a>&nbsp;pdf, int&nbsp;r, int&nbsp;c, int&nbsp;blen, double&nbsp;sp, double&nbsp;min, double&nbsp;max, double&nbsp;mean)</code></th> <td class="colLast"> <div class="block">Instantiates a Random number generator with a specific poisson mean</div> </td> </tr> </tbody> </table> </section> </li> </ul> </li> </ul> </div> </main> <footer role="contentinfo"> <nav role="navigation"> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a id="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a id="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../index.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../RandomMatrixGenerator.PDF.html" title="enum in org.apache.sysds.runtime.matrix.data">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> </div> <a id="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </nav> <p class="legalCopy"><small>Copyright &#169; 2021 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> </footer> </body> </html>
apache/incubator-systemml
docs/api/java/org/apache/sysds/runtime/matrix/data/class-use/RandomMatrixGenerator.PDF.html
HTML
apache-2.0
13,631
<!DOCTYPE html> <html itemscope lang="en-us"> <head><meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta charset="utf-8"> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><meta name="generator" content="Hugo 0.57.2" /> <meta property="og:title" content="Ways DevOps Could Be More Accessible" /> <meta name="twitter:title" content="Ways DevOps Could Be More Accessible"/> <meta itemprop="name" content="Ways DevOps Could Be More Accessible"><meta property="og:description" content="I probably am doing DevOps without even knowing it. When I discovered the DevOps Dictionary definition of “goat” I fell in love. My perspective on DevOps as a self-taught woman in technology and what the DevOps community could be more inclusive and accessible to me and other people I know." /> <meta name="twitter:description" content="I probably am doing DevOps without even knowing it. When I discovered the DevOps Dictionary definition of “goat” I fell in love. My perspective on DevOps as a self-taught woman in technology and what the DevOps community could be more inclusive and accessible to me and other people I know." /> <meta itemprop="description" content="I probably am doing DevOps without even knowing it. When I discovered the DevOps Dictionary definition of “goat” I fell in love. My perspective on DevOps as a self-taught woman in technology and what the DevOps community could be more inclusive and accessible to me and other people I know."><meta name="twitter:site" content="@devopsdays"> <meta property="og:type" content="talk" /> <meta property="og:url" content="/events/2017-kansascity/program/alison-stanton/" /><meta name="twitter:creator" content="@devopsdayskc" /><meta name="twitter:label1" value="Event" /> <meta name="twitter:data1" value="devopsdays Kansas City 2017" /><meta name="twitter:label2" value="Dates" /> <meta name="twitter:data2" value="September 21 - 22, 2017" /><meta property="og:image" content="https://www.devopsdays.org/img/sharing.jpg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:image" content="https://www.devopsdays.org/img/sharing.jpg" /> <meta itemprop="image" content="https://www.devopsdays.org/img/sharing.jpg" /> <meta property="fb:app_id" content="1904065206497317" /><meta itemprop="wordCount" content="50"> <title>Ways DevOps Could Be More Accessible - devopsdays Kansas City 2017 </title> <script> window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date; ga('create', 'UA-9713393-1', 'auto'); ga('send', 'pageview'); ga('create', 'UA-93890142-1', 'auto', 'clientTracker'); ga('clientTracker.send', 'pageview'); </script> <script async src='https://www.google-analytics.com/analytics.js'></script> <link href="/css/site.css" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700" rel="stylesheet"><link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png"> <link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png"> <link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png"> <link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png"> <link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png"> <link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png"> <link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png"> <link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png"> <link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png"> <link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/manifest.json"> <meta name="msapplication-TileColor" content="#ffffff"> <meta name="msapplication-TileImage" content="/ms-icon-144x144.png"> <meta name="theme-color" content="#ffffff"> <link href="/events/index.xml" rel="alternate" type="application/rss+xml" title="DevOpsDays" /> <link href="/events/index.xml" rel="feed" type="application/rss+xml" title="DevOpsDays" /> <script src=/js/devopsdays-min.js></script></head> <body lang=""> <nav class="navbar navbar-expand-md navbar-light"> <a class="navbar-brand" href="/"> <img src="/img/devopsdays-brain.png" height="30" class="d-inline-block align-top" alt="devopsdays Logo"> DevOpsDays </a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="navbar-nav mr-auto"><li class="nav-item global-navigation"><a class = "nav-link" href="/events">events</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/blog">blog</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/sponsor">sponsor</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/speaking">speaking</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/organizing">organizing</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/about">about</a></li></ul> </div> </nav> <nav class="navbar event-navigation navbar-expand-md navbar-light"> <a href="/events/2017-kansascity" class="nav-link">Kansas City</a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar2"> <span class="navbar-toggler-icon"></span> </button> <div class="navbar-collapse collapse" id="navbar2"> <ul class="navbar-nav"><li class="nav-item active"> <a class="nav-link" href="/events/2017-kansascity/location">location</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-kansascity/registration">registration</a> </li><li class="nav-item active"> <a class="nav-link" href="http://cfp.devopsdayskc.org/">propose</a> </li><li class="nav-item active"> <a class="nav-link" href="https://drive.google.com/file/d/0Bz33o_Xkz6GYQTF3Z1BFQmthdFU/view?usp=sharing">justification</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-kansascity/sponsor">sponsor</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-kansascity/program">program</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-kansascity/speakers">speakers</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-kansascity/contact">contact</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-kansascity/conduct">conduct</a> </li></ul> </div> </nav> <div class="container-fluid"> <div class="row"> <div class="col-md-12"><div class = "row"> <div class = "col-md-5 offset-md-1"> <h2 class="talk-page">Ways DevOps Could Be More Accessible</h2><div class="row"> <div class="col-md-12 youtube-video"> <div class="embed-responsive embed-responsive-16by9"> <iframe class="embed-responsive-item" src="https://www.youtube.com/embed/xrfCZsKnCXI"> </iframe> </div> </div> </div><br /><br /><br /> <span class="talk-page content-text"> <p>I probably am doing DevOps without even knowing it. When I discovered the DevOps Dictionary definition of “goat” I fell in love. My perspective on DevOps as a self-taught woman in technology and what the DevOps community could be more inclusive and accessible to me and other people I know.</p> </span><div class = "row"> <div class = "col" style="max-width:100%"> <h2 class="talk-page">Speakerdeck</h2> <a class="embedly-card" data-card-controls="0" href="https://speakerdeck.com/devopsdayskc/alison-stanton-ways-devops-could-be-more-accessible">Ways DevOps Could Be More Accessible</a> <script async src="//cdn.embedly.com/widgets/platform.js" charset="UTF-8"></script> </div> </div></div> <div class = "col-md-3 offset-md-1"><h2 class="talk-page">Speaker</h2><img src = "/events/2017-kansascity/speakers/alison-stanton.jpg" class="img-fluid" alt="alison-stanton"/><br /><br /><h4 class="talk-page"><a href = "/events/2017-kansascity/speakers/alison-stanton"> Alison Stanton </a></h4><a href = "https://twitter.com/StantonVentures"><i class="fa fa-twitter fa-2x" aria-hidden="true"></i>&nbsp;</a><a href = "http://www.stantonventures.com/"><i class="fa fa-home fa-2x" aria-hidden="true"></i>&nbsp;</a><br /> <span class="talk-page content-text">As Founder and Chief Problem Solver at Stanton Ventures, Alison Stanton focuses on business intelligence reporting, product measurement, and process improvement through automation. She makes data <a href = "https://www.devopsdays.org/events/2017-kansascity/speakers/alison-stanton/">...</a></span> </div> </div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Gold Sponsors</h4><a href = "/events/2017-kansascity/sponsor" class="sponsor-cta"><i>Join as Gold Sponsor!</i> </a></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.pivotal.io"><img src = "/img/sponsors/pivotal-before-20190307.png" alt = "Pivotal" title = "Pivotal" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.appdynamics.com/"><img src = "/img/sponsors/appdynamics-before-20180316.png" alt = "AppDynamics" title = "AppDynamics" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://c2fo.com"><img src = "/img/sponsors/c2fo.png" alt = "C2FO" title = "C2FO" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.redhat.com"><img src = "/img/sponsors/redhat-before-20190528.png" alt = "Red Hat, Inc" title = "Red Hat, Inc" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.signifai.io/"><img src = "/img/sponsors/signifai.png" alt = "signifai" title = "signifai" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://chef.io"><img src = "/img/sponsors/chef.png" alt = "Chef Software, Inc" title = "Chef Software, Inc" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.dstsystems.com/"><img src = "/img/sponsors/dstsystems.png" alt = "DST Systems" title = "DST Systems" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.newrelic.com/culture"><img src = "/img/sponsors/newrelic.png" alt = "New Relic" title = "New Relic" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Evening Social Sponsors</h4><a href = "/events/2017-kansascity/sponsor" class="sponsor-cta"><i>Join as Evening Social Sponsor!</i> </a></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://gitlab.com"><img src = "/img/sponsors/gitlab.png" alt = "GitLab" title = "GitLab" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Silver Sponsors</h4><a href = "/events/2017-kansascity/sponsor" class="sponsor-cta"><i>Join as Silver Sponsor!</i> </a></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.newcontext.com"><img src = "/img/sponsors/new-context.png" alt = "New Context" title = "New Context" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.adaptivesg.com/"><img src = "/img/sponsors/adaptivesg.png" alt = "Adaptive Solutions Group" title = "Adaptive Solutions Group" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.netapp.com/us/"><img src = "/img/sponsors/netapp.png" alt = "NetApp" title = "NetApp" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.techtowntraining.com/"><img src = "/img/sponsors/techtowntraining-before-20190407.png" alt = "TechTown Training" title = "TechTown Training" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.cyberark.com/"><img src = "/img/sponsors/cyberark-before-20180203.png" alt = "Cyberark" title = "Cyberark" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.pagerduty.com/"><img src = "/img/sponsors/pagerduty.png" alt = "PagerDuty" title = "PagerDuty" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Bronze Sponsors</h4><a href = "/events/2017-kansascity/sponsor" class="sponsor-cta"><i>Join as Bronze Sponsor!</i> </a></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://engineering.cerner.com"><img src = "/img/sponsors/cerner.png" alt = "Cerner" title = "Cerner" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://aws.amazon.com/"><img src = "/img/sponsors/aws-before-20180313.png" alt = "Amazon Web Services" title = "Amazon Web Services" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.tgs-mtc.com/"><img src = "/img/sponsors/tgs.png" alt = "Technology Group Solutions" title = "Technology Group Solutions" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://cloud.google.com"><img src = "/img/sponsors/googlecloud-before-20171005.png" alt = "Google Cloud" title = "Google Cloud" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://teksystems.com/"><img src = "/img/sponsors/teksystems.png" alt = "TEKsystems" title = "TEKsystems" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.vml.com/"><img src = "/img/sponsors/vml.png" alt = "VML" title = "VML" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://bluebaytechnologies.com/"><img src = "/img/sponsors/bluebaytechnologies.png" alt = "Blue Bay Technologies" title = "Blue Bay Technologies" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Community Sponsors</h4><a href = "/events/2017-kansascity/sponsor" class="sponsor-cta"><i>Join as Community Sponsor!</i> </a></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://edwardscampus.ku.edu/"><img src = "/img/sponsors/2016-ku.png" alt = "The University of Kansas - Edwards Campus - School of Engineering" title = "The University of Kansas - Edwards Campus - School of Engineering" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.arresteddevops.com"><img src = "/img/sponsors/ado.png" alt = "ado" title = "ado" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://softwaredefinedtalk.com/"><img src = "/img/sponsors/softwaredefinedtalk.png" alt = "Software Defined Talk" title = "Software Defined Talk" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://messengercoffee.co/"><img src = "/img/sponsors/messenger-coffee.png" alt = "Messenger Coffee" title = "Messenger Coffee" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.codero.com/"><img src = "/img/sponsors/codero.png" alt = "Codero" title = "Codero" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://devopsinstitute.com"><img src = "/img/sponsors/devopsinstitute.png" alt = "devopsinstitute" title = "devopsinstitute" class="img-fluid"></a> </div></div><br /> </div></div> </div> <nav class="navbar bottom navbar-light footer-nav-row" style="background-color: #bfbfc1;"> <div class = "row"> <div class = "col-md-12 footer-nav-background"> <div class = "row"> <div class = "col-md-6 col-lg-3 footer-nav-col"> <h3 class="footer-nav">@DEVOPSDAYS</h3> <div> <a class="twitter-timeline" data-dnt="true" href="https://twitter.com/devopsdays/lists/devopsdays" data-chrome="noheader" height="440"></a> <script> ! function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], p = /^http:/.test(d.location) ? 'http' : 'https'; if (!d.getElementById(id)) { js = d.createElement(s); js.id = id; js.src = p + "://platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs); } }(document, "script", "twitter-wjs"); </script> </div> </div> <div class="col-md-6 col-lg-3 footer-nav-col footer-content"> <h3 class="footer-nav">BLOG</h3><a href = "https://www.devopsdays.org/blog/2019/05/10/10-years-of-devopsdays/"><h1 class = "footer-heading">10 years of devopsdays</h1></a><h2 class="footer-heading">by Kris Buytaert - 10 May, 2019</h2><p class="footer-content">It&rsquo;s hard to believe but it is almost 10 years ago since #devopsdays happened for the first time in Gent. Back then there were almost 70 of us talking about topics that were of interest to both Operations and Development, we were exchanging our ideas and experiences `on how we were improving the quality of software delivery. Our ideas got started on the crossroads of Open Source, Agile and early Cloud Adoption.</p><a href = "https://www.devopsdays.org/blog/"><h1 class = "footer-heading">Blogs</h1></a><h2 class="footer-heading">10 May, 2019</h2><p class="footer-content"></p><a href="https://www.devopsdays.org/blog/index.xml">Feed</a> </div> <div class="col-md-6 col-lg-3 footer-nav-col"> <h3 class="footer-nav">CFP OPEN</h3><a href = "/events/2019-campinas" class = "footer-content">Campinas</a><br /><a href = "/events/2019-macapa" class = "footer-content">Macapá</a><br /><a href = "/events/2019-shanghai" class = "footer-content">Shanghai</a><br /><a href = "/events/2019-recife" class = "footer-content">Recife</a><br /><a href = "/events/2020-charlotte" class = "footer-content">Charlotte</a><br /><a href = "/events/2020-prague" class = "footer-content">Prague</a><br /><a href = "/events/2020-tokyo" class = "footer-content">Tokyo</a><br /><a href = "/events/2020-salt-lake-city" class = "footer-content">Salt Lake City</a><br /> <br />Propose a talk at an event near you!<br /> </div> <div class="col-md-6 col-lg-3 footer-nav-col"> <h3 class="footer-nav">About</h3> devopsdays is a worldwide community conference series for anyone interested in IT improvement.<br /><br /> <a href="/about/" class = "footer-content">About devopsdays</a><br /> <a href="/privacy/" class = "footer-content">Privacy Policy</a><br /> <a href="/conduct/" class = "footer-content">Code of Conduct</a> <br /> <br /> <a href="https://www.netlify.com"> <img src="/img/netlify-light.png" alt="Deploys by Netlify"> </a> </div> </div> </div> </div> </nav> <script> $(document).ready(function () { $("#share").jsSocials({ shares: ["email", {share: "twitter", via: 'devopsdayskc'}, "facebook", "linkedin"], text: 'devopsdays Kansas City - 2017', showLabel: false, showCount: false }); }); </script> </body> </html>
gomex/devopsdays-web
static/events/2017-kansascity/program/alison-stanton/index.html
HTML
apache-2.0
21,225
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_111) on Thu Aug 18 01:51:14 UTC 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>org.apache.hadoop.nfs.nfs3.response Class Hierarchy (Apache Hadoop Main 2.7.3 API)</title> <meta name="date" content="2016-08-18"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.apache.hadoop.nfs.nfs3.response Class Hierarchy (Apache Hadoop Main 2.7.3 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/apache/hadoop/nfs/nfs3/request/package-tree.html">Prev</a></li> <li><a href="../../../../../../org/apache/hadoop/oncrpc/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/hadoop/nfs/nfs3/response/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">Hierarchy For Package org.apache.hadoop.nfs.nfs3.response</h1> <span class="strong">Package Hierarchies:</span> <ul class="horizontal"> <li><a href="../../../../../../overview-tree.html">All Packages</a></li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/apache/hadoop/nfs/nfs3/request/package-tree.html">Prev</a></li> <li><a href="../../../../../../org/apache/hadoop/oncrpc/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/hadoop/nfs/nfs3/response/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</small></p> </body> </html>
TK-TarunW/ecosystem
hadoop-2.7.3/share/doc/hadoop/api/org/apache/hadoop/nfs/nfs3/response/package-tree.html
HTML
apache-2.0
4,475
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <!-- basic meta information --> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="Content-Type" content="application/json; charset=utf-8"> <meta content="width=device-width,initial-scale=1,maximum-scale=5,user-scalable=yes" name="viewport"> <title>My ARchitect World</title> <script src="architect://architect.js"></script> <!-- jquery mobile CSS --> <link rel="stylesheet" href="jquery/jquery.mobile-1.3.2.min.css" /> <!-- required to set background transparent & enable "click through" --> <link rel="stylesheet" href="jquery/jquery-mobile-transparent-ui-overlay.css" /> <!-- jquery JS files --> <script type="text/javascript" src="jquery/jquery-1.9.1.min.js"></script> <script type="text/javascript" src="jquery/jquery.mobile-1.3.2.min.js"></script> <!-- marker representation--> <script src="js/marker.js"></script> <!-- World logic--> <script type="text/javascript" src="js/poiwithlabel.js"></script> </head> <body > <div data-role="page" id="page1" style="background: none;" > <!-- MAIN PAGE CONTENT --> <!-- transparent footer--> <div data-role="footer" class="ui-bar" data-theme="f" data-position="fixed" style="text-align:center;"> <!-- small status-button --> <a style="text-align:right;" id="popupInfoButton" href="#popupInfo" data-rel="popup" data-role="button" class="ui-icon-alt" data-inline="true" data-transition="pop" data-icon="alert" data-theme="e" data-iconpos="notext">Log</a> </p> <!-- popup displayed when button clicked --> <div data-role="popup" id="popupInfo" class="ui-content" data-theme="e" style="max-width:350px;"> <p style="text-align:right;" id="status-message">Trying to find out where you are</p> </div> </div> </div> </body> </html>
Redth/Wikitude.Xamarin
source/samples/iOS/WikitudeSampleiOS/ARchitectExamples/3_PointOfInterest_2_PoiWithLabel/index.html
HTML
apache-2.0
2,128
<h2>Health History</h2> <div class="iin-logo"> <img src="assets/images/IIN_logo.jpg" alt="Institute for Integrative Nutrition Logo" /> </div> <div ng-controller="collapseCtrl"> <button class="section-collapse" ng-click="isCollapsed = !isCollapsed"> <span>Privacy Statement</span> <span class="collapse-arrow fa fa-arrow-circle-down" ng-class="{'arrow-up': !isCollapsed}" aria-hidden="true"></span> </button> <div uib-collapse="isCollapsed" class="more-info-collapse collapsible"> <p> Your privacy is important to me. All of your information will be kept strictly between us. I will only use your personal contact information to provide you with the best possible service. If you have any questions, comments, or concerns, please contact me. </p> <contact-me /> </div> </div> <p class="form-required">* Required Fields</p> <p class="form-error" ng-if="errors"><span class="fa fa-warning" aria-hidden="true"></span> Please correct the errors below:</p> <form class="health-history"> <h3>Personal Information</h3> <div class="form-group first-name"> <p class="form-error" ng-if="errors.firstName"><span class="fa fa-warning" aria-hidden="true"></span> {{errors.firstName}}</p> <label for="first-name">* First Name</label> <input required type="text" id="first-name" ng-class="{invalid: errors.firstName}" class="form-control" ng-model="health.firstName" maxlength="15" /> </div> <div class="form-group last-name"> <p class="form-error" ng-if="errors.lastName"><span class="fa fa-warning" aria-hidden="true"></span> {{errors.lastName}}</p> <label for="last-name">* Last Name</label> <input required type="text" id="last-name" ng-class="{invalid: errors.lastName}" class="form-control" ng-model="health.lastName" maxlength="15" /> </div> <div class="form-inline"> <div class="form-group"> <p class="form-error" ng-if="errors.email"><span class="fa fa-warning" aria-hidden="true"></span> {{errors.email}}</p> <label for="email">* Email</label> <input required type="email" id="email" ng-class="{invalid: errors.email}" class="form-control" ng-model="health.email" /> </div> <div class="form-group"> <label for="email-freq">How often do you check email?</label> <input type="text" id="email-freq" class="form-control" ng-model="health.emailFreq" /> </div> </div> <p class="label">Phone <span class="format">xxx-xxx-xxxx or (xxx)xxx-xxxx</span></p> <div class="form-inline"> <div class="form-group"> <p class="form-error" ng-if="errors.homePhone"><span class="fa fa-warning" aria-hidden="true"></span> {{errors.homePhone}}</p> <label for="home-phone" aria-label="Home Phone">Home</label> <input type="tel" id="home-phone" ng-class="{invalid: errors.homePhone}" class="form-control" ng-model="health.homePhone" /> </div> <div class="form-group"> <p class="form-error" ng-if="errors.workPhone"><span class="fa fa-warning" aria-hidden="true"></span> {{errors.workPhone}}</p> <label for="work-phone" aria-label="Work Phone">Work</label> <input type="tel" id="work-phone" ng-class="{invalid: errors.workPhone}" class="form-control" ng-model="health.workPhone" /> </div> <div class="form-group"> <p class="form-error" ng-if="errors.cellPhone"><span class="fa fa-warning" aria-hidden="true"></span> {{errors.cellPhone}}</p> <label for="cell-phone" aria-label="Mobile Phone">Mobile</label> <input type="tel" id="cell-phone" ng-class="{invalid: errors.cellPhone}" class="form-control" ng-model="health.cellPhone" /> </div> </div> <div class="form-inline"> <div class="form-group"> <label for="birthdate">Birthdate</label> <div class="input-group"> <input type="tel" id="birthdate" uib-datepicker-popup="MM/dd/yyyy" is-open="datepickerOpen" ng-class="{invalid: errors.birthdate}" class="form-control click-input" datepicker-options="dateOptions" ng-model="health.birthdate" close-text="Close" readonly ng-click="datepickerOpen = true" ng-focus="datepickerOpen = true" /> <span class="input-group-btn"> <button type="button" class="btn btn-default" ng-click="datepickerOpen = true"><i class="fa fa-calendar"></i></button> </span> </div> </div> <div class="form-group"> <p class="form-error" ng-if="errors.birthplace"><span class="fa fa-warning" aria-hidden="true"></span> {{errors.birthplace}}</p> <label for="birthplace">Place of Birth</label> <input type="text" id="birthplace" ng-class="{invalid: errors.birthplace}" class="form-control" ng-model="health.birthplace" /> </div> <div class="grouped-inputs"> <p class="label">Height</p> <div class="form-group"> <label for="height-feet" class="sr-only">Height - feet</label> <div class="input-group"> <input type="number" ng-change="restrictTo(2, 'heightFeet')" id="height-feet" class="form-control" ng-model="health.heightFeet" maxlength="2" width="2"/> <span class="input-group-addon" aria-hidden="true">ft.</span> </div> </div> <div class="form-group"> <label for="height-inches" class="sr-only">Height - inches</label> <div class="input-group"> <input type="number" ng-change="restrictTo(2, 'heightInches')" id="height-inches" class="form-control" ng-model="health.heightInches" maxlength="2" width="2"/> <span class="input-group-addon" aria-hidden="true">in.</span> </div> </div> </div> </div> <div class="form-inline"> <div class="form-group"> <label for="curr-weight" aria-label="Current Weight in pounds">Current Weight</label> <div class="input-group"> <input type="number" ng-change="restrictTo(3, 'currWeight')" id="curr-weight" class="form-control" ng-model="health.currWeight" /> <span class="input-group-addon" aria-hidden="true">lbs.</span> </div> </div> <div class="form-group"> <label for="six-month-weight" aria-label="Weight six month ago in pounds">Weight Six Months Ago</label> <div class="input-group"> <input type="number" ng-change="restrictTo(3, 'sixMonthWeight')" id="six-month-weight" class="form-control" ng-model="health.sixMonthWeight" /> <span class="input-group-addon" aria-hidden="true">lbs.</span> </div> </div> <div class="form-group"> <label for="year-weight" aria-label="Weight one year ago in pounds">One Year Ago</label> <div class="input-group"> <input type="number" ng-change="restrictTo(3, 'yearWeight')" id="year-weight" class="form-control" ng-model="health.yearWeight" /> <span class="input-group-addon" aria-hidden="true">lbs.</span> </div> </div> </div> <div class="form-inline"> <fieldset> <legend>Would you like your weight to be different?</legend> <div class="input-group"> <span class="input-group-addon" ng-click="health.weightDiff = 'yes'"> <input type="radio" id="weight-diff-yes" ng-model="health.weightDiff" value="yes" /> </span> <label for="weight-diff-yes" class="form-control">Yes</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.weightDiff = 'no'"> <input type="radio" id="weight-diff-no" ng-model="health.weightDiff" value="no" /> </span> <label for="weight-diff-no" class="form-control">No</label> </div> </fieldset> <fieldset ng-if="health.weightDiff === 'yes'"> <legend>If so, what?</legend> <p class="form-error" ng-if="errors.weightDiffWhat"><span class="fa fa-warning" aria-hidden="true"></span> {{errors.weightDiffWhat}}</p> <div class="input-group"> <span class="input-group-addon" ng-click="health.weightDiffWhat = 'higher'"> <input type="radio" id="weightDiffWhat" ng-model="health.weightDiffWhat" value="higher" /> </span> <label for="weight-diff-heigher" class="form-control">Higher</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.weightDiffWhat = 'lower'"> <input type="radio" id="weightDiffWhat" ng-model="health.weightDiffWhat" value="lower" /> </span> <label for="weight-diff-heigher" class="form-control">Lower</label> </div> </fieldset> </div> <h3>Social Information</h3> <fieldset> <legend>Relationship Status</legend> <div class="input-group"> <span class="input-group-addon" ng-click="health.relStatus = 'single'"> <input type="radio" id="rel-status-single" ng-model="health.relStatus" value="single" /> </span> <label for="rel-status-single" class="form-control">Single</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.relStatus = 'married'"> <input type="radio" id="rel-status-married" ng-model="health.relStatus" value="married" /> </span> <label for="rel-status-married" class="form-control">Married</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.relStatus = 'divorced'"> <input type="radio" id="rel-status-divorced" ng-model="health.relStatus" value="divorced" /> </span> <label for="rel-status-divorced" class="form-control">Divorced</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.relStatus = 'widowed'"> <input type="radio" id="rel-status-widowed" ng-model="health.relStatus" value="widowed" /> </span> <label for="rel-status-widowed" class="form-control">Widowed</label> </div> </fieldset> <div class="form-group"> <label for="num-kids" aria-label="Number of Children">No. of Children:</label> <div class="input-group"> <input type="number" ng-change="restrictTo(2, 'numKids')" id="num-kids" class="form-control" ng-model="health.numKids" /> </div> </div> <div class="form-group"> <label for="num-pets" aria-label="Number of Pets">No. of Pets:</label> <div class="input-group"> <input type="number" ng-change="restrictTo(2, 'numPets')" id="num-pets" class="form-control" ng-model="health.numPets" /> </div> </div> <div class="form-group"> <p class="form-error" ng-if="errors.occupation"><span class="fa fa-warning" aria-hidden="true"></span> {{errors.occupation}}</p> <label for="occupation">Occupation</label> <input type="text" id="occupation" ng-class="{invalid: errors.occupation}" class="form-control" ng-model="health.occupation" maxlength="20" /> </div> <div class="form-group"> <label for="work-hours">Hours of Work per Week</label> <input type="number" ng-change="restrictTo(2, 'workHours')" id="work-hours" class="form-control" ng-model="health.workHours" /> </div> <h3>Health Information</h3> <div class="form-group"> <label for="health-concerns">Please list your main health concerns:</label> <textarea id="health-concerns" class="form-control" ng-class="{invalid: errors.healthConcerns}" ng-model="health.healthConcerns"></textarea> </div> <div class="form-group"> <label for="other-concerns">Other concerns and/or goals:</label> <textarea id="other-concerns" class="form-control" ng-class="{invalid: errors.otherConcerns}" ng-model="health.otherConcerns"></textarea> </div> <div class="form-group"> <label for="feel-best">At what point in your life did you feel best?</label> <input type="text" id="feel-best" ng-class="{invalid: errors.feelBest}" class="form-control" ng-model="health.feelBest" maxlength="30" /> </div> <div class="form-group"> <label for="illnesses">Any serious illnesses/hospitalizations/injuries?</label> <textarea id="illnesses" class="form-control" ng-class="{invalid: errors.illnesses}" ng-model="health.illnesses"></textarea> </div> <div class="form-group"> <label for="health-mother">How is/was the health of your mother?</label> <input type="text" id="health-mother" ng-class="{invalid: errors.healthMother}" class="form-control" ng-model="health.healthMother" maxlength="30" /> </div> <div class="form-group"> <label for="health-father">How is/was the health of your father?</label> <input type="text" id="health-father" ng-class="{invalid: errors.healthFather}" class="form-control" ng-model="health.healthFather" maxlength="30" /> </div> <div class="form-group"> <p class="form-error" ng-if="errors.ancestry"><span class="fa fa-warning" aria-hidden="true"></span> {{errors.ancestry}}</p> <label for="ancestry">What is your ancestry?</label> <input type="text" id="ancestry" ng-class="{invalid: errors.ancestry}" class="form-control" ng-model="health.ancestry" maxlength="20" /> </div> <fieldset> <legend>What blood type are you?</legend> <div class="input-group"> <span class="input-group-addon" ng-click="health.bloodType = 'O+'"> <input type="radio" id="blood-type-o-plus" ng-model="health.bloodType" value="O+" /> </span> <label for="blood-type-o-plus" class="form-control">O+</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.bloodType = 'O-'"> <input type="radio" id="blood-type-o-neg" ng-model="health.bloodType" value="O-" /> </span> <label for="blood-type-o-neg" class="form-control">O-</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.bloodType = 'A+'"> <input type="radio" id="blood-type-a-plus" ng-model="health.bloodType" value="A+" /> </span> <label for="blood-type-a-plus" class="form-control">A+</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.bloodType = 'A-'"> <input type="radio" id="blood-type-a-neg" ng-model="health.bloodType" value="A-" /> </span> <label for="blood-type-a-neg" class="form-control">A-</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.bloodType = 'B+'"> <input type="radio" id="blood-type-b-plus" ng-model="health.bloodType" value="B+" /> </span> <label for="blood-type-b-plus" class="form-control">B+</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.bloodType = 'B-'"> <input type="radio" id="blood-type-b-neg" ng-model="health.bloodType" value="B-" /> </span> <label for="blood-type-b-neg" class="form-control">B-</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.bloodType = 'AB+'"> <input type="radio" id="blood-type-ab-plus" ng-model="health.bloodType" value="AB+" /> </span> <label for="blood-type-ab-plus" class="form-control">AB+</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.bloodType = 'AB-'"> <input type="radio" id="blood-type-ab-neg" ng-model="health.bloodType" value="AB-" /> </span> <label for="blood-type-ab-neg" class="form-control">AB-</label> </div> </fieldset> <fieldset> <legend>How is your sleep?</legend> <div class="input-group"> <span class="input-group-addon" ng-click="health.sleep = 'poor'"> <input type="radio" id="sleep-poor" ng-model="health.sleep" value="poor" /> </span> <label for="sleep-poor" class="form-control">Poor</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.sleep = 'good'"> <input type="radio" id="sleep-good" ng-model="health.sleep" value="good" /> </span> <label for="sleep-good" class="form-control">Good</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.sleep = 'great'"> <input type="radio" id="sleep-great" ng-model="health.sleep" value="great" /> </span> <label for="sleep-great" class="form-control">Great</label> </div> </fieldset> <div class="form-group"> <label for="sleep-hours">How many hours do you sleep?</label> <div class="input-group"> <input type="number" ng-change="restrictTo(2, 'sleepHours')" id="sleep-hours" class="form-control" ng-model="health.sleepHours" /> </div> </div> <fieldset> <legend>Do you wake up at night?</legend> <div class="input-group"> <span class="input-group-addon" ng-click="health.sleepWake = 'yes'"> <input type="radio" id="sleep-wake-yes" ng-model="health.sleepWake" value="yes" /> </span> <label for="sleep-wake-yes" class="form-control">Yes</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.sleepWake = 'no'"> <input type="radio" id="sleep-wake-no" ng-model="health.sleepWake" value="no" /> </span> <label for="sleep-wake-no" class="form-control">No</label> </div> </fieldset> <div class="form-group" ng-if="health.sleepWake === 'yes'"> <label for="whyWake" aria-label="Why do you wake up at night?">Why?</label> <input type="text" id="whyWake" ng-class="{invalid: errors.whyWake}" class="form-control" ng-model="health.whyWake" maxlength="30" /> </div> <div class="form-group"> <label for="pain">Any pain, stiffness, or swelling?</label> <input type="text" id="pain" ng-class="{invalid: errors.pain}" class="form-control" ng-model="health.pain" maxlength="30" /> </div> <div class="form-group"> <label for="gas">Constipation/Diarrhea/Gas?</label> <input type="text" id="gas" ng-class="{invalid: errors.gas}" class="form-control" ng-model="health.gas" maxlength="30" /> </div> <div class="form-group"> <label for="allergies">Allergies or sensitivies? Please explain:</label> <input type="text" id="allergies" ng-class="{invalid: errors.allergies}" class="form-control" ng-model="health.allergies" maxlength="30" /> </div> <div class="form-group"> <label for="meds">Do you take any supplements or medications? Please list:</label> <textarea id="meds" class="form-control" ng-class="{invalid: errors.meds}" ng-model="health.meds"></textarea> </div> <div class="form-group"> <label for="therapies">Any healers, helpers, or therapies with which you are involved? Please list:</label> <textarea id="therapies" class="form-control" ng-class="{invalid: errors.therapies}" ng-model="health.therapies"></textarea> </div> <div class="form-group"> <label for="exercise">What role do sports and exercise play in your life?</label> <textarea id="exercise" class="form-control" ng-class="{invalid: errors.exercise}" ng-model="health.exercise"></textarea> </div> <h3>Food Information</h3> <h4 class="group-heading" aria-hidden="true">What do you typically eat?</h4> <div class="form-inline"> <div class="form-group"> <label for="breakfast" aria-label="What do you eat for breakfast?">Breakfast</label> <textarea id="breakfast" class="form-control" ng-class="{invalid: errors.breakfast}" ng-model="health.breakfast"></textarea> </div> <div class="form-group"> <label for="lunch" aria-label="What do you eat for lunch?">Lunch</label> <textarea id="lunch" class="form-control" ng-class="{invalid: errors.lunch}" ng-model="health.lunch"></textarea> </div> <div class="form-group"> <label for="dinner" aria-label="What do you eat for dinner?">Dinner</label> <textarea id="dinner" class="form-control" ng-class="{invalid: errors.dinner}" ng-model="health.dinner"></textarea> </div> <div class="form-group"> <label for="snacks" aria-label="What do you eat for snacks?">Snacks</label> <textarea id="snacks" class="form-control" ng-class="{invalid: errors.snacks}" ng-model="health.snacks"></textarea> </div> <div class="form-group"> <label for="liquids" aria-label="What liquids do you drink?">Liquids</label> <textarea id="liquids" class="form-control" ng-class="{invalid: errors.liquids}" ng-model="health.liquids"></textarea> </div> </div> <fieldset> <legend>Will your family and/or friends be supportive of your desire to make food and/or lifestyle changes?</legend> <div class="input-group"> <span class="input-group-addon" ng-click="health.supportive = 'yes'"> <input type="radio" id="supportive-yes" ng-model="health.supportive" value="yes" /> </span> <label for="supportive-yes" class="form-control">Yes</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.supportive = 'no'"> <input type="radio" id="supportive-no" ng-model="health.supportive" value="no" /> </span> <label for="supportive-no" class="form-control">No</label> </div> </fieldset> <div class="form-inline"> <fieldset> <legend>Do you cook?</legend> <div class="input-group"> <span class="input-group-addon" ng-click="health.cook = 'yes'"> <input type="radio" id="cook-yes" ng-model="health.cook" value="yes" /> </span> <label for="cook-yes" class="form-control">Yes</label> </div> <div class="input-group"> <span class="input-group-addon" ng-click="health.cook = 'no'"> <input type="radio" id="cook-no" ng-model="health.cook" value="no" /> </span> <label for="cook-no" class="form-control">No</label> </div> </fieldset> <div class="form-group"> <label for="home-cook">What percentage of your food is home-cooked?</label> <div class="input-group"> <input type="number" ng-change="restrictTo(3, 'homeCook')" id="home-cook" class="form-control" ng-model="health.homeCook" /> <span class="input-group-addon" aria-hidden="true">%</span> </div> </div> </div> <div class="form-group"> <label for="rest-food">Where do you get the rest from?</label> <input type="text" id="rest-food" ng-class="{invalid: errors.restFood}" class="form-control" ng-model="health.restFood" maxlength="30" /> </div> <div class="form-group"> <label for="crave">Do you crave sugar, coffee, cigarettes, or have any major addictions?</label> <textarea id="crave" class="form-control" ng-class="{invalid: errors.crave}" ng-model="health.crave"></textarea> </div> <div class="form-group"> <label for="improve">The most important thing I should do to improve my health is:</label> <textarea id="improve" class="form-control" ng-class="{invalid: errors.improve}" ng-model="health.improve"></textarea> </div> <h3>Additional Comments</h3> <div class="form-group"> <label for="improve">Anything else you'd like to share?</label> <textarea id="comments" class="form-control" ng-class="{invalid: errors.comments}" ng-model="health.comments"></textarea> </div> <div class="g-recaptcha" ng-attr-id="{{captchaId}}"></div> </form> <button ng-if="!submitted" type="button" id="submit" ng-click="submit()">Submit</button> <p>&copy; Integrative Nutrition</p>
keithb418/livesugarless
src/html/pages/healthHistory.html
HTML
apache-2.0
25,218
<div> <clr-dropdown> <button class="btn btn-link btn-font" clrDropdownToggle (click)="onclick()"> {{ 'PUSH_IMAGE.TITLE' | translate | uppercase}} <clr-icon shape="caret down"></clr-icon> </button> <clr-dropdown-menu *clrIfOpen [clrPosition]="'bottom-right'" class="dropdown-width"> <div class="commands-container"> <section> <span><h5 class="h5-override">{{ 'PUSH_IMAGE.TITLE' | translate }}</h5></span> <span> <clr-tooltip> <clr-icon clrTooltipTrigger shape="info-circle" class="info-tips-icon" size="24"></clr-icon> <clr-tooltip-content [clrPosition]="'top-right'" [clrSize]="'md'" *clrIfOpen> {{ 'PUSH_IMAGE.TOOLTIP' | translate }} </clr-tooltip-content> </clr-tooltip> </span> </section> <section> <hbr-inline-alert #copyAlert></hbr-inline-alert> </section> <section> <article class="commands-section"> <hbr-copy-input #tagCopy (onCopyError)="onCpError($event)" inputSize="50" headerTitle="{{ 'PUSH_IMAGE.TAG_COMMAND' | translate }}" defaultValue="{{tagCommand}}"></hbr-copy-input> </article> <article class="commands-section"> <hbr-copy-input #pushCopy (onCopyError)="onCpError($event)" inputSize="50" headerTitle="{{ 'PUSH_IMAGE.PUSH_COMMAND' | translate }}" defaultValue="{{pushCommand}}"></hbr-copy-input> </article> </section> </div> </clr-dropdown-menu> </clr-dropdown> </div>
steven-zou/harbor
src/portal/lib/src/push-image/push-image.component.html
HTML
apache-2.0
1,821
<!DOCTYPE html> <html ng-app="BlocItOff"> <head lang="en"> <meta charset="UTF-8"> <title>BlocItOff</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js"></script> <script src="https://cdn.firebase.com/js/client/2.2.9/firebase.js"></script> <script src="https://cdn.firebase.com/libs/angularfire/1.1.2/angularfire.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.15/angular-ui-router.min.js"></script> <link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="/css/style.css"> <script src="/js/app.js"></script> </head> <body> <nav id="navbar">BlocItOff</nav> <div ui-view></div> </body> </html>
cjmatson/bloc-it-off
dist/index.html
HTML
apache-2.0
779
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>{{title}}</title> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous"> <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> <!-- Google Fonts--> <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' /> <style> /*---------------------------------------------- Author : www.webthemez.com License: Commons Attribution 3.0 http://creativecommons.org/licenses/by/3.0/ ------------------------------------------------*/ /*---------------------------------------------- COMMON STYLES ------------------------------------------------*/ body { font-family: 'Open Sans', sans-serif; } #wrapper { width: 100%; background:#09192A; } #page-wrapper { padding: 15px 15px; min-height: 600px; background:#E5EBF2; } #page-inner { width:100%; margin:10px 20px 10px 0px; background-color:transparent; padding:10px; min-height:1200px; } .text-center { text-align:center; } .no-boder { border:1px solid #f3f3f3; } h1, .h1, h2, .h2, h3, .h3 { margin-top: 7px; margin-bottom: -5px; } h2 { color: #000; } h4 { padding-top:10px; } .square-btn-adjust { border: 0px solid transparent; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; } p { font-size:16px; line-height:25px; padding-top:20px; } /*---------------------------------------------- DASHBOARD STYLES ------------------------------------------------*/ .page-header { padding-bottom: 9px; margin: 10px 0 45px; border-bottom: 1px solid #C7D1DD; } .panel-back { background-color:#fff; } .panel-default > .panel-heading { color: #000; background-color: #FFFFFF; border-color: #ddd; font-weight:bold; } .jumbotron, .well{ background:#fff; } .noti-box { min-height: 100px; padding: 20px; } .noti-box .icon-box { display: block; float: left; margin: 0 15px 10px 0; width: 70px; height: 70px; line-height: 75px; vertical-align: middle; text-align: center; font-size: 40px; } .text-box p{ margin: 0 0 3px; } .main-text { font-size: 25px; font-weight:600; } .set-icon { -webkit-border-radius: 50px; -moz-border-radius: 50px; border-radius: 50px; } .bg-color-green { background-color: #fff; color: #5cb85c; } .bg-color-blue { background-color: #fff; color: #4CB1CF } .bg-color-red { background-color: #fff; color:#F0433D; } .bg-color-brown { background-color: #fff; color:#f0ad4e; } .back-footer-green { background-color: #5cb85c; color:#fff; border-top: 0px solid #fff; } .back-footer-red { background-color: #F0433D; color:#fff; border-top: 0px solid #fff; } .back-footer-blue { background-color: #4CB1CF; color:#fff; border-top: 0px solid #fff; } .back-footer-brown { background-color: #f0ad4e; color:#fff; border-top: 0px solid #fff; } .icon-box-right { display: block; float: right; margin: 0 15px 10px 0; width: 70px; height: 70px; line-height: 75px; vertical-align: middle; text-align: center; font-size: 40px; } .main-temp-back { background: #8702A8; color: #FFFFFF; font-size: 16px; font-weight: 300; text-align: center; } .main-temp-back .text-temp { font-size: 40px; } .back-dash { padding:20px; font-size:20px; font-weight:500; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; background-color:#2EA7EB; color:#fff; } .back-dash p { padding-top:16px; font-size:13px; color:#fff; line-height:25px; text-align:justify; } .color-bottom-txt { color: #000; font-size: 16px; line-height: 30px; } /*CHAT PANEL*/ .chat-panel .panel-body { height: 450px; overflow-y: scroll; } .chat-box { margin: 0; padding: 0; list-style: none; } .chat-box li { margin-bottom: 15px; padding-bottom: 5px; border-bottom: 1px dotted #808080; } .chat-box li.left .chat-body { margin-left: 90px; } .chat-box li .chat-body p { margin: 0; color: #8d8888; } .chat-img>img { margin-left:20px; } footer p{ font-size: 14px; } /*---------------------------------------------- MENU STYLES ------------------------------------------------*/ .user-image { margin: 25px auto; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; max-height:170px; max-width:170px; } .top-navbar{ margin:0px; } .top-navbar .navbar-brand { color: #fff; width: 260px; text-align: left; height: 60px; font-size: 30px; font-weight: 700; text-transform: uppercase; line-height: 30px; } .top-navbar .nav > li { position: relative; display: inline-block; } .top-navbar .nav > li > a { position: relative; display: block; padding: 19px 15px; color: #77C0FD; } .top-navbar .nav > li > a:hover, .top-navbar .nav > li > a:focus { text-decoration: none; background-color: #225081; color: #fff; } .top-navbar .dropdown-menu{ min-width: 230px; border-radius: 0 0 4px 4px; } .top-navbar .dropdown-menu > li > a:hover, .top-navbar .dropdown-menu > li > a:focus{ color: #225081; background:none; } .dropdown-tasks{ width: 255px; } .dropdown-tasks .progress { height: 8px; margin-bottom: 8px; overflow: hidden; background-color: #f5f5f5; border-radius: 0px; } .dropdown-tasks > li > a { padding: 0px 15px; } .dropdown-tasks p { font-size: 13px; line-height: 21px; padding-top: 4px; } .active-menu { background-color:#225081!important; } .arrow { float: right; } .fa.arrow:before { content: "\f104"; } .active > a > .fa.arrow:before { content: "\f107"; } .nav-second-level li, .nav-third-level li { border-bottom: none !important; } .nav-second-level li a { padding-left: 37px; } .nav-third-level li a { padding-left: 55px; } .sidebar-collapse , .sidebar-collapse .nav{ background:none; } .sidebar-collapse .nav { padding:0; background-color:#09192A; } .sidebar-collapse .nav > li > a { color:#fff; background:transparent; text-shadow:none; } .sidebar-collapse > .nav > li > a { padding:15px 10px; } .sidebar-collapse > .nav > li { border-bottom: 1px solid rgba(107, 108, 109, 0.19); } ul.nav.nav-second-level.collapse.in { background: #172D44; } .sidebar-collapse .nav > li > a:hover, .sidebar-collapse .nav > li > a:focus { outline:0; } .navbar-side { border:none; background-color: transparent; } .top-navbar { background:#09192A; border-bottom:none; } .top-navbar .nav > li > a > i { margin-right: 2px; } .top-navbar .navbar-brand:hover { color:#fff; } .dropdown-user li { margin: 8px 0; } .navbar-default { border:0px solid black; } .navbar-header { background: #09192A; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #B40101; } .navbar-default .navbar-toggle { border-color: #fff; } .navbar-default .navbar-toggle .icon-bar { background-color: #FFF; } .nav > li > a > i { margin-right:10px; } /*---------------------------------------------- UI ELEMENTS STYLES ------------------------------------------------*/ .btn-circle { width: 50px; height: 50px; padding: 6px 0; -webkit-border-radius: 25px; -moz-border-radius: 25px; border-radius: 25px; text-align: center; font-size: 12px; line-height: 1.428571429; } /*---------------------------------------------- MEDIA QUERIES ------------------------------------------------*/ @media(min-width:768px) { #page-wrapper{ margin: 0 0 0 260px; padding: 15px 30px; min-height: 1200px; } .navbar-side { z-index: 1; position: absolute; width: 260px; } .navbar { border-radius: 0px; } } @media(max-width:480px) { .page-header small { display: block; padding-top: 14px; font-size: 19px; } } </style> {{head}} </head> <body> <div id="wrapper"> <nav class="navbar navbar-default top-navbar" role="navigation"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".sidebar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="index.html">Home</a> </div> </nav> <!--/. NAV TOP --> <nav class="navbar-default navbar-side" role="navigation"> <div class="sidebar-collapse"> <ul class="nav" id="main-menu"> {{#navigation}} <li><a {{navigation_active}} href="{{navigation_url}}">{{navigation_name}}</a></li> {{/navigation}} </ul> </div> </nav> <!-- /. NAV SIDE --> <div id="page-wrapper"> <div id="page-inner">{{body}}</div> <!-- /. PAGE INNER --> </div> <!-- /. PAGE WRAPPER --> </div> </body> </html>
ngvozdiev/ncode
data/www/index.html
HTML
apache-2.0
10,052
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_65) on Tue Sep 30 00:45:13 PDT 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Interface org.glyptodon.guacamole.net.auth.Directory (guacamole-ext 0.9.3 API)</title> <meta name="date" content="2014-09-30"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.glyptodon.guacamole.net.auth.Directory (guacamole-ext 0.9.3 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/glyptodon/guacamole/net/auth/class-use/Directory.html" target="_top">Frames</a></li> <li><a href="Directory.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.glyptodon.guacamole.net.auth.Directory" class="title">Uses of Interface<br>org.glyptodon.guacamole.net.auth.Directory</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.glyptodon.guacamole.net.auth">org.glyptodon.guacamole.net.auth</a></td> <td class="colLast"> <div class="block">Provides classes which can be used to extend or replace the authentication functionality of the Guacamole web application.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.glyptodon.guacamole.net.auth.simple">org.glyptodon.guacamole.net.auth.simple</a></td> <td class="colLast"> <div class="block">Provides a basic AuthenticationProvider base class that can be used to create simple AuthenticationProviders in the same way allowed by the old authentication API.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.glyptodon.guacamole.net.auth"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a> in <a href="../../../../../../org/glyptodon/guacamole/net/auth/package-summary.html">org.glyptodon.guacamole.net.auth</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/glyptodon/guacamole/net/auth/package-summary.html">org.glyptodon.guacamole.net.auth</a> that return <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/Connection.html" title="interface in org.glyptodon.guacamole.net.auth">Connection</a>&gt;</code></td> <td class="colLast"><span class="strong">ConnectionGroup.</span><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/ConnectionGroup.html#getConnectionDirectory()">getConnectionDirectory</a></strong>()</code> <div class="block">Retrieves a Directory which can be used to view and manipulate connections and their configurations, but only as allowed by the permissions given to the user.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/ConnectionGroup.html" title="interface in org.glyptodon.guacamole.net.auth">ConnectionGroup</a>&gt;</code></td> <td class="colLast"><span class="strong">ConnectionGroup.</span><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/ConnectionGroup.html#getConnectionGroupDirectory()">getConnectionGroupDirectory</a></strong>()</code> <div class="block">Retrieves a Directory which can be used to view and manipulate connection groups and their members, but only as allowed by the permissions given to the user.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/User.html" title="interface in org.glyptodon.guacamole.net.auth">User</a>&gt;</code></td> <td class="colLast"><span class="strong">UserContext.</span><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/UserContext.html#getUserDirectory()">getUserDirectory</a></strong>()</code> <div class="block">Retrieves a Directory which can be used to view and manipulate other users, but only as allowed by the permissions given to the user of this UserContext.</div> </td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/glyptodon/guacamole/net/auth/package-summary.html">org.glyptodon.guacamole.net.auth</a> with parameters of type <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">Directory.</span><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html#move(IdentifierType,%20org.glyptodon.guacamole.net.auth.Directory)">move</a></strong>(<a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="type parameter in Directory">IdentifierType</a>&nbsp;identifier, <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="type parameter in Directory">IdentifierType</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="type parameter in Directory">ObjectType</a>&gt;&nbsp;directory)</code> <div class="block">Moves the object with the given identifier to the given directory.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.glyptodon.guacamole.net.auth.simple"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a> in <a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/package-summary.html">org.glyptodon.guacamole.net.auth.simple</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/package-summary.html">org.glyptodon.guacamole.net.auth.simple</a> that implement <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/SimpleConnectionDirectory.html" title="class in org.glyptodon.guacamole.net.auth.simple">SimpleConnectionDirectory</a></strong></code> <div class="block">An extremely simple read-only implementation of a Directory of GuacamoleConfigurations which provides access to a pre-defined Map of GuacamoleConfigurations.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/SimpleConnectionGroupDirectory.html" title="class in org.glyptodon.guacamole.net.auth.simple">SimpleConnectionGroupDirectory</a></strong></code> <div class="block">An extremely simple read-only implementation of a Directory of ConnectionGroup which provides which provides access to a pre-defined Collection of ConnectionGroups.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/SimpleUserDirectory.html" title="class in org.glyptodon.guacamole.net.auth.simple">SimpleUserDirectory</a></strong></code> <div class="block">An extremely simple read-only implementation of a Directory of Users which provides access to a single pre-defined User.</div> </td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/package-summary.html">org.glyptodon.guacamole.net.auth.simple</a> that return <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/Connection.html" title="interface in org.glyptodon.guacamole.net.auth">Connection</a>&gt;</code></td> <td class="colLast"><span class="strong">SimpleConnectionGroup.</span><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/SimpleConnectionGroup.html#getConnectionDirectory()">getConnectionDirectory</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/ConnectionGroup.html" title="interface in org.glyptodon.guacamole.net.auth">ConnectionGroup</a>&gt;</code></td> <td class="colLast"><span class="strong">SimpleConnectionGroup.</span><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/SimpleConnectionGroup.html#getConnectionGroupDirectory()">getConnectionGroupDirectory</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/User.html" title="interface in org.glyptodon.guacamole.net.auth">User</a>&gt;</code></td> <td class="colLast"><span class="strong">SimpleUserContext.</span><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/SimpleUserContext.html#getUserDirectory()">getUserDirectory</a></strong>()</code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/package-summary.html">org.glyptodon.guacamole.net.auth.simple</a> with parameters of type <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">SimpleConnectionDirectory.</span><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/SimpleConnectionDirectory.html#move(java.lang.String,%20org.glyptodon.guacamole.net.auth.Directory)">move</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;identifier, <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/Connection.html" title="interface in org.glyptodon.guacamole.net.auth">Connection</a>&gt;&nbsp;directory)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">SimpleConnectionGroupDirectory.</span><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/SimpleConnectionGroupDirectory.html#move(java.lang.String,%20org.glyptodon.guacamole.net.auth.Directory)">move</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;identifier, <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/ConnectionGroup.html" title="interface in org.glyptodon.guacamole.net.auth">ConnectionGroup</a>&gt;&nbsp;directory)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">SimpleUserDirectory.</span><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/SimpleUserDirectory.html#move(java.lang.String,%20org.glyptodon.guacamole.net.auth.Directory)">move</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;identifier, <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/User.html" title="interface in org.glyptodon.guacamole.net.auth">User</a>&gt;&nbsp;directory)</code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/package-summary.html">org.glyptodon.guacamole.net.auth.simple</a> with parameters of type <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/SimpleConnectionGroup.html#SimpleConnectionGroup(java.lang.String,%20java.lang.String,%20org.glyptodon.guacamole.net.auth.Directory,%20org.glyptodon.guacamole.net.auth.Directory)">SimpleConnectionGroup</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;identifier, <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/Connection.html" title="interface in org.glyptodon.guacamole.net.auth">Connection</a>&gt;&nbsp;connectionDirectory, <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/ConnectionGroup.html" title="interface in org.glyptodon.guacamole.net.auth">ConnectionGroup</a>&gt;&nbsp;connectionGroupDirectory)</code> <div class="block">Creates a new SimpleConnectionGroup having the given name and identifier which will expose the given directories as its contents.</div> </td> </tr> <tr class="rowColor"> <td class="colLast"><code><strong><a href="../../../../../../org/glyptodon/guacamole/net/auth/simple/SimpleConnectionGroup.html#SimpleConnectionGroup(java.lang.String,%20java.lang.String,%20org.glyptodon.guacamole.net.auth.Directory,%20org.glyptodon.guacamole.net.auth.Directory)">SimpleConnectionGroup</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;identifier, <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/Connection.html" title="interface in org.glyptodon.guacamole.net.auth">Connection</a>&gt;&nbsp;connectionDirectory, <a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Directory</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/glyptodon/guacamole/net/auth/ConnectionGroup.html" title="interface in org.glyptodon.guacamole.net.auth">ConnectionGroup</a>&gt;&nbsp;connectionGroupDirectory)</code> <div class="block">Creates a new SimpleConnectionGroup having the given name and identifier which will expose the given directories as its contents.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/glyptodon/guacamole/net/auth/Directory.html" title="interface in org.glyptodon.guacamole.net.auth">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/glyptodon/guacamole/net/auth/class-use/Directory.html" target="_top">Frames</a></li> <li><a href="Directory.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2014. All rights reserved.</small></p> <!-- Google Analytics --> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-75289145-1', 'auto'); ga('send', 'pageview'); </script> <!-- End Google Analytics --> </body> </html>
mike-jumper/incubator-guacamole-website
doc/0.9.3/guacamole-ext/org/glyptodon/guacamole/net/auth/class-use/Directory.html
HTML
apache-2.0
24,765
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_45) on Mon Sep 02 03:35:03 PDT 2013 --> <TITLE> Uses of Class org.apache.commons.lang3.SerializationUtils </TITLE> <META NAME="date" CONTENT="2013-09-02"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.commons.lang3.SerializationUtils"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/commons/lang3/SerializationUtils.html" title="class in org.apache.commons.lang3"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/commons/lang3/\class-useSerializationUtils.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="SerializationUtils.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.commons.lang3.SerializationUtils</B></H2> </CENTER> No usage of org.apache.commons.lang3.SerializationUtils <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/commons/lang3/SerializationUtils.html" title="class in org.apache.commons.lang3"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/commons/lang3/\class-useSerializationUtils.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="SerializationUtils.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
mkolbly/MortgageComparerProject
apache/doc/org/apache/commons/lang3/class-use/SerializationUtils.html
HTML
apache-2.0
5,974
<div class="pageContent"> <form method="post" action="__URL__/insert/navTabId/listarticle/callbackType/closeCurrent" class="pageForm required-validate" onsubmit="return validateCallback(this,dialogAjaxDone);"><?php //窗体组件采用这个 iframeCallback(this, navTabAjaxDone); ?> <input type="hidden" name="tid" value="<{$catinfo.id}>"> <div class="pageFormContent" layoutH="60"> <dl> <dt>文章分类:</dt> <dd><{$catinfo.name}></dd> </dl> <dl> <dt>关键词:</dt> <dd><input type="text" style="width:100%" name="keyword"/></dd> </dl> <dl> <dt>文章标题:</dt> <dd><input type="text" class="required" style="width:100%" name="title"/></dd> </dl> <dl> <dt>是否首页推荐:</dt> <dd> <input type="radio" name="ispush" value="1" <if condition="$vo.ispush eq 1">checked</if>/>推荐 <input type="radio" name="ispush" value="0" <if condition="$vo.ispush eq 0">checked</if>/>不推荐 </dd> </dl> <!-- <dl> <dt>是否允许评论:</dt> <dd> <input type="radio" name="iscommend" value="1" checked/>允许 <input type="radio" name="iscommend" value="0"/>不允许 </dd> </dl> <dl> <dt>是否首页幻灯:</dt> <dd> <input type="radio" name="isslides" value="1" />是 <input type="radio" name="isslides" value="0" checked/>否 </dd> </dl> --> <dl> <dt>是否加入回收站:</dt> <dd> <input type="radio" name="islock" value="1" />是 <input type="radio" name="islock" value="0" checked/>否 </dd> </dl> <dl class="nowrap"> <dt>摘要:</dt> <dd><textarea class="required" style="width:100%" name="summary"></textarea></dd> </dl> <dl class="nowrap"> <dt>文章内容:</dt> <dd> <textarea id="elm1" name="content" style="width:100%;display: none;" rows="20" > </textarea> <script> $('#elm1').xheditor({width:880,height:600,upLinkUrl:"__URL__/upload",upLinkExt:"zip,rar,txt",upImgUrl:"__URL__/upload",upImgExt:"jpg,jpeg,gif,png",upFlashUrl:"__URL__/upload",upFlashExt:"swf",upMediaUrl:"__URL__/upload",upMediaExt:"avi",urlBase:'__ROOT__/'}); </script> </dd> </dl> </div> <div class="formBar"> <ul> <li><div class="buttonActive"><div class="buttonContent"><button type="submit">保存</button></div></div></li> <li><div class="button"><div class="buttonContent"><button type="button" class="close">取消</button></div></div></li> </ul> </div> </form> </div>
lazyrong/easycms
App/Modules/Admin/Tpl/default/Recommend/addNormal.html
HTML
apache-2.0
2,535
<link rel="import" href="../bower_components/polymer/polymer.html"> <script src="data.js"></script> <polymer-element name="country-region-selector" attributes="countryEmptyLabel countryValue countryUseShortcode countryDropdownName targetRegionDropdownId regionBlankOption regionEmptyLabel regionValue regionDropdownName"> <template> <select id="country" name="{{countryDropdownName}}"></select> <select id="region" name="{{regionDropdownName}}"></select> </template> <script> "use strict"; Polymer("country-region-selector", { // public API countryEmptyLabel: "Select Country", countryValue: "", countryUseShortcode: false, countryDropdownName: "country", targetRegionDropdownId: null, regionBlankOption: "-", regionEmptyLabel: "Select Region", regionValue: null, regionDropdownName: "region", ready: function() { this.populateCountryField(); // if the user's targeting their own <select> for the regions, hide the default one if (this.targetRegionDropdownId !== null) { if (!document.getElementById(this.targetRegionDropdownId)) { console.error("Invalid targetRegionDropdownId for the country-region-selector element. This component won't work until this problem is resolved.") return; } this.$.region.style.display = "none"; } this.populateRegionField(this.regionValue); var self = this; this.$.country.onchange = function() { self.populateRegionField(); }; }, populateCountryField: function() { var html = '<option value="">' + this.countryEmptyLabel + '</option>'; for (var i=0; i<_data.length; i++) { var val = (this.countryUseShortcode) ? _data[i][1] : _data[i][0]; var selected = this.countryValue !== null && this.countryValue === val; html += '<option value="' + val + '" ' + (selected ? ' selected="selected"' : '') + '>' + _data[i][0] + '</option>'; } this.$.country.innerHTML = html; }, resetRegionField: function() { var blankOptionHTML = '<option value="">' + this.regionBlankOption + '</option>'; if (this.targetRegionDropdownId !== null) { document.getElementById(this.targetRegionDropdownId).innerHTML = blankOptionHTML; } else { this.$.region.innerHTML = blankOptionHTML; } }, populateRegionField: function(defaultValue) { if (this.$.country.value === "") { this.resetRegionField(); } else { var html = '<option value="">' + this.regionEmptyLabel + '</option>'; var index = this.$.country.options.selectedIndex - 1; var regions = _data[index][2].split("|"); for (var i=0; i<regions.length; i++) { var selected = defaultValue !== null && regions[i] === defaultValue; html += '<option value="' + regions[i] + '" ' + (selected ? ' selected="selected"' : '') + '>' + regions[i] + '</option>'; } if (this.targetRegionDropdownId !== null) { document.getElementById(this.targetRegionDropdownId).innerHTML = html; } else { this.$.region.innerHTML = html; } } } }); </script> </polymer-element>
cvereterra/cvereterra.github.io
tazit/bower_components/polymer-country-region-selector/elements/country-region-selector.html
HTML
apache-2.0
3,085
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "DTD/xhtml1-frameset.dtd"> <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>Apache MINA 2.0.0-RC1 Cross Reference</title> </head> <frameset cols="20%,80%"> <frameset rows="30%,70%"> <frame src="overview-frame.html" name="packageListFrame" /> <frame src="allclasses-frame.html" name="packageFrame" /> </frameset> <frame src="overview-summary.html" name="classFrame" /> <noframes> <body> <h1>Frame Alert</h1> <p> You don't have frames. Go <a href="overview-summary.html">here</a> </p> </body> </noframes> </frameset> </html>
sardine/mina-ja
docs/xref/index.html
HTML
apache-2.0
808
<?xml version="1.0" encoding="utf-8"?> <html> <head> <style type="text/css"> .SectionHeader { font-size: 14pt; font-weight: bold; color: #000000; }</style> </head> <body> <p/> <table border="1" cellpadding="3" cellspacing="0" width="100%"> <tr> <td bgcolor="#FFFF99"> <span class="SectionHeader">EmployeeWorkSchedule</span> <a href="../../OAGIS/Resources/Nouns/EmployeeWorkSchedule.xsd">schema</a> </td> </tr> </table> <a name="EmployeeWorkSchedule_element"/> <p/> <table border="1" cellpadding="3" cellspacing="0" width="100%"> <tr bgcolor="#e0e0e0" valign="top"> <td width="10%" colspan="2"> <b>EmployeeWorkSchedule</b> type: <a href="#EmployeeWorkSchedule_type" target="body"> <b> <i>EmployeeWorkSchedule</i> </b> </a> </td> </tr> <tr bgcolor="#e0e0e0" valign="top"> <td colspan="2"> <p style="margin-top: 3; margin-bottom: 3">Represents data related to the planned work hours for an employee. A work schedule typically includes relatively static employee information, such as employee ID and name. It will also include schedule-specific information such as dates and amount of time to be worked.</p> </td> </tr> </table> <a name="EmployeeWorkSchedule_type"/> <p/> <table border="1" cellpadding="3" cellspacing="0" width="100%"> <tr bgcolor="#e0e0e0" valign="top"> <td width="10%" colspan="2"> <b> <i>EmployeeWorkSchedule</i> </b> extends: <a href="../OAGIS.html#Noun_type" target="body"> <b> <i>Noun</i> </b> </a> </td> </tr> <tr bgcolor="#e0e0e0" valign="top"> <td colspan="2"> <i/> </td> </tr> <tr> <td width="10%" align="right" valign="top">Structure:</td> <td> <img src="../Diagrams/EmployeeWorkSchedule.png"/> </td> </tr> <tr> <td width="10%" align="right" valign="top">Elements:</td> <td> <table> <tr> <td align="left" valign="top"> <font size="-1"> <b>Name</b> </font> </td> <td align="left" valign="top"> <font size="-1"> <b>Type</b> </font> </td> <td align="left" valign="top"> <font size="-1"> <b>Description</b> </font> </td> </tr> <tr valign="top"> <td> <font size="-1"> <b>EffectivePeriod</b> </font> </td> <td> <font size="-1"> <a href="../OAGIS.html#TimePeriod_type" target="body"> <b> <i>TimePeriod</i> </b> </a> </font> </td> <td> <font size="-1"> <p style="margin-top: 3; margin-bottom: 3">Is the effective period of the WorkSchedule.</p> <div/> <i/> </font> </td> </tr> <tr valign="top"> <td> <font size="-1"> <b>Id</b> </font> </td> <td> <font size="-1"> <a href="../OAGIS.html#Id_type" target="body"> <b> <i>Id</i> </b> </a> </font> </td> <td> <font size="-1"> <p style="margin-top: 3; margin-bottom: 3">Is the WorkSchedule identifier.</p> <div/> <i> <p style="margin-top: 3; margin-bottom: 3">Generic identifier type with open qualifyingAgency.</p> </i> </font> </td> </tr> <tr valign="top"> <td> <font size="-1"> <b>UserArea</b> </font> </td> <td> <font size="-1"> <a href="../OAGIS.html#UserArea_element" target="body">reference</a> </font> </td> <td> <font size="-1"> <div/> <i/> </font> </td> </tr> </table> </td> </tr> </table> <p/> <table border="1" cellpadding="3" cellspacing="0" width="100%"> <tr> <td bgcolor="#FFFF99"> <span class="SectionHeader">Noun Common Files</span> </td> </tr> </table> <div/> <p/> <table border="1" cellpadding="3" cellspacing="0" width="100%"> <tr> <td bgcolor="#FFFF99"> <span class="SectionHeader">TimeReporting.xsd</span> <a href="../../OAGIS/Resources/Nouns/TimeReporting.xsd">schema</a> </td> </tr> </table> <div/> </body> </html>
kfowler/hr-xsl
lib/hr-xml-2.5/OAGIS8_0/Documentation/Nouns/EmployeeWorkSchedule.html
HTML
apache-2.0
6,438
<pp-real-time-chart [timezone]="timezone" [dateFormat]="dateFormat" [timeStamp]="timeStamp" [activeThreadCounts]="activeThreadCounts" [maxChartNumberPerPage]="maxChartNumberPerPage" [sum]="sum" [chartOption]="chartOption"> </pp-real-time-chart> <ul class="l-legend" #legend [ngStyle]="getLegendStyle(legend)"> <li> <span class="l-text">Total</span> <span class="l-circle">{{ getTotalCount() }}</span> </li> <li> <span class="l-text">Slow</span> <span class="l-circle">{{sum[3]}}</span> </li> <li> <span class="l-text">5s</span> <span class="l-circle">{{sum[2]}}</span> </li> <li> <span class="l-text">3s</span> <span class="l-circle">{{sum[1]}}</span> </li> <li> <span class="l-text">1s</span> <span class="l-circle">{{sum[0]}}</span> </li> </ul>
barneykim/pinpoint
web/src/main/webapp/v2/src/app/core/components/real-time/real-time-total-chart.component.html
HTML
apache-2.0
895
<script>$(".selectpicker").selectpicker();</script> {% if workflow_steps %} <div class="form-group"> <label class="control-label">Workflow Step</label> <div style="padding-bottom:10px"> <select id="workflowStep" class="selectpicker"> {% for workflow_step in workflow_steps %} <option value="{{ workflow_step }}">{{ workflow_step }}</option> {% endfor %} </select> </div> </div> {% endif %}
sundeep-co-in/transtats
dashboard/templates/jobs/_workflow_steps.html
HTML
apache-2.0
460
<aside id="hero-banner-videos" style="background: rgba(255,255,255,0);"> <div class="row"> <div class="col-xs-0 col-sm-0 col-md-1 col-lg-1 col-xl-2 text-center"></div> <div class="container col-xs-12 col-sm-12 col-md-10 col-lg-10 col-xl-8 text-center" id="hero" style="padding:0px;margin:0px; padding-top:0px;padding-bottom:50px"> <div class="call-to-action"> <div style="background-color:#FFFF20;width:100%;height:20px;margin-top:30px;position: absolute;border-left: 1px solid gray;border-right: 1px solid gray;border-top:1px solid gray;"></div> <div style="background-color:#2d9a90;width:100%;height:50px;margin-top:50px;position: absolute;border-left: 1px solid gray;border-right: 1px solid gray;"></div> <img src="img/portfolio/moon.png" class="img-responsive wow" alt="" style="width:200px; display:initial;position:absolute;left:0;right: 0;margin: auto;"> </div> </div> </div> </aside>
nprees/em4education.github.io
_includes/hero-banner-videos.html
HTML
apache-2.0
949
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.5.0_11) on Wed Jun 27 21:57:25 PDT 2007 --> <TITLE> org.apache.ddlutils (DdlUtils 1.0 API Documentation) </TITLE> <META NAME="keywords" CONTENT="org.apache.ddlutils package"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../../org/apache/ddlutils/package-summary.html" target="classFrame">org.apache.ddlutils</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Interfaces</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="Platform.html" title="interface in org.apache.ddlutils" target="classFrame"><I>Platform</I></A></FONT></TD> </TR> </TABLE> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="PlatformFactory.html" title="class in org.apache.ddlutils" target="classFrame">PlatformFactory</A> <BR> <A HREF="PlatformInfo.html" title="class in org.apache.ddlutils" target="classFrame">PlatformInfo</A> <BR> <A HREF="PlatformUtils.html" title="class in org.apache.ddlutils" target="classFrame">PlatformUtils</A></FONT></TD> </TR> </TABLE> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Exceptions</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="DatabaseOperationException.html" title="class in org.apache.ddlutils" target="classFrame">DatabaseOperationException</A> <BR> <A HREF="DdlUtilsException.html" title="class in org.apache.ddlutils" target="classFrame">DdlUtilsException</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
johntranasd/DdlUtils
doc/api/org/apache/ddlutils/package-frame.html
HTML
apache-2.0
1,868
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_251) on Wed Aug 05 13:23:31 CEST 2020 --> <title>StopSubCommand</title> <meta name="date" content="2020-08-05"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="StopSubCommand"; } } catch(err) { } //--> var methods = {"i0":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../../com/craftmend/openaudiomc/spigot/modules/commands/subcommands/StateSubCommand.html" title="class in com.craftmend.openaudiomc.spigot.modules.commands.subcommands"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li>Next&nbsp;Class</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?com/craftmend/openaudiomc/spigot/modules/commands/subcommands/StopSubCommand.html" target="_top">Frames</a></li> <li><a href="StopSubCommand.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">com.craftmend.openaudiomc.spigot.modules.commands.subcommands</div> <h2 title="Class StopSubCommand" class="title">Class StopSubCommand</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li><a href="../../../../../../../com/craftmend/openaudiomc/generic/commands/interfaces/SubCommand.html" title="class in com.craftmend.openaudiomc.generic.commands.interfaces">com.craftmend.openaudiomc.generic.commands.interfaces.SubCommand</a></li> <li> <ul class="inheritance"> <li>com.craftmend.openaudiomc.spigot.modules.commands.subcommands.StopSubCommand</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="typeNameLabel">StopSubCommand</span> extends <a href="../../../../../../../com/craftmend/openaudiomc/generic/commands/interfaces/SubCommand.html" title="class in com.craftmend.openaudiomc.generic.commands.interfaces">SubCommand</a></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../../com/craftmend/openaudiomc/spigot/modules/commands/subcommands/StopSubCommand.html#StopSubCommand-com.craftmend.openaudiomc.spigot.OpenAudioMcSpigot-">StopSubCommand</a></span>(<a href="../../../../../../../com/craftmend/openaudiomc/spigot/OpenAudioMcSpigot.html" title="class in com.craftmend.openaudiomc.spigot">OpenAudioMcSpigot</a>&nbsp;openAudioMcSpigot)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../com/craftmend/openaudiomc/spigot/modules/commands/subcommands/StopSubCommand.html#onExecute-com.craftmend.openaudiomc.generic.commands.interfaces.GenericExecutor-java.lang.String:A-">onExecute</a></span>(<a href="../../../../../../../com/craftmend/openaudiomc/generic/commands/interfaces/GenericExecutor.html" title="interface in com.craftmend.openaudiomc.generic.commands.interfaces">GenericExecutor</a>&nbsp;sender, java.lang.String[]&nbsp;args)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.com.craftmend.openaudiomc.generic.commands.interfaces.SubCommand"> <!-- --> </a> <h3>Methods inherited from class&nbsp;com.craftmend.openaudiomc.generic.commands.interfaces.<a href="../../../../../../../com/craftmend/openaudiomc/generic/commands/interfaces/SubCommand.html" title="class in com.craftmend.openaudiomc.generic.commands.interfaces">SubCommand</a></h3> <code><a href="../../../../../../../com/craftmend/openaudiomc/generic/commands/interfaces/SubCommand.html#isAllowed-com.craftmend.openaudiomc.generic.commands.interfaces.GenericExecutor-">isAllowed</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="StopSubCommand-com.craftmend.openaudiomc.spigot.OpenAudioMcSpigot-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>StopSubCommand</h4> <pre>public&nbsp;StopSubCommand(<a href="../../../../../../../com/craftmend/openaudiomc/spigot/OpenAudioMcSpigot.html" title="class in com.craftmend.openaudiomc.spigot">OpenAudioMcSpigot</a>&nbsp;openAudioMcSpigot)</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="onExecute-com.craftmend.openaudiomc.generic.commands.interfaces.GenericExecutor-java.lang.String:A-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>onExecute</h4> <pre>public&nbsp;void&nbsp;onExecute(<a href="../../../../../../../com/craftmend/openaudiomc/generic/commands/interfaces/GenericExecutor.html" title="interface in com.craftmend.openaudiomc.generic.commands.interfaces">GenericExecutor</a>&nbsp;sender, java.lang.String[]&nbsp;args)</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../../../../com/craftmend/openaudiomc/generic/commands/interfaces/SubCommand.html#onExecute-com.craftmend.openaudiomc.generic.commands.interfaces.GenericExecutor-java.lang.String:A-">onExecute</a></code>&nbsp;in class&nbsp;<code><a href="../../../../../../../com/craftmend/openaudiomc/generic/commands/interfaces/SubCommand.html" title="class in com.craftmend.openaudiomc.generic.commands.interfaces">SubCommand</a></code></dd> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>sender</code> - the sender that executed the commands</dd> <dd><code>args</code> - the arguments after your command, starting at index 0</dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../../com/craftmend/openaudiomc/spigot/modules/commands/subcommands/StateSubCommand.html" title="class in com.craftmend.openaudiomc.spigot.modules.commands.subcommands"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li>Next&nbsp;Class</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?com/craftmend/openaudiomc/spigot/modules/commands/subcommands/StopSubCommand.html" target="_top">Frames</a></li> <li><a href="StopSubCommand.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
ApocalypsjeNL/OpenAudioMc
docs/javadoc/com/craftmend/openaudiomc/spigot/modules/commands/subcommands/StopSubCommand.html
HTML
apache-2.0
12,289
<form> Please enter your name. <br> <input type="text" name="feedback"> <br> <br> Please select each of the following that you have. <br> <input type="checkbox" name="items" value="car">Car <br> <input type="checkbox" name="items" value="teddy bear">Teddy bear <br> <input type="checkbox" name="items" value="toothbrush">Toothbrush <br> <br> Please indicate your intelligence level. <br> <input type="radio" name="iq" value="high">High <br> <input type="radio" name="iq" value="medium" checked>Medium <br> <input type="radio" name="iq" value="low">Low <br> <br> </form>
happyspace/NodeFun
public/forms/02_html_example_form_text_checkbox_radio.html
HTML
apache-2.0
613
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_77) on Sun Feb 12 12:26:26 EST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class com.buffalokiwi.aerodrome.jet.ISO8601Date (Aerodrome 1.0-SNAPSHOT API)</title> <meta name="date" content="2017-02-12"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.buffalokiwi.aerodrome.jet.ISO8601Date (Aerodrome 1.0-SNAPSHOT API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/buffalokiwi/aerodrome/jet/ISO8601Date.html" title="class in com.buffalokiwi.aerodrome.jet">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/buffalokiwi/aerodrome/jet/class-use/ISO8601Date.html" target="_top">Frames</a></li> <li><a href="ISO8601Date.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.buffalokiwi.aerodrome.jet.ISO8601Date" class="title">Uses of Class<br>com.buffalokiwi.aerodrome.jet.ISO8601Date</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../com/buffalokiwi/aerodrome/jet/ISO8601Date.html" title="class in com.buffalokiwi.aerodrome.jet">ISO8601Date</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.buffalokiwi.aerodrome.jet">com.buffalokiwi.aerodrome.jet</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="com.buffalokiwi.aerodrome.jet"> <!-- --> </a> <h3>Uses of <a href="../../../../../com/buffalokiwi/aerodrome/jet/ISO8601Date.html" title="class in com.buffalokiwi.aerodrome.jet">ISO8601Date</a> in <a href="../../../../../com/buffalokiwi/aerodrome/jet/package-summary.html">com.buffalokiwi.aerodrome.jet</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../com/buffalokiwi/aerodrome/jet/package-summary.html">com.buffalokiwi.aerodrome.jet</a> that return <a href="../../../../../com/buffalokiwi/aerodrome/jet/ISO8601Date.html" title="class in com.buffalokiwi.aerodrome.jet">ISO8601Date</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../com/buffalokiwi/aerodrome/jet/ISO8601Date.html" title="class in com.buffalokiwi.aerodrome.jet">ISO8601Date</a></code></td> <td class="colLast"><span class="typeNameLabel">ISO8601Date.</span><code><span class="memberNameLink"><a href="../../../../../com/buffalokiwi/aerodrome/jet/ISO8601Date.html#fromJetValueOrNull-java.lang.String-">fromJetValueOrNull</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;value)</code> <div class="block">Attempt to take some value and turn it into a valid JetDate.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/buffalokiwi/aerodrome/jet/ISO8601Date.html" title="class in com.buffalokiwi.aerodrome.jet">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/buffalokiwi/aerodrome/jet/class-use/ISO8601Date.html" target="_top">Frames</a></li> <li><a href="ISO8601Date.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p> </body> </html>
SheepGuru/aerodrome-for-jet
docs/com/buffalokiwi/aerodrome/jet/class-use/ISO8601Date.html
HTML
apache-2.0
6,991
<html> <body> Reports any calls to <b>String.replaceAll()</b> or <b>String.split()</b> where the first argument is a single regex meta character argument. The regex meta characters are one of ".$|()[{^?*+\", and these have a special meaning in regular expressions. For example calling <b>"ab.cd".replaceAll(".", "-")</b> produces <b>"-----"</b>, because the dot matches any character. Most likely the escaped variant <b>"\\."</b> was intended instead. <!-- tooltip end --> <p> </body> </html>
leafclick/intellij-community
plugins/InspectionGadgets/src/inspectionDescriptions/ReplaceAllDot.html
HTML
apache-2.0
493
<!DOCTYPE HTML> <html lang="en-US" manifest="../manifest.appcache"> <head> <meta charset="UTF-8"> <title>显示位置地址 | Android Training Course in Chinese</title> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta name="description" content=""> <meta name="generator" content="GitBook 0.5.2"> <meta name="HandheldFriendly" content="true"/> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <link rel="shortcut icon" href="../gitbook/images/favicon.ico" type="image/x-icon"> <meta name="author" content="kesenhoo"> <link rel="next" href="../location/geofencing.html" /> <link rel="prev" href="../location/retrieve-location-updates.html" /> </head> <body> <link rel="stylesheet" href="../gitbook/style.css"> <div class="book" data-github="kesenhoo/android-training-course-in-chinese" data-level="10.3" data-basepath=".." data-revision="1406365028273"> <div class="book-header"> <!-- Actions Left --> <a href="#" class="btn pull-left toggle-summary" aria-label="Toggle summary"><i class="fa fa-align-justify"></i></a> <a href="https://github.com/kesenhoo/android-training-course-in-chinese" target="_blank" class="btn pull-left home-bookmark" aria-label="GitHub home"><i class="fa fa-bookmark-o"></i></a> <a href="#" class="btn pull-left toggle-search" aria-label="Toggle search"><i class="fa fa-search"></i></a> <span id="font-settings-wrapper"> <a href="#" class="btn pull-left toggle-font-settings" aria-label="Toggle font settings"><i class="fa fa-font"></i> </a> <div class="dropdown-menu font-settings"> <div class="dropdown-caret"> <span class="caret-outer"></span> <span class="caret-inner"></span> </div> <div class="btn-group btn-block"> <button id="reduce-font-size" class="btn btn-default">A</button> <button id="enlarge-font-size" class="btn btn-default">A</button> </div> <ul class="list-group font-family-list"> <li class="list-group-item" data-font="0">Serif</li> <li class="list-group-item" data-font="1">Sans</li> </ul> <div class="btn-group btn-group-xs btn-block color-theme-list"> <button type="button" class="btn btn-default" id="color-theme-preview-0" data-theme="0">White</button> <button type="button" class="btn btn-default" id="color-theme-preview-1" data-theme="1">Sepia</button> <button type="button" class="btn btn-default" id="color-theme-preview-2" data-theme="2">Night</button> </div> </div> </span> <!-- Actions Right --> <a href="#" target="_blank" class="btn pull-right google-plus-sharing-link sharing-link" data-sharing="google-plus" aria-label="Share on Google Plus"><i class="fa fa-google-plus"></i></a> <a href="#" target="_blank" class="btn pull-right facebook-sharing-link sharing-link" data-sharing="facebook" aria-label="Share on Facebook"><i class="fa fa-facebook"></i></a> <a href="#" target="_blank" class="btn pull-right twitter-sharing-link sharing-link" data-sharing="twitter" aria-label="Share on Twitter"><i class="fa fa-twitter"></i></a> <a href="https://github.com/kesenhoo/android-training-course-in-chinese/stargazers" target="_blank" class="btn pull-right count-star hidden-xs"><i class="fa fa-star-o"></i> Star (<span>-</span>)</a> <a href="https://github.com/kesenhoo/android-training-course-in-chinese/watchers" target="_blank" class="btn pull-right count-watch hidden-xs"><i class="fa fa-eye"></i> Watch (<span>-</span>)</a> <!-- Title --> <h1> <i class="fa fa-spinner fa-spin"></i> <a href="../" >Android Training Course in Chinese</a> </h1> </div> <div class="book-summary"> <div class="book-search"> <input type="text" placeholder="Search" class="form-control" /> </div> <ul class="summary"> <li> <a href="https://github.com/kesenhoo" target="blank" class="author-link">About the author</a> </li> <li> <a href="https://github.com/kesenhoo/android-training-course-in-chinese/issues" target="blank"class="issues-link">Questions and Issues</a> </li> <li> <a href="https://github.com/kesenhoo/android-training-course-in-chinese/edit/master/location/display-address.md" target="blank" class="contribute-link">Edit and Contribute</a> </li> <li class="divider"></li> <li data-level="0" data-path="index.html"> <a href="../"><i class="fa fa-check"></i> Introduction</a> </li> <li class="chapter " data-level="1" data-path="index.html"> <a href="../index.html"> <i class="fa fa-check"></i> <b>1.</b> 序言 </a> </li> <li class="chapter " data-level="2" data-path="basics/index.html"> <a href="../basics/index.html"> <i class="fa fa-check"></i> <b>2.</b> Android入门基础:从这里开始 </a> <ul class="articles"> <li class="chapter " data-level="2.1" data-path="basics/firstapp/index.html"> <a href="../basics/firstapp/index.html"> <i class="fa fa-check"></i> <b>2.1.</b> 建立你的第一个App </a> <ul class="articles"> <li class="chapter " data-level="2.1.1" data-path="basics/firstapp/creating-project.html"> <a href="../basics/firstapp/creating-project.html"> <i class="fa fa-check"></i> <b>2.1.1.</b> 创建一个Android项目 </a> </li> <li class="chapter " data-level="2.1.2" data-path="basics/firstapp/running-app.html"> <a href="../basics/firstapp/running-app.html"> <i class="fa fa-check"></i> <b>2.1.2.</b> 执行你的程序 </a> </li> <li class="chapter " data-level="2.1.3" data-path="basics/firstapp/building-ui.html"> <a href="../basics/firstapp/building-ui.html"> <i class="fa fa-check"></i> <b>2.1.3.</b> 建立一个简单的用户界面 </a> </li> <li class="chapter " data-level="2.1.4" data-path="basics/firstapp/starting-activity.html"> <a href="../basics/firstapp/starting-activity.html"> <i class="fa fa-check"></i> <b>2.1.4.</b> 启动另外的Activity </a> </li> </ul> </li> <li class="chapter " data-level="2.2" data-path="basics/actionbar/index.html"> <a href="../basics/actionbar/index.html"> <i class="fa fa-check"></i> <b>2.2.</b> 添加ActionBar </a> <ul class="articles"> <li class="chapter " data-level="2.2.1" data-path="basics/actionbar/setting-up.html"> <a href="../basics/actionbar/setting-up.html"> <i class="fa fa-check"></i> <b>2.2.1.</b> 建立ActionBar </a> </li> <li class="chapter " data-level="2.2.2" data-path="basics/actionbar/adding-buttons.html"> <a href="../basics/actionbar/adding-buttons.html"> <i class="fa fa-check"></i> <b>2.2.2.</b> 添加Action按钮 </a> </li> <li class="chapter " data-level="2.2.3" data-path="basics/actionbar/styling.html"> <a href="../basics/actionbar/styling.html"> <i class="fa fa-check"></i> <b>2.2.3.</b> ActionBar的风格化 </a> </li> <li class="chapter " data-level="2.2.4" data-path="basics/actionbar/overlaying.html"> <a href="../basics/actionbar/overlaying.html"> <i class="fa fa-check"></i> <b>2.2.4.</b> ActionBar的覆盖层叠 </a> </li> </ul> </li> <li class="chapter " data-level="2.3" data-path="basics/supporting-devices/index.html"> <a href="../basics/supporting-devices/index.html"> <i class="fa fa-check"></i> <b>2.3.</b> 兼容不同的设备 </a> <ul class="articles"> <li class="chapter " data-level="2.3.1" data-path="basics/supporting-devices/languages.html"> <a href="../basics/supporting-devices/languages.html"> <i class="fa fa-check"></i> <b>2.3.1.</b> 适配不同的语言 </a> </li> <li class="chapter " data-level="2.3.2" data-path="basics/supporting-devices/screens.html"> <a href="../basics/supporting-devices/screens.html"> <i class="fa fa-check"></i> <b>2.3.2.</b> 适配不同的屏幕 </a> </li> <li class="chapter " data-level="2.3.3" data-path="basics/supporting-devices/platforms.html"> <a href="../basics/supporting-devices/platforms.html"> <i class="fa fa-check"></i> <b>2.3.3.</b> 适配不同的系统版本 </a> </li> </ul> </li> <li class="chapter " data-level="2.4" data-path="basics/activity-lifecycle/index.html"> <a href="../basics/activity-lifecycle/index.html"> <i class="fa fa-check"></i> <b>2.4.</b> 管理Activity的生命周期 </a> <ul class="articles"> <li class="chapter " data-level="2.4.1" data-path="basics/activity-lifecycle/starting.html"> <a href="../basics/activity-lifecycle/starting.html"> <i class="fa fa-check"></i> <b>2.4.1.</b> 启动与销毁Activity </a> </li> <li class="chapter " data-level="2.4.2" data-path="basics/activity-lifecycle/pausing.html"> <a href="../basics/activity-lifecycle/pausing.html"> <i class="fa fa-check"></i> <b>2.4.2.</b> 暂停与恢复Activity </a> </li> <li class="chapter " data-level="2.4.3" data-path="basics/activity-lifecycle/stopping.html"> <a href="../basics/activity-lifecycle/stopping.html"> <i class="fa fa-check"></i> <b>2.4.3.</b> 停止与重启Activity </a> </li> <li class="chapter " data-level="2.4.4" data-path="basics/activity-lifecycle/recreating.html"> <a href="../basics/activity-lifecycle/recreating.html"> <i class="fa fa-check"></i> <b>2.4.4.</b> 重新创建Activity </a> </li> </ul> </li> <li class="chapter " data-level="2.5" data-path="basics/fragments/index.html"> <a href="../basics/fragments/index.html"> <i class="fa fa-check"></i> <b>2.5.</b> 使用Fragment建立动态的UI </a> <ul class="articles"> <li class="chapter " data-level="2.5.1" data-path="basics/fragments/creating.html"> <a href="../basics/fragments/creating.html"> <i class="fa fa-check"></i> <b>2.5.1.</b> 创建一个Fragment </a> </li> <li class="chapter " data-level="2.5.2" data-path="basics/fragments/fragment-ui.html"> <a href="../basics/fragments/fragment-ui.html"> <i class="fa fa-check"></i> <b>2.5.2.</b> 建立灵活动态的UI </a> </li> <li class="chapter " data-level="2.5.3" data-path="basics/fragments/communicating.html"> <a href="../basics/fragments/communicating.html"> <i class="fa fa-check"></i> <b>2.5.3.</b> Fragments之间的交互 </a> </li> </ul> </li> <li class="chapter " data-level="2.6" data-path="basics/data-storage/index.html"> <a href="../basics/data-storage/index.html"> <i class="fa fa-check"></i> <b>2.6.</b> 数据保存 </a> <ul class="articles"> <li class="chapter " data-level="2.6.1" data-path="basics/data-storage/shared-preference.html"> <a href="../basics/data-storage/shared-preference.html"> <i class="fa fa-check"></i> <b>2.6.1.</b> 保存到Preference </a> </li> <li class="chapter " data-level="2.6.2" data-path="basics/data-storage/files.html"> <a href="../basics/data-storage/files.html"> <i class="fa fa-check"></i> <b>2.6.2.</b> 保存到文件 </a> </li> <li class="chapter " data-level="2.6.3" data-path="basics/data-storage/database.html"> <a href="../basics/data-storage/database.html"> <i class="fa fa-check"></i> <b>2.6.3.</b> 保存到数据库 </a> </li> </ul> </li> <li class="chapter " data-level="2.7" data-path="basics/intents/index.html"> <a href="../basics/intents/index.html"> <i class="fa fa-check"></i> <b>2.7.</b> 与其他应用的交互 </a> <ul class="articles"> <li class="chapter " data-level="2.7.1" data-path="basics/intents/sending.html"> <a href="../basics/intents/sending.html"> <i class="fa fa-check"></i> <b>2.7.1.</b> Intent的发送 </a> </li> <li class="chapter " data-level="2.7.2" data-path="basics/intents/result.html"> <a href="../basics/intents/result.html"> <i class="fa fa-check"></i> <b>2.7.2.</b> 接收Activity返回的结果 </a> </li> <li class="chapter " data-level="2.7.3" data-path="basics/intents/filters.html"> <a href="../basics/intents/filters.html"> <i class="fa fa-check"></i> <b>2.7.3.</b> Intent过滤 </a> </li> </ul> </li> </ul> </li> <li class="chapter " data-level="3" data-path="content-sharing/index.html"> <a href="../content-sharing/index.html"> <i class="fa fa-check"></i> <b>3.</b> Android分享操作 </a> <ul class="articles"> <li class="chapter " data-level="3.1" data-path="content-sharing/sharing/index.html"> <a href="../content-sharing/sharing/index.html"> <i class="fa fa-check"></i> <b>3.1.</b> 分享简单的数据 </a> <ul class="articles"> <li class="chapter " data-level="3.1.1" data-path="content-sharing/sharing/send.html"> <a href="../content-sharing/sharing/send.html"> <i class="fa fa-check"></i> <b>3.1.1.</b> 给其他App发送简单的数据 </a> </li> <li class="chapter " data-level="3.1.2" data-path="content-sharing/sharing/receive.html"> <a href="../content-sharing/sharing/receive.html"> <i class="fa fa-check"></i> <b>3.1.2.</b> 接收从其他App返回的数据 </a> </li> <li class="chapter " data-level="3.1.3" data-path="content-sharing/sharing/shareaction.html"> <a href="../content-sharing/sharing/shareaction.html"> <i class="fa fa-check"></i> <b>3.1.3.</b> 给ActionBar增加分享功能 </a> </li> </ul> </li> <li class="chapter " data-level="3.2" data-path="content-sharing/secure-file-sharing/index.html"> <a href="../content-sharing/secure-file-sharing/index.html"> <i class="fa fa-check"></i> <b>3.2.</b> 分享文件 </a> <ul class="articles"> <li class="chapter " data-level="3.2.1" data-path="content-sharing/secure-file-sharing/setup-sharing.html"> <a href="../content-sharing/secure-file-sharing/setup-sharing.html"> <i class="fa fa-check"></i> <b>3.2.1.</b> 建立文件分享 </a> </li> <li class="chapter " data-level="3.2.2" data-path="content-sharing/secure-file-sharing/sharing-file.html"> <a href="../content-sharing/secure-file-sharing/sharing-file.html"> <i class="fa fa-check"></i> <b>3.2.2.</b> 分享文件 </a> </li> <li class="chapter " data-level="3.2.3" data-path="content-sharing/secure-file-sharing/request-file.html"> <a href="../content-sharing/secure-file-sharing/request-file.html"> <i class="fa fa-check"></i> <b>3.2.3.</b> 请求分享一个文件 </a> </li> <li class="chapter " data-level="3.2.4" data-path="content-sharing/secure-file-sharing/retrieve-info.html"> <a href="../content-sharing/secure-file-sharing/retrieve-info.html"> <i class="fa fa-check"></i> <b>3.2.4.</b> 获取文件信息 </a> </li> </ul> </li> <li class="chapter " data-level="3.3" data-path="content-sharing/beam-files/index.html"> <a href="../content-sharing/beam-files/index.html"> <i class="fa fa-check"></i> <b>3.3.</b> 使用NFC分享文件 </a> <ul class="articles"> <li class="chapter " data-level="3.3.1" data-path="content-sharing/beam-files/sending-files.html"> <a href="../content-sharing/beam-files/sending-files.html"> <i class="fa fa-check"></i> <b>3.3.1.</b> 发送文件给其他设备 </a> </li> <li class="chapter " data-level="3.3.2" data-path="content-sharing/beam-files/receive-files.html"> <a href="../content-sharing/beam-files/receive-files.html"> <i class="fa fa-check"></i> <b>3.3.2.</b> 接收其他设备的文件 </a> </li> </ul> </li> </ul> </li> <li class="chapter " data-level="4" data-path="multimedia/index.html"> <a href="../multimedia/index.html"> <i class="fa fa-check"></i> <b>4.</b> Android多媒体 </a> <ul class="articles"> <li class="chapter " data-level="4.1" data-path="multimedia/audio/index.html"> <a href="../multimedia/audio/index.html"> <i class="fa fa-check"></i> <b>4.1.</b> 管理音频播放 </a> <ul class="articles"> <li class="chapter " data-level="4.1.1" data-path="multimedia/audio/volume-playback.html"> <a href="../multimedia/audio/volume-playback.html"> <i class="fa fa-check"></i> <b>4.1.1.</b> 控制音量与音频播放 </a> </li> <li class="chapter " data-level="4.1.2" data-path="multimedia/audio/audio-focus.html"> <a href="../multimedia/audio/audio-focus.html"> <i class="fa fa-check"></i> <b>4.1.2.</b> 管理音频焦点 </a> </li> <li class="chapter " data-level="4.1.3" data-path="multimedia/audio/volume-playback.html"> <a href="../multimedia/audio/volume-playback.html"> <i class="fa fa-check"></i> <b>4.1.3.</b> 控制你得应用的音量与播放 </a> </li> <li class="chapter " data-level="4.1.4" data-path="multimedia/audio/audio-output.html"> <a href="../multimedia/audio/audio-output.html"> <i class="fa fa-check"></i> <b>4.1.4.</b> 兼容音频输出设备 </a> </li> </ul> </li> <li class="chapter " data-level="4.2" data-path="multimedia/camera/index.html"> <a href="../multimedia/camera/index.html"> <i class="fa fa-check"></i> <b>4.2.</b> 拍照 </a> <ul class="articles"> <li class="chapter " data-level="4.2.1" data-path="multimedia/camera/photobasic.html"> <a href="../multimedia/camera/photobasic.html"> <i class="fa fa-check"></i> <b>4.2.1.</b> 简单的拍照 </a> </li> <li class="chapter " data-level="4.2.2" data-path="multimedia/camera/videobasic.html"> <a href="../multimedia/camera/videobasic.html"> <i class="fa fa-check"></i> <b>4.2.2.</b> 简单的录像 </a> </li> <li class="chapter " data-level="4.2.3" data-path="multimedia/camera/cameradirect.html"> <a href="../multimedia/camera/cameradirect.html"> <i class="fa fa-check"></i> <b>4.2.3.</b> 控制相机硬件 </a> </li> </ul> </li> <li class="chapter " data-level="4.3" data-path="multimedia/printing/index.html"> <a href="../multimedia/printing/index.html"> <i class="fa fa-check"></i> <b>4.3.</b> 打印 </a> <ul class="articles"> <li class="chapter " data-level="4.3.1" data-path="multimedia/printing/photos.html"> <a href="../multimedia/printing/photos.html"> <i class="fa fa-check"></i> <b>4.3.1.</b> 打印照片 </a> </li> <li class="chapter " data-level="4.3.2" data-path="multimedia/printing/html-docs.html"> <a href="../multimedia/printing/html-docs.html"> <i class="fa fa-check"></i> <b>4.3.2.</b> 打印HTML文档 </a> </li> <li class="chapter " data-level="4.3.3" data-path="multimedia/printing/custom-docs.html"> <a href="../multimedia/printing/custom-docs.html"> <i class="fa fa-check"></i> <b>4.3.3.</b> 打印自定义文档 </a> </li> </ul> </li> </ul> </li> <li class="chapter " data-level="5" data-path="graphics/index.html"> <a href="../graphics/index.html"> <i class="fa fa-check"></i> <b>5.</b> Android图像处理 </a> <ul class="articles"> <li class="chapter " data-level="5.1" data-path="graphics/displaying-bitmaps/index.html"> <a href="../graphics/displaying-bitmaps/index.html"> <i class="fa fa-check"></i> <b>5.1.</b> 高效显示Bitmap </a> <ul class="articles"> <li class="chapter " data-level="5.1.1" data-path="graphics/displaying-bitmaps/load-bitmap.html"> <a href="../graphics/displaying-bitmaps/load-bitmap.html"> <i class="fa fa-check"></i> <b>5.1.1.</b> 高效加载大图 </a> </li> <li class="chapter " data-level="5.1.2" data-path="graphics/displaying-bitmaps/process-bitmap.html"> <a href="../graphics/displaying-bitmaps/process-bitmap.html"> <i class="fa fa-check"></i> <b>5.1.2.</b> 非UI线程处理Bitmap </a> </li> <li class="chapter " data-level="5.1.3" data-path="graphics/displaying-bitmaps/cache-bitmap.html"> <a href="../graphics/displaying-bitmaps/cache-bitmap.html"> <i class="fa fa-check"></i> <b>5.1.3.</b> 缓存Bitmap </a> </li> <li class="chapter " data-level="5.1.4" data-path="graphics/displaying-bitmaps/manage-bitmap-memory.html"> <a href="../graphics/displaying-bitmaps/manage-bitmap-memory.html"> <i class="fa fa-check"></i> <b>5.1.4.</b> 管理Bitmap的内存占用 </a> </li> <li class="chapter " data-level="5.1.5" data-path="graphics/displaying-bitmaps/display-bitmap.html"> <a href="../graphics/displaying-bitmaps/display-bitmap.html"> <i class="fa fa-check"></i> <b>5.1.5.</b> 在UI上显示Bitmap </a> </li> </ul> </li> <li class="chapter " data-level="5.2" data-path="graphics/opengl/index.html"> <a href="../graphics/opengl/index.html"> <i class="fa fa-check"></i> <b>5.2.</b> 使用OpenGL ES显示图像 </a> <ul class="articles"> <li class="chapter " data-level="5.2.1" data-path="graphics/opengl/environment.html"> <a href="../graphics/opengl/environment.html"> <i class="fa fa-check"></i> <b>5.2.1.</b> 建立OpenGL ES的环境 </a> </li> <li class="chapter " data-level="5.2.2" data-path="graphics/opengl/shapes.html"> <a href="../graphics/opengl/shapes.html"> <i class="fa fa-check"></i> <b>5.2.2.</b> 定义Shapes </a> </li> <li class="chapter " data-level="5.2.3" data-path="graphics/opengl/draw.html"> <a href="../graphics/opengl/draw.html"> <i class="fa fa-check"></i> <b>5.2.3.</b> 绘制Shapes </a> </li> <li class="chapter " data-level="5.2.4" data-path="graphics/opengl/projection.html"> <a href="../graphics/opengl/projection.html"> <i class="fa fa-check"></i> <b>5.2.4.</b> 运用投影与相机视图 </a> </li> <li class="chapter " data-level="5.2.5" data-path="graphics/opengl/motion.html"> <a href="../graphics/opengl/motion.html"> <i class="fa fa-check"></i> <b>5.2.5.</b> 添加移动 </a> </li> <li class="chapter " data-level="5.2.6" data-path="graphics/opengl/touch.html"> <a href="../graphics/opengl/touch.html"> <i class="fa fa-check"></i> <b>5.2.6.</b> 响应触摸事件 </a> </li> </ul> </li> </ul> </li> <li class="chapter " data-level="6" data-path="animations/index.html"> <a href="../animations/index.html"> <i class="fa fa-check"></i> <b>6.</b> Android显示动画 </a> <ul class="articles"> <li class="chapter " data-level="6.1" data-path="animations/crossfade.html"> <a href="../animations/crossfade.html"> <i class="fa fa-check"></i> <b>6.1.</b> 淡入淡出两个View </a> </li> <li class="chapter " data-level="6.2" data-path="animations/screen-slide.html"> <a href="../animations/screen-slide.html"> <i class="fa fa-check"></i> <b>6.2.</b> 使用ViewPager实现屏幕滑动 </a> </li> <li class="chapter " data-level="6.3" data-path="animations/cardflip.html"> <a href="../animations/cardflip.html"> <i class="fa fa-check"></i> <b>6.3.</b> 卡片翻转的动画 </a> </li> <li class="chapter " data-level="6.4" data-path="animations/zoom.html"> <a href="../animations/zoom.html"> <i class="fa fa-check"></i> <b>6.4.</b> 缩放动画 </a> </li> <li class="chapter " data-level="6.5" data-path="animations/layout.html"> <a href="../animations/layout.html"> <i class="fa fa-check"></i> <b>6.5.</b> 控件切换动画 </a> </li> </ul> </li> <li class="chapter " data-level="7" data-path="connectivity/index.html"> <a href="../connectivity/index.html"> <i class="fa fa-check"></i> <b>7.</b> Android网络连接 </a> <ul class="articles"> <li class="chapter " data-level="7.1" data-path="connectivity/connect-devices-wireless/index.html"> <a href="../connectivity/connect-devices-wireless/index.html"> <i class="fa fa-check"></i> <b>7.1.</b> 无线连接设备 </a> <ul class="articles"> <li class="chapter " data-level="7.1.1" data-path="connectivity/connect-devices-wireless/nsd.html"> <a href="../connectivity/connect-devices-wireless/nsd.html"> <i class="fa fa-check"></i> <b>7.1.1.</b> 使得网络服务可发现 </a> </li> <li class="chapter " data-level="7.1.2" data-path="connectivity/connect-devices-wireless/wifi-direct.html"> <a href="../connectivity/connect-devices-wireless/wifi-direct.html"> <i class="fa fa-check"></i> <b>7.1.2.</b> 使用WiFi建立P2P连接 </a> </li> <li class="chapter " data-level="7.1.3" data-path="connectivity/connect-devices-wireless/nsd-wifi-index.html"> <a href="../connectivity/connect-devices-wireless/nsd-wifi-index.html"> <i class="fa fa-check"></i> <b>7.1.3.</b> 使用WiFi P2P服务 </a> </li> </ul> </li> <li class="chapter " data-level="7.2" data-path="connectivity/network-ops/index.html"> <a href="../connectivity/network-ops/index.html"> <i class="fa fa-check"></i> <b>7.2.</b> 网络连接操作 </a> <ul class="articles"> <li class="chapter " data-level="7.2.1" data-path="connectivity/network-ops/connecting.html"> <a href="../connectivity/network-ops/connecting.html"> <i class="fa fa-check"></i> <b>7.2.1.</b> 连接到网络 </a> </li> <li class="chapter " data-level="7.2.2" data-path="connectivity/network-ops/managing.html"> <a href="../connectivity/network-ops/managing.html"> <i class="fa fa-check"></i> <b>7.2.2.</b> 管理使用的网络 </a> </li> <li class="chapter " data-level="7.2.3" data-path="connectivity/network-ops/xml.html"> <a href="../connectivity/network-ops/xml.html"> <i class="fa fa-check"></i> <b>7.2.3.</b> 解析XML数据 </a> </li> </ul> </li> <li class="chapter " data-level="7.3" data-path="connectivity/efficient-downloads/index.html"> <a href="../connectivity/efficient-downloads/index.html"> <i class="fa fa-check"></i> <b>7.3.</b> 高效下载 </a> <ul class="articles"> <li class="chapter " data-level="7.3.1" data-path="connectivity/efficient-downloads/efficient-network-access.html"> <a href="../connectivity/efficient-downloads/efficient-network-access.html"> <i class="fa fa-check"></i> <b>7.3.1.</b> 为网络访问更加高效而优化下载 </a> </li> <li class="chapter " data-level="7.3.2" data-path="connectivity/efficient-downloads/regular-update.html"> <a href="../connectivity/efficient-downloads/regular-update.html"> <i class="fa fa-check"></i> <b>7.3.2.</b> 最小化更新操作的影响 </a> </li> <li class="chapter " data-level="7.3.3" data-path="connectivity/efficient-downloads/redundant-redundant.html"> <a href="../connectivity/efficient-downloads/redundant-redundant.html"> <i class="fa fa-check"></i> <b>7.3.3.</b> 避免下载多余的数据 </a> </li> <li class="chapter " data-level="7.3.4" data-path="connectivity/efficient-downloads/connectivity-patterns.html"> <a href="../connectivity/efficient-downloads/connectivity-patterns.html"> <i class="fa fa-check"></i> <b>7.3.4.</b> 根据网络类型改变下载模式 </a> </li> </ul> </li> <li class="chapter " data-level="7.4" data-path="connectivity/sync-adapters/index.html"> <a href="../connectivity/sync-adapters/index.html"> <i class="fa fa-check"></i> <b>7.4.</b> 使用Sync Adapter传输数据 </a> <ul class="articles"> <li class="chapter " data-level="7.4.1" data-path="connectivity/sync-adapters/create-authenticator.html"> <a href="../connectivity/sync-adapters/create-authenticator.html"> <i class="fa fa-check"></i> <b>7.4.1.</b> 创建Stub授权器 </a> </li> <li class="chapter " data-level="7.4.2" data-path="connectivity/sync-adapters/create-stub-provider.html"> <a href="../connectivity/sync-adapters/create-stub-provider.html"> <i class="fa fa-check"></i> <b>7.4.2.</b> 创建Stub Content Provider </a> </li> <li class="chapter " data-level="7.4.3" data-path="connectivity/sync-adapters/create-sync-adapter.html"> <a href="../connectivity/sync-adapters/create-sync-adapter.html"> <i class="fa fa-check"></i> <b>7.4.3.</b> 创建Sync Adpater </a> </li> <li class="chapter " data-level="7.4.4" data-path="connectivity/sync-adapters/running-sync-adapter.html"> <a href="../connectivity/sync-adapters/running-sync-adapter.html"> <i class="fa fa-check"></i> <b>7.4.4.</b> 执行Sync Adpater </a> </li> </ul> </li> <li class="chapter " data-level="7.5" data-path="connectivity/volley/index.html"> <a href="../connectivity/volley/index.html"> <i class="fa fa-check"></i> <b>7.5.</b> 使用Volley执行网络数据传输 </a> <ul class="articles"> <li class="chapter " data-level="7.5.1" data-path="connectivity/volley/simple.html"> <a href="../connectivity/volley/simple.html"> <i class="fa fa-check"></i> <b>7.5.1.</b> 发送简单的网络请求 </a> </li> <li class="chapter " data-level="7.5.2" data-path="connectivity/volley/request-queue.html"> <a href="../connectivity/volley/request-queue.html"> <i class="fa fa-check"></i> <b>7.5.2.</b> 建立请求队列 </a> </li> <li class="chapter " data-level="7.5.3" data-path="connectivity/volley/request.html"> <a href="../connectivity/volley/request.html"> <i class="fa fa-check"></i> <b>7.5.3.</b> 创建标准的网络请求 </a> </li> <li class="chapter " data-level="7.5.4" data-path="connectivity/volley/request-custom.html"> <a href="../connectivity/volley/request-custom.html"> <i class="fa fa-check"></i> <b>7.5.4.</b> 实现自定义的网络请求 </a> </li> </ul> </li> </ul> </li> <li class="chapter " data-level="8" data-path="cloud/index.html"> <a href="../cloud/index.html"> <i class="fa fa-check"></i> <b>8.</b> Android云服务 </a> <ul class="articles"> <li class="chapter " data-level="8.1" data-path="cloud/cloudsync/index.html"> <a href="../cloud/cloudsync/index.html"> <i class="fa fa-check"></i> <b>8.1.</b> 云同步 </a> <ul class="articles"> <li class="chapter " data-level="8.1.1" data-path="cloud/cloudsync/backupapi.html"> <a href="../cloud/cloudsync/backupapi.html"> <i class="fa fa-check"></i> <b>8.1.1.</b> 使用备份API </a> </li> <li class="chapter " data-level="8.1.2" data-path="cloud/cloudsync/gcm.html"> <a href="../cloud/cloudsync/gcm.html"> <i class="fa fa-check"></i> <b>8.1.2.</b> 使用Google Cloud Messaging </a> </li> </ul> </li> <li class="chapter " data-level="8.2" data-path="cloud/cloudsave/index.html"> <a href="../cloud/cloudsave/index.html"> <i class="fa fa-check"></i> <b>8.2.</b> 解决云同步的保存冲突 </a> </li> </ul> </li> <li class="chapter " data-level="9" data-path="contacts-provider/index.html"> <a href="../contacts-provider/index.html"> <i class="fa fa-check"></i> <b>9.</b> Android联系人信息 </a> <ul class="articles"> <li class="chapter " data-level="9.1" data-path="contacts-provider/retrieve-names.html"> <a href="../contacts-provider/retrieve-names.html"> <i class="fa fa-check"></i> <b>9.1.</b> 获取联系人列表 </a> </li> <li class="chapter " data-level="9.2" data-path="contacts-provider/retrieve-detail.html"> <a href="../contacts-provider/retrieve-detail.html"> <i class="fa fa-check"></i> <b>9.2.</b> 获取联系人详情 </a> </li> <li class="chapter " data-level="9.3" data-path="contacts-provider/modify-data.html"> <a href="../contacts-provider/modify-data.html"> <i class="fa fa-check"></i> <b>9.3.</b> 修改联系人信息 </a> </li> <li class="chapter " data-level="9.4" data-path="contacts-provider/display-badge.html"> <a href="../contacts-provider/display-badge.html"> <i class="fa fa-check"></i> <b>9.4.</b> 显示联系人头像 </a> </li> </ul> </li> <li class="chapter " data-level="10" data-path="location/index.html"> <a href="../location/index.html"> <i class="fa fa-check"></i> <b>10.</b> Android位置信息 </a> <ul class="articles"> <li class="chapter " data-level="10.1" data-path="location/retrieve-current.html"> <a href="../location/retrieve-current.html"> <i class="fa fa-check"></i> <b>10.1.</b> 获取当前位置 </a> </li> <li class="chapter " data-level="10.2" data-path="location/retrieve-location-updates.html"> <a href="../location/retrieve-location-updates.html"> <i class="fa fa-check"></i> <b>10.2.</b> 获取位置更新 </a> </li> <li class="chapter " data-level="10.3" data-path="location/display-address.html"> <a href="../location/display-address.html"> <i class="fa fa-check"></i> <b>10.3.</b> 显示位置地址 </a> </li> <li class="chapter " data-level="10.4" data-path="location/geofencing.html"> <a href="../location/geofencing.html"> <i class="fa fa-check"></i> <b>10.4.</b> 创建并监视异常区域 </a> </li> <li class="chapter " data-level="10.5" data-path="location/activity-recognition.html"> <a href="../location/activity-recognition.html"> <i class="fa fa-check"></i> <b>10.5.</b> 识别用户的当下活动 </a> </li> <li class="chapter " data-level="10.6" data-path="location/location-testing.html"> <a href="../location/location-testing.html"> <i class="fa fa-check"></i> <b>10.6.</b> 使用模拟位置进行测试 </a> </li> </ul> </li> <li class="chapter " data-level="11" data-path="wearables/index.html"> <a href="../wearables/index.html"> <i class="fa fa-check"></i> <b>11.</b> Android可穿戴应用 </a> <ul class="articles"> <li class="chapter " data-level="11.1" data-path="wearables/notifications/index.html"> <a href="../wearables/notifications/index.html"> <i class="fa fa-check"></i> <b>11.1.</b> 赋予Notification可穿戴特性 </a> <ul class="articles"> <li class="chapter " data-level="11.1.1" data-path="wearables/notifications/creating.html"> <a href="../wearables/notifications/creating.html"> <i class="fa fa-check"></i> <b>11.1.1.</b> 创建Notification </a> </li> <li class="chapter " data-level="11.1.2" data-path="wearables/notifications/voice-input.html"> <a href="../wearables/notifications/voice-input.html"> <i class="fa fa-check"></i> <b>11.1.2.</b> 在Notifcation中接收语音输入 </a> </li> <li class="chapter " data-level="11.1.3" data-path="wearables/notifications/pages.html"> <a href="../wearables/notifications/pages.html"> <i class="fa fa-check"></i> <b>11.1.3.</b> 为Notification添加显示页面 </a> </li> <li class="chapter " data-level="11.1.4" data-path="wearables/notifications/stacks.html"> <a href="../wearables/notifications/stacks.html"> <i class="fa fa-check"></i> <b>11.1.4.</b> 以Stack的方式显示Notifications </a> </li> </ul> </li> <li class="chapter " data-level="11.2" data-path="wearables/apps/index.html"> <a href="../wearables/apps/index.html"> <i class="fa fa-check"></i> <b>11.2.</b> 创建可穿戴的应用 </a> <ul class="articles"> <li class="chapter " data-level="11.2.1" data-path="wearables/apps/creating.html"> <a href="../wearables/apps/creating.html"> <i class="fa fa-check"></i> <b>11.2.1.</b> 创建并执行可穿戴应用 </a> </li> <li class="chapter " data-level="11.2.2" data-path="wearables/apps/layouts.html"> <a href="../wearables/apps/layouts.html"> <i class="fa fa-check"></i> <b>11.2.2.</b> 创建自定义的布局 </a> </li> <li class="chapter " data-level="11.2.3" data-path="wearables/apps/voice.html"> <a href="../wearables/apps/voice.html"> <i class="fa fa-check"></i> <b>11.2.3.</b> 添加语音能力 </a> </li> <li class="chapter " data-level="11.2.4" data-path="wearables/apps/packaging.html"> <a href="../wearables/apps/packaging.html"> <i class="fa fa-check"></i> <b>11.2.4.</b> 打包可穿戴应用 </a> </li> <li class="chapter " data-level="11.2.5" data-path="wearables/apps/bt-debugging.html"> <a href="../wearables/apps/bt-debugging.html"> <i class="fa fa-check"></i> <b>11.2.5.</b> 通过蓝牙进行调试 </a> </li> </ul> </li> <li class="chapter " data-level="11.3" data-path="wearables/data-layer/index.html"> <a href="../wearables/data-layer/index.html"> <i class="fa fa-check"></i> <b>11.3.</b> 发送并同步数据 </a> <ul class="articles"> <li class="chapter " data-level="11.3.1" data-path="wearables/data-layer/accessing.html"> <a href="../wearables/data-layer/accessing.html"> <i class="fa fa-check"></i> <b>11.3.1.</b> 访问可穿戴数据层 </a> </li> <li class="chapter " data-level="11.3.2" data-path="wearables/data-layer/data-items.html"> <a href="../wearables/data-layer/data-items.html"> <i class="fa fa-check"></i> <b>11.3.2.</b> 同步数据单元 </a> </li> <li class="chapter " data-level="11.3.3" data-path="wearables/data-layer/assets.html"> <a href="../wearables/data-layer/assets.html"> <i class="fa fa-check"></i> <b>11.3.3.</b> 传输资源 </a> </li> <li class="chapter " data-level="11.3.4" data-path="wearables/data-layer/messages.html"> <a href="../wearables/data-layer/messages.html"> <i class="fa fa-check"></i> <b>11.3.4.</b> 发送与接收消息 </a> </li> <li class="chapter " data-level="11.3.5" data-path="wearables/data-layer/events.html"> <a href="../wearables/data-layer/events.html"> <i class="fa fa-check"></i> <b>11.3.5.</b> 处理数据层的事件 </a> </li> </ul> </li> </ul> </li> <li class="chapter " data-level="12" data-path="ux/index.html"> <a href="../ux/index.html"> <i class="fa fa-check"></i> <b>12.</b> Android用户体验设计 </a> <ul class="articles"> <li class="chapter " data-level="12.1" data-path="ux/design-nav/index.html"> <a href="../ux/design-nav/index.html"> <i class="fa fa-check"></i> <b>12.1.</b> 设计高效的导航 </a> <ul class="articles"> <li class="chapter " data-level="12.1.1" data-path="ux/design-nav/screen-planning.html"> <a href="../ux/design-nav/screen-planning.html"> <i class="fa fa-check"></i> <b>12.1.1.</b> 规划屏幕界面与他们之间的关系 </a> </li> <li class="chapter " data-level="12.1.2" data-path="ux/design-nav/multi-sizes.html"> <a href="../ux/design-nav/multi-sizes.html"> <i class="fa fa-check"></i> <b>12.1.2.</b> 为多种大小的屏幕进行规划 </a> </li> <li class="chapter " data-level="12.1.3" data-path="ux/design-nav/descendant-lateral.html"> <a href="../ux/design-nav/descendant-lateral.html"> <i class="fa fa-check"></i> <b>12.1.3.</b> 提供向下和横向导航 </a> </li> <li class="chapter " data-level="12.1.4" data-path="ux/design-nav/ancestral-temporal.html"> <a href="../ux/design-nav/ancestral-temporal.html"> <i class="fa fa-check"></i> <b>12.1.4.</b> 提供向上和时间导航 </a> </li> <li class="chapter " data-level="12.1.5" data-path="ux/design-nav/wireframing.html"> <a href="../ux/design-nav/wireframing.html"> <i class="fa fa-check"></i> <b>12.1.5.</b> 综合:设计样例 App </a> </li> </ul> </li> <li class="chapter " data-level="12.2" data-path="ux/implement-nav/index.html"> <a href="../ux/implement-nav/index.html"> <i class="fa fa-check"></i> <b>12.2.</b> 实现高效的导航 </a> <ul class="articles"> <li class="chapter " data-level="12.2.1" data-path="ux/implement-nav/lateral.html"> <a href="../ux/implement-nav/lateral.html"> <i class="fa fa-check"></i> <b>12.2.1.</b> 使用Tabs创建Swipe视图 </a> </li> <li class="chapter " data-level="12.2.2" data-path="ux/implement-nav/nav-drawer.html"> <a href="../ux/implement-nav/nav-drawer.html"> <i class="fa fa-check"></i> <b>12.2.2.</b> 创建抽屉导航 </a> </li> <li class="chapter " data-level="12.2.3" data-path="ux/implement-nav/ancestral.html"> <a href="../ux/implement-nav/ancestral.html"> <i class="fa fa-check"></i> <b>12.2.3.</b> 提供向上的导航 </a> </li> <li class="chapter " data-level="12.2.4" data-path="ux/implement-nav/temporal.html"> <a href="../ux/implement-nav/temporal.html"> <i class="fa fa-check"></i> <b>12.2.4.</b> 提供向后的导航 </a> </li> <li class="chapter " data-level="12.2.5" data-path="ux/implement-nav/descendant.html"> <a href="../ux/implement-nav/descendant.html"> <i class="fa fa-check"></i> <b>12.2.5.</b> 实现向下的导航 </a> </li> </ul> </li> <li class="chapter " data-level="12.3" data-path="ux/notify-user/index.html"> <a href="../ux/notify-user/index.html"> <i class="fa fa-check"></i> <b>12.3.</b> 通知提示用户 </a> <ul class="articles"> <li class="chapter " data-level="12.3.1" data-path="ux/notify-user/build-notification.html"> <a href="../ux/notify-user/build-notification.html"> <i class="fa fa-check"></i> <b>12.3.1.</b> 建立Notification </a> </li> <li class="chapter " data-level="12.3.2" data-path="ux/notify-user/nav.html"> <a href="../ux/notify-user/nav.html"> <i class="fa fa-check"></i> <b>12.3.2.</b> 当启动Activity时保留导航 </a> </li> <li class="chapter " data-level="12.3.3" data-path="ux/notify-user/update-notification.html"> <a href="../ux/notify-user/update-notification.html"> <i class="fa fa-check"></i> <b>12.3.3.</b> 更新Notification </a> </li> <li class="chapter " data-level="12.3.4" data-path="ux/notify-user/expand-notification.html"> <a href="../ux/notify-user/expand-notification.html"> <i class="fa fa-check"></i> <b>12.3.4.</b> 使用BigView风格 </a> </li> <li class="chapter " data-level="12.3.5" data-path="ux/notify-user/progess-notification.html"> <a href="../ux/notify-user/progess-notification.html"> <i class="fa fa-check"></i> <b>12.3.5.</b> 显示Notification进度 </a> </li> </ul> </li> <li class="chapter " data-level="12.4" data-path="ux/search/index.html"> <a href="../ux/search/index.html"> <i class="fa fa-check"></i> <b>12.4.</b> 增加搜索功能 </a> <ul class="articles"> <li class="chapter " data-level="12.4.1" data-path="ux/search/setup.html"> <a href="../ux/search/setup.html"> <i class="fa fa-check"></i> <b>12.4.1.</b> 建立搜索界面 </a> </li> <li class="chapter " data-level="12.4.2" data-path="ux/search/search.html"> <a href="../ux/search/search.html"> <i class="fa fa-check"></i> <b>12.4.2.</b> 保存并搜索数据 </a> </li> <li class="chapter " data-level="12.4.3" data-path="ux/search/back-compat.html"> <a href="../ux/search/back-compat.html"> <i class="fa fa-check"></i> <b>12.4.3.</b> 保持向下兼容 </a> </li> </ul> </li> <li class="chapter " data-level="12.5" data-path="ux/app-indexing/index.html"> <a href="../ux/app-indexing/index.html"> <i class="fa fa-check"></i> <b>12.5.</b> 使得你的App内容可被Google搜索 </a> <ul class="articles"> <li class="chapter " data-level="12.5.1" data-path="ux/app-indexing/deep-linking.html"> <a href="../ux/app-indexing/deep-linking.html"> <i class="fa fa-check"></i> <b>12.5.1.</b> 为App内容开启深度链接 </a> </li> <li class="chapter " data-level="12.5.2" data-path="ux/app-indexing/enable-app-indexing.html"> <a href="../ux/app-indexing/enable-app-indexing.html"> <i class="fa fa-check"></i> <b>12.5.2.</b> 为索引指定App内容 </a> </li> </ul> </li> </ul> </li> <li class="chapter " data-level="13" data-path="ui/index.html"> <a href="../ui/index.html"> <i class="fa fa-check"></i> <b>13.</b> Android界面UI设计 </a> <ul class="articles"> <li class="chapter " data-level="13.1" data-path="ui/multiscreen/index.html"> <a href="../ui/multiscreen/index.html"> <i class="fa fa-check"></i> <b>13.1.</b> 为多屏幕设计 </a> <ul class="articles"> <li class="chapter " data-level="13.1.1" data-path="ui/multiscreen/screen-sizes.html"> <a href="../ui/multiscreen/screen-sizes.html"> <i class="fa fa-check"></i> <b>13.1.1.</b> 兼容不同的屏幕大小 </a> </li> <li class="chapter " data-level="13.1.2" data-path="ui/multiscreen/screen-desities.html"> <a href="../ui/multiscreen/screen-desities.html"> <i class="fa fa-check"></i> <b>13.1.2.</b> 兼容不同的屏幕密度 </a> </li> <li class="chapter " data-level="13.1.3" data-path="ui/multiscreen/adapt-ui.html"> <a href="../ui/multiscreen/adapt-ui.html"> <i class="fa fa-check"></i> <b>13.1.3.</b> 实现可适应的UI </a> </li> </ul> </li> <li class="chapter " data-level="13.2" data-path="ui/tv/index.html"> <a href="../ui/tv/index.html"> <i class="fa fa-check"></i> <b>13.2.</b> 为TV进行设计 </a> <ul class="articles"> <li class="chapter " data-level="13.2.1" data-path="ui/tv/optimize-layouts-tv.html"> <a href="../ui/tv/optimize-layouts-tv.html"> <i class="fa fa-check"></i> <b>13.2.1.</b> 为TV优化Layout </a> </li> <li class="chapter " data-level="13.2.2" data-path="ui/tv/optimize-nav-tv.html"> <a href="../ui/tv/optimize-nav-tv.html"> <i class="fa fa-check"></i> <b>13.2.2.</b> 为TV优化导航 </a> </li> <li class="chapter " data-level="13.2.3" data-path="ui/tv/unsupport-features-tv.html"> <a href="../ui/tv/unsupport-features-tv.html"> <i class="fa fa-check"></i> <b>13.2.3.</b> 处理不支持TV的功能 </a> </li> </ul> </li> <li class="chapter " data-level="13.3" data-path="ui/custom-view/index.html"> <a href="../ui/custom-view/index.html"> <i class="fa fa-check"></i> <b>13.3.</b> 创建自定义View </a> <ul class="articles"> <li class="chapter " data-level="13.3.1" data-path="ui/custom-view/create-view.html"> <a href="../ui/custom-view/create-view.html"> <i class="fa fa-check"></i> <b>13.3.1.</b> 创建自定义的View类 </a> </li> <li class="chapter " data-level="13.3.2" data-path="ui/custom-view/custom-draw.html"> <a href="../ui/custom-view/custom-draw.html"> <i class="fa fa-check"></i> <b>13.3.2.</b> 实现自定义View的绘制 </a> </li> <li class="chapter " data-level="13.3.3" data-path="ui/custom-view/make-interactive.html"> <a href="../ui/custom-view/make-interactive.html"> <i class="fa fa-check"></i> <b>13.3.3.</b> 使得View可交互 </a> </li> <li class="chapter " data-level="13.3.4" data-path="ui/custom-view/optimize-view.html"> <a href="../ui/custom-view/optimize-view.html"> <i class="fa fa-check"></i> <b>13.3.4.</b> 优化自定义View </a> </li> </ul> </li> <li class="chapter " data-level="13.4" data-path="ui/backward-compatible-ui/index.html"> <a href="../ui/backward-compatible-ui/index.html"> <i class="fa fa-check"></i> <b>13.4.</b> 创建向后兼容的UI </a> <ul class="articles"> <li class="chapter " data-level="13.4.1" data-path="ui/backward-compatible-ui/abstract.html"> <a href="../ui/backward-compatible-ui/abstract.html"> <i class="fa fa-check"></i> <b>13.4.1.</b> 抽象新的APIs </a> </li> <li class="chapter " data-level="13.4.2" data-path="ui/backward-compatible-ui/new-impl.html"> <a href="../ui/backward-compatible-ui/new-impl.html"> <i class="fa fa-check"></i> <b>13.4.2.</b> 代理至新的APIs </a> </li> <li class="chapter " data-level="13.4.3" data-path="ui/backward-compatible-ui/older-impl.html"> <a href="../ui/backward-compatible-ui/older-impl.html"> <i class="fa fa-check"></i> <b>13.4.3.</b> 使用旧的APIs实现新API的效果 </a> </li> <li class="chapter " data-level="13.4.4" data-path="ui/backward-compatible-ui/using-component.html"> <a href="../ui/backward-compatible-ui/using-component.html"> <i class="fa fa-check"></i> <b>13.4.4.</b> 使用版本敏感的组件 </a> </li> </ul> </li> <li class="chapter " data-level="13.5" data-path="ui/accessibility/index.html"> <a href="../ui/accessibility/index.html"> <i class="fa fa-check"></i> <b>13.5.</b> 实现辅助功能 </a> <ul class="articles"> <li class="chapter " data-level="13.5.1" data-path="ui/accessibility/accessible-app.html"> <a href="../ui/accessibility/accessible-app.html"> <i class="fa fa-check"></i> <b>13.5.1.</b> 开发辅助程序 </a> </li> <li class="chapter " data-level="13.5.2" data-path="ui/accessibility/accessible-service.html"> <a href="../ui/accessibility/accessible-service.html"> <i class="fa fa-check"></i> <b>13.5.2.</b> 开发辅助服务 </a> </li> </ul> </li> <li class="chapter " data-level="13.6" data-path="ui/system-ui/index.html"> <a href="../ui/system-ui/index.html"> <i class="fa fa-check"></i> <b>13.6.</b> 管理系统UI </a> <ul class="articles"> <li class="chapter " data-level="13.6.1" data-path="ui/system-ui/dim.html"> <a href="../ui/system-ui/dim.html"> <i class="fa fa-check"></i> <b>13.6.1.</b> 淡化系统Bar </a> </li> <li class="chapter " data-level="13.6.2" data-path="ui/system-ui/hide-ui.html"> <a href="../ui/system-ui/hide-ui.html"> <i class="fa fa-check"></i> <b>13.6.2.</b> 隐藏系统Bar </a> </li> <li class="chapter " data-level="13.6.3" data-path="ui/system-ui/hide-nav.html"> <a href="../ui/system-ui/hide-nav.html"> <i class="fa fa-check"></i> <b>13.6.3.</b> 隐藏导航Bar </a> </li> <li class="chapter " data-level="13.6.4" data-path="ui/system-ui/immersive.html"> <a href="../ui/system-ui/immersive.html"> <i class="fa fa-check"></i> <b>13.6.4.</b> 全屏沉浸式应用 </a> </li> <li class="chapter " data-level="13.6.5" data-path="ui/system-ui/visibility.html"> <a href="../ui/system-ui/visibility.html"> <i class="fa fa-check"></i> <b>13.6.5.</b> 响应UI可见性的变化 </a> </li> </ul> </li> </ul> </li> <li class="chapter " data-level="14" data-path="input/index.html"> <a href="../input/index.html"> <i class="fa fa-check"></i> <b>14.</b> Android用户输入 </a> <ul class="articles"> <li class="chapter " data-level="14.1" data-path="input/gestures/index.html"> <a href="../input/gestures/index.html"> <i class="fa fa-check"></i> <b>14.1.</b> 使用触摸手势 </a> <ul class="articles"> <li class="chapter " data-level="14.1.1" data-path="input/gestures/detector.html"> <a href="../input/gestures/detector.html"> <i class="fa fa-check"></i> <b>14.1.1.</b> 检测常用的手势 </a> </li> <li class="chapter " data-level="14.1.2" data-path="input/gestures/movement.html"> <a href="../input/gestures/movement.html"> <i class="fa fa-check"></i> <b>14.1.2.</b> 跟踪手势移动 </a> </li> <li class="chapter " data-level="14.1.3" data-path="input/gestures/scroll.html"> <a href="../input/gestures/scroll.html"> <i class="fa fa-check"></i> <b>14.1.3.</b> Scroll手势动画 </a> </li> <li class="chapter " data-level="14.1.4" data-path="input/gestures/multi.html"> <a href="../input/gestures/multi.html"> <i class="fa fa-check"></i> <b>14.1.4.</b> 处理多触摸手势 </a> </li> <li class="chapter " data-level="14.1.5" data-path="input/gestures/scale.html"> <a href="../input/gestures/scale.html"> <i class="fa fa-check"></i> <b>14.1.5.</b> 拖拽与缩放 </a> </li> <li class="chapter " data-level="14.1.6" data-path="input/gestures/viewgroup.html"> <a href="../input/gestures/viewgroup.html"> <i class="fa fa-check"></i> <b>14.1.6.</b> 管理ViewGroup中的触摸事件 </a> </li> </ul> </li> <li class="chapter " data-level="14.2" data-path="input/keyboard-input/index.html"> <a href="../input/keyboard-input/index.html"> <i class="fa fa-check"></i> <b>14.2.</b> 处理键盘输入 </a> <ul class="articles"> <li class="chapter " data-level="14.2.1" data-path="input/keyboard-input/type.html"> <a href="../input/keyboard-input/type.html"> <i class="fa fa-check"></i> <b>14.2.1.</b> 指定输入法类型 </a> </li> <li class="chapter " data-level="14.2.2" data-path="input/keyboard-input/visibility.html"> <a href="../input/keyboard-input/visibility.html"> <i class="fa fa-check"></i> <b>14.2.2.</b> 处理输入法可见性 </a> </li> <li class="chapter " data-level="14.2.3" data-path="input/keyboard-input/navigation.html"> <a href="../input/keyboard-input/navigation.html"> <i class="fa fa-check"></i> <b>14.2.3.</b> 兼容键盘导航 </a> </li> <li class="chapter " data-level="14.2.4" data-path="input/keyboard-input/commands.html"> <a href="../input/keyboard-input/commands.html"> <i class="fa fa-check"></i> <b>14.2.4.</b> 处理按键动作 </a> </li> </ul> </li> <li class="chapter " data-level="14.3" data-path="input/game-controller/index.html"> <a href="../input/game-controller/index.html"> <i class="fa fa-check"></i> <b>14.3.</b> 兼容游戏控制器 </a> <ul class="articles"> <li class="chapter " data-level="14.3.1" data-path="input/game-controller/controller-inputs.html"> <a href="../input/game-controller/controller-inputs.html"> <i class="fa fa-check"></i> <b>14.3.1.</b> 处理控制器输入动作 </a> </li> <li class="chapter " data-level="14.3.2" data-path="input/game-controller/compatibility.html"> <a href="../input/game-controller/compatibility.html"> <i class="fa fa-check"></i> <b>14.3.2.</b> 支持不同的Android系统版本 </a> </li> <li class="chapter " data-level="14.3.3" data-path="input/game-controller/multi-controller.html"> <a href="../input/game-controller/multi-controller.html"> <i class="fa fa-check"></i> <b>14.3.3.</b> 支持多个控制器 </a> </li> </ul> </li> </ul> </li> <li class="chapter " data-level="15" data-path="background-jobs/index.html"> <a href="../background-jobs/index.html"> <i class="fa fa-check"></i> <b>15.</b> Android后台任务 </a> <ul class="articles"> <li class="chapter " data-level="15.1" data-path="background-jobs/run-background-service/index.html"> <a href="../background-jobs/run-background-service/index.html"> <i class="fa fa-check"></i> <b>15.1.</b> 在IntentService中执行后台任务 </a> <ul class="articles"> <li class="chapter " data-level="15.1.1" data-path="background-jobs/run-background-service/create-service.html"> <a href="../background-jobs/run-background-service/create-service.html"> <i class="fa fa-check"></i> <b>15.1.1.</b> 创建IntentService </a> </li> <li class="chapter " data-level="15.1.2" data-path="background-jobs/run-background-service/send-request.html"> <a href="../background-jobs/run-background-service/send-request.html"> <i class="fa fa-check"></i> <b>15.1.2.</b> 发送工作任务到IntentService </a> </li> <li class="chapter " data-level="15.1.3" data-path="background-jobs/run-background-service/report-status.html"> <a href="../background-jobs/run-background-service/report-status.html"> <i class="fa fa-check"></i> <b>15.1.3.</b> 报告后台任务执行状态 </a> </li> </ul> </li> <li class="chapter " data-level="15.2" data-path="background-jobs/load-data-background/index.html"> <a href="../background-jobs/load-data-background/index.html"> <i class="fa fa-check"></i> <b>15.2.</b> 使用CursorLoader在后台加载数据 </a> <ul class="articles"> <li class="chapter " data-level="15.2.1" data-path="background-jobs/load-data-background/setup-loader.html"> <a href="../background-jobs/load-data-background/setup-loader.html"> <i class="fa fa-check"></i> <b>15.2.1.</b> 使用CursorLoader执行查询任务 </a> </li> <li class="chapter " data-level="15.2.2" data-path="background-jobs/load-data-background/handle-result.html"> <a href="../background-jobs/load-data-background/handle-result.html"> <i class="fa fa-check"></i> <b>15.2.2.</b> 处理查询的结果 </a> </li> </ul> </li> <li class="chapter " data-level="15.3" data-path="background-jobs/scheduling/index.html"> <a href="../background-jobs/scheduling/index.html"> <i class="fa fa-check"></i> <b>15.3.</b> 管理设备的唤醒状态 </a> <ul class="articles"> <li class="chapter " data-level="15.3.1" data-path="background-jobs/scheduling/wake-lock.html"> <a href="../background-jobs/scheduling/wake-lock.html"> <i class="fa fa-check"></i> <b>15.3.1.</b> 保持设备的唤醒 </a> </li> <li class="chapter " data-level="15.3.2" data-path="background-jobs/scheduling/alarms.html"> <a href="../background-jobs/scheduling/alarms.html"> <i class="fa fa-check"></i> <b>15.3.2.</b> 制定重复定时的任务 </a> </li> </ul> </li> </ul> </li> <li class="chapter " data-level="16" data-path="performance/index.html"> <a href="../performance/index.html"> <i class="fa fa-check"></i> <b>16.</b> Android性能优化 </a> <ul class="articles"> <li class="chapter " data-level="16.1" data-path="performance/memory.html"> <a href="../performance/memory.html"> <i class="fa fa-check"></i> <b>16.1.</b> 管理应用的内存 </a> </li> <li class="chapter " data-level="16.2" data-path="performance/performance-tips.html"> <a href="../performance/performance-tips.html"> <i class="fa fa-check"></i> <b>16.2.</b> 性能优化Tips </a> </li> <li class="chapter " data-level="16.3" data-path="performance/improving-layouts/index.html"> <a href="../performance/improving-layouts/index.html"> <i class="fa fa-check"></i> <b>16.3.</b> 提升Layout的性能 </a> <ul class="articles"> <li class="chapter " data-level="16.3.1" data-path="performance/improving-layouts/optimizing-layout.html"> <a href="../performance/improving-layouts/optimizing-layout.html"> <i class="fa fa-check"></i> <b>16.3.1.</b> 优化layout的层级 </a> </li> <li class="chapter " data-level="16.3.2" data-path="performance/improving-layouts/reuse-layouts.html"> <a href="../performance/improving-layouts/reuse-layouts.html"> <i class="fa fa-check"></i> <b>16.3.2.</b> 使用include标签重用layouts </a> </li> <li class="chapter " data-level="16.3.3" data-path="performance/improving-layouts/loading-ondemand.html"> <a href="../performance/improving-layouts/loading-ondemand.html"> <i class="fa fa-check"></i> <b>16.3.3.</b> 按需加载视图 </a> </li> <li class="chapter " data-level="16.3.4" data-path="performance/improving-layouts/smooth-scrolling.html"> <a href="../performance/improving-layouts/smooth-scrolling.html"> <i class="fa fa-check"></i> <b>16.3.4.</b> 使得ListView滑动顺畅 </a> </li> </ul> </li> <li class="chapter " data-level="16.4" data-path="performance/monitor-device-state/index.html"> <a href="../performance/monitor-device-state/index.html"> <i class="fa fa-check"></i> <b>16.4.</b> 优化电池寿命 </a> <ul class="articles"> <li class="chapter " data-level="16.4.1" data-path="performance/monitor-device-state/battery-monitor.html"> <a href="../performance/monitor-device-state/battery-monitor.html"> <i class="fa fa-check"></i> <b>16.4.1.</b> 监测电量与充电状态 </a> </li> <li class="chapter " data-level="16.4.2" data-path="performance/monitor-device-state/docking-monitor.html"> <a href="../performance/monitor-device-state/docking-monitor.html"> <i class="fa fa-check"></i> <b>16.4.2.</b> 判断与监测Docking状态 </a> </li> <li class="chapter " data-level="16.4.3" data-path="performance/monitor-device-state/connectivity-monitor.html"> <a href="../performance/monitor-device-state/connectivity-monitor.html"> <i class="fa fa-check"></i> <b>16.4.3.</b> 判断与监测网络连接状态 </a> </li> <li class="chapter " data-level="16.4.4" data-path="performance/monitor-device-state/manifest-receivers.html"> <a href="../performance/monitor-device-state/manifest-receivers.html"> <i class="fa fa-check"></i> <b>16.4.4.</b> 根据需要操作Broadcast接受者 </a> </li> </ul> </li> <li class="chapter " data-level="16.5" data-path="performance/multi-threads/index.html"> <a href="../performance/multi-threads/index.html"> <i class="fa fa-check"></i> <b>16.5.</b> 多线程操作 </a> <ul class="articles"> <li class="chapter " data-level="16.5.1" data-path="performance/multi-threads/define-runnable.html"> <a href="../performance/multi-threads/define-runnable.html"> <i class="fa fa-check"></i> <b>16.5.1.</b> 在一个线程中执行一段特定的代码 </a> </li> <li class="chapter " data-level="16.5.2" data-path="performance/multi-threads/create-threadpool.html"> <a href="../performance/multi-threads/create-threadpool.html"> <i class="fa fa-check"></i> <b>16.5.2.</b> 为多线程创建线程池 </a> </li> <li class="chapter " data-level="16.5.3" data-path="performance/multi-threads/run-code.html"> <a href="../performance/multi-threads/run-code.html"> <i class="fa fa-check"></i> <b>16.5.3.</b> 在线程池中的一个线程里执行代码 </a> </li> <li class="chapter " data-level="16.5.4" data-path="performance/multi-threads/communicate-ui.html"> <a href="../performance/multi-threads/communicate-ui.html"> <i class="fa fa-check"></i> <b>16.5.4.</b> 与UI线程通信 </a> </li> </ul> </li> <li class="chapter " data-level="16.6" data-path="performance/perf-anr/index.html"> <a href="../performance/perf-anr/index.html"> <i class="fa fa-check"></i> <b>16.6.</b> 避免出现程序无响应ANR </a> </li> <li class="chapter " data-level="16.7" data-path="performance/perf-jni/index.html"> <a href="../performance/perf-jni/index.html"> <i class="fa fa-check"></i> <b>16.7.</b> JNI使用指南 </a> </li> <li class="chapter " data-level="16.8" data-path="performance/smp/index.html"> <a href="../performance/smp/index.html"> <i class="fa fa-check"></i> <b>16.8.</b> 优化多核处理器(SMP)下的Android程序 </a> </li> </ul> </li> <li class="chapter " data-level="17" data-path="security/index.html"> <a href="../security/index.html"> <i class="fa fa-check"></i> <b>17.</b> Android安全与隐私 </a> <ul class="articles"> <li class="chapter " data-level="17.1" data-path="security/security-tips.html"> <a href="../security/security-tips.html"> <i class="fa fa-check"></i> <b>17.1.</b> Security Tips </a> </li> <li class="chapter " data-level="17.2" data-path="security/security-ssl.html"> <a href="../security/security-ssl.html"> <i class="fa fa-check"></i> <b>17.2.</b> 使用HTTPS与SSL </a> </li> <li class="chapter " data-level="17.3" data-path="security/enterprise/index.html"> <a href="../security/enterprise/index.html"> <i class="fa fa-check"></i> <b>17.3.</b> 企业版App </a> <ul class="articles"> <li class="chapter " data-level="17.3.1" data-path="security/enterprise/device-management-policy.html"> <a href="../security/enterprise/device-management-policy.html"> <i class="fa fa-check"></i> <b>17.3.1.</b> 使用设备管理条例增强安全性 </a> </li> </ul> </li> </ul> </li> <li class="chapter " data-level="18" data-path="testing/index.html"> <a href="../testing/index.html"> <i class="fa fa-check"></i> <b>18.</b> Android测试程序 </a> <ul class="articles"> <li class="chapter " data-level="18.1" data-path="testing/activity-testing/index.html"> <a href="../testing/activity-testing/index.html"> <i class="fa fa-check"></i> <b>18.1.</b> 测试你的Activity </a> <ul class="articles"> <li class="chapter " data-level="18.1.1" data-path="testing/activity-testing/prepare-activity-testing.html"> <a href="../testing/activity-testing/prepare-activity-testing.html"> <i class="fa fa-check"></i> <b>18.1.1.</b> 建立测试环境 </a> </li> <li class="chapter " data-level="18.1.2" data-path="testing/activity-testing/activity-basic-testing.html"> <a href="../testing/activity-testing/activity-basic-testing.html"> <i class="fa fa-check"></i> <b>18.1.2.</b> 创建与执行测试用例 </a> </li> <li class="chapter " data-level="18.1.3" data-path="testing/activity-testing/activity-ui-testing.html"> <a href="../testing/activity-testing/activity-ui-testing.html"> <i class="fa fa-check"></i> <b>18.1.3.</b> 测试UI组件 </a> </li> <li class="chapter " data-level="18.1.4" data-path="testing/activity-testing/activity-unit-testing.html"> <a href="../testing/activity-testing/activity-unit-testing.html"> <i class="fa fa-check"></i> <b>18.1.4.</b> 创建单元测试 </a> </li> <li class="chapter " data-level="18.1.5" data-path="testing/activity-testing/activity-function-testing.html"> <a href="../testing/activity-testing/activity-function-testing.html"> <i class="fa fa-check"></i> <b>18.1.5.</b> 创建功能测试 </a> </li> </ul> </li> </ul> </li> <li class="divider"></li> <li> <a href="http://www.gitbook.io/" target="blank" class="gitbook-link">Generated using GitBook</a> </li> </ul> </div> <div class="book-body"> <div class="body-inner"> <div class="page-wrapper" tabindex="-1"> <div class="book-progress"> <div class="bar"> <div class="inner" style="width: 46.03174603174603%;min-width: 45.63492063492063%;"></div> </div> <div class="chapters"> <a href="../index.html" title="序言" class="chapter done new-chapter" data-progress="1" style="left: 0%;"></a> <a href="../basics/index.html" title="Android入门基础:从这里开始" class="chapter done new-chapter" data-progress="2" style="left: 0.3968253968253968%;"></a> <a href="../basics/firstapp/index.html" title="建立你的第一个App" class="chapter done " data-progress="2.1" style="left: 0.7936507936507936%;"></a> <a href="../basics/firstapp/creating-project.html" title="创建一个Android项目" class="chapter done " data-progress="2.1.1" style="left: 1.1904761904761905%;"></a> <a href="../basics/firstapp/running-app.html" title="执行你的程序" class="chapter done " data-progress="2.1.2" style="left: 1.5873015873015872%;"></a> <a href="../basics/firstapp/building-ui.html" title="建立一个简单的用户界面" class="chapter done " data-progress="2.1.3" style="left: 1.9841269841269842%;"></a> <a href="../basics/firstapp/starting-activity.html" title="启动另外的Activity" class="chapter done " data-progress="2.1.4" style="left: 2.380952380952381%;"></a> <a href="../basics/actionbar/index.html" title="添加ActionBar" class="chapter done " data-progress="2.2" style="left: 2.7777777777777777%;"></a> <a href="../basics/actionbar/setting-up.html" title="建立ActionBar" class="chapter done " data-progress="2.2.1" style="left: 3.1746031746031744%;"></a> <a href="../basics/actionbar/adding-buttons.html" title="添加Action按钮" class="chapter done " data-progress="2.2.2" style="left: 3.5714285714285716%;"></a> <a href="../basics/actionbar/styling.html" title="ActionBar的风格化" class="chapter done " data-progress="2.2.3" style="left: 3.9682539682539684%;"></a> <a href="../basics/actionbar/overlaying.html" title="ActionBar的覆盖层叠" class="chapter done " data-progress="2.2.4" style="left: 4.365079365079365%;"></a> <a href="../basics/supporting-devices/index.html" title="兼容不同的设备" class="chapter done " data-progress="2.3" style="left: 4.761904761904762%;"></a> <a href="../basics/supporting-devices/languages.html" title="适配不同的语言" class="chapter done " data-progress="2.3.1" style="left: 5.158730158730159%;"></a> <a href="../basics/supporting-devices/screens.html" title="适配不同的屏幕" class="chapter done " data-progress="2.3.2" style="left: 5.555555555555555%;"></a> <a href="../basics/supporting-devices/platforms.html" title="适配不同的系统版本" class="chapter done " data-progress="2.3.3" style="left: 5.9523809523809526%;"></a> <a href="../basics/activity-lifecycle/index.html" title="管理Activity的生命周期" class="chapter done " data-progress="2.4" style="left: 6.349206349206349%;"></a> <a href="../basics/activity-lifecycle/starting.html" title="启动与销毁Activity" class="chapter done " data-progress="2.4.1" style="left: 6.746031746031746%;"></a> <a href="../basics/activity-lifecycle/pausing.html" title="暂停与恢复Activity" class="chapter done " data-progress="2.4.2" style="left: 7.142857142857143%;"></a> <a href="../basics/activity-lifecycle/stopping.html" title="停止与重启Activity" class="chapter done " data-progress="2.4.3" style="left: 7.5396825396825395%;"></a> <a href="../basics/activity-lifecycle/recreating.html" title="重新创建Activity" class="chapter done " data-progress="2.4.4" style="left: 7.936507936507937%;"></a> <a href="../basics/fragments/index.html" title="使用Fragment建立动态的UI" class="chapter done " data-progress="2.5" style="left: 8.333333333333334%;"></a> <a href="../basics/fragments/creating.html" title="创建一个Fragment" class="chapter done " data-progress="2.5.1" style="left: 8.73015873015873%;"></a> <a href="../basics/fragments/fragment-ui.html" title="建立灵活动态的UI" class="chapter done " data-progress="2.5.2" style="left: 9.126984126984127%;"></a> <a href="../basics/fragments/communicating.html" title="Fragments之间的交互" class="chapter done " data-progress="2.5.3" style="left: 9.523809523809524%;"></a> <a href="../basics/data-storage/index.html" title="数据保存" class="chapter done " data-progress="2.6" style="left: 9.920634920634921%;"></a> <a href="../basics/data-storage/shared-preference.html" title="保存到Preference" class="chapter done " data-progress="2.6.1" style="left: 10.317460317460318%;"></a> <a href="../basics/data-storage/files.html" title="保存到文件" class="chapter done " data-progress="2.6.2" style="left: 10.714285714285714%;"></a> <a href="../basics/data-storage/database.html" title="保存到数据库" class="chapter done " data-progress="2.6.3" style="left: 11.11111111111111%;"></a> <a href="../basics/intents/index.html" title="与其他应用的交互" class="chapter done " data-progress="2.7" style="left: 11.507936507936508%;"></a> <a href="../basics/intents/sending.html" title="Intent的发送" class="chapter done " data-progress="2.7.1" style="left: 11.904761904761905%;"></a> <a href="../basics/intents/result.html" title="接收Activity返回的结果" class="chapter done " data-progress="2.7.2" style="left: 12.301587301587302%;"></a> <a href="../basics/intents/filters.html" title="Intent过滤" class="chapter done " data-progress="2.7.3" style="left: 12.698412698412698%;"></a> <a href="../content-sharing/index.html" title="Android分享操作" class="chapter done new-chapter" data-progress="3" style="left: 13.095238095238095%;"></a> <a href="../content-sharing/sharing/index.html" title="分享简单的数据" class="chapter done " data-progress="3.1" style="left: 13.492063492063492%;"></a> <a href="../content-sharing/sharing/send.html" title="给其他App发送简单的数据" class="chapter done " data-progress="3.1.1" style="left: 13.88888888888889%;"></a> <a href="../content-sharing/sharing/receive.html" title="接收从其他App返回的数据" class="chapter done " data-progress="3.1.2" style="left: 14.285714285714286%;"></a> <a href="../content-sharing/sharing/shareaction.html" title="给ActionBar增加分享功能" class="chapter done " data-progress="3.1.3" style="left: 14.682539682539682%;"></a> <a href="../content-sharing/secure-file-sharing/index.html" title="分享文件" class="chapter done " data-progress="3.2" style="left: 15.079365079365079%;"></a> <a href="../content-sharing/secure-file-sharing/setup-sharing.html" title="建立文件分享" class="chapter done " data-progress="3.2.1" style="left: 15.476190476190476%;"></a> <a href="../content-sharing/secure-file-sharing/sharing-file.html" title="分享文件" class="chapter done " data-progress="3.2.2" style="left: 15.873015873015873%;"></a> <a href="../content-sharing/secure-file-sharing/request-file.html" title="请求分享一个文件" class="chapter done " data-progress="3.2.3" style="left: 16.26984126984127%;"></a> <a href="../content-sharing/secure-file-sharing/retrieve-info.html" title="获取文件信息" class="chapter done " data-progress="3.2.4" style="left: 16.666666666666668%;"></a> <a href="../content-sharing/beam-files/index.html" title="使用NFC分享文件" class="chapter done " data-progress="3.3" style="left: 17.063492063492063%;"></a> <a href="../content-sharing/beam-files/sending-files.html" title="发送文件给其他设备" class="chapter done " data-progress="3.3.1" style="left: 17.46031746031746%;"></a> <a href="../content-sharing/beam-files/receive-files.html" title="接收其他设备的文件" class="chapter done " data-progress="3.3.2" style="left: 17.857142857142858%;"></a> <a href="../multimedia/index.html" title="Android多媒体" class="chapter done new-chapter" data-progress="4" style="left: 18.253968253968253%;"></a> <a href="../multimedia/audio/index.html" title="管理音频播放" class="chapter done " data-progress="4.1" style="left: 18.650793650793652%;"></a> <a href="../multimedia/audio/volume-playback.html" title="控制你得应用的音量与播放" class="chapter done " data-progress="4.1.3" style="left: 19.047619047619047%;"></a> <a href="../multimedia/audio/audio-focus.html" title="管理音频焦点" class="chapter done " data-progress="4.1.2" style="left: 19.444444444444443%;"></a> <a href="../multimedia/audio/audio-output.html" title="兼容音频输出设备" class="chapter done " data-progress="4.1.4" style="left: 19.841269841269842%;"></a> <a href="../multimedia/camera/index.html" title="拍照" class="chapter done " data-progress="4.2" style="left: 20.238095238095237%;"></a> <a href="../multimedia/camera/photobasic.html" title="简单的拍照" class="chapter done " data-progress="4.2.1" style="left: 20.634920634920636%;"></a> <a href="../multimedia/camera/videobasic.html" title="简单的录像" class="chapter done " data-progress="4.2.2" style="left: 21.03174603174603%;"></a> <a href="../multimedia/camera/cameradirect.html" title="控制相机硬件" class="chapter done " data-progress="4.2.3" style="left: 21.428571428571427%;"></a> <a href="../multimedia/printing/index.html" title="打印" class="chapter done " data-progress="4.3" style="left: 21.825396825396826%;"></a> <a href="../multimedia/printing/photos.html" title="打印照片" class="chapter done " data-progress="4.3.1" style="left: 22.22222222222222%;"></a> <a href="../multimedia/printing/html-docs.html" title="打印HTML文档" class="chapter done " data-progress="4.3.2" style="left: 22.61904761904762%;"></a> <a href="../multimedia/printing/custom-docs.html" title="打印自定义文档" class="chapter done " data-progress="4.3.3" style="left: 23.015873015873016%;"></a> <a href="../graphics/index.html" title="Android图像处理" class="chapter done new-chapter" data-progress="5" style="left: 23.41269841269841%;"></a> <a href="../graphics/displaying-bitmaps/index.html" title="高效显示Bitmap" class="chapter done " data-progress="5.1" style="left: 23.80952380952381%;"></a> <a href="../graphics/displaying-bitmaps/load-bitmap.html" title="高效加载大图" class="chapter done " data-progress="5.1.1" style="left: 24.206349206349206%;"></a> <a href="../graphics/displaying-bitmaps/process-bitmap.html" title="非UI线程处理Bitmap" class="chapter done " data-progress="5.1.2" style="left: 24.603174603174605%;"></a> <a href="../graphics/displaying-bitmaps/cache-bitmap.html" title="缓存Bitmap" class="chapter done " data-progress="5.1.3" style="left: 25%;"></a> <a href="../graphics/displaying-bitmaps/manage-bitmap-memory.html" title="管理Bitmap的内存占用" class="chapter done " data-progress="5.1.4" style="left: 25.396825396825395%;"></a> <a href="../graphics/displaying-bitmaps/display-bitmap.html" title="在UI上显示Bitmap" class="chapter done " data-progress="5.1.5" style="left: 25.793650793650794%;"></a> <a href="../graphics/opengl/index.html" title="使用OpenGL ES显示图像" class="chapter done " data-progress="5.2" style="left: 26.19047619047619%;"></a> <a href="../graphics/opengl/environment.html" title="建立OpenGL ES的环境" class="chapter done " data-progress="5.2.1" style="left: 26.58730158730159%;"></a> <a href="../graphics/opengl/shapes.html" title="定义Shapes" class="chapter done " data-progress="5.2.2" style="left: 26.984126984126984%;"></a> <a href="../graphics/opengl/draw.html" title="绘制Shapes" class="chapter done " data-progress="5.2.3" style="left: 27.38095238095238%;"></a> <a href="../graphics/opengl/projection.html" title="运用投影与相机视图" class="chapter done " data-progress="5.2.4" style="left: 27.77777777777778%;"></a> <a href="../graphics/opengl/motion.html" title="添加移动" class="chapter done " data-progress="5.2.5" style="left: 28.174603174603174%;"></a> <a href="../graphics/opengl/touch.html" title="响应触摸事件" class="chapter done " data-progress="5.2.6" style="left: 28.571428571428573%;"></a> <a href="../animations/index.html" title="Android显示动画" class="chapter done new-chapter" data-progress="6" style="left: 28.96825396825397%;"></a> <a href="../animations/crossfade.html" title="淡入淡出两个View" class="chapter done " data-progress="6.1" style="left: 29.365079365079364%;"></a> <a href="../animations/screen-slide.html" title="使用ViewPager实现屏幕滑动" class="chapter done " data-progress="6.2" style="left: 29.761904761904763%;"></a> <a href="../animations/cardflip.html" title="卡片翻转的动画" class="chapter done " data-progress="6.3" style="left: 30.158730158730158%;"></a> <a href="../animations/zoom.html" title="缩放动画" class="chapter done " data-progress="6.4" style="left: 30.555555555555557%;"></a> <a href="../animations/layout.html" title="控件切换动画" class="chapter done " data-progress="6.5" style="left: 30.952380952380953%;"></a> <a href="../connectivity/index.html" title="Android网络连接" class="chapter done new-chapter" data-progress="7" style="left: 31.349206349206348%;"></a> <a href="../connectivity/connect-devices-wireless/index.html" title="无线连接设备" class="chapter done " data-progress="7.1" style="left: 31.746031746031747%;"></a> <a href="../connectivity/connect-devices-wireless/nsd.html" title="使得网络服务可发现" class="chapter done " data-progress="7.1.1" style="left: 32.142857142857146%;"></a> <a href="../connectivity/connect-devices-wireless/wifi-direct.html" title="使用WiFi建立P2P连接" class="chapter done " data-progress="7.1.2" style="left: 32.53968253968254%;"></a> <a href="../connectivity/connect-devices-wireless/nsd-wifi-index.html" title="使用WiFi P2P服务" class="chapter done " data-progress="7.1.3" style="left: 32.93650793650794%;"></a> <a href="../connectivity/network-ops/index.html" title="网络连接操作" class="chapter done " data-progress="7.2" style="left: 33.333333333333336%;"></a> <a href="../connectivity/network-ops/connecting.html" title="连接到网络" class="chapter done " data-progress="7.2.1" style="left: 33.73015873015873%;"></a> <a href="../connectivity/network-ops/managing.html" title="管理使用的网络" class="chapter done " data-progress="7.2.2" style="left: 34.12698412698413%;"></a> <a href="../connectivity/network-ops/xml.html" title="解析XML数据" class="chapter done " data-progress="7.2.3" style="left: 34.523809523809526%;"></a> <a href="../connectivity/efficient-downloads/index.html" title="高效下载" class="chapter done " data-progress="7.3" style="left: 34.92063492063492%;"></a> <a href="../connectivity/efficient-downloads/efficient-network-access.html" title="为网络访问更加高效而优化下载" class="chapter done " data-progress="7.3.1" style="left: 35.317460317460316%;"></a> <a href="../connectivity/efficient-downloads/regular-update.html" title="最小化更新操作的影响" class="chapter done " data-progress="7.3.2" style="left: 35.714285714285715%;"></a> <a href="../connectivity/efficient-downloads/redundant-redundant.html" title="避免下载多余的数据" class="chapter done " data-progress="7.3.3" style="left: 36.111111111111114%;"></a> <a href="../connectivity/efficient-downloads/connectivity-patterns.html" title="根据网络类型改变下载模式" class="chapter done " data-progress="7.3.4" style="left: 36.507936507936506%;"></a> <a href="../connectivity/sync-adapters/index.html" title="使用Sync Adapter传输数据" class="chapter done " data-progress="7.4" style="left: 36.904761904761905%;"></a> <a href="../connectivity/sync-adapters/create-authenticator.html" title="创建Stub授权器" class="chapter done " data-progress="7.4.1" style="left: 37.301587301587304%;"></a> <a href="../connectivity/sync-adapters/create-stub-provider.html" title="创建Stub Content Provider" class="chapter done " data-progress="7.4.2" style="left: 37.698412698412696%;"></a> <a href="../connectivity/sync-adapters/create-sync-adapter.html" title="创建Sync Adpater" class="chapter done " data-progress="7.4.3" style="left: 38.095238095238095%;"></a> <a href="../connectivity/sync-adapters/running-sync-adapter.html" title="执行Sync Adpater" class="chapter done " data-progress="7.4.4" style="left: 38.492063492063494%;"></a> <a href="../connectivity/volley/index.html" title="使用Volley执行网络数据传输" class="chapter done " data-progress="7.5" style="left: 38.888888888888886%;"></a> <a href="../connectivity/volley/simple.html" title="发送简单的网络请求" class="chapter done " data-progress="7.5.1" style="left: 39.285714285714285%;"></a> <a href="../connectivity/volley/request-queue.html" title="建立请求队列" class="chapter done " data-progress="7.5.2" style="left: 39.682539682539684%;"></a> <a href="../connectivity/volley/request.html" title="创建标准的网络请求" class="chapter done " data-progress="7.5.3" style="left: 40.07936507936508%;"></a> <a href="../connectivity/volley/request-custom.html" title="实现自定义的网络请求" class="chapter done " data-progress="7.5.4" style="left: 40.476190476190474%;"></a> <a href="../cloud/index.html" title="Android云服务" class="chapter done new-chapter" data-progress="8" style="left: 40.87301587301587%;"></a> <a href="../cloud/cloudsync/index.html" title="云同步" class="chapter done " data-progress="8.1" style="left: 41.26984126984127%;"></a> <a href="../cloud/cloudsync/backupapi.html" title="使用备份API" class="chapter done " data-progress="8.1.1" style="left: 41.666666666666664%;"></a> <a href="../cloud/cloudsync/gcm.html" title="使用Google Cloud Messaging" class="chapter done " data-progress="8.1.2" style="left: 42.06349206349206%;"></a> <a href="../cloud/cloudsave/index.html" title="解决云同步的保存冲突" class="chapter done " data-progress="8.2" style="left: 42.46031746031746%;"></a> <a href="../contacts-provider/index.html" title="Android联系人信息" class="chapter done new-chapter" data-progress="9" style="left: 42.857142857142854%;"></a> <a href="../contacts-provider/retrieve-names.html" title="获取联系人列表" class="chapter done " data-progress="9.1" style="left: 43.25396825396825%;"></a> <a href="../contacts-provider/retrieve-detail.html" title="获取联系人详情" class="chapter done " data-progress="9.2" style="left: 43.65079365079365%;"></a> <a href="../contacts-provider/modify-data.html" title="修改联系人信息" class="chapter done " data-progress="9.3" style="left: 44.04761904761905%;"></a> <a href="../contacts-provider/display-badge.html" title="显示联系人头像" class="chapter done " data-progress="9.4" style="left: 44.44444444444444%;"></a> <a href="../location/index.html" title="Android位置信息" class="chapter done " data-progress="10" style="left: 44.84126984126984%;"></a> <a href="../location/retrieve-current.html" title="获取当前位置" class="chapter done " data-progress="10.1" style="left: 45.23809523809524%;"></a> <a href="../location/retrieve-location-updates.html" title="获取位置更新" class="chapter done " data-progress="10.2" style="left: 45.63492063492063%;"></a> <a href="../location/display-address.html" title="显示位置地址" class="chapter done " data-progress="10.3" style="left: 46.03174603174603%;"></a> <a href="../location/geofencing.html" title="创建并监视异常区域" class="chapter " data-progress="10.4" style="left: 46.42857142857143%;"></a> <a href="../location/activity-recognition.html" title="识别用户的当下活动" class="chapter " data-progress="10.5" style="left: 46.82539682539682%;"></a> <a href="../location/location-testing.html" title="使用模拟位置进行测试" class="chapter " data-progress="10.6" style="left: 47.22222222222222%;"></a> <a href="../wearables/index.html" title="Android可穿戴应用" class="chapter " data-progress="11" style="left: 47.61904761904762%;"></a> <a href="../wearables/notifications/index.html" title="赋予Notification可穿戴特性" class="chapter " data-progress="11.1" style="left: 48.01587301587302%;"></a> <a href="../wearables/notifications/creating.html" title="创建Notification" class="chapter " data-progress="11.1.1" style="left: 48.41269841269841%;"></a> <a href="../wearables/notifications/voice-input.html" title="在Notifcation中接收语音输入" class="chapter " data-progress="11.1.2" style="left: 48.80952380952381%;"></a> <a href="../wearables/notifications/pages.html" title="为Notification添加显示页面" class="chapter " data-progress="11.1.3" style="left: 49.20634920634921%;"></a> <a href="../wearables/notifications/stacks.html" title="以Stack的方式显示Notifications" class="chapter " data-progress="11.1.4" style="left: 49.6031746031746%;"></a> <a href="../wearables/apps/index.html" title="创建可穿戴的应用" class="chapter " data-progress="11.2" style="left: 50%;"></a> <a href="../wearables/apps/creating.html" title="创建并执行可穿戴应用" class="chapter " data-progress="11.2.1" style="left: 50.3968253968254%;"></a> <a href="../wearables/apps/layouts.html" title="创建自定义的布局" class="chapter " data-progress="11.2.2" style="left: 50.79365079365079%;"></a> <a href="../wearables/apps/voice.html" title="添加语音能力" class="chapter " data-progress="11.2.3" style="left: 51.19047619047619%;"></a> <a href="../wearables/apps/packaging.html" title="打包可穿戴应用" class="chapter " data-progress="11.2.4" style="left: 51.58730158730159%;"></a> <a href="../wearables/apps/bt-debugging.html" title="通过蓝牙进行调试" class="chapter " data-progress="11.2.5" style="left: 51.98412698412698%;"></a> <a href="../wearables/data-layer/index.html" title="发送并同步数据" class="chapter " data-progress="11.3" style="left: 52.38095238095238%;"></a> <a href="../wearables/data-layer/accessing.html" title="访问可穿戴数据层" class="chapter " data-progress="11.3.1" style="left: 52.77777777777778%;"></a> <a href="../wearables/data-layer/data-items.html" title="同步数据单元" class="chapter " data-progress="11.3.2" style="left: 53.17460317460318%;"></a> <a href="../wearables/data-layer/assets.html" title="传输资源" class="chapter " data-progress="11.3.3" style="left: 53.57142857142857%;"></a> <a href="../wearables/data-layer/messages.html" title="发送与接收消息" class="chapter " data-progress="11.3.4" style="left: 53.96825396825397%;"></a> <a href="../wearables/data-layer/events.html" title="处理数据层的事件" class="chapter " data-progress="11.3.5" style="left: 54.36507936507937%;"></a> <a href="../ux/index.html" title="Android用户体验设计" class="chapter " data-progress="12" style="left: 54.76190476190476%;"></a> <a href="../ux/design-nav/index.html" title="设计高效的导航" class="chapter " data-progress="12.1" style="left: 55.15873015873016%;"></a> <a href="../ux/design-nav/screen-planning.html" title="规划屏幕界面与他们之间的关系" class="chapter " data-progress="12.1.1" style="left: 55.55555555555556%;"></a> <a href="../ux/design-nav/multi-sizes.html" title="为多种大小的屏幕进行规划" class="chapter " data-progress="12.1.2" style="left: 55.95238095238095%;"></a> <a href="../ux/design-nav/descendant-lateral.html" title="提供向下和横向导航" class="chapter " data-progress="12.1.3" style="left: 56.34920634920635%;"></a> <a href="../ux/design-nav/ancestral-temporal.html" title="提供向上和时间导航" class="chapter " data-progress="12.1.4" style="left: 56.74603174603175%;"></a> <a href="../ux/design-nav/wireframing.html" title="综合:设计样例 App" class="chapter " data-progress="12.1.5" style="left: 57.142857142857146%;"></a> <a href="../ux/implement-nav/index.html" title="实现高效的导航" class="chapter " data-progress="12.2" style="left: 57.53968253968254%;"></a> <a href="../ux/implement-nav/lateral.html" title="使用Tabs创建Swipe视图" class="chapter " data-progress="12.2.1" style="left: 57.93650793650794%;"></a> <a href="../ux/implement-nav/nav-drawer.html" title="创建抽屉导航" class="chapter " data-progress="12.2.2" style="left: 58.333333333333336%;"></a> <a href="../ux/implement-nav/ancestral.html" title="提供向上的导航" class="chapter " data-progress="12.2.3" style="left: 58.73015873015873%;"></a> <a href="../ux/implement-nav/temporal.html" title="提供向后的导航" class="chapter " data-progress="12.2.4" style="left: 59.12698412698413%;"></a> <a href="../ux/implement-nav/descendant.html" title="实现向下的导航" class="chapter " data-progress="12.2.5" style="left: 59.523809523809526%;"></a> <a href="../ux/notify-user/index.html" title="通知提示用户" class="chapter " data-progress="12.3" style="left: 59.92063492063492%;"></a> <a href="../ux/notify-user/build-notification.html" title="建立Notification" class="chapter " data-progress="12.3.1" style="left: 60.317460317460316%;"></a> <a href="../ux/notify-user/nav.html" title="当启动Activity时保留导航" class="chapter " data-progress="12.3.2" style="left: 60.714285714285715%;"></a> <a href="../ux/notify-user/update-notification.html" title="更新Notification" class="chapter " data-progress="12.3.3" style="left: 61.111111111111114%;"></a> <a href="../ux/notify-user/expand-notification.html" title="使用BigView风格" class="chapter " data-progress="12.3.4" style="left: 61.507936507936506%;"></a> <a href="../ux/notify-user/progess-notification.html" title="显示Notification进度" class="chapter " data-progress="12.3.5" style="left: 61.904761904761905%;"></a> <a href="../ux/search/index.html" title="增加搜索功能" class="chapter " data-progress="12.4" style="left: 62.301587301587304%;"></a> <a href="../ux/search/setup.html" title="建立搜索界面" class="chapter " data-progress="12.4.1" style="left: 62.698412698412696%;"></a> <a href="../ux/search/search.html" title="保存并搜索数据" class="chapter " data-progress="12.4.2" style="left: 63.095238095238095%;"></a> <a href="../ux/search/back-compat.html" title="保持向下兼容" class="chapter " data-progress="12.4.3" style="left: 63.492063492063494%;"></a> <a href="../ux/app-indexing/index.html" title="使得你的App内容可被Google搜索" class="chapter " data-progress="12.5" style="left: 63.888888888888886%;"></a> <a href="../ux/app-indexing/deep-linking.html" title="为App内容开启深度链接" class="chapter " data-progress="12.5.1" style="left: 64.28571428571429%;"></a> <a href="../ux/app-indexing/enable-app-indexing.html" title="为索引指定App内容" class="chapter " data-progress="12.5.2" style="left: 64.68253968253968%;"></a> <a href="../ui/index.html" title="Android界面UI设计" class="chapter " data-progress="13" style="left: 65.07936507936508%;"></a> <a href="../ui/multiscreen/index.html" title="为多屏幕设计" class="chapter " data-progress="13.1" style="left: 65.47619047619048%;"></a> <a href="../ui/multiscreen/screen-sizes.html" title="兼容不同的屏幕大小" class="chapter " data-progress="13.1.1" style="left: 65.87301587301587%;"></a> <a href="../ui/multiscreen/screen-desities.html" title="兼容不同的屏幕密度" class="chapter " data-progress="13.1.2" style="left: 66.26984126984127%;"></a> <a href="../ui/multiscreen/adapt-ui.html" title="实现可适应的UI" class="chapter " data-progress="13.1.3" style="left: 66.66666666666667%;"></a> <a href="../ui/tv/index.html" title="为TV进行设计" class="chapter " data-progress="13.2" style="left: 67.06349206349206%;"></a> <a href="../ui/tv/optimize-layouts-tv.html" title="为TV优化Layout" class="chapter " data-progress="13.2.1" style="left: 67.46031746031746%;"></a> <a href="../ui/tv/optimize-nav-tv.html" title="为TV优化导航" class="chapter " data-progress="13.2.2" style="left: 67.85714285714286%;"></a> <a href="../ui/tv/unsupport-features-tv.html" title="处理不支持TV的功能" class="chapter " data-progress="13.2.3" style="left: 68.25396825396825%;"></a> <a href="../ui/custom-view/index.html" title="创建自定义View" class="chapter " data-progress="13.3" style="left: 68.65079365079364%;"></a> <a href="../ui/custom-view/create-view.html" title="创建自定义的View类" class="chapter " data-progress="13.3.1" style="left: 69.04761904761905%;"></a> <a href="../ui/custom-view/custom-draw.html" title="实现自定义View的绘制" class="chapter " data-progress="13.3.2" style="left: 69.44444444444444%;"></a> <a href="../ui/custom-view/make-interactive.html" title="使得View可交互" class="chapter " data-progress="13.3.3" style="left: 69.84126984126983%;"></a> <a href="../ui/custom-view/optimize-view.html" title="优化自定义View" class="chapter " data-progress="13.3.4" style="left: 70.23809523809524%;"></a> <a href="../ui/backward-compatible-ui/index.html" title="创建向后兼容的UI" class="chapter " data-progress="13.4" style="left: 70.63492063492063%;"></a> <a href="../ui/backward-compatible-ui/abstract.html" title="抽象新的APIs" class="chapter " data-progress="13.4.1" style="left: 71.03174603174604%;"></a> <a href="../ui/backward-compatible-ui/new-impl.html" title="代理至新的APIs" class="chapter " data-progress="13.4.2" style="left: 71.42857142857143%;"></a> <a href="../ui/backward-compatible-ui/older-impl.html" title="使用旧的APIs实现新API的效果" class="chapter " data-progress="13.4.3" style="left: 71.82539682539682%;"></a> <a href="../ui/backward-compatible-ui/using-component.html" title="使用版本敏感的组件" class="chapter " data-progress="13.4.4" style="left: 72.22222222222223%;"></a> <a href="../ui/accessibility/index.html" title="实现辅助功能" class="chapter " data-progress="13.5" style="left: 72.61904761904762%;"></a> <a href="../ui/accessibility/accessible-app.html" title="开发辅助程序" class="chapter " data-progress="13.5.1" style="left: 73.01587301587301%;"></a> <a href="../ui/accessibility/accessible-service.html" title="开发辅助服务" class="chapter " data-progress="13.5.2" style="left: 73.41269841269842%;"></a> <a href="../ui/system-ui/index.html" title="管理系统UI" class="chapter " data-progress="13.6" style="left: 73.80952380952381%;"></a> <a href="../ui/system-ui/dim.html" title="淡化系统Bar" class="chapter " data-progress="13.6.1" style="left: 74.2063492063492%;"></a> <a href="../ui/system-ui/hide-ui.html" title="隐藏系统Bar" class="chapter " data-progress="13.6.2" style="left: 74.60317460317461%;"></a> <a href="../ui/system-ui/hide-nav.html" title="隐藏导航Bar" class="chapter " data-progress="13.6.3" style="left: 75%;"></a> <a href="../ui/system-ui/immersive.html" title="全屏沉浸式应用" class="chapter " data-progress="13.6.4" style="left: 75.39682539682539%;"></a> <a href="../ui/system-ui/visibility.html" title="响应UI可见性的变化" class="chapter " data-progress="13.6.5" style="left: 75.7936507936508%;"></a> <a href="../input/index.html" title="Android用户输入" class="chapter " data-progress="14" style="left: 76.19047619047619%;"></a> <a href="../input/gestures/index.html" title="使用触摸手势" class="chapter " data-progress="14.1" style="left: 76.58730158730158%;"></a> <a href="../input/gestures/detector.html" title="检测常用的手势" class="chapter " data-progress="14.1.1" style="left: 76.98412698412699%;"></a> <a href="../input/gestures/movement.html" title="跟踪手势移动" class="chapter " data-progress="14.1.2" style="left: 77.38095238095238%;"></a> <a href="../input/gestures/scroll.html" title="Scroll手势动画" class="chapter " data-progress="14.1.3" style="left: 77.77777777777777%;"></a> <a href="../input/gestures/multi.html" title="处理多触摸手势" class="chapter " data-progress="14.1.4" style="left: 78.17460317460318%;"></a> <a href="../input/gestures/scale.html" title="拖拽与缩放" class="chapter " data-progress="14.1.5" style="left: 78.57142857142857%;"></a> <a href="../input/gestures/viewgroup.html" title="管理ViewGroup中的触摸事件" class="chapter " data-progress="14.1.6" style="left: 78.96825396825396%;"></a> <a href="../input/keyboard-input/index.html" title="处理键盘输入" class="chapter " data-progress="14.2" style="left: 79.36507936507937%;"></a> <a href="../input/keyboard-input/type.html" title="指定输入法类型" class="chapter " data-progress="14.2.1" style="left: 79.76190476190476%;"></a> <a href="../input/keyboard-input/visibility.html" title="处理输入法可见性" class="chapter " data-progress="14.2.2" style="left: 80.15873015873017%;"></a> <a href="../input/keyboard-input/navigation.html" title="兼容键盘导航" class="chapter " data-progress="14.2.3" style="left: 80.55555555555556%;"></a> <a href="../input/keyboard-input/commands.html" title="处理按键动作" class="chapter " data-progress="14.2.4" style="left: 80.95238095238095%;"></a> <a href="../input/game-controller/index.html" title="兼容游戏控制器" class="chapter " data-progress="14.3" style="left: 81.34920634920636%;"></a> <a href="../input/game-controller/controller-inputs.html" title="处理控制器输入动作" class="chapter " data-progress="14.3.1" style="left: 81.74603174603175%;"></a> <a href="../input/game-controller/compatibility.html" title="支持不同的Android系统版本" class="chapter " data-progress="14.3.2" style="left: 82.14285714285714%;"></a> <a href="../input/game-controller/multi-controller.html" title="支持多个控制器" class="chapter " data-progress="14.3.3" style="left: 82.53968253968254%;"></a> <a href="../background-jobs/index.html" title="Android后台任务" class="chapter " data-progress="15" style="left: 82.93650793650794%;"></a> <a href="../background-jobs/run-background-service/index.html" title="在IntentService中执行后台任务" class="chapter " data-progress="15.1" style="left: 83.33333333333333%;"></a> <a href="../background-jobs/run-background-service/create-service.html" title="创建IntentService" class="chapter " data-progress="15.1.1" style="left: 83.73015873015873%;"></a> <a href="../background-jobs/run-background-service/send-request.html" title="发送工作任务到IntentService" class="chapter " data-progress="15.1.2" style="left: 84.12698412698413%;"></a> <a href="../background-jobs/run-background-service/report-status.html" title="报告后台任务执行状态" class="chapter " data-progress="15.1.3" style="left: 84.52380952380952%;"></a> <a href="../background-jobs/load-data-background/index.html" title="使用CursorLoader在后台加载数据" class="chapter " data-progress="15.2" style="left: 84.92063492063492%;"></a> <a href="../background-jobs/load-data-background/setup-loader.html" title="使用CursorLoader执行查询任务" class="chapter " data-progress="15.2.1" style="left: 85.31746031746032%;"></a> <a href="../background-jobs/load-data-background/handle-result.html" title="处理查询的结果" class="chapter " data-progress="15.2.2" style="left: 85.71428571428571%;"></a> <a href="../background-jobs/scheduling/index.html" title="管理设备的唤醒状态" class="chapter " data-progress="15.3" style="left: 86.11111111111111%;"></a> <a href="../background-jobs/scheduling/wake-lock.html" title="保持设备的唤醒" class="chapter " data-progress="15.3.1" style="left: 86.5079365079365%;"></a> <a href="../background-jobs/scheduling/alarms.html" title="制定重复定时的任务" class="chapter " data-progress="15.3.2" style="left: 86.9047619047619%;"></a> <a href="../performance/index.html" title="Android性能优化" class="chapter " data-progress="16" style="left: 87.3015873015873%;"></a> <a href="../performance/memory.html" title="管理应用的内存" class="chapter " data-progress="16.1" style="left: 87.6984126984127%;"></a> <a href="../performance/performance-tips.html" title="性能优化Tips" class="chapter " data-progress="16.2" style="left: 88.0952380952381%;"></a> <a href="../performance/improving-layouts/index.html" title="提升Layout的性能" class="chapter " data-progress="16.3" style="left: 88.4920634920635%;"></a> <a href="../performance/improving-layouts/optimizing-layout.html" title="优化layout的层级" class="chapter " data-progress="16.3.1" style="left: 88.88888888888889%;"></a> <a href="../performance/improving-layouts/reuse-layouts.html" title="使用include标签重用layouts" class="chapter " data-progress="16.3.2" style="left: 89.28571428571429%;"></a> <a href="../performance/improving-layouts/loading-ondemand.html" title="按需加载视图" class="chapter " data-progress="16.3.3" style="left: 89.68253968253968%;"></a> <a href="../performance/improving-layouts/smooth-scrolling.html" title="使得ListView滑动顺畅" class="chapter " data-progress="16.3.4" style="left: 90.07936507936508%;"></a> <a href="../performance/monitor-device-state/index.html" title="优化电池寿命" class="chapter " data-progress="16.4" style="left: 90.47619047619048%;"></a> <a href="../performance/monitor-device-state/battery-monitor.html" title="监测电量与充电状态" class="chapter " data-progress="16.4.1" style="left: 90.87301587301587%;"></a> <a href="../performance/monitor-device-state/docking-monitor.html" title="判断与监测Docking状态" class="chapter " data-progress="16.4.2" style="left: 91.26984126984127%;"></a> <a href="../performance/monitor-device-state/connectivity-monitor.html" title="判断与监测网络连接状态" class="chapter " data-progress="16.4.3" style="left: 91.66666666666667%;"></a> <a href="../performance/monitor-device-state/manifest-receivers.html" title="根据需要操作Broadcast接受者" class="chapter " data-progress="16.4.4" style="left: 92.06349206349206%;"></a> <a href="../performance/multi-threads/index.html" title="多线程操作" class="chapter " data-progress="16.5" style="left: 92.46031746031746%;"></a> <a href="../performance/multi-threads/define-runnable.html" title="在一个线程中执行一段特定的代码" class="chapter " data-progress="16.5.1" style="left: 92.85714285714286%;"></a> <a href="../performance/multi-threads/create-threadpool.html" title="为多线程创建线程池" class="chapter " data-progress="16.5.2" style="left: 93.25396825396825%;"></a> <a href="../performance/multi-threads/run-code.html" title="在线程池中的一个线程里执行代码" class="chapter " data-progress="16.5.3" style="left: 93.65079365079364%;"></a> <a href="../performance/multi-threads/communicate-ui.html" title="与UI线程通信" class="chapter " data-progress="16.5.4" style="left: 94.04761904761905%;"></a> <a href="../performance/perf-anr/index.html" title="避免出现程序无响应ANR" class="chapter " data-progress="16.6" style="left: 94.44444444444444%;"></a> <a href="../performance/perf-jni/index.html" title="JNI使用指南" class="chapter " data-progress="16.7" style="left: 94.84126984126983%;"></a> <a href="../performance/smp/index.html" title="优化多核处理器(SMP)下的Android程序" class="chapter " data-progress="16.8" style="left: 95.23809523809524%;"></a> <a href="../security/index.html" title="Android安全与隐私" class="chapter " data-progress="17" style="left: 95.63492063492063%;"></a> <a href="../security/security-tips.html" title="Security Tips" class="chapter " data-progress="17.1" style="left: 96.03174603174604%;"></a> <a href="../security/security-ssl.html" title="使用HTTPS与SSL" class="chapter " data-progress="17.2" style="left: 96.42857142857143%;"></a> <a href="../security/enterprise/index.html" title="企业版App" class="chapter " data-progress="17.3" style="left: 96.82539682539682%;"></a> <a href="../security/enterprise/device-management-policy.html" title="使用设备管理条例增强安全性" class="chapter " data-progress="17.3.1" style="left: 97.22222222222223%;"></a> <a href="../testing/index.html" title="Android测试程序" class="chapter " data-progress="18" style="left: 97.61904761904762%;"></a> <a href="../testing/activity-testing/index.html" title="测试你的Activity" class="chapter " data-progress="18.1" style="left: 98.01587301587301%;"></a> <a href="../testing/activity-testing/prepare-activity-testing.html" title="建立测试环境" class="chapter " data-progress="18.1.1" style="left: 98.41269841269842%;"></a> <a href="../testing/activity-testing/activity-basic-testing.html" title="创建与执行测试用例" class="chapter " data-progress="18.1.2" style="left: 98.80952380952381%;"></a> <a href="../testing/activity-testing/activity-ui-testing.html" title="测试UI组件" class="chapter " data-progress="18.1.3" style="left: 99.2063492063492%;"></a> <a href="../testing/activity-testing/activity-unit-testing.html" title="创建单元测试" class="chapter " data-progress="18.1.4" style="left: 99.60317460317461%;"></a> <a href="../testing/activity-testing/activity-function-testing.html" title="创建功能测试" class="chapter " data-progress="18.1.5" style="left: 100%;"></a> </div> </div> <div class="page-inner"> <section class="normal" id="section-gitbook_144"> <blockquote> <p>编写:<a href="https://github.com/penkzhou" target="_blank">penkzhou</a></p> <p>校对:</p> </blockquote> <h1 id="-">显示位置地址</h1> <p><a href="retrieve-current.html">获取当前的位置</a>和<a href="receive-location-updates.html">接收位置更新</a>课程描述了如何以一个<a href="http://developer.android.com/reference/android/location/Location.html" target="_blank">Location</a>对象的形式获取用户当前的位置信息,这个位置信息包括了经纬度。尽管经纬度对计算地理距离和在地图上显示位置很有帮助,但是更多情况下位置信息的地址更有用。</p> <p>Android平台API提供一个根据地理经纬度返回一个大概的街道地址信息这一课教你如何使用这个地址检索功能。</p> <blockquote> <p><strong>注意:</strong> 地址检索需要一个后台服务,然后这个后台服务是不包含在核心的Android框架里面的。如果这个后台服务不可用,<a href="http://developer.android.com/reference/android/location/Geocoder.html#getFromLocation(double, double, int" target="_blank"><code>Geocoder.getFromLocation()</code></a>方法将会返回一个空列表。在Android API 9以上的API里面有一个辅助方法<a href="http://developer.android.com/reference/android/location/Geocoder.html#isPresent(" target="_blank"><code>isPresent()</code></a>可以检查这个后台服务是否可用。</p> </blockquote> <p>下面的代码假设你已经获取到了位置信息并将位置信息以<a href="http://developer.android.com/reference/android/location/Location.html" target="_blank">Location</a>对象的形式保存到全局变量<code>mLocation</code>里面。</p> <h2 id="-">定义地址检索任务</h2> <p>为了通过给定的经纬度获取地址信息,你需要调用<a href="http://developer.android.com/reference/android/location/Geocoder.html#getFromLocation(double, double, int" target="_blank">Geocoder.getFromLocation()</a>方法并返回一个地址列表。由于这个方法是同步的,所以在获取地址信息的时候可能耗时较长,因此你需要通过<a href="http://developer.android.com/reference/android/os/AsyncTask.html" target="_blank">AsyncTask</a>的<a href="http://developer.android.com/reference/android/os/AsyncTask.html#doInBackground(Params..." target="_blank">doInBackground()</a> 方法来执行这个方法。</p> <p>当你的应用在获取地址信息的时候,可以使用一个进度条之类的控件来表示你的应用正在后台工作中。你可以将这个控件的初始状态设为<code>android:visibility=&quot;gone&quot;</code>,这样可以让这个控件不可见。当你开始进行地址检索的时候,你需要将这个控件的可见属性设为&quot;visible&quot;。</p> <p>下面的代码教你如何在你的布局文件里面添加一个进度条:</p> <pre><code class="lang-java">&lt;ProgressBar android:id=<span class="hljs-string">"@+id/address_progress"</span> android:layout_width=<span class="hljs-string">"wrap_content"</span> android:layout_height=<span class="hljs-string">"wrap_content"</span> android:layout_centerHorizontal=<span class="hljs-string">"true"</span> android:indeterminate=<span class="hljs-string">"true"</span> android:visibility=<span class="hljs-string">"gone"</span> /&gt; </code></pre> <p>要创建一个后台任务,首先要定义一个AsycnTask的子类来调用getFromLocation()方法,然后返回地址。定义一个TextView对象mAddress来显示返回的地址信息,进度条则用来显示请求的进度过程。例如:</p> <pre><code class="lang-java">public class MainActivity extends FragmentActivity { ... private TextView mAddress; private ProgressBar mActivityIndicator; ... @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ... mAddress = (TextView) findViewById(R.id.address); mActivityIndicator = (ProgressBar) findViewById(R.id.address_progress); } ... /** * A subclass of AsyncTask that calls getFromLocation() in the * background. The class definition has these generic types: * Location - A Location object containing * the current location. * Void - indicates that progress units are not used * String - An address passed to onPostExecute() */ private class GetAddressTask extends AsyncTask&lt;Location, Void, String&gt; { Context mContext; public GetAddressTask(Context context) { super(); mContext = context; } ... /** * Get a Geocoder instance, get the latitude and longitude * look up the address, and return it * * @params params One or more Location objects * @return A string containing the address of the current * location, or an empty string if no address can be found, * or an error message */ @Override protected String doInBackground(Location... params) { Geocoder geocoder = new Geocoder(mContext, Locale.getDefault()); // Get the current location from the input parameter list Location loc = params[0]; // Create a list to contain the result address List&lt;Address&gt; addresses = null; try { /* * Return 1 address. */ addresses = geocoder.getFromLocation(loc.getLatitude(), loc.getLongitude(), 1); } catch (IOException e1) { Log.e("LocationSampleActivity", "IO Exception in getFromLocation()"); e1.printStackTrace(); return ("IO Exception trying to get address"); } catch (IllegalArgumentException e2) { // Error message to post in the log String errorString = "Illegal arguments " + Double.toString(loc.getLatitude()) + " , " + Double.toString(loc.getLongitude()) + " passed to address service"; Log.e("LocationSampleActivity", errorString); e2.printStackTrace(); return errorString; } // If the reverse geocode returned an address if (addresses != null &amp;&amp; addresses.size() &gt; 0) { // Get the first address Address address = addresses.get(0); /* * Format the first line of address (if available), * city, and country name. */ String addressText = String.format( "%s, %s, %s", // If there's a street address, add it address.getMaxAddressLineIndex() &gt; 0 ? address.getAddressLine(0) : "", // Locality is usually a city address.getLocality(), // The country of the address address.getCountryName()); // Return the text return addressText; } else { return "No address found"; } } ... } ... } </code></pre> <p>下一部分教你如何在用户界面上显示地址信息。</p> <h2 id="-">定义显示结果的方法</h2> <p><a href="http://developer.android.com/reference/android/os/AsyncTask.html#doInBackground(Params..." target="_blank">doInBackground()</a>)方法返回一个包含地址检索结果的字符串。这个值会被传入<a href="http://developer.android.com/reference/android/os/AsyncTask.html#onPostExecute(Result" target="_blank">onPostExecute()</a>)方法,通过这个方法你可以对结果进行更深的处理。因为<a href="http://developer.android.com/reference/android/os/AsyncTask.html#onPostExecute(Result" target="_blank">onPostExecute()</a>)运行在UI主线程上面,它可以更新用户界面;例如,它可以隐藏进度条然后显示返回的地址结果给用户:</p> <pre><code class="lang-java"> private class GetAddressTask extends AsyncTask&lt;Location, Void, String&gt; { ... /** * A method that's called once doInBackground() completes. Turn * off the indeterminate activity indicator and set * the text of the UI element that shows the address. If the * lookup failed, display the error message. */ @Override protected void onPostExecute(String address) { // Set activity indicator visibility to "gone" mActivityIndicator.setVisibility(View.GONE); // Display the results of the lookup. mAddress.setText(address); } ... } </code></pre> <p>最后一步就是运行地址检索任务。</p> <h2 id="-">运行地址检索任务</h2> <p>为了获取地址信息,调用<a href="http://developer.android.com/reference/android/os/AsyncTask.html#execute(Params..." target="_blank">execute()</a>方法即可。例如,下面的代码片段展示了当用户点击&quot;Get Address&quot;按钮时应用就开始检索地址信息了:</p> <pre><code class="lang-java"><span class="hljs-keyword">public</span> <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">MainActivity</span> <span class="hljs-keyword">extends</span> <span class="hljs-title">FragmentActivity</span> {</span> ... <span class="hljs-javadoc">/** * The "Get Address" button in the UI is defined with * android:onClick="getAddress". The method is invoked whenever the * user clicks the button. * *<span class="hljs-javadoctag"> @param</span> v The view object associated with this method, * in this case a Button. */</span> <span class="hljs-keyword">public</span> <span class="hljs-keyword">void</span> <span class="hljs-title">getAddress</span>(View v) { <span class="hljs-comment">// Ensure that a Geocoder services is available</span> <span class="hljs-keyword">if</span> (Build.VERSION.SDK_INT &gt;= Build.VERSION_CODES.GINGERBREAD &amp;&amp; Geocoder.isPresent()) { <span class="hljs-comment">// Show the activity indicator</span> mActivityIndicator.setVisibility(View.VISIBLE); <span class="hljs-comment">/* * Reverse geocoding is long-running and synchronous. * Run it on a background thread. * Pass the current location to the background task. * When the task finishes, * onPostExecute() displays the address. */</span> (<span class="hljs-keyword">new</span> GetAddressTask(<span class="hljs-keyword">this</span>)).execute(mLocation); } ... } ... } </code></pre> <p>下一课,<a href="geofencing.html">创建和监视Geofences</a>将会教你如何定义地理围栏以及如何使用地理围栏来探测用户对一个兴趣位置的接近程度。</p> </section> </div> </div> </div> <a href="../location/retrieve-location-updates.html" class="navigation navigation-prev " aria-label="Previous page: 获取位置更新"><i class="fa fa-angle-left"></i></a> <a href="../location/geofencing.html" class="navigation navigation-next " aria-label="Next page: 创建并监视异常区域"><i class="fa fa-angle-right"></i></a> </div> </div> <script src="../gitbook/jsrepl/jsrepl.js" id="jsrepl-script"></script> <script src="../gitbook/app.js"></script> <script src="http://cdn.mathjax.org/mathjax/2.0-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script src="../gitbook/plugins/gitbook-plugin-mathjax/plugin.js"></script> <script> require(["gitbook"], function(gitbook) { var config = {}; gitbook.start(config); }); </script> </body> </html>
SunShineShine/android-training-course-in-chinese
location/display-address.html
HTML
apache-2.0
147,523
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_72) on Wed Feb 03 04:43:04 BRT 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>br.edu.ifpb.sisloc.controller (Sisloc 1.0-SNAPSHOT API)</title> <meta name="date" content="2016-02-03"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <h1 class="bar"><a href="../../../../../br/edu/ifpb/sisloc/controller/package-summary.html" target="classFrame">br.edu.ifpb.sisloc.controller</a></h1> <div class="indexContainer"> <h2 title="Classes">Classes</h2> <ul title="Classes"> <li><a href="FrontController.html" title="class in br.edu.ifpb.sisloc.controller" target="classFrame">FrontController</a></li> <li><a href="Init.html" title="class in br.edu.ifpb.sisloc.controller" target="classFrame">Init</a></li> </ul> </div> </body> </html>
jass2125/sistema-alocacao
docs/apidocs/br/edu/ifpb/sisloc/controller/package-frame.html
HTML
apache-2.0
1,069
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--Rendered using the Haskell Html Library v0.2--> <HTML ><HEAD ><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8" ><TITLE >Qtc.Gui.QDial</TITLE ><LINK HREF="haddock.css" REL="stylesheet" TYPE="text/css" ><SCRIPT SRC="haddock-util.js" TYPE="text/javascript" ></SCRIPT ></HEAD ><BODY ><DIV CLASS="outer" ><DIV CLASS="mini-topbar" >Qtc.Gui.QDial</DIV ><DIV CLASS="mini-synopsis" ><DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQqDial" TARGET="main" >QqDial</A > x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQevent" TARGET="main" >Qevent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQinitStyleOption" TARGET="main" >QinitStyleOption</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQminimumSizeHint" TARGET="main" >QminimumSizeHint</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQqminimumSizeHint" TARGET="main" >QqminimumSizeHint</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQmouseMoveEvent" TARGET="main" >QmouseMoveEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQmousePressEvent" TARGET="main" >QmousePressEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQmouseReleaseEvent" TARGET="main" >QmouseReleaseEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><A HREF="Qtc-Gui-QDial.html#v%3AnotchSize" TARGET="main" >notchSize</A ></DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQnotchTarget" TARGET="main" >QnotchTarget</A > x1</DIV > <DIV CLASS="decl" ><A HREF="Qtc-Gui-QDial.html#v%3AnotchesVisible" TARGET="main" >notchesVisible</A ></DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQpaintEvent" TARGET="main" >QpaintEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQresizeEvent" TARGET="main" >QresizeEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQsetNotchTarget" TARGET="main" >QsetNotchTarget</A > x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQsetNotchesVisible" TARGET="main" >QsetNotchesVisible</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQsetWrapping" TARGET="main" >QsetWrapping</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQsizeHint" TARGET="main" >QsizeHint</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQqsizeHint" TARGET="main" >QqsizeHint</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQsliderChange" TARGET="main" >QsliderChange</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQwrapping" TARGET="main" >Qwrapping</A > x1</DIV > <DIV CLASS="decl" ><A HREF="Qtc-Gui-QDial.html#v%3AqDial_delete" TARGET="main" >qDial_delete</A ></DIV > <DIV CLASS="decl" ><A HREF="Qtc-Gui-QDial.html#v%3AqDial_deleteLater" TARGET="main" >qDial_deleteLater</A ></DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQchangeEvent" TARGET="main" >QchangeEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQkeyPressEvent" TARGET="main" >QkeyPressEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQrepeatAction" TARGET="main" >QrepeatAction</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQsetRepeatAction" TARGET="main" >QsetRepeatAction</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQtimerEvent" TARGET="main" >QtimerEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQwheelEvent" TARGET="main" >QwheelEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQactionEvent" TARGET="main" >QactionEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQaddAction" TARGET="main" >QaddAction</A > x0 x1 xr</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQcloseEvent" TARGET="main" >QcloseEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQcontextMenuEvent" TARGET="main" >QcontextMenuEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQcreate" TARGET="main" >Qcreate</A > x0 x1 xr</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQdestroy" TARGET="main" >Qdestroy</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQdevType" TARGET="main" >QdevType</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQdragEnterEvent" TARGET="main" >QdragEnterEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQdragLeaveEvent" TARGET="main" >QdragLeaveEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQdragMoveEvent" TARGET="main" >QdragMoveEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQdropEvent" TARGET="main" >QdropEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQenabledChange" TARGET="main" >QenabledChange</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQenterEvent" TARGET="main" >QenterEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQfocusInEvent" TARGET="main" >QfocusInEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQfocusNextChild" TARGET="main" >QfocusNextChild</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQfocusNextPrevChild" TARGET="main" >QfocusNextPrevChild</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQfocusOutEvent" TARGET="main" >QfocusOutEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQfocusPreviousChild" TARGET="main" >QfocusPreviousChild</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQfontChange" TARGET="main" >QfontChange</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQheightForWidth" TARGET="main" >QheightForWidth</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQhideEvent" TARGET="main" >QhideEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQinputMethodEvent" TARGET="main" >QinputMethodEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQinputMethodQuery" TARGET="main" >QinputMethodQuery</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQkeyReleaseEvent" TARGET="main" >QkeyReleaseEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQlanguageChange" TARGET="main" >QlanguageChange</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQleaveEvent" TARGET="main" >QleaveEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQmetric" TARGET="main" >Qmetric</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQmouseDoubleClickEvent" TARGET="main" >QmouseDoubleClickEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQmove" TARGET="main" >Qmove</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQqmove" TARGET="main" >Qqmove</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQmoveEvent" TARGET="main" >QmoveEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQpaintEngine" TARGET="main" >QpaintEngine</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQpaletteChange" TARGET="main" >QpaletteChange</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQrepaint" TARGET="main" >Qrepaint</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQresetInputContext" TARGET="main" >QresetInputContext</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQresize" TARGET="main" >Qresize</A > x0 x1 xr</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQqresize" TARGET="main" >Qqresize</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQsetGeometry" TARGET="main" >QsetGeometry</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQqsetGeometry" TARGET="main" >QqsetGeometry</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQsetMouseTracking" TARGET="main" >QsetMouseTracking</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQsetVisible" TARGET="main" >QsetVisible</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQshowEvent" TARGET="main" >QshowEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQtabletEvent" TARGET="main" >QtabletEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQupdateMicroFocus" TARGET="main" >QupdateMicroFocus</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQwindowActivationChange" TARGET="main" >QwindowActivationChange</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQchildEvent" TARGET="main" >QchildEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQconnectNotify" TARGET="main" >QconnectNotify</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQcustomEvent" TARGET="main" >QcustomEvent</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQdisconnectNotify" TARGET="main" >QdisconnectNotify</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQeventFilter" TARGET="main" >QeventFilter</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQreceivers" TARGET="main" >Qreceivers</A > x0 x1</DIV > <DIV CLASS="decl" ><SPAN CLASS="keyword" >class</SPAN >&nbsp;<A HREF="Qtc-Gui-QDial.html#t%3AQsender" TARGET="main" >Qsender</A > x0 x1</DIV ></DIV ></DIV ></BODY ></HTML >
keera-studios/hsQt
doc/apiGuide/mini_Qtc-Gui-QDial.html
HTML
bsd-2-clause
12,692
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Leaflet Vector Layers - Jason Sanford</title> <meta name="description" content="Display vector data from ArcGIS Server, GeoIQ, Geocommons, Arc2Earth, CartoDB and others in a Leaflet map"> <meta name="author" content="Justin Lewis" > <!-- Le HTML5 shim, for IE6-8 support of HTML elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- Le styles --> <link href="../docs-demo/css/bootstrap.css" rel="stylesheet"> <link href="../docs-demo/css/prettify.css" rel="stylesheet"> <link href="../docs-demo/css/docs.css" rel="stylesheet"> <link href="../docs-demo/css/demo.css" rel="stylesheet"> </head> <body> <a href="https://github.com/JasonSanford/leaflet-vector-layers"><img style="position: fixed; top: 0; right: 0; border: 0; z-index: 10001;" src="../docs-demo/img/github-fork.png" alt="Fork me on GitHub"></a> <div class="topbar" data-dropdown="dropdown"> <div class="topbar-inner"> <div class="container-fluid"> <a class="brand" href="../">Leaflet Vector Layers</a> <ul class="nav"> <li><a href="../">Home</a></li> <li class="active"><a href="./">Documentation</a></li> <li class="dropdown"> <a href="../demos" class="dropdown-toggle">Demos</a> <ul class="dropdown-menu"> <li><a href="../demos/arcgis-server">ArcGIS Server</a></li> <li><a href="../demos/arc2earth">Arc2Earth</a></li> <li><a href="../demos/cartodb">CartoDB</a></li> <li><a href="../demos/geoiq">GeoIQ</a></li> <li><a href="../demos/postgis-restful-web-service-framework">PostGIS RESTful Web Service Framework</a></li> <li><a href="../demos/gis-cloud">GIS Cloud</a></li> <li><a href="../demos/gitspatial">GitSpatial</a></li> </ul> </li> <li><a href="../tips-tricks">Tips + Tricks</a></li> <li><a href="../download">Download</a></li> </ul> </div> </div> </div> <div class="container-fluid"> <div class="sidebar"> <div class="well"> <h5>Classes</h5> <ul> <li><a href="#docs-ags">lvector.AGS</a></li> <li><a href="#docs-a2e">lvector.A2E</a></li> <li><a href="#docs-geoiq">lvector.GeoIQ</a></li> <li><a href="#docs-cartodb">lvector.CartoDB</a></li> <li><a href="#docs-prwsf">lvector.PRWSF</a></li> <li><a href="#docs-giscloud">lvector.GISCloud</a></li> <li><a href="#docs-gitspatial">lvector.GitSpatial</a></li> </ul> <h5>Other Reference</h5> <ul> <li><a href="#docs-symbology">Symbology Options</a></li> <li><a href="#docs-popup">Popup Template</a></li> <li><a href="#docs-clickevent">Custom clickEvent</a></li> <li><a href="#docs-dynamic">Dynamic Data</a></li> </ul> </div> </div> <div class="content"> <h1>Classes</h1> <!-- ArcGIS Server --> <h2 class="docs" id="docs-ags">lvector.AGS <small>ArcGIS Server</small></h2> <p>This class creates a layer that processes and displays features from an ArcGIS Server. You can also use this class to create a layer from any services that implement Esri's Geo REST specification, like <a href="http://www.arc2earth.com/">Arc2Earth</a>.</p> <h3>Usage Example</h3> <pre class="prettyprint docs">var myAGSLayer = new lvector.AGS({ url: "http://maps.rtd-denver.com/ArcGIS/rest/services/BusLocations/MapServer/0", fields: "*", uniqueField: "OBJECTID", scaleRange: [13, 20], popupTemplate: "&lt;h3&gt;Bus #{BUS_NUMBER}&lt;/h3&gt;&lt;p&gt;Speed: {SPEED} mph&lt;/p&gt;" });</pre> <h3>Constructor</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Constructor</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>lvector.AGS( &lt;<a href="#docs-ags-options">AGS options</a>&gt; options )</code></td><td>Instantiates an AGS layer with an object literal with AGS options described below.</td></tr> </tbody> </table> <h3 id="docs-ags-options">Options</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Option</th><th>Type</th><th>Default Value</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>url</code></td><td><code>String</code></td><td><code>null</code></td><td><strong>Required</strong> - A url for a specific layer in an ArcGIS Server service.</td></tr> <tr><td><code>map</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#map-class">L.Map object</a></code></td><td><code>null</code></td><td>The Leaflet <code>Map</code> object where the layer will be added. The layer can be added to the map later with the <code>setMap</code> method.</td></tr> <tr><td><code>scaleRange</code></td><td><code>Array</code></td><td><code>null</code></td><td>An array with two number values that represent the minimum and maximum scales the layer is visible. For example: <code>[14, 17]</code></td></tr> <tr><td><code>dynamic</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not the layer contains dynamic data. If true, feature geometry and attributes will be checked for changes after extent change and/or after a defined interval. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>autoUpdate</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to auto-update a dynamic layer. If true, feature geometry and attributes will be updated at an interval set by the <code>autoUpdateInterval</code> option. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>autoUpdateInterval</code></td><td><code>Integer</code></td><td><code>null</code></td><td>The interval (in milliseconds) between checks for updated feature geometry and attributes when the <code>autoUpdate</code> option is set to <code>true</code>. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>popupTemplate</code></td><td><code>String|Function</code></td><td><code>null</code></td><td>A template for creating the content of a <a href="http://leafletjs.com/reference.html#popup">Leaflet Popup</a> when a feature is clicked. For details check the <a href="#docs-popup">Popup Template documentation</a>.</td></tr> <tr><td><code>singlePopup</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to show a single Popup for a layer when features are clicked. This keeps the map from getting cluttered when multiple features are clicked.</td></tr> <tr><td><code>popupOptions</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#popup-options">Leaflet Popup options</a></code></td><td><code>null</code></td><td>Controls the width of and the presence of a close button for the Popup and whether the map should be panned when the Popup is opened.</td></tr> <tr><td><code>symbology</code></td><td><code>Object <a href="#docs-symbology">symbology options</a></code></td><td><code>null</code></td><td>The symbology options for the layer. Features can be rendered with a single symbology or can also be symbolized based on an attribute using unique values or a value range. For details check the <a href="#docs-symbology">symbology options documentation</a>.</td></tr> <tr><td><code>showAll</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>If true, all features will be fetched and shown once, not after a map extent change. This is helpful for layers with only a handful of features.</td></tr> <tr><td><code>fields</code></td><td><code>String</code></td><td><code>null</code></td><td>A list of comma separated fields to be returned with the features. For example <code>"OBJECTID,OWNER_NAME"</code> returns two fields and <code>"*"</code> returns all fields.</td></tr> <tr><td><code>uniqueField</code></td><td><code>String</code></td><td><code>null</code></td><td>A field in the returned data that can be considered unique. This isn't required but is very helpful in determining which features are already on the map when the map extent changes.</td></tr> <tr><td><code>clickEvent</code></td><td><code>Function</code></td><td><code>null</code></td><td>A user defined click event. For details check the <a href="#docs-clickevent">Custom clickEvent options documentation</a>.</td></tr> </tbody> </table> <h3>Methods</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Method</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>setMap( &lt;L.Map&gt; Map )</code></td><td>Adds the layer to a map. Remove the layer by passing <code>null</code>.</td></tr> <tr><td><code>getMap()</code></td><td>Gets the map (if any) that the layer has been added to.</td></tr> </tbody> </table> <!-- End ArcGIS Server --> <!-- Arc2Earth --> <h2 class="docs" id="docs-a2e">lvector.A2E <small>Arc2Earth</small></h2> <p>This class creates a layer that processes and displays features from an Arc2Earth Sync instance.</p> <h3>Usage Example</h3> <pre class="prettyprint docs">var myA2ELayer = new lvector.A2E({ url: "http://sync.arc2earth.com/6442491/ArcGIS/rest/services/tfs/2447544/FeatureServer/0", esriOptions: true, uniqueField: "global_fid", popupTemplate: '&lt;div class="iw-content"&gt;&lt;h3&gt;{Name}&lt;/h3&gt;&lt;/div&gt;', singlePopup: true, dynamic: true, autoUpdate: true });</pre> <h3>Constructor</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Constructor</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>lvector.A2E( &lt;<a href="#docs-a2e-options">A2E options</a>&gt; options )</code></td><td>Instantiates an A2E layer with an object literal with A2E options described below.</td></tr> </tbody> </table> <h3 id="docs-ags-options">Options</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Option</th><th>Type</th><th>Default Value</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>url</code></td><td><code>String</code></td><td><code>null</code></td><td><strong>Required</strong> - A url for a specific layer in an ArcGIS Server service.</td></tr> <tr><td><code>map</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#map-class">L.Map object</a></code></td><td><code>null</code></td><td>The Leaflet <code>Map</code> object where the layer will be added. The layer can be added to the map later with the <code>setMap</code> method.</td></tr> <tr><td><code>scaleRange</code></td><td><code>Array</code></td><td><code>null</code></td><td>An array with two number values that represent the minimum and maximum scales the layer is visible. For example: <code>[14, 17]</code></td></tr> <tr><td><code>dynamic</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not the layer contains dynamic data. If true, feature geometry and attributes will be checked for changes after extent change and/or when a <a href="http://www.pubnub.com/">PubNub</a> message is sent to the client.</td></tr> <tr><td><code>autoUpdate</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to auto-update a dynamic layer. If true, feature geometry and attributes will be updated in near real-time by subscribing to <a href="http://www.pubnub.com/">PubNub events</a>.</td></tr> <tr><td><code>popupTemplate</code></td><td><code>String|Function</code></td><td><code>null</code></td><td>A template for creating the content of a <a href="http://leafletjs.com/reference.html#popup">Leaflet Popup</a> when a feature is clicked. For details check the <a href="#docs-popup">Popup Template documentation</a>.</td></tr> <tr><td><code>singlePopup</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to show a single Popup for a layer when features are clicked. This keeps the map from getting cluttered when multiple features are clicked.</td></tr> <tr><td><code>popupOptions</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#popup-options">Leaflet Popup options</a></code></td><td><code>null</code></td><td>Controls the width of and the presence of a close button for the Popup and whether the map should be panned when the Popup is opened.</td></tr> <tr><td><code>symbology</code></td><td><code>Object <a href="#docs-symbology">symbology options</a></code></td><td><code>null</code></td><td>The symbology options for the layer. Features can be rendered with a single symbology or can also be symbolized based on an attribute using unique values or a value range. For details check the <a href="#docs-symbology">symbology options documentation</a>.</td></tr> <tr><td><code>showAll</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>If true, all features will be fetched and shown once, not after a map extent change. This is helpful for layers with only a handful of features.</td></tr> <tr><td><code>fields</code></td><td><code>String</code></td><td><code>null</code></td><td>A list of comma separated fields to be returned with the features. For example <code>"OBJECTID,OWNER_NAME"</code> returns two fields and <code>"*"</code> returns all fields.</td></tr> <tr><td><code>uniqueField</code></td><td><code>String</code></td><td><code>null</code></td><td>A field in the returned data that can be considered unique. This isn't required but is very helpful in determining which features are already on the map when the map extent changes.</td></tr> <tr><td><code>esriOptions</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to request <code>scaleRange</code> and <code>symbology</code> settings from the Arc2Earth Sync back-end. Layers loaded from ArcGIS Desktop into Arc2Earth Sync will retain <code>scaleRange</code> and <code>symbology</code> settings from ArcGIS Desktop.</td></tr> <tr><td><code>clickEvent</code></td><td><code>Function</code></td><td><code>null</code></td><td>A user defined click event. For details check the <a href="#docs-clickevent">Custom clickEvent options documentation</a>.</td></tr> </tbody> </table> <h3>Methods</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Method</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>setMap( &lt;L.Map&gt; Map )</code></td><td>Adds the layer to a map. Remove the layer by passing <code>null</code>.</td></tr> <tr><td><code>getMap()</code></td><td>Gets the map (if any) that the layer has been added to.</td></tr> </tbody> </table> <!-- End Arc2Earth --> <!-- GeoIQ --> <h2 class="docs" id="docs-geoiq">lvector.GeoIQ <small>GeoIQ - Geocommons</small></h2> <p>This class creates a layer that processes and displays features from a GeoIQ dataset.</p> <h3>Usage Example</h3> <pre class="prettyprint docs">var myGeoIQLayer = new lvector.GeoIQ({ dataset: 164880, uniqueField: "NAME", scaleRange: [6, 20], popupTemplate: '&lt;div class="iw-content"&gt;&lt;h3&gt;{NAME}&lt;/h3&gt;&lt;/div&gt;', singlePopup: true, symbology: { type: "single", vectorOptions: { icon: new customIcon({ iconUrl: "../../docs-demo/img/markers/ski-lift.png" }) } } });</pre> <h3>Constructor</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Constructor</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>lvector.GeoIQ( &lt;<a href="#docs-geoiq-options">GeoIQ options</a>&gt; options )</code></td><td>Instantiates a GeoIQ layer with an object literal with GeoIQ options described below.</td></tr> </tbody> </table> <h3 id="docs-geoiq-options">Options</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Option</th><th>Type</th><th>Default Value</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>dataset</code></td><td><code>Number</code></td><td><code>null</code></td><td><strong>Required</strong> - A dataset id for a GeoIQ/Geocommons dataset.</td></tr> <tr><td><code>map</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#map-class">L.Map object</a></code></td><td><code>null</code></td><td>The Leaflet <code>Map</code> object where the layer will be added. The layer can be added to the map later with the <code>setMap</code> method.</td></tr> <tr><td><code>scaleRange</code></td><td><code>Array</code></td><td><code>null</code></td><td>An array with two number values that represent the minimum and maximum scales the layer is visible. For example: <code>[14, 17]</code></td></tr> <tr><td><code>dynamic</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not the layer contains dynamic data. If true, feature geometry and attributes will be checked for changes after extent change and/or after a defined interval. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>autoUpdate</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to auto-update a dynamic layer. If true, feature geometry and attributes will be updated at an interval set by the <code>autoUpdateInterval</code> option. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>autoUpdateInterval</code></td><td><code>Integer</code></td><td><code>null</code></td><td>The interval (in milliseconds) between checks for updated feature geometry and attributes when the <code>autoUpdate</code> option is set to <code>true</code>. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>popupTemplate</code></td><td><code>String|Function</code></td><td><code>null</code></td><td>A template for creating the content of a <a href="http://leafletjs.com/reference.html#popup">Leaflet Popup</a> when a feature is clicked. For details check the <a href="#docs-popup">Popup Template documentation</a>.</td></tr> <tr><td><code>singlePopup</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to show a single Popup for a layer when features are clicked. This keeps the map from getting cluttered when multiple features are clicked.</td></tr> <tr><td><code>popupOptions</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#popup-options">Leaflet Popup options</a></code></td><td><code>null</code></td><td>Controls the width of and the presence of a close button for the Popup and whether the map should be panned when the Popup is opened.</td></tr> <tr><td><code>symbology</code></td><td><code>Object <a href="#docs-symbology">symbology options</a></code></td><td><code>null</code></td><td>The symbology options for the layer. Features can be rendered with a single symbology or can also be symbolized based on an attribute using unique values or a value range. For details check the <a href="#docs-symbology">symbology options documentation</a>.</td></tr> <tr><td><code>showAll</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>If true, all features will be fetched and shown once, not after a map extent change. This is helpful for layers with only a handful of features.</td></tr> <tr><td><code>uniqueField</code></td><td><code>String</code></td><td><code>null</code></td><td>A field in the returned data that can be considered unique. This isn't required but is very helpful in determining which features are already on the map when the map extent changes.</td></tr> <tr><td><code>clickEvent</code></td><td><code>Function</code></td><td><code>null</code></td><td>A user defined click event. For details check the <a href="#docs-clickevent">Custom clickEvent options documentation</a>.</td></tr> </tbody> </table> <h3>Methods</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Method</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>setMap( &lt;L.Map&gt; Map )</code></td><td>Adds the layer to a map. Remove the layer by passing <code>null</code>.</td></tr> <tr><td><code>getMap()</code></td><td>Gets the map (if any) that the layer has been added to.</td></tr> </tbody> </table> <!-- End GeoIQ --> <!-- CartoDB --> <h2 class="docs" id="docs-cartodb">lvector.CartoDB <small>CartoDB</small></h2> <p>This class creates a layer that processes and displays features from a CartoDB table.</p> <h3>Usage Example</h3> <pre class="prettyprint docs">var myCartoDBLayer = new lvector.CartoDB({ user: "geojason", table: "man_hole", scaleRange: [16, 20], symbology: { type: "single", vectorOptions: { icon: new customIcon({ iconUrl: "../../docs-demo/img/markers/manhole.png" }) } }, popupTemplate: '&lt;h3&gt;Man Hole&lt;/h3&lt;p&gt;Depth: {mh_depth}&lt;/p&gt;', singlePopup: true });</pre> <h3>Constructor</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Constructor</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>lvector.CartoDB( &lt;<a href="#docs-cartodb-options">CartoDB options</a>&gt; options )</code></td><td>Instantiates a CartoDB layer with an object literal with CartoDB options described below.</td></tr> </tbody> </table> <h3 id="docs-cartodb-options">Options</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Option</th><th>Type</th><th>Default Value</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>user</code></td><td><code>String</code></td><td><code>null</code></td><td><strong>Required</strong> - The CartoDB user that owns the table to be displayed. For example a CartoDB map viewed via a URL like <code>http://geojason.cartodb.com/map</code>, "geojason" is the CartoDB user.</td></tr> <tr><td><code>table</code></td><td><code>String</code></td><td><code>null</code></td><td><strong>Required</strong> - The CartoDB table name for the data to be displayed.</td></tr> <tr><td><code>map</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#map-class">L.Map object</a></code></td><td><code>null</code></td><td>The Leaflet <code>Map</code> object where the layer will be added. The layer can be added to the map later with the <code>setMap</code> method.</td></tr> <tr><td><code>apiKey</code></td><td><code>String</code></td><td><code>null</code></td><td>A CartoDB API Key. Use this for accessing private tables.</td></tr> <tr><td><code>scaleRange</code></td><td><code>Array</code></td><td><code>null</code></td><td>An array with two number values that represent the minimum and maximum scales the layer is visible. For example: <code>[14, 17]</code></td></tr> <tr><td><code>dynamic</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not the layer contains dynamic data. If true, feature geometry and attributes will be checked for changes after extent change and/or after a defined interval. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>autoUpdate</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to auto-update a dynamic layer. If true, feature geometry and attributes will be updated at an interval set by the <code>autoUpdateInterval</code> option. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>autoUpdateInterval</code></td><td><code>Integer</code></td><td><code>null</code></td><td>The interval (in milliseconds) between checks for updated feature geometry and attributes when the <code>autoUpdate</code> option is set to <code>true</code>. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>popupTemplate</code></td><td><code>String|Function</code></td><td><code>null</code></td><td>A template for creating the content of a <a href="http://leafletjs.com/reference.html#popup">Leaflet Popup</a> when a feature is clicked. For details check the <a href="#docs-popup">Popup Template documentation</a>.</td></tr> <tr><td><code>singlePopup</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to show a single Popup for a layer when features are clicked. This keeps the map from getting cluttered when multiple features are clicked.</td></tr> <tr><td><code>popupOptions</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#popup-options">Leaflet Popup options</a></code></td><td><code>null</code></td><td>Controls the width of and the presence of a close button for the Popup and whether the map should be panned when the Popup is opened.</td></tr> <tr><td><code>symbology</code></td><td><code>Object <a href="#docs-symbology">symbology options</a></code></td><td><code>null</code></td><td>The symbology options for the layer. Features can be rendered with a single symbology or can also be symbolized based on an attribute using unique values or a value range. For details check the <a href="#docs-symbology">symbology options documentation</a>.</td></tr> <tr><td><code>showAll</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>If true, all features will be fetched and shown once, not after a map extent change. This is helpful for layers with only a handful of features.</td></tr> <tr><td><code>fields</code></td><td><code>String</code></td><td><code>"*"</code></td><td>A list of comma separated fields to be returned with the features. By default all fields are returned.</td></tr> <tr><td><code>clickEvent</code></td><td><code>Function</code></td><td><code>null</code></td><td>A user defined click event. For details check the <a href="#docs-clickevent">Custom clickEvent options documentation</a>.</td></tr> </tbody> </table> <h3>Methods</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Method</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>setMap( &lt;L.Map&gt; Map )</code></td><td>Adds the layer to a map. Remove the layer by passing <code>null</code>.</td></tr> <tr><td><code>getMap()</code></td><td>Gets the map (if any) that the layer has been added to.</td></tr> </tbody> </table> <!-- End CartoDB --> <!-- PostGIS RESTful Web Service Framework --> <h2 class="docs" id="docs-prwsf">lvector.PRWSF <small>PostGIS RESTful Web Service Framework</small></h2> <p>This class creates a layer that processes and displays features from a PostGIS RESTful Web Service Framework geotable.</p> <p>The <a href="http://code.google.com/p/postgis-restful-web-service-framework/">PostGIS RESTful Web Service Framework</a> is an open source project written in PHP that creates a set of web services that allow you to query geo data in a PostGIS database. These web services are extemely flexible allowing you to project, aggregate, order and serialize your data in many different ways. Below are some implementations I've found:</p> <ul class="docs"> <li><a href="http://gisapps.co.union.nc.us/ws/rest/">Union County GeoData API</a> (A .Net port)</li> <li><a href="http://maps.co.mecklenburg.nc.us/rest/">Mecklenburg County GeoPortal</a></li> <li><a href="http://gis.drcog.org/datacatalog/cookbook/">Denver Regional Council of Governments</a></li> </ul> <h3>Usage Example</h3> <pre class="prettyprint docs">var myPrwsfLayer = new lvector.PRWSF({ url: "http://gis.drcog.org/REST", geotable: "mountain_backdrop_preservation_area", fields: "gid", uniqueField: "gid", geomPrecision: 6, srid: 2232, showAll: true, symbology: { type: "single", vectorOptions: { fillColor: "#2f4a00", fillOpacity: 0.4, strokeWeight: 1.8, strokeColor: "#2f4a00", strokeOpacity: 1, clickable: false } } });</pre> <h3>Constructor</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Constructor</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>lvector.PRWSF( &lt;<a href="#docs-prwsf-options">PRWSF options</a>&gt; options )</code></td><td>Instantiates a PRWSF layer with an object literal with PRWSF options described below.</td></tr> </tbody> </table> <h3 id="docs-prwsf-options">Options</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Option</th><th>Type</th><th>Default Value</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>url</code></td><td><code>String</code></td><td><code>null</code></td><td><strong>Required</strong> - The root URL for the PostGIS RESTful Web Service Framework instance.</td></tr> <tr><td><code>geotable</code></td><td><code>String</code></td><td><code>null</code></td><td><strong>Required</strong> - The geotable for which we want data to be displayed.</td></tr> <tr><td><code>fields</code></td><td><code>String</code></td><td><code>null</code></td><td>A list of comma separated fields to be returned with the features. By default only the geometry field is returned. You'd likely want to also return a unique id and some other attribute information.</td></tr> <tr><td><code>geomFieldName</code></td><td><code>String</code></td><td><code>"the_geom"</code></td><td>The geometry field name for this geotable. Most commonly found as <code>the_geom</code></td></tr> <tr><td><code>geomPrecision</code></td><td><code>Integer</code></td><td><code>null</code></td><td>Used to reduce the maximum number of decimal places in the PostGIS ST_AsGeoJSON output (PostGIS defaults to 15).</td></tr> <tr><td><code>srid</code></td><td><code>Integer</code></td><td><code>null</code></td><td>The SRID of the geometry in this geotable. This isn't required but increases performance drastically as the bounding box geometry can be projected to match your features' projection, which makes use of spatial indexes (that you've hopefully built).</td></tr> <tr><td><code>where</code></td><td><code>String</code></td><td><code>null</code></td><td>Any additional SQL query(ies) to further filter the returned features.</td></tr> <tr><td><code>limit</code></td><td><code>Integer</code></td><td><code>null</code></td><td>Limit the number of returned features.</td></tr> <tr><td><code>map</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#map-class">L.Map object</a></code></td><td><code>null</code></td><td>The Leaflet <code>Map</code> object where the layer will be added. The layer can be added to the map later with the <code>setMap</code> method.</td></tr> <tr><td><code>scaleRange</code></td><td><code>Array</code></td><td><code>null</code></td><td>An array with two number values that represent the minimum and maximum scales the layer is visible. For example: <code>[14, 17]</code></td></tr> <tr><td><code>dynamic</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not the layer contains dynamic data. If true, feature geometry and attributes will be checked for changes after extent change and/or after a defined interval. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>autoUpdate</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to auto-update a dynamic layer. If true, feature geometry and attributes will be updated at an interval set by the <code>autoUpdateInterval</code> option. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>autoUpdateInterval</code></td><td><code>Integer</code></td><td><code>null</code></td><td>The interval (in milliseconds) between checks for updated feature geometry and attributes when the <code>autoUpdate</code> option is set to <code>true</code>. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>popupTemplate</code></td><td><code>String|Function</code></td><td><code>null</code></td><td>A template for creating the content of a <a href="http://leafletjs.com/reference.html#popup">Leaflet Popup</a> when a feature is clicked. For details check the <a href="#docs-popup">Popup Template documentation</a>.</td></tr> <tr><td><code>singlePopup</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to show a single Popup for a layer when features are clicked. This keeps the map from getting cluttered when multiple features are clicked.</td></tr> <tr><td><code>popupOptions</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#popup-options">Leaflet Popup options</a></code></td><td><code>null</code></td><td>Controls the width of and the presence of a close button for the Popup and whether the map should be panned when the Popup is opened.</td></tr> <tr><td><code>symbology</code></td><td><code>Object <a href="#docs-symbology">symbology options</a></code></td><td><code>null</code></td><td>The symbology options for the layer. Features can be rendered with a single symbology or can also be symbolized based on an attribute using unique values or a value range. For details check the <a href="#docs-symbology">symbology options documentation</a>.</td></tr> <tr><td><code>showAll</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>If true, all features will be fetched and shown once, not after a map extent change. This is helpful for layers with only a handful of features.</td></tr> <tr><td><code>clickEvent</code></td><td><code>Function</code></td><td><code>null</code></td><td>A user defined click event. For details check the <a href="#docs-clickevent">Custom clickEvent options documentation</a>.</td></tr> </tbody> </table> <h3>Methods</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Method</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>setMap( &lt;L.Map&gt; Map )</code></td><td>Adds the layer to a map. Remove the layer by passing <code>null</code>.</td></tr> <tr><td><code>getMap()</code></td><td>Gets the map (if any) that the layer has been added to.</td></tr> </tbody> </table> <!-- End PostGIS RESTful Web Service Framework --> <!-- GIS Cloud --> <h2 class="docs" id="docs-giscloud">lvector.GISCloud <small>GIS Cloud</small></h2> <p>This class creates a layer that processes and displays features from a GIS Cloud map layer.</p> <h3>Usage Example</h3> <pre class="prettyprint docs">var myGisCloudLayer = new lvector.GISCloud({ mapID: 27322, layerID: 117755, symbology: { type: "single", vectorOptions: { weight: 4, color: "#46461f", opacity: 0.8 } }, scaleRange: [13, 18] });</pre> <h3>Constructor</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Constructor</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>lvector.GISCloud( &lt;<a href="#docs-giscloud-options">GISCloud options</a>&gt; options )</code></td><td>Instantiates a GISCloud layer with an object literal with GISCloud options described below.</td></tr> </tbody> </table> <h3 id="docs-giscloud-options">Options</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Option</th><th>Type</th><th>Default Value</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>mapID</code></td><td><code>String|Number</code></td><td><code>null</code></td><td><strong>Required</strong> - The GIS Cloud Map ID where your layer can be found.</td></tr> <tr><td><code>layerID</code></td><td><code>String|Number</code></td><td><code>null</code></td><td><strong>Required</strong> - The GIS Cloud Layer ID for your layer.</td></tr> <tr><td><code>where</code></td><td><code>String</code></td><td><code>null</code></td><td>Any additional SQL query(ies) to further filter the returned features.</td></tr> <tr><td><code>map</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#map-class">L.Map object</a></code></td><td><code>null</code></td><td>The Leaflet <code>Map</code> object where the layer will be added. The layer can be added to the map later with the <code>setMap</code> method.</td></tr> <tr><td><code>scaleRange</code></td><td><code>Array</code></td><td><code>null</code></td><td>An array with two number values that represent the minimum and maximum scales the layer is visible. For example: <code>[14, 17]</code></td></tr> <tr><td><code>dynamic</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not the layer contains dynamic data. If true, feature geometry and attributes will be checked for changes after extent change and/or after a defined interval. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>autoUpdate</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to auto-update a dynamic layer. If true, feature geometry and attributes will be updated at an interval set by the <code>autoUpdateInterval</code> option. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>autoUpdateInterval</code></td><td><code>Integer</code></td><td><code>null</code></td><td>The interval (in milliseconds) between checks for updated feature geometry and attributes when the <code>autoUpdate</code> option is set to <code>true</code>. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>popupTemplate</code></td><td><code>String|Function</code></td><td><code>null</code></td><td>A template for creating the content of a <a href="http://leafletjs.com/reference.html#popup">Leaflet Popup</a> when a feature is clicked. For details check the <a href="#docs-popup">Popup Template documentation</a>.</td></tr> <tr><td><code>singlePopup</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to show a single Popup for a layer when features are clicked. This keeps the map from getting cluttered when multiple features are clicked.</td></tr> <tr><td><code>popupOptions</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#popup-options">Leaflet Popup options</a></code></td><td><code>null</code></td><td>Controls the width of and the presence of a close button for the Popup and whether the map should be panned when the Popup is opened.</td></tr> <tr><td><code>symbology</code></td><td><code>Object <a href="#docs-symbology">symbology options</a></code></td><td><code>null</code></td><td>The symbology options for the layer. Features can be rendered with a single symbology or can also be symbolized based on an attribute using unique values or a value range. For details check the <a href="#docs-symbology">symbology options documentation</a>.</td></tr> <tr><td><code>showAll</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>If true, all features will be fetched and shown once, not after a map extent change. This is helpful for layers with only a handful of features.</td></tr> <tr><td><code>clickEvent</code></td><td><code>Function</code></td><td><code>null</code></td><td>A user defined click event. For details check the <a href="#docs-clickevent">Custom clickEvent options documentation</a>.</td></tr> </tbody> </table> <h3>Methods</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Method</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>setMap( &lt;google.maps.Map&gt; Map )</code></td><td>Adds the layer to a map. Remove the layer by passing <code>null</code>.</td></tr> <tr><td><code>getMap()</code></td><td>Gets the map (if any) that the layer has been added to.</td></tr> </tbody> </table> <!-- End GIS Cloud --> <!-- GitSpatial --> <h2 class="docs" id="docs-gitspatial">lvector.GitSpatial <small>GitSpatial</small></h2> <p>This class creates a layer that processes and displays features from a <a href="http://gitspatial.com">GitSpatial feature set</a>.</p> <h3>Usage Example</h3> <pre class="prettyprint docs">my_gitspatial_layer = new lvector.GitSpatial({ user: 'JasonSanford', repo: 'mecklenburg-gis-opendata', feature_set: 'parks', popupTemplate: '&lt;div class="iw-content"&gt;&lt;h3&gt;{name}&lt;/h3&gt;Address: {address}&lt;/div&gt;' });</pre> <h3>Constructor</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Constructor</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>lvector.GitSpatial( &lt;<a href="#docs-gitspatial-options">GitSpatial options</a>&gt; options )</code></td><td>Instantiates a GitSpatial layer with an object literal with GitSpatial options described below.</td></tr> </tbody> </table> <h3 id="docs-gitspatial-options">Options</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Option</th><th>Type</th><th>Default Value</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>user</code></td><td><code>String</code></td><td><code>null</code></td><td><strong>Required</strong> - The GitHub user id for a GitSpatial feature set.</td></tr> <tr><td><code>repo</code></td><td><code>String</code></td><td><code>null</code></td><td><strong>Required</strong> - The GitHub repo name for a GitSpatial feature set.</td></tr> <tr><td><code>featureSet</code></td><td><code>String</code></td><td><code>null</code></td><td><strong>Required</strong> - The GitSpatial feature set name.</td></tr> <tr><td><code>map</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#map-class">L.Map object</a></code></td><td><code>null</code></td><td>The Leaflet <code>Map</code> object where the layer will be added. The layer can be added to the map later with the <code>setMap</code> method.</td></tr> <tr><td><code>scaleRange</code></td><td><code>Array</code></td><td><code>null</code></td><td>An array with two number values that represent the minimum and maximum scales the layer is visible. For example: <code>[14, 17]</code></td></tr> <tr><td><code>dynamic</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not the layer contains dynamic data. If true, feature geometry and attributes will be checked for changes after extent change and/or after a defined interval. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>autoUpdate</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to auto-update a dynamic layer. If true, feature geometry and attributes will be updated at an interval set by the <code>autoUpdateInterval</code> option. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>autoUpdateInterval</code></td><td><code>Integer</code></td><td><code>null</code></td><td>The interval (in milliseconds) between checks for updated feature geometry and attributes when the <code>autoUpdate</code> option is set to <code>true</code>. For details check the <a href="#docs-dynamic">dynamic data documentation</a>.</td></tr> <tr><td><code>popupTemplate</code></td><td><code>String|Function</code></td><td><code>null</code></td><td>A template for creating the content of a <a href="http://leafletjs.com/reference.html#popup">Leaflet Popup</a> when a feature is clicked. For details check the <a href="#docs-popup">Popup Template documentation</a>.</td></tr> <tr><td><code>singlePopup</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>Whether or not to show a single Popup for a layer when features are clicked. This keeps the map from getting cluttered when multiple features are clicked.</td></tr> <tr><td><code>popupOptions</code></td><td><code>Object <a href="http://leafletjs.com/reference.html#popup-options">Leaflet Popup options</a></code></td><td><code>null</code></td><td>Controls the width of and the presence of a close button for the Popup and whether the map should be panned when the Popup is opened.</td></tr> <tr><td><code>symbology</code></td><td><code>Object <a href="#docs-symbology">symbology options</a></code></td><td><code>null</code></td><td>The symbology options for the layer. Features can be rendered with a single symbology or can also be symbolized based on an attribute using unique values or a value range. For details check the <a href="#docs-symbology">symbology options documentation</a>.</td></tr> <tr><td><code>showAll</code></td><td><code>Boolean</code></td><td><code>false</code></td><td>If true, all features will be fetched and shown once, not after a map extent change. This is helpful for layers with only a handful of features.</td></tr> </tbody> </table> <h3>Methods</h3> <table class="docs condensed-table zebra-striped"> <thead> <tr><th>Method</th><th>Description</th></tr> </thead> <tbody> <tr><td><code>setMap( &lt;google.maps.Map&gt; Map )</code></td><td>Adds the layer to a map. Remove the layer by passing <code>null</code>.</td></tr> <tr><td><code>getMap()</code></td><td>Gets the map (if any) that the layer has been added to.</td></tr> </tbody> </table> <!-- End GitSpatial --> <hr> <h1>Other Reference</h1> <h2 class="docs" id="docs-symbology">Symbology</h2> <p class="docs">Symbology for a layer can be defined a few different ways including <code>single</code>, <code>unique</code> and <code>range</code>. If no symbology is defined the default Leaflet vector styles will be used.</p> <p class="docs">When instantiating a new layer, use one of the options below when setting the <code>symbology</code> option value.</p> <p class="docs">Note that marker icons may also have a <code>title</code> option for defining a tooltip on mouseover.</p> <h3>single</h3> <p class="docs">The <code>single</code> type displays all features with the same symbology.</p> <pre class="prettyprint docs">{ type: "single", // Defines the symbology as a single type of representation for all features vectorOptions: { // Leaflet Path options for all features fillColor: "#46461f", fillOpacity: 0.5, weight: 4, color: "#ff7800" } }</pre> <h3>unique</h3> <p class="docs">The <code>unique</code> type displays features with the same attibute values with the same symbology. This is helpful when you have a handful of discrete values for which you want to define symbology.</p> <p>Check the <a href="../demos/arcgis-server/#districts">districts example</a> on the <a href="../demos/arcgis-server/">ArcGIS Server demo page</a> and view source to see it in action.</p> <pre class="prettyprint docs">{ type: "unique", // Defines the symbology as a unique type where features with an attribute of a specific value are symbolized the same way property: "DISTRICT", // The property (field, attribute) to use for defining unique values and styles values: [ // An array of values to set symbology. Each value has a specific symbology { value: "A", // If feature.properties.DISTRICT == "A" vectorOptions: { // Use these Leaflet Path options for features matching fillColor: "#6600FF", fillOpacity: 0.6, color: "#666666", opacity: 0.8, weight: 1 } }, { value: "B", vectorOptions: { fillColor: "#660066", fillOpacity: 0.6, color: "#666666", opacity: 0.8, weight: 1 } }, { value: "C", vectorOptions: { fillColor: "#FF9900", fillOpacity: 0.6, color: "#666666", opacity: 0.8, weight: 1 } } ] }</pre> <h3>range</h3> <p class="docs">The <code>range</code> type tests values to see if they are within a specified range and symbolizes them accordingly. This is helpful for datasets that have values with lots of individual values like population counts per county in the US or in this example, vehicle speeds.</p> <pre class="prettyprint docs">{ type: "range", // Defines the symbology as a range type where values above a minimum and below a maximum value are symbolized the same way property: "SPEED", // The property (field, attribute) to use for defining range values and styles ranges: [ // An array of value ranges to set symbology. Each value range has a specific symbology. { range: [1, 20], // if feature.properties.SPEED &gt;= 1 AND feature.properties.SPEED &lt;= 20 vectorOptions: { // Use these Leaflet Path options for features with values in this range icon: new customIcon({ iconUrl: "../../docs-demo/img/markers/bus-brown.png" }), title: "{SPEED} mph" } },{ range: [21, 100], vectorOptions: { icon: new customIcon({ iconUrl: "../../docs-demo/img/markers/bus-green.png" }), title: "{SPEED} mph" } } ] }</pre> <h2 class="docs" id="docs-popup">Popup Templates</h2> <p class="docs">To create content to show Popups when features are clicked we can use the <code>popupTemplate</code> option. A popupTemplate can be set two ways:</p> <ul class="docs"> <li>A string with property names wrapped in curly brackets (<code>{road_name}</code>) to act as placeholders for the values</li> <li>A function that returns a string that will be used as the Popup content. This function is passed the feature properties so that these properties can be used any number of ways to create Popup content. You could do things like create a chart with Google's Chart API or format ALL CAPS text to Proper Case.</li> </ul> <h3>String Based</h3> <p>A simple popupTemplate might look like:</p> <pre class="prettyprint docs">"&lt;h3&gt;{road_name}&lt;/h3&gt;&lt;p&gt;Speed Limit: {speed_limit} mph&lt;/p&gt;"</pre> <p>which gets transformed to:</p> <pre class="prettyprint docs">"&lt;h3&gt;S Bemis St&lt;/h3&gt;&lt;p&gt;Speed Limit: 25 mph&lt;/p&gt;"</pre> <h3>Function Based</h3> <p>For more flexibility we can use a function to do some more complex operations with our feature properties for customized output. A function for a popupTemplate might look like:</p> <pre class="prettyprint docs">function(properties) { /* Assuming "properties" is an object like: { ROAD_NAME: "S Bemis St", SPEED_LIMIT: 25 } */ var output = "&lt;h3&gt;State Road&lt;/h3&gt;"; for (var prop in properties) { output += prop.replace(/_/gi, " ").replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();}) + ": " + properties[prop] + "&lt;br /&gt;"; } return output; }</pre> <p class="docs">This function iterates through each property in properties and formats each to Proper Case for better looking output.</p> <pre class="prettyprint docs">"&lt;h3&gt;State Road&lt;/h3&gt;Road Name: S Bemis St&lt;br /&gt;Speed Limit: 25&lt;br /&gt;"</pre> <h2 class="docs" id="docs-clickevent">Custom clickEvent</h2> <p class="docs">In addition to opening popups, you may want to define your own click events. This is useful for appending data to a div or opening a modal dialog. To create a custom click event, we can use the <code>clickEvent</code> option and pass a function with <code>feature</code> and <code>event</code> arguments. <h3>Example</h3> <p>The following example will pop up an alert box with the 'name' attribute when the marker is clicked:</p> <pre class="prettyprint docs">prwsf_libraries = new lvector.PRWSF({ url: "http://maps.co.mecklenburg.nc.us/rest", geotable: "libraries", fields: "gid,name,address,city", uniqueField: "gid", srid: 2264, scaleRange: [7, 20], showAll: true, symbology: { type: "single", vectorOptions: { icon: new customMarker() } }, clickEvent: function (feature, event) { alert(feature.properties.name); } });</pre> <h2 class="docs" id="docs-dynamic">Dynamic Data</h2> <p class="docs">To create a dynamic layer simply set the <code>dynamic</code> option to <code>true</code>. Using this option alone (without <code>autoUpdate</code> and <code>autoUpdateInterval</code>) will check for feature geometry and property changes when the map extent changes. If geometry changes are found the feature is altered on the map. If properties changes are found any Popups associated with this feature are updated to reflect this change.</p> <h3>Auto-update</h3> <p class="docs">Using the <code>autoUpdate</code> and <code>autoUpdateInterval</code> options we can set a layer to automatically fetch new features every x seconds, even when the map extent hasn't changed. Set the <code>autoUpdate</code> option to <code>true</code> and <code>autoUpdateInterval</code> to the amount of time (in milliseconds) for how often you want features fetched. To create a dynamic layer that auto-updates every 5 seconds you might create your layer like:</p> <pre class="prettyprint docs">var myAGSLayer = new lvector.AGS({ url: "http://maps.rtd-denver.com/ArcGIS/rest/services/BusLocations/MapServer/0", fields: "*", uniqueField: "OBJECTID", dynamic: true, autoUpdate: true, autoUpdateInterval: 5000 });</pre> <h3>Arc2Earth</h3> <p class="docs">Auto-updating works slightly different with Arc2Earth layers. Since update messages are almost immediately sent to the client using <a href="http://pubnub.com/">PubNub</a>, only the <code>dynamic</code> and <code>autoUpdate</code> parameters must be set (both to <code>true</code>). This eliminates the need for constant polling, thus reducing the load on the server.</p> <p>An auto-updating Arc2Earth layer might look something like:</p> <pre class="prettyprint docs">myA2ELayer = new lvector.A2E({ url: "http://sync.arc2earth.com/6442491/ArcGIS/rest/services/tfs/2447544/FeatureServer/0", esriOptions: true, uniqueField: "global_fid", popupTemplate: '&lt;div class="iw-content"&gt;&lt;h3&gt;{Name}&lt;/h3&gt;&lt;/div&gt;', singlePopup: true, dynamic: true, autoUpdate: true });</pre> <footer> <p>&copy; Jason Sanford - geojason.info 2013</p> </footer> </div> </div> <script src="../docs-demo/js/prettify.js" type="text/javascript"></script> <script src="../docs-demo/js/jquery-1.8.1.min.js" type="text/javascript"></script> <script src="../docs-demo/js/docs-demos.js" type="text/javascript"></script> <script src="../docs-demo/js/bootstrap-dropdown.js" type="text/javascript"></script> </body> </html>
kyroskoh/leaflet-vector-layers
documentation/index.html
HTML
bsd-2-clause
64,557
<html lang="en"> <head> <title>Symbol Names - Using as</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Using as"> <meta name="generator" content="makeinfo 4.13"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Symbols.html#Symbols" title="Symbols"> <link rel="prev" href="Setting-Symbols.html#Setting-Symbols" title="Setting Symbols"> <link rel="next" href="Dot.html#Dot" title="Dot"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- This file documents the GNU Assembler "as". Copyright (C) 1991-2014 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License''. --> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <a name="Symbol-Names"></a> <p> Next:&nbsp;<a rel="next" accesskey="n" href="Dot.html#Dot">Dot</a>, Previous:&nbsp;<a rel="previous" accesskey="p" href="Setting-Symbols.html#Setting-Symbols">Setting Symbols</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Symbols.html#Symbols">Symbols</a> <hr> </div> <h3 class="section">5.3 Symbol Names</h3> <p><a name="index-symbol-names-213"></a><a name="index-names_002c-symbol-214"></a>Symbol names begin with a letter or with one of &lsquo;<samp><span class="samp">._</span></samp>&rsquo;. On most machines, you can also use <code>$</code> in symbol names; exceptions are noted in <a href="Machine-Dependencies.html#Machine-Dependencies">Machine Dependencies</a>. That character may be followed by any string of digits, letters, dollar signs (unless otherwise noted for a particular target machine), and underscores. <p>Case of letters is significant: <code>foo</code> is a different symbol name than <code>Foo</code>. <p>Multibyte characters are supported. To generate a symbol name containing multibyte characters enclose it within double quotes and use escape codes. cf See <a href="Strings.html#Strings">Strings</a>. Generating a multibyte symbol name from a label is not currently supported. <p>Each symbol has exactly one name. Each name in an assembly language program refers to exactly one symbol. You may use that symbol name any number of times in a program. <h4 class="subheading">Local Symbol Names</h4> <p><a name="index-local-symbol-names-215"></a><a name="index-symbol-names_002c-local-216"></a>A local symbol is any symbol beginning with certain local label prefixes. By default, the local label prefix is &lsquo;<samp><span class="samp">.L</span></samp>&rsquo; for ELF systems or &lsquo;<samp><span class="samp">L</span></samp>&rsquo; for traditional a.out systems, but each target may have its own set of local label prefixes. On the HPPA local symbols begin with &lsquo;<samp><span class="samp">L$</span></samp>&rsquo;. <p>Local symbols are defined and used within the assembler, but they are normally not saved in object files. Thus, they are not visible when debugging. You may use the &lsquo;<samp><span class="samp">-L</span></samp>&rsquo; option (see <a href="L.html#L">Include Local Symbols: <samp><span class="option">-L</span></samp></a>) to retain the local symbols in the object files. <h4 class="subheading">Local Labels</h4> <p><a name="index-local-labels-217"></a><a name="index-temporary-symbol-names-218"></a><a name="index-symbol-names_002c-temporary-219"></a>Local labels help compilers and programmers use names temporarily. They create symbols which are guaranteed to be unique over the entire scope of the input source code and which can be referred to by a simple notation. To define a local label, write a label of the form &lsquo;<samp><b>N</b><span class="samp">:</span></samp>&rsquo; (where <b>N</b> represents any positive integer). To refer to the most recent previous definition of that label write &lsquo;<samp><b>N</b><span class="samp">b</span></samp>&rsquo;, using the same number as when you defined the label. To refer to the next definition of a local label, write &lsquo;<samp><b>N</b><span class="samp">f</span></samp>&rsquo;&mdash;the &lsquo;<samp><span class="samp">b</span></samp>&rsquo; stands for &ldquo;backwards&rdquo; and the &lsquo;<samp><span class="samp">f</span></samp>&rsquo; stands for &ldquo;forwards&rdquo;. <p>There is no restriction on how you can use these labels, and you can reuse them too. So that it is possible to repeatedly define the same local label (using the same number &lsquo;<samp><b>N</b></samp>&rsquo;), although you can only refer to the most recently defined local label of that number (for a backwards reference) or the next definition of a specific local label for a forward reference. It is also worth noting that the first 10 local labels (&lsquo;<samp><b>0:</b></samp>&rsquo;<small class="dots">...</small>&lsquo;<samp><b>9:</b></samp>&rsquo;) are implemented in a slightly more efficient manner than the others. <p>Here is an example: <pre class="smallexample"> 1: branch 1f 2: branch 1b 1: branch 2f 2: branch 1b </pre> <p>Which is the equivalent of: <pre class="smallexample"> label_1: branch label_3 label_2: branch label_1 label_3: branch label_4 label_4: branch label_3 </pre> <p>Local label names are only a notational device. They are immediately transformed into more conventional symbol names before the assembler uses them. The symbol names are stored in the symbol table, appear in error messages, and are optionally emitted to the object file. The names are constructed using these parts: <dl> <dt><em>local label prefix</em><dd>All local symbols begin with the system-specific local label prefix. Normally both <samp><span class="command">as</span></samp> and <code>ld</code> forget symbols that start with the local label prefix. These labels are used for symbols you are never intended to see. If you use the &lsquo;<samp><span class="samp">-L</span></samp>&rsquo; option then <samp><span class="command">as</span></samp> retains these symbols in the object file. If you also instruct <code>ld</code> to retain these symbols, you may use them in debugging. <br><dt><var>number</var><dd>This is the number that was used in the local label definition. So if the label is written &lsquo;<samp><span class="samp">55:</span></samp>&rsquo; then the number is &lsquo;<samp><span class="samp">55</span></samp>&rsquo;. <br><dt><kbd>C-B</kbd><dd>This unusual character is included so you do not accidentally invent a symbol of the same name. The character has ASCII value of &lsquo;<samp><span class="samp">\002</span></samp>&rsquo; (control-B). <br><dt><em>ordinal number</em><dd>This is a serial number to keep the labels distinct. The first definition of &lsquo;<samp><span class="samp">0:</span></samp>&rsquo; gets the number &lsquo;<samp><span class="samp">1</span></samp>&rsquo;. The 15th definition of &lsquo;<samp><span class="samp">0:</span></samp>&rsquo; gets the number &lsquo;<samp><span class="samp">15</span></samp>&rsquo;, and so on. Likewise the first definition of &lsquo;<samp><span class="samp">1:</span></samp>&rsquo; gets the number &lsquo;<samp><span class="samp">1</span></samp>&rsquo; and its 15th definition gets &lsquo;<samp><span class="samp">15</span></samp>&rsquo; as well. </dl> <p>So for example, the first <code>1:</code> may be named <code>.L1</code><kbd>C-B</kbd><code>1</code>, and the 44th <code>3:</code> may be named <code>.L3</code><kbd>C-B</kbd><code>44</code>. <h4 class="subheading">Dollar Local Labels</h4> <p><a name="index-dollar-local-symbols-220"></a> <code>as</code> also supports an even more local form of local labels called dollar labels. These labels go out of scope (i.e., they become undefined) as soon as a non-local label is defined. Thus they remain valid for only a small region of the input source code. Normal local labels, by contrast, remain in scope for the entire file, or until they are redefined by another occurrence of the same local label. <p>Dollar labels are defined in exactly the same way as ordinary local labels, except that they have a dollar sign suffix to their numeric value, e.g., &lsquo;<samp><b>55$:</b></samp>&rsquo;. <p>They can also be distinguished from ordinary local labels by their transformed names which use ASCII character &lsquo;<samp><span class="samp">\001</span></samp>&rsquo; (control-A) as the magic character to distinguish them from ordinary labels. For example, the fifth definition of &lsquo;<samp><span class="samp">6$</span></samp>&rsquo; may be named &lsquo;<samp><span class="samp">.L6</span><kbd>C-A</kbd><span class="samp">5</span></samp>&rsquo;. </body></html>
ExploreEmbedded/Tit-Windows
tools/doc/binutils/as.html/Symbol-Names.html
HTML
bsd-3-clause
9,520
<!DOCTYPE html> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <html lang="en"> <head> <link rel="stylesheet" type="text/css" href="../stylesheets/style.css"> <title>WLJSPC Task</title> </head> <body> <h1>wljspc</h1> <h3>Description</h3> <p>Class to precompile JSP's using WebLogic JSP compiler (<code>weblogic.jspc</code>)</p> <p>Tested only on WebLogic 4.5.1&mdash;NT 4.0 and Solaris 7 &amp; 8</p> <h3>Parameters</h3> <table class="attr"> <thead> <tr> <th scope="col">Attribute</th> <th scope="col">Values</th> <th scope="col">Required</th> </tr> </thead> <tbody> <tr> <td>src</td> <td>root of source tree for JSP, ie, the document root for your WebLogic server</td> <td>Yes</td> </tr> <tr> <td>dest</td> <td>root of destination directory, what you have set as <code>WorkingDir</code> in the WebLogic properties</td> <td>Yes</td> </tr> <tr> <td>package</td> <td>start package name under which your JSPs would be compiled</td> <td>Yes</td> </tr> <tr> <td>classpath</td> <td>Class path to use when compiling JSPs</td> <td>Yes</td> </tr> </tbody> </table> <p>A classpath should be set which contains the WebLogic classes as well as all application classes referenced by JSP. The system classpath is also appended when the <code>jspc</code> is called, so you may choose to put everything in the classpath while calling Apache Ant. However, since presumably JSPs will reference classes being build by Ant, it would be better to explicitly add the classpath in the task.</p> <p>The task checks timestamps on the JSP's and the generated classes, and compiles only those files that have changed.</p> <p>It follows the WebLogic naming convention of putting classes in <samp>_dirName/_fileName.class for dirname/fileName.jsp</samp></p> <h3>Example</h3> <pre> &lt;target name="jspcompile" depends="compile"&gt; &lt;wljspc src="c:\\weblogic\\myserver\\public_html" dest="c:\\weblogic\\myserver\\serverclasses" package="myapp.jsp"&gt; &lt;classpath&gt; &lt;pathelement location="${weblogic.classpath}"/&gt; &lt;pathelement path="${compile.dest}"/&gt; &lt;/classpath&gt; &lt;/wljspc&gt; &lt;/target&gt;</pre> <h3>Limitations</h3> <ul> <li>This works only on WebLogic 4.5.1</li> <li>It compiles the files through the Classic compiler only.</li> <li>Since it is my experience that <code>weblogic.jspc</code> throws out of memory error on being given too many files at one go, it is called multiple times with one JSP file each.</li> </ul> </body> </html>
cisco/PDTool
ext/ant/manual/Tasks/wljspc.html
HTML
bsd-3-clause
3,389
₩erikchen<span style="display:none">ohnoyoudont</span>@chromium.org
nicko96/Chrome-Infra
appengine/chromium_build/tests/console_test.files/test_parse_master_utf8/exp_name.html
HTML
bsd-3-clause
69
<dt id="{{htmlId}}"> <span class="name">{{{ linkedName }}}</span> {{>categorization}} </dt> <dd> {{#isDocumented}}{{{ oneLineDoc }}}{{/isDocumented}} </dd>
dart-lang/dartdoc
lib/templates/html/_library.html
HTML
bsd-3-clause
160
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <?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 lang="en-us" xml:lang="en-us"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <meta name="copyright" content="(C) Copyright 2005" /> <meta name="DC.rights.owner" content="(C) Copyright 2005" /> <meta content="public" name="security" /> <meta content="index,follow" name="Robots" /> <meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' /> <meta content="concept" name="DC.Type" /> <meta name="DC.Title" content="Audience" /> <meta scheme="URI" name="DC.Relation" content="cadminpreface30074.html" /> <meta scheme="URI" name="DC.Relation" content="cadminpreface11181.html" /> <meta scheme="URI" name="DC.Relation" content="cadminpreface23947.html" /> <meta content="XHTML" name="DC.Format" /> <meta content="cadminpreface22460" name="DC.Identifier" /> <meta content="en-us" name="DC.Language" /> <link href="commonltr.css" type="text/css" rel="stylesheet" /> <title>Audience</title> </head> <body id="cadminpreface22460"><a name="cadminpreface22460"><!-- --></a> <h1 class="topictitle1">Audience</h1> <div> <p>The first part of this guide is intended for developers of client/server and multiple-client applications. The second part of this guide is intended for administrators.</p> </div> <div> <div class="familylinks"> <div class="parentlink"><strong>Parent topic:</strong> <a href="cadminpreface30074.html" title="">About this guide</a></div> </div> <div class="relconcepts"><strong>Related concepts</strong><br /> <div><a href="cadminpreface11181.html" title="">Purpose of this guide</a></div> <div><a href="cadminpreface23947.html" title="">How this guide is organized</a></div> </div> </div> </body> </html>
armoredsoftware/protocol
measurer/hotspot-measurer/jdk1.6.0_45/db/docs/html/adminguide/cadminpreface22460.html
HTML
bsd-3-clause
2,850
{% extends "base.html" %} {% block body %} <h1>Konflikt</h1> <p>Die von Ihnen angefragt Ressource wird derzeit bearbeitet. Bitte versuchen Sie es später erneut.</p> {% endblock %}
pygraz/old-flask-website
pygraz_website/templates/errors/conflict.html
HTML
bsd-3-clause
181
<!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"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Core Plot (iOS): Source/CPTTimeFormatter.h File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="customdoxygen.css" rel="stylesheet" type="text/css" /> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="core-plot-logo.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">Core Plot (iOS) </div> <div id="projectbrief">Cocoa plotting framework for Mac OS X and iOS</div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.6.1 --> <script type="text/javascript" src="dynsections.js"></script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="modules.html"><span>Animation&#160;&&#160;Constants</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>File&#160;Members</span></a></li> </ul> </div> </div> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> initNavTree('_c_p_t_time_formatter_8h.html',''); </script> <div id="doc-content"> <div class="header"> <div class="summary"> <a href="#nested-classes">Classes</a> </div> <div class="headertitle"> <div class="title">Source/CPTTimeFormatter.h File Reference</div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><code>#import &lt;Foundation/Foundation.h&gt;</code><br/> </div><div class="textblock"><div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;"> <img id="dynsection-0-trigger" src="closed.png" alt="+"/> Include dependency graph for CPTTimeFormatter.h:</div> <div id="dynsection-0-summary" class="dynsummary" style="display:block;"> </div> <div id="dynsection-0-content" class="dyncontent" style="display:none;"> <div class="center"><img src="_c_p_t_time_formatter_8h__incl.png" border="0" usemap="#_source_2_c_p_t_time_formatter_8h" alt=""/></div> <map name="_source_2_c_p_t_time_formatter_8h" id="_source_2_c_p_t_time_formatter_8h"> </map> </div> </div><div class="textblock"><div id="dynsection-1" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;"> <img id="dynsection-1-trigger" src="closed.png" alt="+"/> This graph shows which files directly or indirectly include this file:</div> <div id="dynsection-1-summary" class="dynsummary" style="display:block;"> </div> <div id="dynsection-1-content" class="dyncontent" style="display:none;"> <div class="center"><img src="_c_p_t_time_formatter_8h__dep__incl.png" border="0" usemap="#_source_2_c_p_t_time_formatter_8hdep" alt=""/></div> <map name="_source_2_c_p_t_time_formatter_8hdep" id="_source_2_c_p_t_time_formatter_8hdep"> <area shape="rect" id="node3" href="_core_plot-_cocoa_touch_8h.html" title="CorePlot&#45;CocoaTouch.h" alt="" coords="5,86,181,117"/><area shape="rect" id="node5" href="_c_p_t_time_formatter_8m.html" title="Source/CPTTimeFormatter.m" alt="" coords="205,86,413,117"/></map> </div> </div> <p><a href="_c_p_t_time_formatter_8h_source.html">Go to the source code of this file.</a></p> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="nested-classes"></a> Classes</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_c_p_t_time_formatter.html">CPTTimeFormatter</a></td></tr> <tr><td class="mdescLeft">&#160;</td><td class="mdescRight">A number formatter that converts time intervals to dates. Useful for formatting labels on an axis. If you choose the numerical scale of the plot space to be in seconds, axis labels can be directly generated by setting a <a class="el" href="interface_c_p_t_time_formatter.html" title="A number formatter that converts time intervals to dates. Useful for formatting labels on an axis...">CPTTimeFormatter</a> as the <a class="el" href="interface_c_p_t_axis.html#aa332507609b0d82ab2d794e53c8b6735">labelFormatter </a> and/or <a class="el" href="interface_c_p_t_axis.html#ad5ccfbf239ee5b62e70d9aa034918ff8">minorTickLabelFormatter </a>. <a href="interface_c_p_t_time_formatter.html#details">More...</a><br/></td></tr> </table> <hr/><a name="details" id="details"></a><h2>Detailed Description</h2> <div class="textblock"></div></div><!-- contents --> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="_c_p_t_time_formatter_8h.html">CPTTimeFormatter.h</a> </li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a></li> </ul> </div> </body> </html>
nextsun/CorePlot
Documentation/html/iOS/_c_p_t_time_formatter_8h.html
HTML
bsd-3-clause
5,898
<style> #app-shell-header, #app-shell-main, #app-shell-footer{ width: 100% !important; position: fixed !important; border-radius: 0 !important; } #app-shell-header{ top:0 !important; height: 10rem !important; background-color: rgb(127,213,246) !important; } #app-shell-main{ top: 10rem !important; height: calc(100% - 10rem - 3.5rem) !important; background-color: rgb(244,244,244) !important; } #app-shell-footer{ bottom: 0 !important; height: 3.5rem !important; background-color: rgb(249,160,215) !important; } </style> <div id="app-shell"> <div id="app-shell-header"></div> <div id="app-shell-main"></div> <div id="app-shell-footer"></div> </div>
Quirkbot/QuirkbotNewIDE
src/_includes/app_shell_home.html
HTML
bsd-3-clause
687
<!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"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <title>Core Plot (iOS): Class Members</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css" /> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="core-plot-logo.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">Core Plot (iOS) </div> <div id="projectbrief">Cocoa plotting framework for Mac OS X and iOS</div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.5 --> <script type="text/javascript" src="dynsections.js"></script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li class="current"><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="navrow3" class="tabs2"> <ul class="tablist"> <li class="current"><a href="functions.html"><span>All</span></a></li> <li><a href="functions_func.html"><span>Functions</span></a></li> <li><a href="functions_vars.html"><span>Variables</span></a></li> <li><a href="functions_prop.html"><span>Properties</span></a></li> </ul> </div> <div id="navrow4" class="tabs3"> <ul class="tablist"> <li><a href="functions.html#index_a"><span>a</span></a></li> <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> <li class="current"><a href="functions_0x67.html#index_g"><span>g</span></a></li> <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> <li><a href="functions_0x79.html#index_y"><span>y</span></a></li> </ul> </div> </div> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> initNavTree('functions.html',''); </script> <div id="doc-content"> <div class="contents"> <div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div> <h3><a class="anchor" id="index_g"></a>- g -</h3><ul> <li>gapHeight : <a class="el" href="group__plot_animation_range_plot.html#ga1b244c91e12dc4e161712dc9669cb75f">CPTRangePlot</a> </li> <li>gapWidth : <a class="el" href="group__plot_animation_range_plot.html#ga165db5f03bb140f1e84b27e680412689">CPTRangePlot</a> </li> <li>genericRGBSpace() : <a class="el" href="interface_c_p_t_color_space.html#ac58f6c211393735a956588fe0e140c56">CPTColorSpace</a> </li> <li>globalXRange : <a class="el" href="interface_c_p_t_x_y_plot_space.html#a04f609abf6a4072daa47b93848a8312a">CPTXYPlotSpace</a> </li> <li>globalYRange : <a class="el" href="interface_c_p_t_x_y_plot_space.html#a80bf9e8987247bbe4dc0b5fc07a1214d">CPTXYPlotSpace</a> </li> <li>gradientType : <a class="el" href="interface_c_p_t_gradient.html#ab8180ea8284a2369c795a452dfd99246">CPTGradient</a> </li> <li>gradientWithAlphaComponent:() : <a class="el" href="interface_c_p_t_gradient.html#aa236bd219d89be3a6e6e3d7424d4f815">CPTGradient</a> </li> <li>gradientWithBeginningColor:endingColor:() : <a class="el" href="interface_c_p_t_gradient.html#a4863b01046dbb2b19a056e37860af035">CPTGradient</a> </li> <li>gradientWithBeginningColor:endingColor:beginningPosition:endingPosition:() : <a class="el" href="interface_c_p_t_gradient.html#ab66ae06884b757f8519efde6fc9f27e0">CPTGradient</a> </li> <li>gradientWithBlendingMode:() : <a class="el" href="interface_c_p_t_gradient.html#af84c12a31b6e5eb3cc05bb6a56e49a5b">CPTGradient</a> </li> <li>graph : <a class="el" href="interface_c_p_t_layer.html#a8d4794c9b39b95e0339b40deb71981b8">CPTLayer</a> , <a class="el" href="interface_c_p_t_plot_space.html#a1338ed4172b2eca55291a79096bade8f">CPTPlotSpace</a> </li> <li>graphClass : <a class="el" href="interface_c_p_t_theme.html#a72dbc05172faa4acded92f6a7cc56df6">CPTTheme</a> </li> <li>grayColor() : <a class="el" href="interface_c_p_t_color.html#add8bdd2bf45c6069cc93927a8e0138b9">CPTColor</a> </li> <li>green : <a class="el" href="struct___c_p_t_r_g_b_a_color.html#afd15b5674ab7901feccc31881d8a86cb">_CPTRGBAColor</a> </li> <li>greenColor() : <a class="el" href="interface_c_p_t_color.html#a202da52855a1e86e829ff0087f41706d">CPTColor</a> </li> <li>gridLinesRange : <a class="el" href="interface_c_p_t_axis.html#a2d2fb977abe05443c24a393faf24e7ac">CPTAxis</a> </li> </ul> </div> </div> <div id="nav-path" class="navpath"> <ul> <li class="footer">Generated on Sun Sep 25 2011 15:44:22 for Core Plot (iOS) by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.5 </li> </ul> </div> </body> </html>
daphane/CorePlot
Documentation/com.CorePlotTouch.Framework.docset/Contents/Resources/Documents/functions_0x67.html
HTML
bsd-3-clause
7,252
<header>Cuotas de Disco</header> <h3>Introducción</h3> Las cuotas son un método de controlar cuánto espacio en disco pueden usar los usuarios y los grupos. Para cada sistema de archivos puedes colocar límites de cuánto espacio en disco y cuántos archivos puede utilizar cada usuario. Algunos sistemas Unix pueden tambien permitirte limitar el espacio y los archivos utilizados por todos los miembros de algún grupo. <p> Las cuotas pueden configurarse sólamente para sistemas de archivo Unix locales. Los sistemas de archivo NFS montados desde otros sistemas utilizan las cuotas de su servidor, si tienen. Los sistemas de archivo no Unix como MS-DOS o ISO9660 no pueden soportar ningún tipo de cuotas. <p> Para cada usuario se imponen cuatro límites: <dl> <dt><b>Límite de bloque por soft</b> <dd>El número de bloques de disco permitidos antes de que se muestre un mensaje de aviso. <dt><b>Límite de bloque por hard</b> <dd>El máximo número de bloques que un archivo de usuario puede ocupar. <dt><b>Límite de archivo por soft</b> <dd>El número de archivos permitidos antes de que se muestre un mensaje de aviso. <dt><b>Límite de archivo por Hard</b> <dd>El máximo número de archivos que un usuario puede tener. </dl> Los bloques de disco son típicamente de 512 o 1024 bytes de tamaño, dependiendo del sistema operativo. Cuando se calculan las cuotas, todas las medidas de los archivos son redondeadas al siguiente bloque por encima. Por ello, incluso los archivos vacíos usan al menos un bloque. <p> Para propósito de cuotas de archivo, cada directorio, dispositivo, enlace simbólico o archivo normal es tenido en cuenta para el máximo número de archivos que puede tener un usuario. Técnicamente, la cuota de archivos es actualmente una cuenta de <i>i-nodos</i>. <p> <h3>El Módulo de Cuotas de Disco</h3> La página principal de este modulo muestra una lista de sistemas de archivo locales que pueden soportar cuotas. Si las cuotas están activadas en este momento en tu sistema, puedes hacer click en su trayectoria para mostrar las cuotas de cada usuario. Si no, haciendo click en <tt>Activar Cuotas</tt> activará las cuotas de ese sistema de archivos. <p> <if $gconfig{'os_type'} =~ /linux/> El sistema operativo Linux no permite activar las cuotas a menos que el sistema de archivos tenga la opción <tt>Usar Cuotas</tt> puesta en el módulo de los Discos y en el de los Sistemas de archivo. Si ninguno de tus sistemas de archivo tiene esta opción puesta, no se lista a nadie en la página principal. <p> </if> Bajo la lista de sistemas de archivo hay un botón para mostrar todas las cuotas de un usuario seleccionado. Esto será sólamente mostrado si al menos un sistema de archivos tiene activadas las cuotas de usuario. De forma similar, si al menos un sistema de archivos tiene grupos de cuotas activadas habrá un botón para mostrar todas las cuotas del grupo seleccionado. <p> <hr>
xtso520ok/webmin
quota/help/intro.es.UTF-8.html
HTML
bsd-3-clause
2,942
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.9.1"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>PMDK C++ bindings: Class Members</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">PMDK C++ bindings &#160;<span id="projectnumber">1.13.0-git23.gf49772ac</span> </div> <div id="projectbrief">This is the C++ bindings documentation for PMDK&#39;s libpmemobj.</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.9.1 --> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ var searchBox = new SearchBox("searchBox", "search",false,'Search','.html'); /* @license-end */ </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); /* @license-end */</script> <div id="main-nav"></div> </div><!-- top --> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="contents"> <div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div> <h3><a id="index_t"></a>- t -</h3><ul> <li>thread_id_type() : <a class="el" href="structpmem_1_1detail_1_1thread__id__type.html#ae6994bc90b1f2ef57adbff122222d37d">pmem::detail::thread_id_type</a> </li> <li>timed_mutex() : <a class="el" href="classpmem_1_1obj_1_1timed__mutex.html#a432952ca0affc6baab420fceda7c37b4">pmem::obj::timed_mutex</a> </li> <li>timedlock_impl() : <a class="el" href="classpmem_1_1obj_1_1timed__mutex.html#ad3661edbe31f8f2d1b536f8182f2b879">pmem::obj::timed_mutex</a> </li> <li>tls_restore() : <a class="el" href="classpmem_1_1detail_1_1concurrent__skip__list.html#a6f7ecb3b94325da4ab98af89af79799e">pmem::detail::concurrent_skip_list&lt; Traits &gt;</a> </li> <li>to_byte_pointer() : <a class="el" href="classpmem_1_1detail_1_1self__relative__ptr__base__impl.html#a657ec0425124c86d3403495d3e95c486">pmem::detail::self_relative_ptr_base_impl&lt; OffsetType &gt;</a> </li> <li>to_persistent_ptr() : <a class="el" href="classpmem_1_1obj_1_1experimental_1_1self__relative__ptr.html#a7cd65672ed7c3bca1cb5eba00f0f89b2">pmem::obj::experimental::self_relative_ptr&lt; T &gt;</a> </li> <li>to_void_pointer() : <a class="el" href="classpmem_1_1detail_1_1self__relative__ptr__base__impl.html#a54699d0bc903b2f02c892b43ac14b991">pmem::detail::self_relative_ptr_base_impl&lt; OffsetType &gt;</a> </li> <li>try_consume_batch() : <a class="el" href="classpmem_1_1obj_1_1experimental_1_1mpsc__queue.html#a10a3c17b9c80978ffa30086306ca0ab2">pmem::obj::experimental::mpsc_queue</a> </li> <li>try_emplace() : <a class="el" href="classpmem_1_1detail_1_1concurrent__skip__list.html#a731a846634822804cf6880ddfbd75674">pmem::detail::concurrent_skip_list&lt; Traits &gt;</a> , <a class="el" href="classpmem_1_1obj_1_1experimental_1_1radix__tree.html#aca76d02d7df1ddaf38682b5916f2a84d">pmem::obj::experimental::radix_tree&lt; Key, Value, BytesView, MtMode &gt;</a> </li> <li>try_insert_node() : <a class="el" href="classpmem_1_1detail_1_1concurrent__skip__list.html#ad3dea52fdc48f3544f1a4e8b35308ecd">pmem::detail::concurrent_skip_list&lt; Traits &gt;</a> </li> <li>try_lock() : <a class="el" href="classpmem_1_1obj_1_1mutex.html#ac5200a1d71568e37cf177142c2de6578">pmem::obj::mutex</a> , <a class="el" href="classpmem_1_1obj_1_1shared__mutex.html#af144d333c724830c62d8a337021a5e48">pmem::obj::shared_mutex</a> , <a class="el" href="classpmem_1_1obj_1_1timed__mutex.html#ac4e729766548fb54c3597a0532b42a5a">pmem::obj::timed_mutex</a> </li> <li>try_lock_for() : <a class="el" href="classpmem_1_1obj_1_1timed__mutex.html#addfc0dcd69f92ecbc76239ef6fefe5ee">pmem::obj::timed_mutex</a> </li> <li>try_lock_shared() : <a class="el" href="classpmem_1_1obj_1_1shared__mutex.html#af161f61d3c651d5242ea998ea0a6b4f9">pmem::obj::shared_mutex</a> </li> <li>try_lock_until() : <a class="el" href="classpmem_1_1obj_1_1timed__mutex.html#a3f6bf8bc19debd3e569cc921e0653149">pmem::obj::timed_mutex</a> </li> <li>try_produce() : <a class="el" href="classpmem_1_1obj_1_1experimental_1_1mpsc__queue_1_1worker.html#a2d76535ec5147d267c69a1c0c43dd5b3">pmem::obj::experimental::mpsc_queue::worker</a> </li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by&#160;<a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.1 </small></address> </body> </html>
pbalcer/pbalcer.github.io
content/libpmemobj-cpp/v1.13/doxygen/functions_t.html
HTML
bsd-3-clause
6,127
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_24) on Tue May 01 09:56:12 CEST 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class net.sourceforge.pmd.lang.rule.xpath.AbstractXPathRuleQuery (PMD 5.0.0 API) </TITLE> <META NAME="date" CONTENT="2012-05-01"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class net.sourceforge.pmd.lang.rule.xpath.AbstractXPathRuleQuery (PMD 5.0.0 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../net/sourceforge/pmd/lang/rule/xpath/AbstractXPathRuleQuery.html" title="class in net.sourceforge.pmd.lang.rule.xpath"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?net/sourceforge/pmd/lang/rule/xpath//class-useAbstractXPathRuleQuery.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="AbstractXPathRuleQuery.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>net.sourceforge.pmd.lang.rule.xpath.AbstractXPathRuleQuery</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../../../net/sourceforge/pmd/lang/rule/xpath/AbstractXPathRuleQuery.html" title="class in net.sourceforge.pmd.lang.rule.xpath">AbstractXPathRuleQuery</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#net.sourceforge.pmd.lang.rule.xpath"><B>net.sourceforge.pmd.lang.rule.xpath</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="net.sourceforge.pmd.lang.rule.xpath"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../../../net/sourceforge/pmd/lang/rule/xpath/AbstractXPathRuleQuery.html" title="class in net.sourceforge.pmd.lang.rule.xpath">AbstractXPathRuleQuery</A> in <A HREF="../../../../../../../net/sourceforge/pmd/lang/rule/xpath/package-summary.html">net.sourceforge.pmd.lang.rule.xpath</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../../../../net/sourceforge/pmd/lang/rule/xpath/AbstractXPathRuleQuery.html" title="class in net.sourceforge.pmd.lang.rule.xpath">AbstractXPathRuleQuery</A> in <A HREF="../../../../../../../net/sourceforge/pmd/lang/rule/xpath/package-summary.html">net.sourceforge.pmd.lang.rule.xpath</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../../net/sourceforge/pmd/lang/rule/xpath/JaxenXPathRuleQuery.html" title="class in net.sourceforge.pmd.lang.rule.xpath">JaxenXPathRuleQuery</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This is a Jaxen based XPathRule query.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../../net/sourceforge/pmd/lang/rule/xpath/SaxonXPathRuleQuery.html" title="class in net.sourceforge.pmd.lang.rule.xpath">SaxonXPathRuleQuery</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This is a Saxon based XPathRule query.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../net/sourceforge/pmd/lang/rule/xpath/AbstractXPathRuleQuery.html" title="class in net.sourceforge.pmd.lang.rule.xpath"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?net/sourceforge/pmd/lang/rule/xpath//class-useAbstractXPathRuleQuery.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="AbstractXPathRuleQuery.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2002-2012 <a href="http://pmd.sourceforge.net/">InfoEther</a>. All Rights Reserved. </BODY> </HTML>
daejunpark/jsaf
third_party/pmd/docs/apidocs/net/sourceforge/pmd/lang/rule/xpath/class-use/AbstractXPathRuleQuery.html
HTML
bsd-3-clause
8,900
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Function template extract</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;Boost.Log v2"> <link rel="up" href="../../attributes.html#header.boost.log.attributes.value_extraction_hpp" title="Header &lt;boost/log/attributes/value_extraction.hpp&gt;"> <link rel="prev" href="extract_idp20107056.html" title="Function template extract"> <link rel="next" href="extract_or_thr_idp20121104.html" title="Function template extract_or_throw"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr><td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td></tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="extract_idp20107056.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../attributes.html#header.boost.log.attributes.value_extraction_hpp"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="extract_or_thr_idp20121104.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.log.extract_idp20114080"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Function template extract</span></h2> <p>boost::log::extract</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../attributes.html#header.boost.log.attributes.value_extraction_hpp" title="Header &lt;boost/log/attributes/value_extraction.hpp&gt;">boost/log/attributes/value_extraction.hpp</a>&gt; </span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> DescriptorT<span class="special">,</span> <span class="keyword">template</span><span class="special">&lt;</span> <span class="keyword">typename</span> <span class="special">&gt;</span> <span class="keyword">class</span> ActorT<span class="special">&gt;</span> <a class="link" href="result_of/extract.html" title="Struct template extract">result_of::extract</a><span class="special">&lt;</span> <span class="keyword">typename</span> <span class="identifier">DescriptorT</span><span class="special">::</span><span class="identifier">value_type</span><span class="special">,</span> <span class="identifier">DescriptorT</span> <span class="special">&gt;</span><span class="special">::</span><span class="identifier">type</span> <span class="identifier">extract</span><span class="special">(</span><span class="identifier">expressions</span><span class="special">::</span><span class="identifier">attribute_keyword</span><span class="special">&lt;</span> <span class="identifier">DescriptorT</span><span class="special">,</span> <span class="identifier">ActorT</span> <span class="special">&gt;</span> <span class="keyword">const</span> <span class="special">&amp;</span> keyword<span class="special">,</span> <span class="identifier">record_view</span> <span class="keyword">const</span> <span class="special">&amp;</span> rec<span class="special">)</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp25582512"></a><h2>Description</h2> <p>The function extracts an attribute value from the view. The user has to explicitly specify the type or set of possible types of the attribute value to be extracted.</p> <p> </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term">Parameters:</span></p></td> <td><div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><code class="computeroutput">keyword</code></span></p></td> <td><p>The keyword of the attribute value to extract. </p></td> </tr> <tr> <td><p><span class="term"><code class="computeroutput">rec</code></span></p></td> <td><p>A log record view. The attribute value will be sought among those associated with the record. </p></td> </tr> </tbody> </table></div></td> </tr> <tr> <td><p><span class="term">Returns:</span></p></td> <td><p>A <code class="computeroutput">value_ref</code> that refers to the extracted value, if found. An empty value otherwise. </p></td> </tr> </tbody> </table></div> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2007-2016 Andrey Semashev<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>). </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="extract_idp20107056.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../attributes.html#header.boost.log.attributes.value_extraction_hpp"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="extract_or_thr_idp20121104.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
yinchunlong/abelkhan-1
ext/c++/thirdpart/c++/boost/libs/log/doc/html/boost/log/extract_idp20114080.html
HTML
mit
5,904
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="robots" content="index, follow, all" /> <title>Thelia\Core\Event\Attribute\AttributeAvUpdateEvent | Thelia 2 API</title> <link rel="stylesheet" type="text/css" href="../../../../css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="../../../../css/bootstrap-theme.min.css"> <link rel="stylesheet" type="text/css" href="../../../../css/sami.css"> <script src="../../../../js/jquery-1.11.1.min.js"></script> <script src="../../../../js/bootstrap.min.js"></script> <script src="../../../../js/typeahead.min.js"></script> <script src="../../../../sami.js"></script> <meta name="MobileOptimized" content="width"> <meta name="HandheldFriendly" content="true"> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1"> </head> <body id="class" data-name="class:Thelia_Core_Event_Attribute_AttributeAvUpdateEvent" data-root-path="../../../../"> <div id="content"> <div id="left-column"> <div id="control-panel"> <form id="search-form" action="../../../../search.html" method="GET"> <span class="glyphicon glyphicon-search"></span> <input name="search" class="typeahead form-control" type="search" placeholder="Search"> </form> </div> <div id="api-tree"></div> </div> <div id="right-column"> <nav id="site-nav" class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-elements"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../../../../index.html">Thelia 2 API</a> </div> <div class="collapse navbar-collapse" id="navbar-elements"> <ul class="nav navbar-nav"> <li><a href="../../../../classes.html">Classes</a></li> <li><a href="../../../../namespaces.html">Namespaces</a></li> <li><a href="../../../../interfaces.html">Interfaces</a></li> <li><a href="../../../../traits.html">Traits</a></li> <li><a href="../../../../doc-index.html">Index</a></li> <li><a href="../../../../search.html">Search</a></li> </ul> </div> </div> </nav> <div class="namespace-breadcrumbs"> <ol class="breadcrumb"> <li><span class="label label-default">class</span></li> <li><a href="../../../../Thelia.html">Thelia</a></li> <li><a href="../../../../Thelia/Core.html">Core</a></li> <li><a href="../../../../Thelia/Core/Event.html">Event</a></li> <li><a href="../../../../Thelia/Core/Event/Attribute.html">Attribute</a></li> <li>AttributeAvUpdateEvent</li> </ol> </div> <div id="page-content"> <div class="page-header"> <h1>AttributeAvUpdateEvent</h1> </div> <p> class <strong>AttributeAvUpdateEvent</strong> extends <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a> </p> <h2>Methods</h2> <div class="container-fluid underlined"> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method___set">__set</a>($name, $value) <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/ActionEvent.html#method___set"><abbr title="Thelia\Core\Event\ActionEvent">ActionEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method___get">__get</a>($name) <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/ActionEvent.html#method___get"><abbr title="Thelia\Core\Event\ActionEvent">ActionEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method___construct">__construct</a>($attributeAv_id) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_hasAttributeAv">hasAttributeAv</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvEvent.html#method_hasAttributeAv"><abbr title="Thelia\Core\Event\Attribute\AttributeAvEvent">AttributeAvEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getAttributeAv">getAttributeAv</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvEvent.html#method_getAttributeAv"><abbr title="Thelia\Core\Event\Attribute\AttributeAvEvent">AttributeAvEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setAttributeAv">setAttributeAv</a>($attributeAv) <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvEvent.html#method_setAttributeAv"><abbr title="Thelia\Core\Event\Attribute\AttributeAvEvent">AttributeAvEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getLocale">getLocale</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html#method_getLocale"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setLocale">setLocale</a>($locale) <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html#method_setLocale"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getTitle">getTitle</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html#method_getTitle"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setTitle">setTitle</a>($title) <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html#method_setTitle"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getAttributeId">getAttributeId</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html#method_getAttributeId"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setAttributeId">setAttributeId</a>($attribute_id) <p class="no-description">No description</p> </div> <div class="col-md-2"><small>from&nbsp; <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html#method_setAttributeId"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a></small></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getAttributeAvId">getAttributeAvId</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setAttributeAvId">setAttributeAvId</a>($attributeAv_id) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getDescription">getDescription</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setDescription">setDescription</a>($description) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getChapo">getChapo</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setChapo">setChapo</a>($chapo) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_getPostscriptum">getPostscriptum</a>() <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> <div class="row"> <div class="col-md-2 type"> </div> <div class="col-md-8 type"> <a href="#method_setPostscriptum">setPostscriptum</a>($postscriptum) <p class="no-description">No description</p> </div> <div class="col-md-2"></div> </div> </div> <h2>Details</h2> <div id="method-details"> <div class="method-item"> <h3 id="method___set"> <div class="location">in <a href="../../../../Thelia/Core/Event/ActionEvent.html#method___set"><abbr title="Thelia\Core\Event\ActionEvent">ActionEvent</abbr></a> at line 27</div> <code> <strong>__set</strong>($name, $value)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$name</td> <td></td> </tr> <tr> <td></td> <td>$value</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method___get"> <div class="location">in <a href="../../../../Thelia/Core/Event/ActionEvent.html#method___get"><abbr title="Thelia\Core\Event\ActionEvent">ActionEvent</abbr></a> at line 32</div> <code> <strong>__get</strong>($name)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$name</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method___construct"> <div class="location">at line 23</div> <code> <strong>__construct</strong>($attributeAv_id)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$attributeAv_id</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_hasAttributeAv"> <div class="location">in <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvEvent.html#method_hasAttributeAv"><abbr title="Thelia\Core\Event\Attribute\AttributeAvEvent">AttributeAvEvent</abbr></a> at line 26</div> <code> <strong>hasAttributeAv</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_getAttributeAv"> <div class="location">in <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvEvent.html#method_getAttributeAv"><abbr title="Thelia\Core\Event\Attribute\AttributeAvEvent">AttributeAvEvent</abbr></a> at line 31</div> <code> <strong>getAttributeAv</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setAttributeAv"> <div class="location">in <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvEvent.html#method_setAttributeAv"><abbr title="Thelia\Core\Event\Attribute\AttributeAvEvent">AttributeAvEvent</abbr></a> at line 36</div> <code> <strong>setAttributeAv</strong>($attributeAv)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$attributeAv</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getLocale"> <div class="location">in <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html#method_getLocale"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a> at line 21</div> <code> <strong>getLocale</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setLocale"> <div class="location">in <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html#method_setLocale"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a> at line 26</div> <code> <strong>setLocale</strong>($locale)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$locale</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getTitle"> <div class="location">in <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html#method_getTitle"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a> at line 33</div> <code> <strong>getTitle</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setTitle"> <div class="location">in <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html#method_setTitle"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a> at line 38</div> <code> <strong>setTitle</strong>($title)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$title</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getAttributeId"> <div class="location">in <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html#method_getAttributeId"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a> at line 45</div> <code> <strong>getAttributeId</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setAttributeId"> <div class="location">in <a href="../../../../Thelia/Core/Event/Attribute/AttributeAvCreateEvent.html#method_setAttributeId"><abbr title="Thelia\Core\Event\Attribute\AttributeAvCreateEvent">AttributeAvCreateEvent</abbr></a> at line 50</div> <code> <strong>setAttributeId</strong>($attribute_id)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$attribute_id</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getAttributeAvId"> <div class="location">at line 28</div> <code> <strong>getAttributeAvId</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setAttributeAvId"> <div class="location">at line 33</div> <code> <strong>setAttributeAvId</strong>($attributeAv_id)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$attributeAv_id</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getDescription"> <div class="location">at line 40</div> <code> <strong>getDescription</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setDescription"> <div class="location">at line 45</div> <code> <strong>setDescription</strong>($description)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$description</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getChapo"> <div class="location">at line 52</div> <code> <strong>getChapo</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setChapo"> <div class="location">at line 57</div> <code> <strong>setChapo</strong>($chapo)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$chapo</td> <td></td> </tr> </table> </div> </div> </div> <div class="method-item"> <h3 id="method_getPostscriptum"> <div class="location">at line 64</div> <code> <strong>getPostscriptum</strong>()</code> </h3> <div class="details"> <div class="tags"> </div> </div> </div> <div class="method-item"> <h3 id="method_setPostscriptum"> <div class="location">at line 69</div> <code> <strong>setPostscriptum</strong>($postscriptum)</code> </h3> <div class="details"> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td></td> <td>$postscriptum</td> <td></td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> Generated by <a href="http://sami.sensiolabs.org/">Sami, the API Documentation Generator</a>. </div> </div> </div> </body> </html>
sitecrafting/thelia.github.io
api/2.0/Thelia/Core/Event/Attribute/AttributeAvUpdateEvent.html
HTML
mit
28,698
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_35) on Tue Oct 16 22:49:47 ICT 2012 --> <TITLE> FontListSerializer (Apache FOP 1.1 API) </TITLE> <META NAME="date" CONTENT="2012-10-16"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="FontListSerializer (Apache FOP 1.1 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/FontListSerializer.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> fop 1.1</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/fop/tools/fontlist/FontListMain.html" title="class in org.apache.fop.tools.fontlist"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/fop/tools/fontlist/FontSpec.html" title="class in org.apache.fop.tools.fontlist"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/fop/tools/fontlist/FontListSerializer.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="FontListSerializer.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.apache.fop.tools.fontlist</FONT> <BR> Class FontListSerializer</H2> <PRE> java.lang.Object <IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.fop.tools.fontlist.FontListSerializer</B> </PRE> <HR> <DL> <DT><PRE>public class <B>FontListSerializer</B><DT>extends java.lang.Object</DL> </PRE> <P> Turns the font list into SAX events. <P> <P> <HR> <P> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/apache/fop/tools/fontlist/FontListSerializer.html#FontListSerializer()">FontListSerializer</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/fop/tools/fontlist/FontListSerializer.html#generateSAX(java.util.SortedMap, org.apache.fop.util.GenerationHelperContentHandler)">generateSAX</A></B>(java.util.SortedMap&nbsp;fontFamilies, <A HREF="../../../../../org/apache/fop/util/GenerationHelperContentHandler.html" title="class in org.apache.fop.util">GenerationHelperContentHandler</A>&nbsp;handler)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Generates SAX events from the font damily map.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/fop/tools/fontlist/FontListSerializer.html#generateSAX(java.util.SortedMap, java.lang.String, org.apache.fop.util.GenerationHelperContentHandler)">generateSAX</A></B>(java.util.SortedMap&nbsp;fontFamilies, java.lang.String&nbsp;singleFamily, <A HREF="../../../../../org/apache/fop/util/GenerationHelperContentHandler.html" title="class in org.apache.fop.util">GenerationHelperContentHandler</A>&nbsp;handler)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Generates SAX events from the font damily map.</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="FontListSerializer()"><!-- --></A><H3> FontListSerializer</H3> <PRE> public <B>FontListSerializer</B>()</PRE> <DL> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="generateSAX(java.util.SortedMap, org.apache.fop.util.GenerationHelperContentHandler)"><!-- --></A><H3> generateSAX</H3> <PRE> public void <B>generateSAX</B>(java.util.SortedMap&nbsp;fontFamilies, <A HREF="../../../../../org/apache/fop/util/GenerationHelperContentHandler.html" title="class in org.apache.fop.util">GenerationHelperContentHandler</A>&nbsp;handler) throws org.xml.sax.SAXException</PRE> <DL> <DD>Generates SAX events from the font damily map. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>fontFamilies</CODE> - the font families<DD><CODE>handler</CODE> - the target SAX handler <DT><B>Throws:</B> <DD><CODE>org.xml.sax.SAXException</CODE> - if an XML-related exception occurs</DL> </DD> </DL> <HR> <A NAME="generateSAX(java.util.SortedMap, java.lang.String, org.apache.fop.util.GenerationHelperContentHandler)"><!-- --></A><H3> generateSAX</H3> <PRE> public void <B>generateSAX</B>(java.util.SortedMap&nbsp;fontFamilies, java.lang.String&nbsp;singleFamily, <A HREF="../../../../../org/apache/fop/util/GenerationHelperContentHandler.html" title="class in org.apache.fop.util">GenerationHelperContentHandler</A>&nbsp;handler) throws org.xml.sax.SAXException</PRE> <DL> <DD>Generates SAX events from the font damily map. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>fontFamilies</CODE> - the font families<DD><CODE>singleFamily</CODE> - if not null, the output will be filtered so only this single font family will be used<DD><CODE>handler</CODE> - the target SAX handler <DT><B>Throws:</B> <DD><CODE>org.xml.sax.SAXException</CODE> - if an XML-related exception occurs</DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/FontListSerializer.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> fop 1.1</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/fop/tools/fontlist/FontListMain.html" title="class in org.apache.fop.tools.fontlist"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/fop/tools/fontlist/FontSpec.html" title="class in org.apache.fop.tools.fontlist"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/fop/tools/fontlist/FontListSerializer.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="FontListSerializer.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright 1999-2012 The Apache Software Foundation. All Rights Reserved. </BODY> </HTML>
kardeiz/fop_wrapper
vendor/fop-1.1/javadocs/org/apache/fop/tools/fontlist/FontListSerializer.html
HTML
mit
12,829
<span> <div class="fa fa-search search-icon" style="font-size:24px;margin-top:12px;float:left" ng-click="sv=!sv;vm.$layerService.visual.leftPanelVisible = true;vm.startSearch()" uib-tooltip="{{ 'SEARCH' | translate }}" tooltip-placement="bottom" tooltip-popup-delay="750"></div> <input type="search" style="margin-top:10px;float:left" id="searchInput" ng-show="sv" ng-model="vm.query" ng-keyup="$event.keyCode == 13 && vm.selectFirst()" placeholder="{{ 'SEARCH_PLACEHOLDER' | translate }}"/> <!--<span class="fa fa-spinner" style="float:left;margin-top: 15px;margin-left: 5px;" ng-show="sv"></span>--> </span>
indodutch/csWeb
csComp/directives/DashboardDirectives/Search/Search.tpl.html
HTML
mit
626
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>mutable_buffer::mutable_buffer</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../mutable_buffer.html" title="mutable_buffer"> <link rel="prev" href="../mutable_buffer.html" title="mutable_buffer"> <link rel="next" href="mutable_buffer/overload1.html" title="mutable_buffer::mutable_buffer (1 of 2 overloads)"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td> <td align="center"><a href="../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../mutable_buffer.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../mutable_buffer.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="mutable_buffer/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.mutable_buffer.mutable_buffer"></a><a class="link" href="mutable_buffer.html" title="mutable_buffer::mutable_buffer">mutable_buffer::mutable_buffer</a> </h4></div></div></div> <p> <a class="indexterm" name="idp86328944"></a> Construct an empty buffer. </p> <pre class="programlisting"><a class="link" href="mutable_buffer/overload1.html" title="mutable_buffer::mutable_buffer (1 of 2 overloads)">mutable_buffer</a><span class="special">();</span> <span class="emphasis"><em>&#187; <a class="link" href="mutable_buffer/overload1.html" title="mutable_buffer::mutable_buffer (1 of 2 overloads)">more...</a></em></span> </pre> <p> Construct a buffer to represent a given memory range. </p> <pre class="programlisting"><a class="link" href="mutable_buffer/overload2.html" title="mutable_buffer::mutable_buffer (2 of 2 overloads)">mutable_buffer</a><span class="special">(</span> <span class="keyword">void</span> <span class="special">*</span> <span class="identifier">data</span><span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <span class="identifier">size</span><span class="special">);</span> <span class="emphasis"><em>&#187; <a class="link" href="mutable_buffer/overload2.html" title="mutable_buffer::mutable_buffer (2 of 2 overloads)">more...</a></em></span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2015 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../mutable_buffer.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../mutable_buffer.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="mutable_buffer/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
yinchunlong/abelkhan-1
ext/c++/thirdpart/c++/boost/libs/asio/doc/html/boost_asio/reference/mutable_buffer/mutable_buffer.html
HTML
mit
4,245
<a href='https://github.com/angular/angular.js/edit/v1.2.x/src/ng/directive/booleanAttrs.js?message=docs(ngOpen)%3A%20describe%20your%20change...#L306' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this Doc</a> <a href='https://github.com/angular/angular.js/tree/v1.2.32/src/ng/directive/booleanAttrs.js#L306' class='view-source pull-right btn btn-primary'> <i class="glyphicon glyphicon-zoom-in">&nbsp;</i>View Source </a> <header class="api-profile-header"> <h1 class="api-profile-header-heading">ngOpen</h1> <ol class="api-profile-header-structure naked-list step-list"> <li> - directive in module <a href="api/ng">ng</a> </li> </ol> </header> <div class="api-profile-description"> <p>The HTML specification does not require browsers to preserve the values of boolean attributes such as open. (Their presence means true and their absence means false.) If we put an Angular interpolation expression into such an attribute then the binding information would be lost when the browser removes the attribute. The <code>ngOpen</code> directive solves this problem for the <code>open</code> attribute. This complementary directive is not removed by the browser and so provides a permanent reliable place to store the binding information.</p> </div> <div> <h2>Directive Info</h2> <ul> <li>This directive executes at priority level 100.</li> </ul> <h2 id="usage">Usage</h2> <div class="usage"> <ul> <li>as attribute: <pre><code>&lt;DETAILS&#10; ng-open=&quot;&quot;&gt;&#10;...&#10;&lt;/DETAILS&gt;</code></pre> </li> </div> <section class="api-section"> <h3>Arguments</h3> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> ngOpen </td> <td> <a href="" class="label type-hint type-hint-expression">expression</a> </td> <td> <p>If the <a href="guide/expression">expression</a> is truthy, then special attribute &quot;open&quot; will be set on the element</p> </td> </tr> </tbody> </table> </section> <h2 id="example">Example</h2><p> <div> <a ng-click="openPlunkr('examples/example-example48')" class="btn pull-right"> <i class="glyphicon glyphicon-edit">&nbsp;</i> Edit in Plunker</a> <div class="runnable-example" path="examples/example-example48"> <div class="runnable-example-file" name="index.html" language="html" type="html"> <pre><code>Check me check multiple: &lt;input type=&quot;checkbox&quot; ng-model=&quot;open&quot;&gt;&lt;br/&gt;&#10;&lt;details id=&quot;details&quot; ng-open=&quot;open&quot;&gt;&#10; &lt;summary&gt;Show/Hide me&lt;/summary&gt;&#10;&lt;/details&gt;</code></pre> </div> <div class="runnable-example-file" name="protractor.js" type="protractor" language="js"> <pre><code>it(&#39;should toggle open&#39;, function() {&#10; expect(element(by.id(&#39;details&#39;)).getAttribute(&#39;open&#39;)).toBeFalsy();&#10; element(by.model(&#39;open&#39;)).click();&#10; expect(element(by.id(&#39;details&#39;)).getAttribute(&#39;open&#39;)).toBeTruthy();&#10;});</code></pre> </div> <iframe class="runnable-example-frame" src="examples/example-example48/index.html" name="example-example48"></iframe> </div> </div> </p> </div>
souths/njy2
js/lib/angular-1.2.32/docs/partials/api/ng/directive/ngOpen.html
HTML
mit
3,556
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Design Rationale</title> <link rel="stylesheet" href="../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../signals2.html" title="Chapter&#160;30.&#160;Boost.Signals2"> <link rel="prev" href="faq.html" title="Frequently Asked Questions"> <link rel="next" href="api_changes.html" title="Signals2 API Changes"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../boost.png"></td> <td align="center"><a href="../../../index.html">Home</a></td> <td align="center"><a href="../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="faq.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../signals2.html"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="api_changes.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h2 class="title" style="clear: both"> <a name="signals2.rationale"></a>Design Rationale</h2></div></div></div> <div class="toc"><dl> <dt><span class="section"><a href="rationale.html#idp455545792">User-level Connection Management</a></span></dt> <dt><span class="section"><a href="rationale.html#idp455564432">Automatic Connection Management</a></span></dt> <dt><span class="section"><a href="rationale.html#idp455581552"><code class="computeroutput">optional_last_value</code> as the Default Combiner</a></span></dt> <dt><span class="section"><a href="rationale.html#idp455588096">Combiner Interface</a></span></dt> <dt><span class="section"><a href="rationale.html#idp455603168">Connection Interfaces: += operator</a></span></dt> <dt><span class="section"><a href="rationale.html#idp455622544">Signals2 Mutex Classes</a></span></dt> <dt><span class="section"><a href="rationale.html#idp455633024">Comparison with other Signal/Slot implementations</a></span></dt> </dl></div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="idp455545792"></a>User-level Connection Management</h3></div></div></div> <p> Users need to have fine control over the connection of signals to slots and their eventual disconnection. The primary approach taken by Boost.Signals2 is to return a <code class="computeroutput"><a class="link" href="../boost/signals2/connection.html" title="Class connection">signals2::connection</a></code> object that enables connected/disconnected query, manual disconnection, and an automatic disconnection on destruction mode (<code class="computeroutput"><a class="link" href="../boost/signals2/scoped_connection.html" title="Class scoped_connection">signals2::scoped_connection</a></code>). In addition, two other interfaces are supported by the <code class="computeroutput"><a class="link" href="../boost/signals2/signal.html#idp182344288-bb">signal::disconnect</a></code> overloaded method:</p> <div class="itemizedlist"><ul class="itemizedlist" type="disc"> <li class="listitem"><p><span class="bold"><strong>Pass slot to disconnect</strong></span>: in this interface model, the disconnection of a slot connected with <code class="computeroutput">sig.<a class="link" href="../boost/signals2/signal.html#idp80588096-bb">connect</a>(typeof(sig)::slot_type(slot_func))</code> is performed via <code class="computeroutput">sig.<a class="link" href="../boost/signals2/signal.html#idp182344288-bb">disconnect</a>(slot_func)</code>. Internally, a linear search using slot comparison is performed and the slot, if found, is removed from the list. Unfortunately, querying connectedness ends up as a linear-time operation.</p></li> <li class="listitem"> <p><span class="bold"><strong>Pass a token to disconnect</strong></span>: this approach identifies slots with a token that is easily comparable (e.g., a string), enabling slots to be arbitrary function objects. While this approach is essentially equivalent to the connection approach taken by Boost.Signals2, it is possibly more error-prone for several reasons:</p> <div class="itemizedlist"><ul class="itemizedlist" type="circle"> <li class="listitem"><p>Connections and disconnections must be paired, so the problem becomes similar to the problems incurred when pairing <code class="computeroutput">new</code> and <code class="computeroutput">delete</code> for dynamic memory allocation. While errors of this sort would not be catastrophic for a signals and slots implementation, their detection is generally nontrivial.</p></li> <li class="listitem"><p>If tokens are not unique, two slots may have the same name and be indistinguishable. In environments where many connections will be made dynamically, name generation becomes an additional task for the user.</p></li> </ul></div> <p> This type of interface is supported in Boost.Signals2 via the slot grouping mechanism, and the overload of <code class="computeroutput"><a class="link" href="../boost/signals2/signal.html#idp182344288-bb">signal::disconnect</a></code> which takes an argument of the signal's <code class="computeroutput">Group</code> type.</p> </li> </ul></div> </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="idp455564432"></a>Automatic Connection Management</h3></div></div></div> <p>Automatic connection management in Signals2 depends on the use of <code class="computeroutput">boost::shared_ptr</code> to manage the lifetimes of tracked objects. This is differs from the original Boost.Signals library, which instead relied on derivation from the <code class="computeroutput"><a class="link" href="../boost/signals/trackable.html" title="Class trackable">boost::signals::trackable</a></code> class. The library would be notified of an object's destruction by the <code class="computeroutput"><a class="link" href="../boost/signals/trackable.html" title="Class trackable">boost::signals::trackable</a></code> destructor. </p> <p>Unfortunately, the <code class="computeroutput"><a class="link" href="../boost/signals/trackable.html" title="Class trackable">boost::signals::trackable</a></code> scheme cannot be made thread safe due to destructor ordering. The destructor of an class derived from <code class="computeroutput"><a class="link" href="../boost/signals/trackable.html" title="Class trackable">boost::signals::trackable</a></code> will always be called before the destructor of the base <code class="computeroutput"><a class="link" href="../boost/signals/trackable.html" title="Class trackable">boost::signals::trackable</a></code> class. However, for thread-safety the connection between the signal and object needs to be disconnected before the object runs its destructors. Otherwise, if an object being destroyed in one thread is connected to a signal concurrently invoking in another thread, the signal may call into a partially destroyed object. </p> <p>We solve this problem by requiring that tracked objects be managed by <code class="computeroutput">shared_ptr</code>. Slots keep a <code class="computeroutput">weak_ptr</code> to every object the slot depends on. Connections to a slot are disconnected when any of its tracked <code class="computeroutput">weak_ptr</code>s expire. Additionally, signals create their own temporary <code class="computeroutput">shared_ptr</code>s to all of a slot's tracked objects prior to invoking the slot. This insures none of the tracked objects destruct in mid-invocation. </p> <p>The new connection management scheme has the advantage of being non-intrusive. Objects of any type may be tracked using the <code class="computeroutput">shared_ptr</code>/<code class="computeroutput">weak_ptr</code> scheme. The old <code class="computeroutput"><a class="link" href="../boost/signals/trackable.html" title="Class trackable">boost::signals::trackable</a></code> scheme requires the tracked objects to be derived from the <code class="computeroutput">trackable</code> base class, which is not always practical when interacting with classes from 3rd party libraries. </p> </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="idp455581552"></a><code class="computeroutput">optional_last_value</code> as the Default Combiner</h3></div></div></div> <p> The default combiner for Boost.Signals2 has changed from the <code class="computeroutput">last_value</code> combiner used by default in the original Boost.Signals library. This is because <code class="computeroutput">last_value</code> requires that at least 1 slot be connected to the signal when it is invoked (except for the <code class="computeroutput">last_value&lt;void&gt;</code> specialization). In a multi-threaded environment where signal invocations and slot connections and disconnections may be happening concurrently, it is difficult to fulfill this requirement. When using <code class="computeroutput"><a class="link" href="../boost/signals2/optional_last_value.html" title="Class template optional_last_value">optional_last_value</a></code>, there is no requirement for slots to be connected when a signal is invoked, since in that case the combiner may simply return an empty <code class="computeroutput">boost::optional</code>. </p> </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="idp455588096"></a>Combiner Interface</h3></div></div></div> <p> The Combiner interface was chosen to mimic a call to an algorithm in the C++ standard library. It is felt that by viewing slot call results as merely a sequence of values accessed by input iterators, the combiner interface would be most natural to a proficient C++ programmer. Competing interface design generally required the combiners to be constructed to conform to an interface that would be customized for (and limited to) the Signals2 library. While these interfaces are generally enable more straighforward implementation of the signals &amp; slots libraries, the combiners are unfortunately not reusable (either in other signals &amp; slots libraries or within other generic algorithms), and the learning curve is steepened slightly to learn the specific combiner interface.</p> <p> The Signals2 formulation of combiners is based on the combiner using the "pull" mode of communication, instead of the more complex "push" mechanism. With a "pull" mechanism, the combiner's state can be kept on the stack and in the program counter, because whenever new data is required (i.e., calling the next slot to retrieve its return value), there is a simple interface to retrieve that data immediately and without returning from the combiner's code. Contrast this with the "push" mechanism, where the combiner must keep all state in class members because the combiner's routines will be invoked for each signal called. Compare, for example, a combiner that returns the maximum element from calling the slots. If the maximum element ever exceeds 100, no more slots are to be called.</p> <div class="informaltable"><table class="table"> <colgroup> <col> <col> </colgroup> <thead><tr> <th align="left"><p>Pull</p></th> <th align="left"><p>Push</p></th> </tr></thead> <tbody><tr> <td align="left"> <pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"> struct pull_max { typedef int result_type; template&lt;typename InputIterator&gt; result_type operator()(InputIterator first, InputIterator last) { if (first == last) throw std::runtime_error("Empty!"); int max_value = *first++; while(first != last &amp;&amp; *first &lt;= 100) { if (*first &gt; max_value) max_value = *first; ++first; } return max_value; } }; </pre> </td> <td align="left"> <pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"> struct push_max { typedef int result_type; push_max() : max_value(), got_first(false) {} // returns false when we want to stop bool operator()(int result) { if (result &gt; 100) return false; if (!got_first) { got_first = true; max_value = result; return true; } if (result &gt; max_value) max_value = result; return true; } int get_value() const { if (!got_first) throw std::runtime_error("Empty!"); return max_value; } private: int max_value; bool got_first; }; </pre> </td> </tr></tbody> </table></div> <p>There are several points to note in these examples. The "pull" version is a reusable function object that is based on an input iterator sequence with an integer <code class="computeroutput">value_type</code>, and is very straightforward in design. The "push" model, on the other hand, relies on an interface specific to the caller and is not generally reusable. It also requires extra state values to determine, for instance, if any elements have been received. Though code quality and ease-of-use is generally subjective, the "pull" model is clearly shorter and more reusable and will often be construed as easier to write and understand, even outside the context of a signals &amp; slots library.</p> <p> The cost of the "pull" combiner interface is paid in the implementation of the Signals2 library itself. To correctly handle slot disconnections during calls (e.g., when the dereference operator is invoked), one must construct the iterator to skip over disconnected slots. Additionally, the iterator must carry with it the set of arguments to pass to each slot (although a reference to a structure containing those arguments suffices), and must cache the result of calling the slot so that multiple dereferences don't result in multiple calls. This apparently requires a large degree of overhead, though if one considers the entire process of invoking slots one sees that the overhead is nearly equivalent to that in the "push" model, but we have inverted the control structures to make iteration and dereference complex (instead of making combiner state-finding complex).</p> </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="idp455603168"></a>Connection Interfaces: += operator</h3></div></div></div> <p> Boost.Signals2 supports a connection syntax with the form <code class="computeroutput">sig.<a class="link" href="../boost/signals2/signal.html#idp80588096-bb">connect</a>(slot)</code>, but a more terse syntax <code class="computeroutput">sig += slot</code> has been suggested (and has been used by other signals &amp; slots implementations). There are several reasons as to why this syntax has been rejected:</p> <div class="itemizedlist"><ul class="itemizedlist" type="disc"> <li class="listitem"><p><span class="bold"><strong>It's unnecessary</strong></span>: the connection syntax supplied by Boost.Signals2 is no less powerful that that supplied by the <code class="computeroutput">+=</code> operator. The savings in typing (<code class="computeroutput">connect()</code> vs. <code class="computeroutput">+=</code>) is essentially negligible. Furthermore, one could argue that calling <code class="computeroutput">connect()</code> is more readable than an overload of <code class="computeroutput">+=</code>.</p></li> <li class="listitem"><p><span class="bold"><strong>Ambiguous return type</strong></span>: there is an ambiguity concerning the return value of the <code class="computeroutput">+=</code> operation: should it be a reference to the signal itself, to enable <code class="computeroutput">sig += slot1 += slot2</code>, or should it return a <code class="computeroutput"><a class="link" href="../boost/signals2/connection.html" title="Class connection">signals2::connection</a></code> for the newly-created signal/slot connection?</p></li> <li class="listitem"> <p><span class="bold"><strong>Gateway to operators -=, +</strong></span>: when one has added a connection operator <code class="computeroutput">+=</code>, it seems natural to have a disconnection operator <code class="computeroutput">-=</code>. However, this presents problems when the library allows arbitrary function objects to implicitly become slots, because slots are no longer comparable. </p> <p> The second obvious addition when one has <code class="computeroutput">operator+=</code> would be to add a <code class="computeroutput">+</code> operator that supports addition of multiple slots, followed by assignment to a signal. However, this would require implementing <code class="computeroutput">+</code> such that it can accept any two function objects, which is technically infeasible.</p> </li> </ul></div> </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="idp455622544"></a>Signals2 Mutex Classes</h3></div></div></div> <p> The Boost.Signals2 library provides 2 mutex classes: <code class="computeroutput"><a class="link" href="../boost/signals2/mutex.html" title="Class mutex">boost::signals2::mutex</a></code>, and <code class="computeroutput"><a class="link" href="../boost/signals2/dummy_mutex.html" title="Class dummy_mutex">boost::signals2::dummy_mutex</a></code>. The motivation for providing <code class="computeroutput"><a class="link" href="../boost/signals2/mutex.html" title="Class mutex">boost::signals2::mutex</a></code> is simply that the <code class="computeroutput">boost::mutex</code> class provided by the Boost.Thread library currently requires linking to libboost_thread. The <code class="computeroutput"><a class="link" href="../boost/signals2/mutex.html" title="Class mutex">boost::signals2::mutex</a></code> class allows Signals2 to remain a header-only library. You may still choose to use <code class="computeroutput">boost::mutex</code> if you wish, by specifying it as the <code class="computeroutput">Mutex</code> template type for your signals. </p> <p> The <code class="computeroutput"><a class="link" href="../boost/signals2/dummy_mutex.html" title="Class dummy_mutex">boost::signals2::dummy_mutex</a></code> class is provided to allow performance sensitive single-threaded applications to minimize overhead by avoiding unneeded mutex locking. </p> </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="idp455633024"></a>Comparison with other Signal/Slot implementations</h3></div></div></div> <div class="toc"><dl> <dt><span class="section"><a href="rationale.html#idp455633728">libsigc++</a></span></dt> <dt><span class="section"><a href="rationale.html#idp455640848">.NET delegates</a></span></dt> </dl></div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="idp455633728"></a>libsigc++</h4></div></div></div> <p> <a href="http://libsigc.sourceforge.net" target="_top">libsigc++</a> is a C++ signals &amp; slots library that originally started as part of an initiative to wrap the C interfaces to <a href="http://www.gtk.org" target="_top">GTK</a> libraries in C++, and has grown to be a separate library maintained by Karl Nelson. There are many similarities between libsigc++ and Boost.Signals2, and indeed the original Boost.Signals was strongly influenced by Karl Nelson and libsigc++. A cursory inspection of each library will find a similar syntax for the construction of signals and in the use of connections. There are some major differences in design that separate these libraries:</p> <div class="itemizedlist"><ul class="itemizedlist" type="disc"> <li class="listitem"><p><span class="bold"><strong>Slot definitions</strong></span>: slots in libsigc++ are created using a set of primitives defined by the library. These primitives allow binding of objects (as part of the library), explicit adaptation from the argument and return types of the signal to the argument and return types of the slot (libsigc++ is, by default, more strict about types than Boost.Signals2).</p></li> <li class="listitem"><p><span class="bold"><strong>Combiner/Marshaller interface</strong></span>: the equivalent to Boost.Signals2 combiners in libsigc++ are the marshallers. Marshallers are similar to the "push" interface described in Combiner Interface, and a proper treatment of the topic is given there.</p></li> </ul></div> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="idp455640848"></a>.NET delegates</h4></div></div></div> <p> <a href="http://www.microsoft.com" target="_top">Microsoft</a> has introduced the .NET Framework and an associated set of languages and language extensions, one of which is the delegate. Delegates are similar to signals and slots, but they are more limited than most C++ signals and slots implementations in that they:</p> <div class="itemizedlist"><ul class="itemizedlist" type="disc"> <li class="listitem"><p>Require exact type matches between a delegate and what it is calling.</p></li> <li class="listitem"><p>Only return the result of the last target called, with no option for customization.</p></li> <li class="listitem"><p>Must call a method with <code class="computeroutput">this</code> already bound.</p></li> </ul></div> </div> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"><p><small>Last revised: June 12, 2007 at 14:01:23 -0400</small></p></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2001-2004 Douglas Gregor<br>Copyright &#169; 2007-2009 Frank Mori Hess<p>Distributed under the Boost Software License, Version 1.0. (See accompanying file <code class="filename">LICENSE_1_0.txt</code> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)</p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="faq.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../signals2.html"><img src="../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="api_changes.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
yinchunlong/abelkhan-1
ext/c++/thirdpart/c++/boost/doc/html/signals2/rationale.html
HTML
mit
24,085
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_37) on Sun Mar 03 10:01:14 CST 2013 --> <TITLE> Uses of Class ketai.ui.KetaiAlertDialog </TITLE> <META NAME="date" CONTENT="2013-03-03"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class ketai.ui.KetaiAlertDialog"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../ketai/ui/KetaiAlertDialog.html" title="class in ketai.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?ketai/ui//class-useKetaiAlertDialog.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="KetaiAlertDialog.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>ketai.ui.KetaiAlertDialog</B></H2> </CENTER> No usage of ketai.ui.KetaiAlertDialog <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../ketai/ui/KetaiAlertDialog.html" title="class in ketai.ui"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?ketai/ui//class-useKetaiAlertDialog.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="KetaiAlertDialog.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
manorius/Processing
libraries/Ketai/reference/ketai/ui/class-use/KetaiAlertDialog.html
HTML
mit
5,692
<!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"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.4"/> <title>Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <!-- end header part --> <!-- Generated by Doxygen 1.8.4 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="a00237.html">tbb</a></li><li class="navelem"><a class="el" href="a00127.html">scalable_allocator</a></li><li class="navelem"><a class="el" href="a00113.html">rebind</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">tbb::scalable_allocator&lt; T &gt;::rebind&lt; U &gt; Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="a00113.html">tbb::scalable_allocator&lt; T &gt;::rebind&lt; U &gt;</a>, including all inherited members.</p> <table class="directory"> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>other</b> typedef (defined in <a class="el" href="a00113.html">tbb::scalable_allocator&lt; T &gt;::rebind&lt; U &gt;</a>)</td><td class="entry"><a class="el" href="a00113.html">tbb::scalable_allocator&lt; T &gt;::rebind&lt; U &gt;</a></td><td class="entry"></td></tr> </table></div><!-- contents --> <hr> <p></p> Copyright &copy; 2005-2015 Intel Corporation. All Rights Reserved. <p></p> Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are registered trademarks or trademarks of Intel Corporation or its subsidiaries in the United States and other countries. <p></p> * Other names and brands may be claimed as the property of others.
GraphicsEmpire/tetcutter
src/3rdparty/tbb/doc/html/a00295.html
HTML
mit
2,937
<!DOCTYPE html> <html> <head> <meta charset='utf-8' /> <title>Ting</title> <link rel='stylesheet' href='index.css' /> <link rel='stylesheet' type='text/css' href='bower_components/bootstrap/dist/css/bootstrap.min.css' /> <link href='node_modules/emoticons/support/skype/emoticons.css' rel='stylesheet' type='text/css'/> <script src='bower_components/jquery/dist/jquery.min.js'></script> <script src='bower_components/bootstrap/dist/js/bootstrap.min.js'></script> <script src='bower_components/jquery-visibility/jquery-visibility.min.js'></script> </head> <body> <div class='ting'></div> <script src='dist/main.js'></script> </body> </html>
sirodoht/ting
client/index.html
HTML
mit
736
<html> <head> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular.min.js"></script> <!-- you don't need ignore=notused in your code, this is just here to trick the cache --> <script src="../dist/angular-grid.js?ignore=notused5"></script> <link rel="stylesheet" type="text/css" href="../dist/angular-grid.css?ignore=notused5"> <link rel="stylesheet" type="text/css" href="../dist/theme-fresh.css?ignore=notused5"> <script src="groupSelection.js"></script> </head> <body ng-app="example" ng-controller="exampleCtrl"> <div ag-grid="gridOptions" style="height: 100%;" class="ag-fresh"></div> </body> </html>
scotthovestadt/angular-grid
docs/angular-grid-selection/groupSelection.html
HTML
mit
651
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="renderer" content="webkit"> <meta http-equiv="Cache-Control" content="no-siteapp"/> <meta content="yes" name="apple-mobile-web-app-capable" /> <meta content="black" name="apple-mobile-web-app-status-bar-style" /> <meta name="format-detection" content="telephone=no" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="full-screen" content="yes"> <meta name="x5-fullscreen" content="true"> <title>飞行棋</title> </head> <body> <script src="bundle.js"></script> </body> </html>
Cat-FE/Aeroplane-Chess
src/index.html
HTML
mit
753
<!DOCTYPE html > <html> <head> <title>Error - io.github.mandar2812.dynaml.repl.Router.Result.Error</title> <meta name="description" content="Error - io.github.mandar2812.dynaml.repl.Router.Result.Error" /> <meta name="keywords" content="Error io.github.mandar2812.dynaml.repl.Router.Result.Error" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <link href="../../../../../lib/template.css" media="screen" type="text/css" rel="stylesheet" /> <link href="../../../../../lib/diagrams.css" media="screen" type="text/css" rel="stylesheet" id="diagrams-css" /> <script type="text/javascript" src="../../../../../lib/jquery.js" id="jquery-js"></script> <script type="text/javascript" src="../../../../../lib/jquery-ui.js"></script> <script type="text/javascript" src="../../../../../lib/template.js"></script> <script type="text/javascript" src="../../../../../lib/tools.tooltip.js"></script> <script type="text/javascript"> if(top === self) { var url = '../../../../../index.html'; var hash = 'io.github.mandar2812.dynaml.repl.Router$$Result$$Error$'; var anchor = window.location.hash; var anchor_opt = ''; if (anchor.length >= 1) anchor_opt = '@' + anchor.substring(1); window.location.href = url + '#' + hash + anchor_opt; } </script> </head> <body class="value"> <div id="definition"> <a href="Router$$Result$$Error.html" title="See companion trait"><img alt="Object/Trait" src="../../../../../lib/object_to_trait_big.png" /></a> <p id="owner"><a href="../../../../package.html" class="extype" name="io">io</a>.<a href="../../../package.html" class="extype" name="io.github">github</a>.<a href="../../package.html" class="extype" name="io.github.mandar2812">mandar2812</a>.<a href="../package.html" class="extype" name="io.github.mandar2812.dynaml">dynaml</a>.<a href="package.html" class="extype" name="io.github.mandar2812.dynaml.repl">repl</a>.<a href="Router$.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router">Router</a>.<a href="Router$$Result$.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router.Result">Result</a></p> <h1><a href="Router$$Result$$Error.html" title="See companion trait">Error</a></h1><h3><span class="morelinks"><div> Related Docs: <a href="Router$$Result$$Error.html" title="See companion trait">trait Error</a> | <a href="Router$$Result$.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router.Result">package Result</a> </div></span></h3><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> </div> <h4 id="signature" class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">object</span> </span> <span class="symbol"> <span class="name">Error</span> </span> </h4> <div id="comment" class="fullcommenttop"><div class="toggleContainer block"> <span class="toggle">Linear Supertypes</span> <div class="superTypes hiddenContent"><span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div> </div></div> <div id="mbrsel"> <div id="textfilter"><span class="pre"></span><span class="input"><input id="mbrsel-input" type="text" accesskey="/" /></span><span class="post"></span></div> <div id="order"> <span class="filtertype">Ordering</span> <ol> <li class="alpha in"><span>Alphabetic</span></li> <li class="inherit out"><span>By Inheritance</span></li> </ol> </div> <div id="ancestors"> <span class="filtertype">Inherited<br /> </span> <ol id="linearization"> <li class="in" name="io.github.mandar2812.dynaml.repl.Router.Result.Error"><span>Error</span></li><li class="in" name="scala.AnyRef"><span>AnyRef</span></li><li class="in" name="scala.Any"><span>Any</span></li> </ol> </div><div id="ancestors"> <span class="filtertype"></span> <ol> <li class="hideall out"><span>Hide All</span></li> <li class="showall in"><span>Show All</span></li> </ol> </div> <div id="visbl"> <span class="filtertype">Visibility</span> <ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol> </div> </div> <div id="template"> <div id="allMembers"> <div id="types" class="types members"> <h3>Type Members</h3> <ol><li name="io.github.mandar2812.dynaml.repl.Router.Result.Error.Exception" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="ExceptionextendsRouter.Result.ErrorwithProductwithSerializable"></a> <a id="Exception:Exception"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">case class</span> </span> <span class="symbol"> <a href="Router$$Result$$Error$$Exception.html"><span class="name">Exception</span></a><span class="params">(<span name="t">t: <span class="extype" name="scala.Throwable">Throwable</span></span>)</span><span class="result"> extends <a href="Router$$Result$$Error.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router.Result.Error">Error</a> with <span class="extype" name="scala.Product">Product</span> with <span class="extype" name="scala.Serializable">Serializable</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@ExceptionextendsRouter.Result.ErrorwithProductwithSerializable" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Invoking the <a href="Router$$EntryPoint.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router.EntryPoint">EntryPoint</a> failed with an exception while executing code within it.</p> </li><li name="io.github.mandar2812.dynaml.repl.Router.Result.Error.InvalidArguments" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="InvalidArgumentsextendsRouter.Result.ErrorwithProductwithSerializable"></a> <a id="InvalidArguments:InvalidArguments"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">case class</span> </span> <span class="symbol"> <a href="Router$$Result$$Error$$InvalidArguments.html"><span class="name">InvalidArguments</span></a><span class="params">(<span name="values">values: <span class="extype" name="scala.Seq">Seq</span>[<a href="Router$$Result$$ParamError.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router.Result.ParamError">ParamError</a>]</span>)</span><span class="result"> extends <a href="Router$$Result$$Error.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router.Result.Error">Error</a> with <span class="extype" name="scala.Product">Product</span> with <span class="extype" name="scala.Serializable">Serializable</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@InvalidArgumentsextendsRouter.Result.ErrorwithProductwithSerializable" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Invoking the <a href="Router$$EntryPoint.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router.EntryPoint">EntryPoint</a> failed because there were problems deserializing/parsing individual arguments </p> </li><li name="io.github.mandar2812.dynaml.repl.Router.Result.Error.RedundantArguments" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="RedundantArgumentsextendsRouter.Result.ErrorwithProductwithSerializable"></a> <a id="RedundantArguments:RedundantArguments"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">case class</span> </span> <span class="symbol"> <a href="Router$$Result$$Error$$RedundantArguments.html"><span class="name">RedundantArguments</span></a><span class="params">(<span name="names">names: <span class="extype" name="scala.Seq">Seq</span>[<span class="extype" name="scala.Predef.String">String</span>]</span>)</span><span class="result"> extends <a href="Router$$Result$$Error.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router.Result.Error">Error</a> with <span class="extype" name="scala.Product">Product</span> with <span class="extype" name="scala.Serializable">Serializable</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@RedundantArgumentsextendsRouter.Result.ErrorwithProductwithSerializable" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Invoking the <a href="Router$$EntryPoint.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router.EntryPoint">EntryPoint</a> failed as the same argument was passed in more than once; possibly as a keyword-argument that was repeated, or a keyword-argument and positional-argument that both resolve to the same arg </p> </li><li name="io.github.mandar2812.dynaml.repl.Router.Result.Error.TooManyArguments" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="TooManyArgumentsextendsRouter.Result.ErrorwithProductwithSerializable"></a> <a id="TooManyArguments:TooManyArguments"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">case class</span> </span> <span class="symbol"> <a href="Router$$Result$$Error$$TooManyArguments.html"><span class="name">TooManyArguments</span></a><span class="params">(<span name="values">values: <span class="extype" name="scala.Seq">Seq</span>[<span class="extype" name="scala.Predef.String">String</span>]</span>)</span><span class="result"> extends <a href="Router$$Result$$Error.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router.Result.Error">Error</a> with <span class="extype" name="scala.Product">Product</span> with <span class="extype" name="scala.Serializable">Serializable</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@TooManyArgumentsextendsRouter.Result.ErrorwithProductwithSerializable" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Invoking the <a href="Router$$EntryPoint.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router.EntryPoint">EntryPoint</a> failed as there were too many positional arguments passed in, more than what is expected by the <a href="Router$$EntryPoint.html" class="extype" name="io.github.mandar2812.dynaml.repl.Router.EntryPoint">EntryPoint</a> </p> </li></ol> </div> <div id="values" class="values members"> <h3>Value Members</h3> <ol><li name="scala.AnyRef#!=" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="!=(x$1:Any):Boolean"></a> <a id="!=(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $bang$eq" class="name">!=</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@!=(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef###" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="##():Int"></a> <a id="##():Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $hash$hash" class="name">##</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@##():Int" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#==" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="==(x$1:Any):Boolean"></a> <a id="==(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $eq$eq" class="name">==</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@==(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.Any#asInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="asInstanceOf[T0]:T0"></a> <a id="asInstanceOf[T0]:T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">asInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Any.asInstanceOf.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@asInstanceOf[T0]:T0" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#clone" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="clone():Object"></a> <a id="clone():AnyRef"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">clone</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@clone():Object" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.CloneNotSupportedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#eq" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="eq(x$1:AnyRef):Boolean"></a> <a id="eq(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">eq</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@eq(x$1:AnyRef):Boolean" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#equals" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="equals(x$1:Any):Boolean"></a> <a id="equals(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">equals</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@equals(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#finalize" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="finalize():Unit"></a> <a id="finalize():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">finalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@finalize():Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="symbol">classOf[java.lang.Throwable]</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#getClass" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="getClass():Class[_]"></a> <a id="getClass():Class[_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">getClass</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.Class">Class</span>[_]</span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@getClass():Class[_]" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#hashCode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="hashCode():Int"></a> <a id="hashCode():Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">hashCode</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@hashCode():Int" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.Any#isInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isInstanceOf[T0]:Boolean"></a> <a id="isInstanceOf[T0]:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@isInstanceOf[T0]:Boolean" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#ne" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ne(x$1:AnyRef):Boolean"></a> <a id="ne(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">ne</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@ne(x$1:AnyRef):Boolean" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notify" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notify():Unit"></a> <a id="notify():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notify</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@notify():Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notifyAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notifyAll():Unit"></a> <a id="notifyAll():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notifyAll</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@notifyAll():Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@synchronized[T0](x$1:=&gt;T0):T0" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#toString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toString():String"></a> <a id="toString():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toString</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@toString():String" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <a id="wait():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@wait():Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long,x$2:Int):Unit"></a> <a id="wait(Long,Int):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@wait(x$1:Long,x$2:Int):Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long):Unit"></a> <a id="wait(Long):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#io.github.mandar2812.dynaml.repl.Router$$Result$$Error$@wait(x$1:Long):Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="scala.AnyRef"> <h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3> </div><div class="parent" name="scala.Any"> <h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3> </div> </div> <div id="groupedMembers"> <div class="group" name="Ungrouped"> <h3>Ungrouped</h3> </div> </div> </div> <div id="tooltip"></div> <div id="footer"> </div> </body> </html>
transcendent-ai-labs/transcendent-ai-labs.github.io
api_docs/DynaML/v1.4/dynaml-repl/io/github/mandar2812/dynaml/repl/Router$$Result$$Error$.html
HTML
mit
33,050
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE >reindexdb</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK REV="MADE" HREF="mailto:pgsql-docs@postgresql.org"><LINK REL="HOME" TITLE="PostgreSQL 9.0.5 Documentation" HREF="index.html"><LINK REL="UP" TITLE="PostgreSQL Client Applications" HREF="reference-client.html"><LINK REL="PREVIOUS" TITLE="psql" HREF="app-psql.html"><LINK REL="NEXT" TITLE="vacuumdb" HREF="app-vacuumdb.html"><LINK REL="STYLESHEET" TYPE="text/css" HREF="stylesheet.css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"><META NAME="creation" CONTENT="2011-09-22T22:21:03"></HEAD ><BODY CLASS="REFENTRY" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="5" ALIGN="center" VALIGN="bottom" ><A HREF="index.html" >PostgreSQL 9.0.5 Documentation</A ></TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="top" ><A TITLE="psql" HREF="app-psql.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="10%" ALIGN="left" VALIGN="top" ><A TITLE="psql" HREF="app-psql.html" >Fast Backward</A ></TD ><TD WIDTH="60%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="top" ><A TITLE="vacuumdb" HREF="app-vacuumdb.html" >Fast Forward</A ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="top" ><A TITLE="vacuumdb" HREF="app-vacuumdb.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><H1 ><A NAME="APP-REINDEXDB" ></A ><SPAN CLASS="APPLICATION" >reindexdb</SPAN ></H1 ><DIV CLASS="REFNAMEDIV" ><A NAME="AEN75834" ></A ><H2 >Name</H2 >reindexdb&nbsp;--&nbsp;reindex a <SPAN CLASS="PRODUCTNAME" >PostgreSQL</SPAN > database</DIV ><DIV CLASS="REFSYNOPSISDIV" ><A NAME="AEN75840" ></A ><H2 >Synopsis</H2 ><P ><TT CLASS="COMMAND" >reindexdb</TT > [<TT CLASS="REPLACEABLE" ><I >connection-option</I ></TT >...] [--table | -t <TT CLASS="REPLACEABLE" ><I >table</I ></TT > ] [--index | -i <TT CLASS="REPLACEABLE" ><I >index</I ></TT > ] [<TT CLASS="REPLACEABLE" ><I >dbname</I ></TT >]</P ><P ><TT CLASS="COMMAND" >reindexdb</TT > [<TT CLASS="REPLACEABLE" ><I >connection-option</I ></TT >...] [--all | -a]</P ><P ><TT CLASS="COMMAND" >reindexdb</TT > [<TT CLASS="REPLACEABLE" ><I >connection-option</I ></TT >...] [--system | -s] [<TT CLASS="REPLACEABLE" ><I >dbname</I ></TT >]</P ></DIV ><DIV CLASS="REFSECT1" ><A NAME="AEN75863" ></A ><H2 >Description</H2 ><P > <SPAN CLASS="APPLICATION" >reindexdb</SPAN > is a utility for rebuilding indexes in a <SPAN CLASS="PRODUCTNAME" >PostgreSQL</SPAN > database. </P ><P > <SPAN CLASS="APPLICATION" >reindexdb</SPAN > is a wrapper around the SQL command <A HREF="sql-reindex.html" >REINDEX</A >. There is no effective difference between reindexing databases via this utility and via other methods for accessing the server. </P ></DIV ><DIV CLASS="REFSECT1" ><A NAME="AEN75871" ></A ><H2 >Options</H2 ><P > <SPAN CLASS="APPLICATION" >reindexdb</SPAN > accepts the following command-line arguments: <P ></P ></P><DIV CLASS="VARIABLELIST" ><DL ><DT ><TT CLASS="OPTION" >-a</TT ><BR><TT CLASS="OPTION" >--all</TT ></DT ><DD ><P > Reindex all databases. </P ></DD ><DT ><TT CLASS="OPTION" >[<SPAN CLASS="OPTIONAL" >-d</SPAN >] <TT CLASS="REPLACEABLE" ><I >dbname</I ></TT ></TT ><BR><TT CLASS="OPTION" >[<SPAN CLASS="OPTIONAL" >--dbname</SPAN >] <TT CLASS="REPLACEABLE" ><I >dbname</I ></TT ></TT ></DT ><DD ><P > Specifies the name of the database to be reindexed. If this is not specified and <TT CLASS="OPTION" >-a</TT > (or <TT CLASS="OPTION" >--all</TT >) is not used, the database name is read from the environment variable <TT CLASS="ENVAR" >PGDATABASE</TT >. If that is not set, the user name specified for the connection is used. </P ></DD ><DT ><TT CLASS="OPTION" >-e</TT ><BR><TT CLASS="OPTION" >--echo</TT ></DT ><DD ><P > Echo the commands that <SPAN CLASS="APPLICATION" >reindexdb</SPAN > generates and sends to the server. </P ></DD ><DT ><TT CLASS="OPTION" >-i <TT CLASS="REPLACEABLE" ><I >index</I ></TT ></TT ><BR><TT CLASS="OPTION" >--index <TT CLASS="REPLACEABLE" ><I >index</I ></TT ></TT ></DT ><DD ><P > Recreate <TT CLASS="REPLACEABLE" ><I >index</I ></TT > only. </P ></DD ><DT ><TT CLASS="OPTION" >-q</TT ><BR><TT CLASS="OPTION" >--quiet</TT ></DT ><DD ><P > Do not display progress messages. </P ></DD ><DT ><TT CLASS="OPTION" >-s</TT ><BR><TT CLASS="OPTION" >--system</TT ></DT ><DD ><P > Reindex database's system catalogs. </P ></DD ><DT ><TT CLASS="OPTION" >-t <TT CLASS="REPLACEABLE" ><I >table</I ></TT ></TT ><BR><TT CLASS="OPTION" >--table <TT CLASS="REPLACEABLE" ><I >table</I ></TT ></TT ></DT ><DD ><P > Reindex <TT CLASS="REPLACEABLE" ><I >table</I ></TT > only. </P ></DD ><DT ><TT CLASS="OPTION" >-V</TT ><BR><TT CLASS="OPTION" >--version</TT ></DT ><DD ><P > Print the <SPAN CLASS="APPLICATION" >reindexdb</SPAN > version and exit. </P ></DD ><DT ><TT CLASS="OPTION" >-?</TT ><BR><TT CLASS="OPTION" >--help</TT ></DT ><DD ><P > Show help about <SPAN CLASS="APPLICATION" >reindexdb</SPAN > command line arguments, and exit. </P ></DD ></DL ></DIV ><P> </P ><P > <SPAN CLASS="APPLICATION" >reindexdb</SPAN > also accepts the following command-line arguments for connection parameters: <P ></P ></P><DIV CLASS="VARIABLELIST" ><DL ><DT ><TT CLASS="OPTION" >-h <TT CLASS="REPLACEABLE" ><I >host</I ></TT ></TT ><BR><TT CLASS="OPTION" >--host <TT CLASS="REPLACEABLE" ><I >host</I ></TT ></TT ></DT ><DD ><P > Specifies the host name of the machine on which the server is running. If the value begins with a slash, it is used as the directory for the Unix domain socket. </P ></DD ><DT ><TT CLASS="OPTION" >-p <TT CLASS="REPLACEABLE" ><I >port</I ></TT ></TT ><BR><TT CLASS="OPTION" >--port <TT CLASS="REPLACEABLE" ><I >port</I ></TT ></TT ></DT ><DD ><P > Specifies the TCP port or local Unix domain socket file extension on which the server is listening for connections. </P ></DD ><DT ><TT CLASS="OPTION" >-U <TT CLASS="REPLACEABLE" ><I >username</I ></TT ></TT ><BR><TT CLASS="OPTION" >--username <TT CLASS="REPLACEABLE" ><I >username</I ></TT ></TT ></DT ><DD ><P > User name to connect as. </P ></DD ><DT ><TT CLASS="OPTION" >-w</TT ><BR><TT CLASS="OPTION" >--no-password</TT ></DT ><DD ><P > Never issue a password prompt. If the server requires password authentication and a password is not available by other means such as a <TT CLASS="FILENAME" >.pgpass</TT > file, the connection attempt will fail. This option can be useful in batch jobs and scripts where no user is present to enter a password. </P ></DD ><DT ><TT CLASS="OPTION" >-W</TT ><BR><TT CLASS="OPTION" >--password</TT ></DT ><DD ><P > Force <SPAN CLASS="APPLICATION" >reindexdb</SPAN > to prompt for a password before connecting to a database. </P ><P > This option is never essential, since <SPAN CLASS="APPLICATION" >reindexdb</SPAN > will automatically prompt for a password if the server demands password authentication. However, <SPAN CLASS="APPLICATION" >reindexdb</SPAN > will waste a connection attempt finding out that the server wants a password. In some cases it is worth typing <TT CLASS="OPTION" >-W</TT > to avoid the extra connection attempt. </P ></DD ></DL ></DIV ><P> </P ></DIV ><DIV CLASS="REFSECT1" ><A NAME="AEN76005" ></A ><H2 >Environment</H2 ><P ></P ><DIV CLASS="VARIABLELIST" ><DL ><DT ><TT CLASS="ENVAR" >PGDATABASE</TT ><BR><TT CLASS="ENVAR" >PGHOST</TT ><BR><TT CLASS="ENVAR" >PGPORT</TT ><BR><TT CLASS="ENVAR" >PGUSER</TT ></DT ><DD ><P > Default connection parameters </P ></DD ></DL ></DIV ><P > This utility, like most other <SPAN CLASS="PRODUCTNAME" >PostgreSQL</SPAN > utilities, also uses the environment variables supported by <SPAN CLASS="APPLICATION" >libpq</SPAN > (see <A HREF="libpq-envars.html" >Section 31.13</A >). </P ></DIV ><DIV CLASS="REFSECT1" ><A NAME="AEN76023" ></A ><H2 >Diagnostics</H2 ><P > In case of difficulty, see <A HREF="sql-reindex.html" >REINDEX</A > and <A HREF="app-psql.html" ><SPAN CLASS="APPLICATION" >psql</SPAN ></A > for discussions of potential problems and error messages. The database server must be running at the targeted host. Also, any default connection settings and environment variables used by the <SPAN CLASS="APPLICATION" >libpq</SPAN > front-end library will apply. </P ></DIV ><DIV CLASS="REFSECT1" ><A NAME="AEN76029" ></A ><H2 >Notes</H2 ><P > <SPAN CLASS="APPLICATION" >reindexdb</SPAN > might need to connect several times to the <SPAN CLASS="PRODUCTNAME" >PostgreSQL</SPAN > server, asking for a password each time. It is convenient to have a <TT CLASS="FILENAME" >~/.pgpass</TT > file in such cases. See <A HREF="libpq-pgpass.html" >Section 31.14</A > for more information. </P ></DIV ><DIV CLASS="REFSECT1" ><A NAME="AEN76036" ></A ><H2 >Examples</H2 ><P > To reindex the database <TT CLASS="LITERAL" >test</TT >: </P><PRE CLASS="SCREEN" ><SAMP CLASS="PROMPT" >$ </SAMP ><KBD CLASS="USERINPUT" >reindexdb test</KBD ></PRE ><P> </P ><P > To reindex the table <TT CLASS="LITERAL" >foo</TT > and the index <TT CLASS="LITERAL" >bar</TT > in a database named <TT CLASS="LITERAL" >abcd</TT >: </P><PRE CLASS="SCREEN" ><SAMP CLASS="PROMPT" >$ </SAMP ><KBD CLASS="USERINPUT" >reindexdb --table foo --index bar abcd</KBD ></PRE ><P> </P ></DIV ><DIV CLASS="REFSECT1" ><A NAME="AEN76050" ></A ><H2 >See Also</H2 ><A HREF="sql-reindex.html" >REINDEX</A ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="app-psql.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="app-vacuumdb.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><SPAN CLASS="APPLICATION" >psql</SPAN ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="reference-client.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><SPAN CLASS="APPLICATION" >vacuumdb</SPAN ></TD ></TR ></TABLE ></DIV ></BODY ></HTML >
jeremymcwilliams/pubcom
postgresql/html/app-reindexdb.html
HTML
mit
10,775
<!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> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>JsDoc Reference - Index</title> <meta name="generator" content="JsDoc Toolkit" /> <style type="text/css"> /* default.css */ body { font: 12px "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif; width: 800px; } .header { clear: both; background-color: #ccc; padding: 8px; } h1 { font-size: 150%; font-weight: bold; padding: 0; margin: 1em 0 0 .3em; } hr { border: none 0; border-top: 1px solid #7F8FB1; height: 1px; } pre.code { display: block; padding: 8px; border: 1px dashed #ccc; } #index { margin-top: 24px; float: left; width: 160px; position: absolute; left: 8px; background-color: #F3F3F3; padding: 8px; } #content { margin-left: 190px; width: 600px; } .classList { list-style-type: none; padding: 0; margin: 0 0 0 8px; font-family: arial, sans-serif; font-size: 1em; overflow: auto; } .classList li { padding: 0; margin: 0 0 8px 0; } .summaryTable { width: 100%; } h1.classTitle { font-size:170%; line-height:130%; } h2 { font-size: 110%; } caption, div.sectionTitle { background-color: #7F8FB1; color: #fff; font-size:130%; text-align: left; padding: 2px 6px 2px 6px; border: 1px #7F8FB1 solid; } div.sectionTitle { margin-bottom: 8px; } .summaryTable thead { display: none; } .summaryTable td { vertical-align: top; padding: 4px; border-bottom: 1px #7F8FB1 solid; border-right: 1px #7F8FB1 solid; } /*col#summaryAttributes {}*/ .summaryTable td.attributes { border-left: 1px #7F8FB1 solid; width: 140px; text-align: right; } td.attributes, .fixedFont { line-height: 15px; color: #002EBE; font-family: "Courier New",Courier,monospace; font-size: 13px; } .summaryTable td.nameDescription { text-align: left; font-size: 13px; line-height: 15px; } .summaryTable td.nameDescription, .description { line-height: 15px; padding: 4px; padding-left: 4px; } .summaryTable { margin-bottom: 8px; } ul.inheritsList { list-style: square; margin-left: 20px; padding-left: 0; } .detailList { margin-left: 20px; line-height: 15px; } .detailList dt { margin-left: 20px; } .detailList .heading { font-weight: bold; padding-bottom: 6px; margin-left: 0; } .light, td.attributes, .light a:link, .light a:visited { color: #777; font-style: italic; } .fineprint { text-align: right; font-size: 10px; } </style> </head> <body> <div id="header"> </div> <div id="index"> <div align="center"><a href="index.html">Class Index</a> | <a href="files.html">File Index</a></div> <hr /> <h2>Classes</h2> <ul class="classList"> <li><i><a href="symbols/_global_.html">_global_</a></i></li> <li><a href="symbols/UUID.html">UUID</a></li> </ul> <hr /> </div> <div id="content"> <h1 class="classTitle">Class Index</h1> <div> <h2><a href="symbols/_global_.html">_global_</a></h2> </div> <hr /> <div> <h2><a href="symbols/UUID.html">UUID</a></h2> </div> <hr /> </div> <div class="fineprint" style="clear:both"> Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blankt">JsDoc Toolkit</a> 2.4.0 on Tue Feb 21 2012 22:31:42 GMT+0900 (JST) </div> </body> </html>
AaronZhangL/neo4j-search-characters
community/browser/app/components/UUID.js/doc/index.html
HTML
mit
3,459
<article id="COMPONENT_Users" ui-view class="container-fluid"> <div class="page-header"> <button type="button" class="btn btn-success pull-right" ui-sref=".create"><i class="fa fa-plus-circle"></i> Create New</button> <h3>Users</h3> </div> <!--====== SEARCH/FILTERS ======--> <form name="UsersSearchForm" class="form-inline" ng-submit="users.search()"> <fieldset class="form-group"> <input type="search" placeholder="Search Users..." ng-model="users.parameters.search" class="form-control"> </fieldset> <fieldset class="form-group" ng-class="{'text-center':application.$ocMedia('max-width:767px')}"> <span ng-class="{'btn-group':users.searchResults}"> <button type="submit" class="btn btn-primary">Search</button> <button ng-if="users.searchResults" ng-click="users.clearSearch()" type="button" class="btn btn-default"><i class="fa fa-times"></i></button> </span> <span ng-class="{'btn-group':users.filtersApplied}" ng-if="application.$ocMedia('max-width:767px')"> <button type="button" class="btn btn-default" ng-click="users.showFilters = !users.showFilters"><i class="fa fa-filter"></i> Filters</button> <button ng-if="users.filtersApplied" ng-click="users.clearFilters()" type="button" class="btn btn-default"><i class="fa fa-times"></i></button> </span> </fieldset> </form> <div class="row" style="margin-top:15px;" uib-collapse="!users.showFilters"> <div class="col-md-6 col-lg-4"> <div class="form-group" ng-if="application.$ocMedia('max-width:767px')"> <label>Sort By:</label> <div ng-class="{'input-group':users.sortSelection}"> <select placeholder="Sort" class="form-control" ng-model="users.sortSelection" ng-change="users.updateSort()"> <option value="">None</option> <option value="ID">ID</option> <option value="Username">Username</option> <option value="FirstName">First Name</option> <option value="LastName">Last Name</option> <option value="Email">Email</option> </select> <div ng-if="users.sortSelection" class="input-group-btn"> <button class="btn btn-default" ng-click="users.reverseSort()"> <i class="fa fa-sort"></i> </button> </div> </div> </div> </div> </div> <!--====== LIST ======--> <div class="no-matches" ng-if="!users.list.Items.length"> <b>No matches found.</b> </div> <div ng-if="users.list.Items.length"> <b class="pull-right">{{(application.$ocMedia('min-width:768px') ? users.list.Meta.ItemRange[0] : '1') + ' - ' + users.list.Meta.ItemRange[1] + ' of ' + users.list.Meta.TotalCount + ' results'}}</b> <table class="table table-hover oc-table-responsive"> <thead> <tr> <th scope="col"> <a href="#" role="button" ng-click="users.updateSort('ID')"> ID <i class="fa fa-caret-down" ng-show="users.parameters.sortBy == 'ID'"></i> <i class="fa fa-caret-up" ng-show="users.parameters.sortBy == '!ID'"></i> </a> </th> <th scope="col"> <a href="#" role="button" ng-click="users.updateSort('Username')"> Username <i class="fa fa-caret-down" ng-show="users.parameters.sortBy == 'Username'"></i> <i class="fa fa-caret-up" ng-show="users.parameters.sortBy == '!Username'"></i> </a> </th> <th scope="col"> <a href="#" role="button" ng-click="users.updateSort('FirstName')"> First Name <i class="fa fa-caret-down" ng-show="users.parameters.sortBy == 'FirstName'"></i> <i class="fa fa-caret-up" ng-show="users.parameters.sortBy == '!FirstName'"></i> </a> </th> <th scope="col"> <a href="#" role="button" ng-click="users.updateSort('LastName')"> Last Name <i class="fa fa-caret-down" ng-show="users.parameters.sortBy == 'LastName'"></i> <i class="fa fa-caret-up" ng-show="users.parameters.sortBy == '!LastName'"></i> </a> </th> <th scope="col"> <a href="#" role="button" ng-click="users.updateSort('Email')"> Email <i class="fa fa-caret-down" ng-show="users.parameters.sortBy == 'Email'"></i> <i class="fa fa-caret-up" ng-show="users.parameters.sortBy == '!Email'"></i> </a> </th> <th></th> </tr> </thead> <tbody> <tr ng-repeat="user in users.list.Items" ui-sref="users.edit({userid:user.ID})"> <th scope="row">{{user.ID}}</th> <td data-title="Username">{{user.Username}}</td> <td data-title="FirstName">{{user.FirstName}}</td> <td data-title="LastName">{{user.LastName}}</td> <td data-title="Email">{{user.Email}}</td> <td class="actions-cell"> <button class="btn btn-default btn-sm">Edit</button> </td> </tr> </tbody> </table> <div class="text-center" ng-if="application.$ocMedia('min-width:768px') && users.list.Meta.TotalPages > 1"> <uib-pagination boundary-links="users.list.Meta.TotalPages > 8" max-size="5" total-items="users.list.Meta.TotalCount" items-per-page="users.list.Meta.PageSize" ng-model="users.list.Meta.Page" ng-change="users.pageChanged()"></uib-pagination> </div> <button type="button" ng-if="application.$ocMedia('max-width:767px')" class="btn btn-default btn-block btn-lg" ng-show="users.list.Meta.Page < users.list.Meta.TotalPages" ng-click="users.loadMore()">Load More</button> </div> </article>
yb0rc1ty/0927
src/app/users/templates/users.tpl.html
HTML
mit
6,457
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_35) on Tue Oct 16 22:49:48 ICT 2012 --> <TITLE> Uses of Class org.apache.fop.fo.properties.CorrespondingPropertyMaker (Apache FOP 1.1 API) </TITLE> <META NAME="date" CONTENT="2012-10-16"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.fop.fo.properties.CorrespondingPropertyMaker (Apache FOP 1.1 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/fop/fo/properties/CorrespondingPropertyMaker.html" title="class in org.apache.fop.fo.properties"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> fop 1.1</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/fop/fo/properties//class-useCorrespondingPropertyMaker.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CorrespondingPropertyMaker.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.fop.fo.properties.CorrespondingPropertyMaker</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../../org/apache/fop/fo/properties/CorrespondingPropertyMaker.html" title="class in org.apache.fop.fo.properties">CorrespondingPropertyMaker</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.fop.fo.properties"><B>org.apache.fop.fo.properties</B></A></TD> <TD>Classes representing the various property types as well as supporting data structures for the FO tree.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.fop.fo.properties"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../../org/apache/fop/fo/properties/CorrespondingPropertyMaker.html" title="class in org.apache.fop.fo.properties">CorrespondingPropertyMaker</A> in <A HREF="../../../../../../org/apache/fop/fo/properties/package-summary.html">org.apache.fop.fo.properties</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../../../org/apache/fop/fo/properties/CorrespondingPropertyMaker.html" title="class in org.apache.fop.fo.properties">CorrespondingPropertyMaker</A> in <A HREF="../../../../../../org/apache/fop/fo/properties/package-summary.html">org.apache.fop.fo.properties</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../org/apache/fop/fo/properties/DimensionPropertyMaker.html" title="class in org.apache.fop.fo.properties">DimensionPropertyMaker</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Dimensioned property maker.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../org/apache/fop/fo/properties/IndentPropertyMaker.html" title="class in org.apache.fop.fo.properties">IndentPropertyMaker</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This property maker handles the calculations described in 5.3.2 which involves the sizes of the corresponding margin-* properties and the padding-* and border-*-width properties.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../org/apache/fop/fo/properties/SpacePropertyMaker.html" title="class in org.apache.fop.fo.properties">SpacePropertyMaker</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Special CorrespondingPropertyMaker that sets the conditionality subproperty correctly for space-* properties.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../../../org/apache/fop/fo/properties/package-summary.html">org.apache.fop.fo.properties</A> declared as <A HREF="../../../../../../org/apache/fop/fo/properties/CorrespondingPropertyMaker.html" title="class in org.apache.fop.fo.properties">CorrespondingPropertyMaker</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../../../../org/apache/fop/fo/properties/CorrespondingPropertyMaker.html" title="class in org.apache.fop.fo.properties">CorrespondingPropertyMaker</A></CODE></FONT></TD> <TD><CODE><B>PropertyMaker.</B><B><A HREF="../../../../../../org/apache/fop/fo/properties/PropertyMaker.html#corresponding">corresponding</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Maker for 'corresponding' properties</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../org/apache/fop/fo/properties/package-summary.html">org.apache.fop.fo.properties</A> with parameters of type <A HREF="../../../../../../org/apache/fop/fo/properties/CorrespondingPropertyMaker.html" title="class in org.apache.fop.fo.properties">CorrespondingPropertyMaker</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>PropertyMaker.</B><B><A HREF="../../../../../../org/apache/fop/fo/properties/PropertyMaker.html#setCorresponding(org.apache.fop.fo.properties.CorrespondingPropertyMaker)">setCorresponding</A></B>(<A HREF="../../../../../../org/apache/fop/fo/properties/CorrespondingPropertyMaker.html" title="class in org.apache.fop.fo.properties">CorrespondingPropertyMaker</A>&nbsp;corresponding)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the correspoding property information.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/fop/fo/properties/CorrespondingPropertyMaker.html" title="class in org.apache.fop.fo.properties"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> fop 1.1</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/fop/fo/properties//class-useCorrespondingPropertyMaker.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CorrespondingPropertyMaker.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright 1999-2012 The Apache Software Foundation. All Rights Reserved. </BODY> </HTML>
kardeiz/fop_wrapper
vendor/fop-1.1/javadocs/org/apache/fop/fo/properties/class-use/CorrespondingPropertyMaker.html
HTML
mit
11,604
<h1>NOT FOUND</h1>
hnoerdli/hussa
src/main/resources/static/app/404.component/404.component.html
HTML
mit
18
<?xml version="1.0" encoding="ascii"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>float</title> <link rel="stylesheet" href="epydoc.css" type="text/css" /> <script type="text/javascript" src="epydoc.js"></script> </head> <body bgcolor="white" text="black" link="blue" vlink="#204080" alink="#204080"> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="couchdbkit-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <th class="navbar" width="100%"></th> </tr> </table> <table width="100%" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="100%"> <span class="breadcrumbs"> float :: Class&nbsp;float </span> </td> <td> <table cellpadding="0" cellspacing="0"> <!-- hide/show private --> <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink" onclick="toggle_private();">hide&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="float-class.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== CLASS DESCRIPTION ==================== --> <h1 class="epydoc">Class float</h1><p class="nomargin-top"></p> <pre class="base-tree"> object --+ | <strong class="uidshort">float</strong> </pre> <hr /> <p>float(x) -&gt; floating point number</p> <p>Convert a string or number to a floating point number, if possible.</p> <!-- ==================== INSTANCE METHODS ==================== --> <a name="section-InstanceMethods"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Instance Methods</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-InstanceMethods" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__abs__"></a><span class="summary-sig-name">__abs__</span>(<span class="summary-sig-arg">x</span>)</span><br /> abs(x)</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__add__"></a><span class="summary-sig-name">__add__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x+y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__coerce__"></a><span class="summary-sig-name">__coerce__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> coerce(x, y)</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__div__"></a><span class="summary-sig-name">__div__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x/y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__divmod__"></a><span class="summary-sig-name">__divmod__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> divmod(x, y)</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__eq__"></a><span class="summary-sig-name">__eq__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x==y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__float__"></a><span class="summary-sig-name">__float__</span>(<span class="summary-sig-arg">x</span>)</span><br /> float(x)</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__floordiv__"></a><span class="summary-sig-name">__floordiv__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x//y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">string</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="float-class.html#__format__" class="summary-sig-name">__format__</a>(<span class="summary-sig-arg">float</span>, <span class="summary-sig-arg">format_spec</span>)</span><br /> Formats the float according to format_spec.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__ge__"></a><span class="summary-sig-name">__ge__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x&gt;=y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="float-class.html#__getattribute__" class="summary-sig-name">__getattribute__</a>(<span class="summary-sig-arg">...</span>)</span><br /> x.__getattribute__('name') &lt;==&gt; x.name</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">string</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="float-class.html#__getformat__" class="summary-sig-name">__getformat__</a>(<span class="summary-sig-arg">float</span>, <span class="summary-sig-arg">typestr</span>)</span><br /> You probably don't want to use this function.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__getnewargs__"></a><span class="summary-sig-name">__getnewargs__</span>(<span class="summary-sig-arg">...</span>)</span></td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__gt__"></a><span class="summary-sig-name">__gt__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x&gt;y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="float-class.html#__hash__" class="summary-sig-name">__hash__</a>(<span class="summary-sig-arg">x</span>)</span><br /> hash(x)</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__int__"></a><span class="summary-sig-name">__int__</span>(<span class="summary-sig-arg">x</span>)</span><br /> int(x)</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__le__"></a><span class="summary-sig-name">__le__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x&lt;=y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__long__"></a><span class="summary-sig-name">__long__</span>(<span class="summary-sig-arg">x</span>)</span><br /> long(x)</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__lt__"></a><span class="summary-sig-name">__lt__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x&lt;y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__mod__"></a><span class="summary-sig-name">__mod__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x%y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__mul__"></a><span class="summary-sig-name">__mul__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x*y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__ne__"></a><span class="summary-sig-name">__ne__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x!=y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__neg__"></a><span class="summary-sig-name">__neg__</span>(<span class="summary-sig-arg">x</span>)</span><br /> -x</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">a new object with type S, a subtype of T</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="float-class.html#__new__" class="summary-sig-name">__new__</a>(<span class="summary-sig-arg">T</span>, <span class="summary-sig-arg">S</span>, <span class="summary-sig-arg">...</span>)</span></td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__nonzero__"></a><span class="summary-sig-name">__nonzero__</span>(<span class="summary-sig-arg">x</span>)</span><br /> x != 0</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__pos__"></a><span class="summary-sig-name">__pos__</span>(<span class="summary-sig-arg">x</span>)</span><br /> +x</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__pow__"></a><span class="summary-sig-name">__pow__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>, <span class="summary-sig-arg">z</span>=<span class="summary-sig-default">...</span>)</span><br /> pow(x, y[, z])</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__radd__"></a><span class="summary-sig-name">__radd__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> y+x</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__rdiv__"></a><span class="summary-sig-name">__rdiv__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> y/x</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__rdivmod__"></a><span class="summary-sig-name">__rdivmod__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> divmod(y, x)</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="float-class.html#__repr__" class="summary-sig-name">__repr__</a>(<span class="summary-sig-arg">x</span>)</span><br /> repr(x)</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__rfloordiv__"></a><span class="summary-sig-name">__rfloordiv__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> y//x</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__rmod__"></a><span class="summary-sig-name">__rmod__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> y%x</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__rmul__"></a><span class="summary-sig-name">__rmul__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> y*x</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__rpow__"></a><span class="summary-sig-name">__rpow__</span>(<span class="summary-sig-arg">y</span>, <span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">z</span>=<span class="summary-sig-default">...</span>)</span><br /> pow(x, y[, z])</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__rsub__"></a><span class="summary-sig-name">__rsub__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> y-x</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__rtruediv__"></a><span class="summary-sig-name">__rtruediv__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> y/x</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">None</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="float-class.html#__setformat__" class="summary-sig-name">__setformat__</a>(<span class="summary-sig-arg">float</span>, <span class="summary-sig-arg">typestr</span>, <span class="summary-sig-arg">fmt</span>)</span><br /> You probably don't want to use this function.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="float-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">x</span>)</span><br /> str(x)</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__sub__"></a><span class="summary-sig-name">__sub__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x-y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__truediv__"></a><span class="summary-sig-name">__truediv__</span>(<span class="summary-sig-arg">x</span>, <span class="summary-sig-arg">y</span>)</span><br /> x/y</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="__trunc__"></a><span class="summary-sig-name">__trunc__</span>(<span class="summary-sig-arg">...</span>)</span><br /> Returns the Integral closest to x between 0 and x.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">(int, int)</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="float-class.html#as_integer_ratio" class="summary-sig-name">as_integer_ratio</a>(<span class="summary-sig-arg">float</span>)</span><br /> Returns a pair of integers, whose ratio is exactly equal to the original float and with a positive denominator.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="conjugate"></a><span class="summary-sig-name">conjugate</span>(<span class="summary-sig-arg">...</span>)</span><br /> Returns self, the complex conjugate of any float.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">float</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="float-class.html#fromhex" class="summary-sig-name">fromhex</a>(<span class="summary-sig-arg">float</span>, <span class="summary-sig-arg">string</span>)</span><br /> Create a floating-point number from a hexadecimal string.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">string</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="float-class.html#hex" class="summary-sig-name">hex</a>(<span class="summary-sig-arg">float</span>)</span><br /> Return a hexadecimal representation of a floating-point number.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="is_integer"></a><span class="summary-sig-name">is_integer</span>(<span class="summary-sig-arg">...</span>)</span><br /> Returns True if the float is an integer.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__delattr__</code>, <code>__init__</code>, <code>__reduce__</code>, <code>__reduce_ex__</code>, <code>__setattr__</code>, <code>__sizeof__</code>, <code>__subclasshook__</code> </p> </td> </tr> </table> <!-- ==================== PROPERTIES ==================== --> <a name="section-Properties"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Properties</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Properties" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="imag"></a><span class="summary-name">imag</span><br /> the imaginary part of a complex number </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="real"></a><span class="summary-name">real</span><br /> the real part of a complex number </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__class__</code> </p> </td> </tr> </table> <!-- ==================== METHOD DETAILS ==================== --> <a name="section-MethodDetails"></a> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Method Details</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-MethodDetails" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> </table> <a name="__format__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__format__</span>(<span class="sig-arg">float</span>, <span class="sig-arg">format_spec</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Formats the float according to format_spec.</p> <dl class="fields"> <dt>Returns: string</dt> <dt>Overrides: object.__format__ </dt> </dl> </td></tr></table> </div> <a name="__getattribute__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__getattribute__</span>(<span class="sig-arg">...</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>x.__getattribute__('name') &lt;==&gt; x.name</p> <dl class="fields"> <dt>Overrides: object.__getattribute__ </dt> </dl> </td></tr></table> </div> <a name="__getformat__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__getformat__</span>(<span class="sig-arg">float</span>, <span class="sig-arg">typestr</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>You probably don't want to use this function. It exists mainly to be used in Python's test suite.</p> <p>typestr must be 'double' or 'float'. This function returns whichever of 'unknown', 'IEEE, big-endian' or 'IEEE, little-endian' best describes the format of floating point numbers used by the C type named by typestr.</p> <dl class="fields"> <dt>Returns: string</dt> </dl> </td></tr></table> </div> <a name="__hash__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__hash__</span>(<span class="sig-arg">x</span>)</span> <br /><em class="fname">(Hashing function)</em> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>hash(x)</p> <dl class="fields"> <dt>Overrides: object.__hash__ </dt> </dl> </td></tr></table> </div> <a name="__new__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__new__</span>(<span class="sig-arg">T</span>, <span class="sig-arg">S</span>, <span class="sig-arg">...</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <dl class="fields"> <dt>Returns: a new object with type S, a subtype of T</dt> <dt>Overrides: object.__new__ </dt> </dl> </td></tr></table> </div> <a name="__repr__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__repr__</span>(<span class="sig-arg">x</span>)</span> <br /><em class="fname">(Representation operator)</em> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>repr(x)</p> <dl class="fields"> <dt>Overrides: object.__repr__ </dt> </dl> </td></tr></table> </div> <a name="__setformat__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__setformat__</span>(<span class="sig-arg">float</span>, <span class="sig-arg">typestr</span>, <span class="sig-arg">fmt</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>You probably don't want to use this function. It exists mainly to be used in Python's test suite.</p> <p>typestr must be 'double' or 'float'. fmt must be one of 'unknown', 'IEEE, big-endian' or 'IEEE, little-endian', and in addition can only be one of the latter two if it appears to match the underlying C reality.</p> <p>Overrides the automatic determination of C-level floating point type. This affects how floats are converted to and from binary strings.</p> <dl class="fields"> <dt>Returns: None</dt> </dl> </td></tr></table> </div> <a name="__str__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">x</span>)</span> <br /><em class="fname">(Informal representation operator)</em> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>str(x)</p> <dl class="fields"> <dt>Overrides: object.__str__ </dt> </dl> </td></tr></table> </div> <a name="as_integer_ratio"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">as_integer_ratio</span>(<span class="sig-arg">float</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Returns a pair of integers, whose ratio is exactly equal to the original float and with a positive denominator. Raises OverflowError on infinities and a ValueError on NaNs.</p> <pre class="py-doctest"> <span class="py-prompt">&gt;&gt;&gt; </span>(10.0).as_integer_ratio() <span class="py-output">(10, 1)</span> <span class="py-output"></span><span class="py-prompt">&gt;&gt;&gt; </span>(0.0).as_integer_ratio() <span class="py-output">(0, 1)</span> <span class="py-output"></span><span class="py-prompt">&gt;&gt;&gt; </span>(-.25).as_integer_ratio() <span class="py-output">(-1, 4)</span></pre> <dl class="fields"> <dt>Returns: (int, int)</dt> </dl> </td></tr></table> </div> <a name="fromhex"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">fromhex</span>(<span class="sig-arg">float</span>, <span class="sig-arg">string</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Create a floating-point number from a hexadecimal string. &gt;&gt;&gt; float.fromhex('0x1.ffffp10') 2047.984375 &gt;&gt;&gt; float.fromhex('-0x1p-1074') -4.9406564584124654e-324</p> <dl class="fields"> <dt>Returns: float</dt> </dl> </td></tr></table> </div> <a name="hex"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">hex</span>(<span class="sig-arg">float</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Return a hexadecimal representation of a floating-point number. &gt;&gt;&gt; (-0.1).hex() '-0x1.999999999999ap-4' &gt;&gt;&gt; 3.14159.hex() '0x1.921f9f01b866ep+1'</p> <dl class="fields"> <dt>Returns: string</dt> </dl> </td></tr></table> </div> <br /> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="couchdbkit-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <th class="navbar" width="100%"></th> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%%"> <tr> <td align="left" class="footer"> Generated by Epydoc 3.0.1 on Fri May 4 11:48:41 2012 </td> <td align="right" class="footer"> <a target="mainFrame" href="http://epydoc.sourceforge.net" >http://epydoc.sourceforge.net</a> </td> </tr> </table> <script type="text/javascript"> <!-- // Private objects are initially displayed (because if // javascript is turned off then we want them to be // visible); but by default, we want to hide them. So hide // them unless we have a cookie that says to show them. checkCookie(); // --> </script> </body> </html>
benoitc/couchdbkit
doc/couchdbkit.org/htdocs/docs/api/float-class.html
HTML
mit
43,579
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Linkclump</title> <link rel="stylesheet" type="text/css" href="style.css" /> <link rel="shortcut icon" href="favicon.ico" /> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-18262434-1']); _gaq.push(['_trackPageview']); (function(){ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body> <div class="box"> <img src="linkclump.png" alt="Linkclump logo"/> <p> A Google Chrome extension that allows you to use your mouse to select and open groups of links into new tabs. </p> <p> Use your mouse to drag a box around the links you want to open and when you release the mouse button all the links will open up into new tabs. </p> <img src="screenshot2.png" alt='screen shot of linkclump in action' width="450"/> <p>Feature list...</p> <ul> <li><b>Customise:</b> choose how Linkclump is activated using different mouse and key combination (including shift/alt/ctrl).</li> <li><b>Smart Select:</b> only the important links on the page are selected.</li> <li><b>Auto Scroll:</b> the page will automatically scroll up/down to make it easier to select all the links at once.</li> <li><b>Exclude Words:</b> exclude links that contain certain words.</li> <li><b>New Window:</b> choose to have the new tabs open in the current browser window or a new browser window.</li> <li><b>OS Tested:</b> works on windows, mac and linux operating systems.</li> </ul> <p> Please visit <a href="https://chrome.google.com/extensions/detail/lfpjkncokllnfokkgpkobnkbkmelfefj?hl=en">Google Chrome extension gallery</a> to install. </p> </div> </body> </html>
benblack86/linkclump
media/index.html
HTML
mit
2,517
<div style="font-size:12px;"> This example show how we can add dialog for live data search.<br/> See below for all available options. <br/> </div> <br /> <table id="search"></table> <div id="pagersr"></div> <input type="BUTTON" id="bsdata" value="Search" /> <script src="searching.js" type="text/javascript"> </script> <br /><br /> <div style="font-size:12px;"> <b> Description </b> <br /> This method uses <b>colModel</b> names and <b>url</b> parameters from jqGrid <br/> <code> Calling: jQuery("#grid_id").searchGrid( options ); </code> <br/> <b> options </b> <br/> <b>top : 0</b> the initial top position of search dialog<br/> <b>left: 0</b> the initinal left position of search dialog<br/> If the left and top positions are not set the dialog apper on<br/> upper left corner of the grid <br/> <b>width: 360</b>, the width of serch dialog - default 360<br/> <b>height: 70</b>, the height of serch dialog default 70<br/> <b>modal: false</b>, determine if the dialog should be in modal mode default is false<br/> <b>drag: true</b>,determine if the dialog is dragable default true<br/> <b>caption: "Search..."</b>,the caption of the dialog<br/> <b>Find: "Find"</b>, the text of the button when you click to search data default Find<br/> <b>Reset: "Reset"</b>,the text of the button when you click to clear search string default Reset<br/> <b>dirty: false</b>, applicable only in navigator see the last example<br/> These parameters are passed to the url <br/> <b>sField:'searchField'</b>, is the name that is passed to url the value is the name from colModel<br/> <b>sValue:'searchString'</b>,is the name that is passed to url the value is the entered value<br/> <b>sOper: 'searchOper'</b>, is the name that is passed to the url the value is the type of search - see sopt array<br/> // translation string for the search options<br/> <b>odata : ['equal', 'not equal', 'less', 'less or equal','greater','greater or equal', 'begins with','ends with','contains' ]</b>,<br/> // if you want to change or remove the order change it in sopt<br/> <b>sopt: null // ['bw','eq','ne','lt','le','gt','ge','ew','cn']</b> <br/> by default all options are allowed. The codes are as follow:<br/> bw - begins with ( LIKE val% )<br/> eq - equal ( = )<br/> ne - not equal ( <> )<br/> lt - little ( < )<br/> le - little or equal ( <= )<br/> gt - greater ( > )<br/> ge - greater or equal ( >= )<br/> ew - ends with (LIKE %val )<br/> cn - contain (LIKE %val% )<br/> <b> HTML </b> <XMP> ... <table id="search"></table> <div id="pagersr"></div> <input type="BUTTON" id="bsdata" value="Search" /> </XMP> <b>Java Scrpt code</b> <XMP> ... jQuery("#search").jqGrid({ url:'server.php?q=1', datatype: "xml", colNames:['Inv No','Date', 'Client', 'Amount','Tax','Total','Notes'], colModel:[ {name:'id',index:'id', width:55}, {name:'invdate',index:'invdate', width:90}, {name:'name',index:'name', width:100}, {name:'amount',index:'amount', width:80, align:"right"}, {name:'tax',index:'tax', width:80, align:"right"}, {name:'total',index:'total', width:80,align:"right"}, {name:'note',index:'note', width:150, sortable:false} ], rowNum:10, rowList:[10,20,30], pager: '#pagersr', sortname: 'id', viewrecords: true, sortorder: "desc", caption:"Search Example", editurl:"someurl.php" }); $("#bsdata").click(function(){ jQuery("#search").jqGrid('searchGrid', {sopt:['cn','bw','eq','ne','lt','gt','ew']} ); }); </XMP> <b>PHP with MySQL</b> <XMP> ... $page = $_GET['page']; // get the requested page $limit = $_GET['rows']; // get how many rows we want to have into the grid $sidx = $_GET['sidx']; // get index row - i.e. user click to sort $sord = $_GET['sord']; // get the direction if(!$sidx) $sidx =1; // connect to the database $db = mysql_connect($dbhost, $dbuser, $dbpassword) or die("Connection Error: " . mysql_error()); mysql_select_db($database) or die("Error conecting to db."); $result = mysql_query("SELECT COUNT(*) AS count FROM invheader a, clients b WHERE a.client_id=b.client_id"); $row = mysql_fetch_array($result,MYSQL_ASSOC); $count = $row['count']; if( $count >0 ) { $total_pages = ceil($count/$limit); } else { $total_pages = 0; } if ($page > $total_pages) $page=$total_pages; $start = $limit*$page - $limit; // do not put $limit*($page - 1) $SQL = "SELECT a.id, a.invdate, b.name, a.amount,a.tax,a.total,a.note FROM invheader a, clients b WHERE a.client_id=b.client_id ORDER BY $sidx $sord LIMIT $start , $limit"; $result = mysql_query( $SQL ) or die("Couldn’t execute query.".mysql_error()); if ( stristr($_SERVER["HTTP_ACCEPT"],"application/xhtml+xml") ) { header("Content-type: application/xhtml+xml;charset=utf-8"); } else { header("Content-type: text/xml;charset=utf-8"); } $et = ">"; echo "<?xml version='1.0' encoding='utf-8'?$et\n"; echo "<rows>"; echo "<page>".$page."</page>"; echo "<total>".$total_pages."</total>"; echo "<records>".$count."</records>"; // be sure to put text data in CDATA while($row = mysql_fetch_array($result,MYSQL_ASSOC)) { echo "<row id='". $row[id]."'>"; echo "<cell>". $row[id]."</cell>"; echo "<cell>". $row[invdate]."</cell>"; echo "<cell><![CDATA[". $row[name]."]]></cell>"; echo "<cell>". $row[amount]."</cell>"; echo "<cell>". $row[tax]."</cell>"; echo "<cell>". $row[total]."</cell>"; echo "<cell><![CDATA[". $row[note]."]]></cell>"; echo "</row>"; } echo "</rows>"; ... </XMP> </div>
shipengyan/jqgrid_demo40
searching.html
HTML
mit
5,458
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.5.0_06) on Mon Jan 07 16:58:45 PST 2008 --> <TITLE> Serialized Form (com4j) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="Serialized Form (com4j)"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="index.html?serialized-form.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="serialized-form.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H1> Serialized Form</H1> </CENTER> <HR SIZE="4" NOSHADE> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="center"><FONT SIZE="+2"> <B>Package</B> <B>com4j</B></FONT></TH> </TR> </TABLE> <P> <A NAME="com4j.ActiveXControl"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="com4j/ActiveXControl.html" title="class in com4j">com4j.ActiveXControl</A> extends <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Canvas.html" title="class or interface in java.awt">Canvas</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <A NAME="serializedForm"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> autoDispose</H3> <PRE> boolean <B>autoDispose</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> nativePeer</H3> <PRE> int <B>nativePeer</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="com4j.ComException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="com4j/ComException.html" title="class in com4j">com4j.ComException</A> extends <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/RuntimeException.html" title="class or interface in java.lang">RuntimeException</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <A NAME="serializedForm"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> hresult</H3> <PRE> int <B>hresult</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> fileName</H3> <PRE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>fileName</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> line</H3> <PRE> int <B>line</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> errorInfo</H3> <PRE> <A HREF="com4j/ErrorInfo.html" title="class in com4j">ErrorInfo</A> <B>errorInfo</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="com4j.ErrorInfo"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="com4j/ErrorInfo.html" title="class in com4j">com4j.ErrorInfo</A> extends <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <A NAME="serializedForm"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> guid</H3> <PRE> <A HREF="com4j/GUID.html" title="class in com4j">GUID</A> <B>guid</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> source</H3> <PRE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>source</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> description</H3> <PRE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>description</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> helpFile</H3> <PRE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A> <B>helpFile</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> helpContext</H3> <PRE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Integer.html" title="class or interface in java.lang">Integer</A> <B>helpContext</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="com4j.ExecutionException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="com4j/ExecutionException.html" title="class in com4j">com4j.ExecutionException</A> extends <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/RuntimeException.html" title="class or interface in java.lang">RuntimeException</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="com4j.IllegalAnnotationException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="com4j/IllegalAnnotationException.html" title="class in com4j">com4j.IllegalAnnotationException</A> extends <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/RuntimeException.html" title="class or interface in java.lang">RuntimeException</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="com4j.Variant"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="com4j/Variant.html" title="class in com4j">com4j.Variant</A> extends <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Number.html" title="class or interface in java.lang">Number</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <A NAME="serializedForm"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> image</H3> <PRE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/nio/ByteBuffer.html" title="class or interface in java.nio">ByteBuffer</A> <B>image</B></PRE> <DL> <DD>The memory image of the VARIANT. <P> <DL> </DL> </DL> <P> <A NAME="com4j.Variant$1"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class com4j.Variant$1 extends <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="com4j.Wrapper$2"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class com4j.Wrapper$2 extends <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="index.html?serialized-form.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="serialized-form.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
mrihtar/vmwaretasks
Tools/Com4j/javadoc/serialized-form.html
HTML
mit
12,198
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_20) on Thu Nov 27 17:52:22 GMT 2014 --> <title>AxisLayout</title> <meta name="date" content="2014-11-27"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="AxisLayout"; } } catch(err) { } //--> var methods = {"i0":6}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../com/thomsonreuters/corptech/charts/package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../com/thomsonreuters/corptech/charts/Axis.html" title="class in com.thomsonreuters.corptech.charts"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../com/thomsonreuters/corptech/charts/BandSeries.html" title="class in com.thomsonreuters.corptech.charts"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?com/thomsonreuters/corptech/charts/AxisLayout.html" target="_top">Frames</a></li> <li><a href="AxisLayout.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">com.thomsonreuters.corptech.charts</div> <h2 title="Interface AxisLayout" class="title">Interface AxisLayout</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Known Implementing Classes:</dt> <dd><a href="../../../../com/thomsonreuters/corptech/charts/DataFittingAxisLayout.html" title="class in com.thomsonreuters.corptech.charts">DataFittingAxisLayout</a></dd> </dl> <hr> <br> <pre>public interface <span class="typeNameLabel">AxisLayout</span></pre> <div class="block"><p> An axis layout is used to calcualte the default data transform for an axis. It is provided with the enclosing range (min, max) of all series in the axis (assuming that all series use the same units). </p></div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code><a href="../../../../com/thomsonreuters/corptech/charts/DataTransform.html" title="class in com.thomsonreuters.corptech.charts">DataTransform</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/thomsonreuters/corptech/charts/AxisLayout.html#calculateTransform-com.thomsonreuters.corptech.charts.ContinuousAxis-com.thomsonreuters.corptech.charts.Range-double-com.thomsonreuters.corptech.charts.DataTransform-">calculateTransform</a></span>(<a href="../../../../com/thomsonreuters/corptech/charts/ContinuousAxis.html" title="class in com.thomsonreuters.corptech.charts">ContinuousAxis</a>&nbsp;axis, <a href="../../../../com/thomsonreuters/corptech/charts/Range.html" title="class in com.thomsonreuters.corptech.charts">Range</a>&nbsp;dataRange, double&nbsp;screenLength, <a href="../../../../com/thomsonreuters/corptech/charts/DataTransform.html" title="class in com.thomsonreuters.corptech.charts">DataTransform</a>&nbsp;renderTransform)</code> <div class="block"> Calculate layout transform for the axis</div> </td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="calculateTransform-com.thomsonreuters.corptech.charts.ContinuousAxis-com.thomsonreuters.corptech.charts.Range-double-com.thomsonreuters.corptech.charts.DataTransform-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>calculateTransform</h4> <pre><a href="../../../../com/thomsonreuters/corptech/charts/DataTransform.html" title="class in com.thomsonreuters.corptech.charts">DataTransform</a>&nbsp;calculateTransform(<a href="../../../../com/thomsonreuters/corptech/charts/ContinuousAxis.html" title="class in com.thomsonreuters.corptech.charts">ContinuousAxis</a>&nbsp;axis, <a href="../../../../com/thomsonreuters/corptech/charts/Range.html" title="class in com.thomsonreuters.corptech.charts">Range</a>&nbsp;dataRange, double&nbsp;screenLength, <a href="../../../../com/thomsonreuters/corptech/charts/DataTransform.html" title="class in com.thomsonreuters.corptech.charts">DataTransform</a>&nbsp;renderTransform)</pre> <div class="block"><p> Calculate layout transform for the axis </p></div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>axis</code> - Axis requiring layout</dd> <dd><code>dataRange</code> - Data range for all series associated with the axis</dd> <dd><code>screenLength</code> - Length of the axis, in screen co-ordinates</dd> <dd><code>renderTransform</code> - Current offset transform (i.e. transform caused by panning and zooming).</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>The result.</dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../com/thomsonreuters/corptech/charts/package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../com/thomsonreuters/corptech/charts/Axis.html" title="class in com.thomsonreuters.corptech.charts"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../com/thomsonreuters/corptech/charts/BandSeries.html" title="class in com.thomsonreuters.corptech.charts"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?com/thomsonreuters/corptech/charts/AxisLayout.html" target="_top">Frames</a></li> <li><a href="AxisLayout.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
AndroidT/TRCharts
Charts/Documentation/Java/com/thomsonreuters/corptech/charts/AxisLayout.html
HTML
apache-2.0
10,207
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.6.0_36) on Wed Jan 13 23:44:27 CST 2016 --> <title>ExecutorToAppMaster</title> <meta name="date" content="2016-01-13"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="ExecutorToAppMaster"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../io/gearpump/streaming/DAG$.html" title="class in io.gearpump.streaming"><span class="strong">PREV CLASS</span></a></li> <li><a href="../../../io/gearpump/streaming/ExecutorToAppMaster.MessageLoss.html" title="class in io.gearpump.streaming"><span class="strong">NEXT CLASS</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?io/gearpump/streaming/ExecutorToAppMaster.html" target="_top">FRAMES</a></li> <li><a href="ExecutorToAppMaster.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>SUMMARY:&nbsp;</li> <li><a href="#nested_class_summary">NESTED</a>&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">CONSTR</a>&nbsp;|&nbsp;</li> <li><a href="#methods_inherited_from_class_java.lang.Object">METHOD</a></li> </ul> <ul class="subNavList"> <li>DETAIL:&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">CONSTR</a>&nbsp;|&nbsp;</li> <li>METHOD</li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <p class="subTitle">io.gearpump.streaming</p> <h2 title="Class ExecutorToAppMaster" class="title">Class ExecutorToAppMaster</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>io.gearpump.streaming.ExecutorToAppMaster</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <strong>ExecutorToAppMaster</strong> extends java.lang.Object</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== NESTED CLASS SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="nested_class_summary"> <!-- --> </a> <h3>Nested Class Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation"> <caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/ExecutorToAppMaster.MessageLoss.html" title="class in io.gearpump.streaming">ExecutorToAppMaster.MessageLoss</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/ExecutorToAppMaster.MessageLoss$.html" title="class in io.gearpump.streaming">ExecutorToAppMaster.MessageLoss$</a></strong></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/ExecutorToAppMaster.RegisterExecutor.html" title="class in io.gearpump.streaming">ExecutorToAppMaster.RegisterExecutor</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/ExecutorToAppMaster.RegisterExecutor$.html" title="class in io.gearpump.streaming">ExecutorToAppMaster.RegisterExecutor$</a></strong></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/ExecutorToAppMaster.RegisterTask.html" title="class in io.gearpump.streaming">ExecutorToAppMaster.RegisterTask</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/ExecutorToAppMaster.RegisterTask$.html" title="class in io.gearpump.streaming">ExecutorToAppMaster.RegisterTask$</a></strong></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../io/gearpump/streaming/ExecutorToAppMaster.html#ExecutorToAppMaster()">ExecutorToAppMaster</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="ExecutorToAppMaster()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>ExecutorToAppMaster</h4> <pre>public&nbsp;ExecutorToAppMaster()</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../io/gearpump/streaming/DAG$.html" title="class in io.gearpump.streaming"><span class="strong">PREV CLASS</span></a></li> <li><a href="../../../io/gearpump/streaming/ExecutorToAppMaster.MessageLoss.html" title="class in io.gearpump.streaming"><span class="strong">NEXT CLASS</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?io/gearpump/streaming/ExecutorToAppMaster.html" target="_top">FRAMES</a></li> <li><a href="ExecutorToAppMaster.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>SUMMARY:&nbsp;</li> <li><a href="#nested_class_summary">NESTED</a>&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">CONSTR</a>&nbsp;|&nbsp;</li> <li><a href="#methods_inherited_from_class_java.lang.Object">METHOD</a></li> </ul> <ul class="subNavList"> <li>DETAIL:&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">CONSTR</a>&nbsp;|&nbsp;</li> <li>METHOD</li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
stanleyxu2005/gearpump.github.io
releases/0.7.4/api/java/io/gearpump/streaming/ExecutorToAppMaster.html
HTML
apache-2.0
9,670
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0) on Sat Aug 25 00:26:57 EDT 2007 --> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE> org.apache.log4j.or.jms Class Hierarchy (Apache Log4j 1.2.15 API) </TITLE> <META NAME="date" CONTENT="2007-08-25"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.apache.log4j.or.jms Class Hierarchy (Apache Log4j 1.2.15 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/log4j/or/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/log4j/or/sax/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/log4j/or/jms/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> Hierarchy For Package org.apache.log4j.or.jms </H2> </CENTER> <DL> <DT><B>Package Hierarchies:</B><DD><A HREF="../../../../../overview-tree.html">All Packages</A></DL> <HR> <H2> Class Hierarchy </H2> <UL> <LI TYPE="circle">java.lang.Object<UL> <LI TYPE="circle">org.apache.log4j.or.jms.<A HREF="../../../../../org/apache/log4j/or/jms/MessageRenderer.html" title="class in org.apache.log4j.or.jms"><B>MessageRenderer</B></A> (implements org.apache.log4j.or.<A HREF="../../../../../org/apache/log4j/or/ObjectRenderer.html" title="interface in org.apache.log4j.or">ObjectRenderer</A>) </UL> </UL> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/log4j/or/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/log4j/or/sax/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/log4j/or/jms/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &copy; 1999-2007 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved. </BODY> </HTML>
stumoodie/PathwayEditor
libs/apache-log4j-1.2.15/site/apidocs/org/apache/log4j/or/jms/package-tree.html
HTML
apache-2.0
6,516
<!-- HTML header for doxygen 1.8.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"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.9.1"/> <title>DMA Friends: Class Members - Functions</title> <!--<link href="tabs.css" rel="stylesheet" type="text/css"/>--> <!--<script type="text/javascript" src="jquery.js"></script>--> <script type="text/javascript" src="dynsections.js"></script> <link href="bootstrap3/css/bootstrap.min.css" rel="stylesheet"> <script src="bootstrap3/js/jquery-2.1.1.min.js"></script> <script src="bootstrap3/js/bootstrap.min.js"></script> <script type="text/javascript" src="doxy-boot.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">DMA Friends &#160;<span id="projectnumber">2.0</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.9.1 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li class="current"><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="navrow3" class="tabs2"> <ul class="tablist"> <li><a href="functions.html"><span>All</span></a></li> <li class="current"><a href="functions_func.html"><span>Functions</span></a></li> <li><a href="functions_vars.html"><span>Variables</span></a></li> </ul> </div> <div id="navrow4" class="tabs3"> <ul class="tablist"> <li><a href="functions_func.html#index__"><span>_</span></a></li> <li><a href="functions_func_a.html#index_a"><span>a</span></a></li> <li><a href="functions_func_b.html#index_b"><span>b</span></a></li> <li><a href="functions_func_c.html#index_c"><span>c</span></a></li> <li><a href="functions_func_d.html#index_d"><span>d</span></a></li> <li><a href="functions_func_e.html#index_e"><span>e</span></a></li> <li><a href="functions_func_f.html#index_f"><span>f</span></a></li> <li><a href="functions_func_g.html#index_g"><span>g</span></a></li> <li><a href="functions_func_h.html#index_h"><span>h</span></a></li> <li><a href="functions_func_i.html#index_i"><span>i</span></a></li> <li><a href="functions_func_j.html#index_j"><span>j</span></a></li> <li><a href="functions_func_l.html#index_l"><span>l</span></a></li> <li><a href="functions_func_m.html#index_m"><span>m</span></a></li> <li class="current"><a href="functions_func_n.html#index_n"><span>n</span></a></li> <li><a href="functions_func_o.html#index_o"><span>o</span></a></li> <li><a href="functions_func_p.html#index_p"><span>p</span></a></li> <li><a href="functions_func_r.html#index_r"><span>r</span></a></li> <li><a href="functions_func_s.html#index_s"><span>s</span></a></li> <li><a href="functions_func_t.html#index_t"><span>t</span></a></li> <li><a href="functions_func_u.html#index_u"><span>u</span></a></li> <li><a href="functions_func_v.html#index_v"><span>v</span></a></li> <li><a href="functions_func_w.html#index_w"><span>w</span></a></li> </ul> </div> </div><!-- top --> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="contents"> &#160; <h3><a class="anchor" id="index_n"></a>- n -</h3><ul> <li>normalizePhone() : <a class="el" href="dc/d26/classDMA_1_1Friends_1_1Commands_1_1NormalizeUserData.html#a19288b02592b7e02e667651f3de20d2a">DMA\Friends\Commands\NormalizeUserData</a> </li> <li>normalizeWhiteSpace() : <a class="el" href="d2/ddc/classDMA_1_1Friends_1_1Classes_1_1Notifications_1_1Inputs_1_1InputRegex.html#a87c7a6e72f48818f6465383ef4cad906">DMA\Friends\Classes\Notifications\Inputs\InputRegex</a> </li> </ul> </div><!-- contents --> <!-- HTML footer for doxygen 1.8.8--> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Aug 11 2015 18:30:27 for DMA Friends by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.9.1 </small></address> </body> </html>
DallasMuseumArt/OctoberFriends
docs/html/functions_func_n.html
HTML
apache-2.0
6,690
<!DOCTYPE html> <html> <!-- This is an example app that demonstrates how to control an Nordic nRF518822-EK evaluation kit using BLE (Bluetooth Low Energy). --> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, user-scalable=no initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" /> <title>Nordic Semiconductor nRF51822-EK BLE LED On/Off</title> <style> @import 'ui/css/evothings-app.css'; </style> <script> // Redirect console.log to Evothings Workbench. if (window.hyper && window.hyper.log) { console.log = hyper.log } </script> <script src="cordova.js"></script> <script src="libs/jquery/jquery.js"></script> <script src="libs/evothings/evothings.js"></script> <script src="libs/evothings/nordic-nRF51822-ble/nordic-nRF51822-ble.js"></script> </head> <body ontouchstart=""><!-- ontouchstart="" enables low-delay CSS transitions. --> <header> <button class="back" onclick="history.back()"> <img src="ui/images/arrow-left.svg" /> </button> <img class="logotype" src="ui/images/logo.svg" alt="Evothings" /> <!--<button class="menu" onclick=""><img src="ui/images/menu.svg" /></button>--> </header> <h1>Nordic Semiconductor nRF51822-EK BLE LED On/Off</h1> <p><img src="nRF51822EK_Image.jpg" style="max-height:20%;" /></p> <p id="info">Initializing...</p> <button id="button-connect" class="blue wide" onclick="app.connectOrDisconnect()">CONNECT</button> <br /> <button class="green wide" onclick="app.ledOn()">LED ON</button> <br /> <button class="red wide" onclick="app.ledOff()">LED OFF</button> <p id="data">Not connected...</p> <script> console.log('Hello World!'); // Short name for Nordic BLE library. var nordicble = evothings.nordicble; // Application object. var app = {}; // Connected device. app.device = null; // Turn on LED. app.ledOn = function() { app.device && app.device.writeDataArray(new Uint8Array([1])); }; // Turn off LED. app.ledOff = function() { app.device && app.device.writeDataArray(new Uint8Array([0])); }; app.showMessage = function(info) { $('#info').html(info); }; app.showData = function(data) { $('#data').html(data); }; // Called when BLE and other native functions are available. app.onDeviceReady = function() { app.showMessage('Touch the CONNECT button to begin.'); }; app.connectOrDisconnect = function() { if (app.device == null) { app.connect(); $('#button-connect').html('DISCONNECT'); } else { nordicble.close(); app.device = null; app.showMessage('Disconnected.'); $('#button-connect').html('CONNECT'); } }; app.connect = function() { //nordicble.close(); app.showMessage('Scanning...'); nordicble.connect( 'LedButtonDemo', // BLE name function(device) { app.device = device; app.showMessage('Connected! Press ON/OFF buttons.'); app.showData('Press Button 1 on the Nordic Eval Kit to change this text.'); device.setNotification(function(data) { app.showData('Button state: '+new Uint8Array(data)[0]); }); }, function(errorCode) { app.showMessage('Connect error: ' + errorCode + '.'); }); }; document.addEventListener( 'deviceready', function() { evothings.scriptsLoaded(app.onDeviceReady) }, false); </script> </body> </html>
nnegrey/evothings-examples
examples/nordic-nRF51822-ek-ble/index.html
HTML
apache-2.0
3,476
<!DOCTYPE html> <html> <head> <title>Leaflet debug page</title> <link rel="stylesheet" href="../../dist/leaflet.css" /> <link rel="stylesheet" href="../css/screen.css" /> <style> #map { width: 800px; height: 500px; } .info { padding: 6px 8px; font: 14px/16px Arial, Helvetica, sans-serif; background: white; background: rgba(255,255,255,0.8); box-shadow: 0 0 15px rgba(0,0,0,0.2); border-radius: 5px; } .info h4 { margin: 0 0 5px; color: #777; } .legend { text-align: left; line-height: 18px; color: #555; } .legend i { width: 18px; height: 18px; float: left; margin-right: 8px; opacity: 0.7; } </style> <script type="text/javascript" src="../../build/deps.js"></script> <script src="../leaflet-include.js"></script> </head> <body> <div id="map"></div> <script type="text/javascript" src="us-states.js"></script> <script type="text/javascript"> var map = L.map('map').setView([37.8, -96], 4); var osm = L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', { attribution: '&copy; <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors', }).addTo(map); // control that shows state info on hover var info = L.control(); info.onAdd = function (map) { this._div = L.DomUtil.create('div', 'info'); this.update(); return this._div; }; info.update = function (props) { this._div.innerHTML = '<h4>US Population Density</h4>' + (props ? '<b>' + props.name + '</b><br />' + props.density + ' people / mi<sup>2</sup>' : 'Hover over a state'); }; info.addTo(map); // get color depending on population density value function getColor(d) { return d > 1000 ? '#800026' : d > 500 ? '#BD0026' : d > 200 ? '#E31A1C' : d > 100 ? '#FC4E2A' : d > 50 ? '#FD8D3C' : d > 20 ? '#FEB24C' : d > 10 ? '#FED976' : '#FFEDA0'; } function style(feature) { return { weight: 2, opacity: 1, color: 'white', dashArray: '3', fillOpacity: 0.7, fillColor: getColor(feature.properties.density) }; } function highlightFeature(e) { var layer = e.target; layer.setStyle({ weight: 5, color: '#666', dashArray: '', fillOpacity: 0.7 }); if (!L.Browser.ie) { layer.bringToFront(); } info.update(layer.feature.properties); } var geojson; function resetHighlight(e) { geojson.resetStyle(e.target); info.update(); } function zoomToFeature(e) { map.fitBounds(e.target.getBounds()); } function onEachFeature(feature, layer) { layer.on({ mouseover: highlightFeature, mouseout: resetHighlight, click: zoomToFeature }); } geojson = L.geoJson(statesData, { style: style, onEachFeature: onEachFeature, attribution: 'Population data &copy; <a href="http://census.gov/">US Census Bureau</a>' }); geojson.addTo(map); var legend = L.control({position: 'bottomright'}); legend.onAdd = function (map) { var div = L.DomUtil.create('div', 'info legend'), grades = [0, 10, 20, 50, 100, 200, 500, 1000], labels = [], from, to; for (var i = 0; i < grades.length; i++) { from = grades[i]; to = grades[i + 1]; labels.push( '<i style="background:' + getColor(from + 1) + '"></i> ' + from + (to ? '&ndash;' + to : '+')); } div.innerHTML = labels.join('<br>'); return div; }; legend.addTo(map); </script> </body> </html>
neiljones12/CSE_6331-Spatial_Database_Management_System-Map_Of_University_Of_Texas_At_Arlington
node_modules/leaflet/debug/vector/geojson.html
HTML
apache-2.0
3,481
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_31) on Fri Oct 05 17:19:53 PDT 2012 --> <TITLE> Uses of Class org.apache.hadoop.examples.MultiFileWordCount.CombineFileLineRecordReader (Hadoop 0.20.2-cdh3u5 API) </TITLE> <META NAME="date" CONTENT="2012-10-05"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.hadoop.examples.MultiFileWordCount.CombineFileLineRecordReader (Hadoop 0.20.2-cdh3u5 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/hadoop/examples/MultiFileWordCount.CombineFileLineRecordReader.html" title="class in org.apache.hadoop.examples"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/examples//class-useMultiFileWordCount.CombineFileLineRecordReader.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MultiFileWordCount.CombineFileLineRecordReader.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.hadoop.examples.MultiFileWordCount.CombineFileLineRecordReader</B></H2> </CENTER> No usage of org.apache.hadoop.examples.MultiFileWordCount.CombineFileLineRecordReader <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/hadoop/examples/MultiFileWordCount.CombineFileLineRecordReader.html" title="class in org.apache.hadoop.examples"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/examples//class-useMultiFileWordCount.CombineFileLineRecordReader.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MultiFileWordCount.CombineFileLineRecordReader.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &copy; 2009 The Apache Software Foundation </BODY> </HTML>
YuMatsuzawa/HadoopEclipseProject
hadoop-0.20.2-cdh3u5/docs/api/org/apache/hadoop/examples/class-use/MultiFileWordCount.CombineFileLineRecordReader.html
HTML
apache-2.0
6,360
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_20) on Wed Mar 30 21:34:38 CST 2011 --> <TITLE> FSDataOutputStream (Facebook's realtime distributed database, powered by Apache Hadoop based on 0.20-append branch 0.20.1-dev API) </TITLE> <META NAME="date" CONTENT="2011-03-30"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="FSDataOutputStream (Facebook's realtime distributed database, powered by Apache Hadoop based on 0.20-append branch 0.20.1-dev API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/FSDataOutputStream.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../org/apache/hadoop/fs/FSDataInputStream.html" title="class in org.apache.hadoop.fs"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/hadoop/fs/FSError.html" title="class in org.apache.hadoop.fs"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/apache/hadoop/fs/FSDataOutputStream.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="FSDataOutputStream.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_java.io.DataOutputStream">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.apache.hadoop.fs</FONT> <BR> Class FSDataOutputStream</H2> <PRE> java.lang.Object <IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">java.io.OutputStream <IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">java.io.FilterOutputStream <IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">java.io.DataOutputStream <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.hadoop.fs.FSDataOutputStream</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD>java.io.Closeable, java.io.DataOutput, java.io.Flushable, <A HREF="../../../../org/apache/hadoop/fs/Syncable.html" title="interface in org.apache.hadoop.fs">Syncable</A></DD> </DL> <HR> <DL> <DT><PRE>public class <B>FSDataOutputStream</B><DT>extends java.io.DataOutputStream<DT>implements <A HREF="../../../../org/apache/hadoop/fs/Syncable.html" title="interface in org.apache.hadoop.fs">Syncable</A></DL> </PRE> <P> Utility that wraps a <CODE>OutputStream</CODE> in a <CODE>DataOutputStream</CODE>, buffers output through a <CODE>BufferedOutputStream</CODE> and creates a checksum file. <P> <P> <HR> <P> <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Field Summary</B></FONT></TH> </TR> </TABLE> &nbsp;<A NAME="fields_inherited_from_class_java.io.DataOutputStream"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Fields inherited from class java.io.DataOutputStream</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>written</CODE></TD> </TR> </TABLE> &nbsp;<A NAME="fields_inherited_from_class_java.io.FilterOutputStream"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Fields inherited from class java.io.FilterOutputStream</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>out</CODE></TD> </TR> </TABLE> &nbsp; <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/apache/hadoop/fs/FSDataOutputStream.html#FSDataOutputStream(java.io.OutputStream)">FSDataOutputStream</A></B>(java.io.OutputStream&nbsp;out)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/apache/hadoop/fs/FSDataOutputStream.html#FSDataOutputStream(java.io.OutputStream, org.apache.hadoop.fs.FileSystem.Statistics)">FSDataOutputStream</A></B>(java.io.OutputStream&nbsp;out, <A HREF="../../../../org/apache/hadoop/fs/FileSystem.Statistics.html" title="class in org.apache.hadoop.fs">FileSystem.Statistics</A>&nbsp;stats)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/apache/hadoop/fs/FSDataOutputStream.html#FSDataOutputStream(java.io.OutputStream, org.apache.hadoop.fs.FileSystem.Statistics, long)">FSDataOutputStream</A></B>(java.io.OutputStream&nbsp;out, <A HREF="../../../../org/apache/hadoop/fs/FileSystem.Statistics.html" title="class in org.apache.hadoop.fs">FileSystem.Statistics</A>&nbsp;stats, long&nbsp;startPosition)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/hadoop/fs/FSDataOutputStream.html#close()">close</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;long</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/hadoop/fs/FSDataOutputStream.html#getPos()">getPos</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.io.OutputStream</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/hadoop/fs/FSDataOutputStream.html#getWrappedStream()">getWrappedStream</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/hadoop/fs/FSDataOutputStream.html#sync()">sync</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Synchronize all buffer with the underlying devices.</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.io.DataOutputStream"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.io.DataOutputStream</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>flush, size, write, write, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTF</CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.io.FilterOutputStream"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.io.FilterOutputStream</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>write</CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.io.DataOutput"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from interface java.io.DataOutput</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>write</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="FSDataOutputStream(java.io.OutputStream)"><!-- --></A><H3> FSDataOutputStream</H3> <PRE> <FONT SIZE="-1">@Deprecated </FONT>public <B>FSDataOutputStream</B>(java.io.OutputStream&nbsp;out) throws java.io.IOException</PRE> <DL> <DD><B>Deprecated.</B>&nbsp; <P> <DL> <DT><B>Throws:</B> <DD><CODE>java.io.IOException</CODE></DL> </DL> <HR> <A NAME="FSDataOutputStream(java.io.OutputStream, org.apache.hadoop.fs.FileSystem.Statistics)"><!-- --></A><H3> FSDataOutputStream</H3> <PRE> public <B>FSDataOutputStream</B>(java.io.OutputStream&nbsp;out, <A HREF="../../../../org/apache/hadoop/fs/FileSystem.Statistics.html" title="class in org.apache.hadoop.fs">FileSystem.Statistics</A>&nbsp;stats) throws java.io.IOException</PRE> <DL> <DL> <DT><B>Throws:</B> <DD><CODE>java.io.IOException</CODE></DL> </DL> <HR> <A NAME="FSDataOutputStream(java.io.OutputStream, org.apache.hadoop.fs.FileSystem.Statistics, long)"><!-- --></A><H3> FSDataOutputStream</H3> <PRE> public <B>FSDataOutputStream</B>(java.io.OutputStream&nbsp;out, <A HREF="../../../../org/apache/hadoop/fs/FileSystem.Statistics.html" title="class in org.apache.hadoop.fs">FileSystem.Statistics</A>&nbsp;stats, long&nbsp;startPosition) throws java.io.IOException</PRE> <DL> <DL> <DT><B>Throws:</B> <DD><CODE>java.io.IOException</CODE></DL> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="getPos()"><!-- --></A><H3> getPos</H3> <PRE> public long <B>getPos</B>() throws java.io.IOException</PRE> <DL> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Throws:</B> <DD><CODE>java.io.IOException</CODE></DL> </DD> </DL> <HR> <A NAME="close()"><!-- --></A><H3> close</H3> <PRE> public void <B>close</B>() throws java.io.IOException</PRE> <DL> <DD><DL> <DT><B>Specified by:</B><DD><CODE>close</CODE> in interface <CODE>java.io.Closeable</CODE><DT><B>Overrides:</B><DD><CODE>close</CODE> in class <CODE>java.io.FilterOutputStream</CODE></DL> </DD> <DD><DL> <DT><B>Throws:</B> <DD><CODE>java.io.IOException</CODE></DL> </DD> </DL> <HR> <A NAME="getWrappedStream()"><!-- --></A><H3> getWrappedStream</H3> <PRE> public java.io.OutputStream <B>getWrappedStream</B>()</PRE> <DL> <DD><DL> </DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="sync()"><!-- --></A><H3> sync</H3> <PRE> public void <B>sync</B>() throws java.io.IOException</PRE> <DL> <DD>Synchronize all buffer with the underlying devices. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/apache/hadoop/fs/Syncable.html#sync()">sync</A></CODE> in interface <CODE><A HREF="../../../../org/apache/hadoop/fs/Syncable.html" title="interface in org.apache.hadoop.fs">Syncable</A></CODE></DL> </DD> <DD><DL> <DT><B>Throws:</B> <DD><CODE>java.io.IOException</CODE></DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/FSDataOutputStream.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../org/apache/hadoop/fs/FSDataInputStream.html" title="class in org.apache.hadoop.fs"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/hadoop/fs/FSError.html" title="class in org.apache.hadoop.fs"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/apache/hadoop/fs/FSDataOutputStream.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="FSDataOutputStream.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_java.io.DataOutputStream">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> This release is based on the Facebook's version of Hadoop.<br>Copyright &copy; 2009 The Apache Software Foundation. </BODY> </HTML>
submergerock/avatar-hadoop
docs/api/org/apache/hadoop/fs/FSDataOutputStream.html
HTML
apache-2.0
18,288
<!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"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.14"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>Cutlass: cutlass::gemm::IgemmGlobalStoreTransformer&lt; InputScalar_, OutputFragment_ &gt; Struct Template Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script><script type="text/javascript" async src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">Cutlass </div> <div id="projectbrief">CUDA Templates for Linear Algebra Subroutines and Solvers</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.14 --> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ var searchBox = new SearchBox("searchBox", "search",false,'Search'); /* @license-end */ </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); /* @license-end */</script> <div id="main-nav"></div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespacecutlass.html">cutlass</a></li><li class="navelem"><a class="el" href="namespacecutlass_1_1gemm.html">gemm</a></li><li class="navelem"><a class="el" href="structcutlass_1_1gemm_1_1IgemmGlobalStoreTransformer.html">IgemmGlobalStoreTransformer</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-types">Public Types</a> &#124; <a href="structcutlass_1_1gemm_1_1IgemmGlobalStoreTransformer-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">cutlass::gemm::IgemmGlobalStoreTransformer&lt; InputScalar_, OutputFragment_ &gt; Struct Template Reference</div> </div> </div><!--header--> <div class="contents"> <p><code>#include &lt;<a class="el" href="igemm__epilogue_8h_source.html">igemm_epilogue.h</a>&gt;</code></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a> Public Types</h2></td></tr> <tr class="memitem:a98aefa95117dbfdf2e577890318a6c13"><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="structcutlass_1_1Convert.html">Convert</a>&lt; <a class="el" href="structcutlass_1_1Fragment.html">Fragment</a>&lt; InputScalar_, OutputFragment_::kElements &gt;, OutputFragment_ &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structcutlass_1_1gemm_1_1IgemmGlobalStoreTransformer.html#a98aefa95117dbfdf2e577890318a6c13">Transformer</a></td></tr> <tr class="separator:a98aefa95117dbfdf2e577890318a6c13"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <h2 class="groupheader">Member Typedef Documentation</h2> <a id="a98aefa95117dbfdf2e577890318a6c13"></a> <h2 class="memtitle"><span class="permalink"><a href="#a98aefa95117dbfdf2e577890318a6c13">&#9670;&nbsp;</a></span>Transformer</h2> <div class="memitem"> <div class="memproto"> <div class="memtemplate"> template&lt;typename InputScalar_, typename OutputFragment_&gt; </div> <table class="memname"> <tr> <td class="memname">typedef <a class="el" href="structcutlass_1_1Convert.html">Convert</a>&lt;<a class="el" href="structcutlass_1_1Fragment.html">Fragment</a>&lt;InputScalar_, OutputFragment_::kElements&gt;, OutputFragment_&gt; <a class="el" href="structcutlass_1_1gemm_1_1IgemmGlobalStoreTransformer.html">cutlass::gemm::IgemmGlobalStoreTransformer</a>&lt; InputScalar_, OutputFragment_ &gt;::<a class="el" href="structcutlass_1_1gemm_1_1IgemmGlobalStoreTransformer.html#a98aefa95117dbfdf2e577890318a6c13">Transformer</a></td> </tr> </table> </div><div class="memdoc"> </div> </div> <hr/>The documentation for this struct was generated from the following file:<ul> <li><a class="el" href="igemm__epilogue_8h_source.html">igemm_epilogue.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Fri Oct 26 2018 14:53:40 for Cutlass by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.14 </small></address> </body> </html>
mlperf/training_results_v0.5
v0.5.0/nvidia/submission/code/translation/pytorch/cutlass/docs/structcutlass_1_1gemm_1_1IgemmGlobalStoreTransformer.html
HTML
apache-2.0
6,000
<!-- #Copyright 2012 #Ubiquitous Knowledge Processing (UKP) Lab and FG Language Technology #Technische Universität Darmstadt # #Licensed under the Apache License, Version 2.0 (the "License"); #you may not use this file except in compliance with the License. #You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # #Unless required by applicable law or agreed to in writing, software #distributed under the License is distributed on an "AS IS" BASIS, #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #See the License for the specific language governing permissions and #limitations under the License. --> <html xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd"> <head> <wicket:head> <link rel="stylesheet" type="text/css" href="css/kendo/kendo.common.min.css" media="all" /> <link rel="stylesheet" type="text/css" href="css/kendo/kendo.default.min.css" media="all" /> <link rel="stylesheet" href="css/style.css" type="text/css" /> </wicket:head> </head> <body> <form wicket:id="exportForm"> <div wicket:id="feedbackPanel"></div> <table> <tr> <td><span wicket:id="automated"></span></td> <td><select wicket:id="documentChoice"></select></td> </tr> <tr> <td>Writable Formats: <select wicket:id="writeableFormats"> </select> </td> <td><input type="button" wicket:id="export" value="Export" /> </td> </tr> <tr> <td><a wicket:id="close"> <button>Close</button> </a></td> </tr> </table> </form> </body> </html>
debovis/webanno
webanno-webapp/src/main/java/de/tudarmstadt/ukp/clarin/webanno/webapp/dialog/ExportModalWindowPage.html
HTML
apache-2.0
1,568
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_45) on Thu Nov 13 21:21:58 UTC 2014 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> org.apache.hadoop (Apache Hadoop Main 2.6.0 API) </TITLE> <META NAME="date" CONTENT="2014-11-13"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../../org/apache/hadoop/package-summary.html" target="classFrame">org.apache.hadoop</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Exceptions</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="HadoopIllegalArgumentException.html" title="class in org.apache.hadoop" target="classFrame">HadoopIllegalArgumentException</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
SAT-Hadoop/hadoop-2.6.0
share/doc/hadoop/api/org/apache/hadoop/package-frame.html
HTML
apache-2.0
994
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct abstract_relative_tail_variate_means</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.tail_variate_means_hpp" title="Header &lt;boost/accumulators/statistics/tail_variate_means.hpp&gt;"> <link rel="prev" href="abstract_absol_idp33507256.html" title="Struct abstract_absolute_tail_variate_means"> <link rel="next" href="../as_feature_tag_idp33488056.html" title="Struct template as_feature&lt;tag::tail_variate_means&lt; LeftRight, VariateType, VariateTag &gt;(absolute)&gt;"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td> <td align="center"><a href="../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="abstract_absol_idp33507256.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.tail_variate_means_hpp"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../as_feature_tag_idp33488056.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.accumulators.tag.abstract_relat_idp33507784"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct abstract_relative_tail_variate_means</span></h2> <p>boost::accumulators::tag::abstract_relative_tail_variate_means</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.tail_variate_means_hpp" title="Header &lt;boost/accumulators/statistics/tail_variate_means.hpp&gt;">boost/accumulators/statistics/tail_variate_means.hpp</a>&gt; </span> <span class="keyword">struct</span> <a class="link" href="abstract_relat_idp33507784.html" title="Struct abstract_relative_tail_variate_means">abstract_relative_tail_variate_means</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">accumulators</span><span class="special">::</span><span class="identifier">depends_on</span><span class="special">&lt;</span><span class="special">&gt;</span> <span class="special">{</span> <span class="special">}</span><span class="special">;</span></pre></div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2005, 2006 Eric Niebler<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="abstract_absol_idp33507256.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.tail_variate_means_hpp"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../as_feature_tag_idp33488056.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
NixaSoftware/CVis
venv/bin/doc/html/boost/accumulators/tag/abstract_relat_idp33507784.html
HTML
apache-2.0
4,624
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>HSSFPatriarch (POI API Documentation)</title> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="HSSFPatriarch (POI API Documentation)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/HSSFPatriarch.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPalette.html" title="class in org.apache.poi.hssf.usermodel"><span class="strong">PREV CLASS</span></a></li> <li><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatternFormatting.html" title="class in org.apache.poi.hssf.usermodel"><span class="strong">NEXT CLASS</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/poi/hssf/usermodel/HSSFPatriarch.html" target="_top">FRAMES</a></li> <li><a href="HSSFPatriarch.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>SUMMARY:&nbsp;</li> <li>NESTED&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li>CONSTR&nbsp;|&nbsp;</li> <li><a href="#method_summary">METHOD</a></li> </ul> <ul class="subNavList"> <li>DETAIL:&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li>CONSTR&nbsp;|&nbsp;</li> <li><a href="#method_detail">METHOD</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <p class="subTitle">org.apache.poi.hssf.usermodel</p> <h2 title="Class HSSFPatriarch" class="title">Class HSSFPatriarch</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.apache.poi.hssf.usermodel.HSSFPatriarch</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.lang.Iterable&lt;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShape.html" title="class in org.apache.poi.hssf.usermodel">HSSFShape</a>&gt;, <a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html" title="interface in org.apache.poi.hssf.usermodel">HSSFShapeContainer</a>, <a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html" title="interface in org.apache.poi.ss.usermodel">Drawing</a></dd> </dl> <hr> <br> <pre>public final class <strong>HSSFPatriarch</strong> extends java.lang.Object implements <a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html" title="interface in org.apache.poi.hssf.usermodel">HSSFShapeContainer</a>, <a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html" title="interface in org.apache.poi.ss.usermodel">Drawing</a></pre> <div class="block">The patriarch is the toplevel container for shapes in a sheet. It does little other than act as a container for other shapes and groups.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../../../org/apache/poi/hssf/record/EscherAggregate.html" title="class in org.apache.poi.hssf.record">EscherAggregate</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#_getBoundAggregate()">_getBoundAggregate</a></strong>()</code> <div class="block">Returns the aggregate escher record we're bound to</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#addShape(org.apache.poi.hssf.usermodel.HSSFShape)">addShape</a></strong>(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShape.html" title="class in org.apache.poi.hssf.usermodel">HSSFShape</a>&nbsp;shape)</code> <div class="block">add a shape to this drawing</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#clear()">clear</a></strong>()</code> <div class="block">remove all shapes inside patriarch</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#containsChart()">containsChart</a></strong>()</code> <div class="block">Does this HSSFPatriarch contain a chart? (Technically a reference to a chart, since they get stored in a different block of records) FIXME - detect chart in all cases (only seems to work on some charts so far)</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#countOfAllChildren()">countOfAllChildren</a></strong>()</code> <div class="block">Total count of all children and their children's children.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#createAnchor(int, int, int, int, int, int, int, int)">createAnchor</a></strong>(int&nbsp;dx1, int&nbsp;dy1, int&nbsp;dx2, int&nbsp;dy2, int&nbsp;col1, int&nbsp;row1, int&nbsp;col2, int&nbsp;row2)</code> <div class="block">Creates a new client anchor and sets the top-left and bottom-right coordinates of the anchor.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFComment.html" title="class in org.apache.poi.hssf.usermodel">HSSFComment</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#createCellComment(org.apache.poi.ss.usermodel.ClientAnchor)">createCellComment</a></strong>(<a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a>&nbsp;anchor)</code> <div class="block">Creates a comment.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/poi/ss/usermodel/Chart.html" title="interface in org.apache.poi.ss.usermodel">Chart</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#createChart(org.apache.poi.ss.usermodel.ClientAnchor)">createChart</a></strong>(<a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a>&nbsp;anchor)</code> <div class="block">Creates a chart.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFComment.html" title="class in org.apache.poi.hssf.usermodel">HSSFComment</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#createComment(org.apache.poi.hssf.usermodel.HSSFAnchor)">createComment</a></strong>(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFAnchor</a>&nbsp;anchor)</code> <div class="block">Constructs a cell comment.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeGroup.html" title="class in org.apache.poi.hssf.usermodel">HSSFShapeGroup</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#createGroup(org.apache.poi.hssf.usermodel.HSSFClientAnchor)">createGroup</a></strong>(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;anchor)</code> <div class="block">Creates a new group record stored under this patriarch.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFObjectData.html" title="class in org.apache.poi.hssf.usermodel">HSSFObjectData</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#createObjectData(org.apache.poi.hssf.usermodel.HSSFClientAnchor, int, int)">createObjectData</a></strong>(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;anchor, int&nbsp;storageId, int&nbsp;pictureIndex)</code> <div class="block">Adds a new OLE Package Shape</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPicture.html" title="class in org.apache.poi.hssf.usermodel">HSSFPicture</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#createPicture(org.apache.poi.ss.usermodel.ClientAnchor, int)">createPicture</a></strong>(<a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a>&nbsp;anchor, int&nbsp;pictureIndex)</code> <div class="block">Creates a picture.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPicture.html" title="class in org.apache.poi.hssf.usermodel">HSSFPicture</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#createPicture(org.apache.poi.hssf.usermodel.HSSFClientAnchor, int)">createPicture</a></strong>(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;anchor, int&nbsp;pictureIndex)</code> <div class="block">Creates a picture.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPolygon.html" title="class in org.apache.poi.hssf.usermodel">HSSFPolygon</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#createPolygon(org.apache.poi.hssf.usermodel.HSSFClientAnchor)">createPolygon</a></strong>(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;anchor)</code> <div class="block">Creates a polygon</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFSimpleShape.html" title="class in org.apache.poi.hssf.usermodel">HSSFSimpleShape</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#createSimpleShape(org.apache.poi.hssf.usermodel.HSSFClientAnchor)">createSimpleShape</a></strong>(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;anchor)</code> <div class="block">Creates a simple shape.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFTextbox.html" title="class in org.apache.poi.hssf.usermodel">HSSFTextbox</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#createTextbox(org.apache.poi.hssf.usermodel.HSSFClientAnchor)">createTextbox</a></strong>(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;anchor)</code> <div class="block">Constructs a textbox under the patriarch.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>java.util.List&lt;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShape.html" title="class in org.apache.poi.hssf.usermodel">HSSFShape</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#getChildren()">getChildren</a></strong>()</code> <div class="block">Returns a unmodifiable list of all shapes contained by the patriarch.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected <a href="../../../../../org/apache/poi/hssf/usermodel/HSSFSheet.html" title="class in org.apache.poi.hssf.usermodel">HSSFSheet</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#getSheet()">getSheet</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#getX1()">getX1</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#getX2()">getX2</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#getY1()">getY1</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#getY2()">getY2</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>java.util.Iterator&lt;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShape.html" title="class in org.apache.poi.hssf.usermodel">HSSFShape</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#iterator()">iterator</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#preSerialize()">preSerialize</a></strong>()</code> <div class="block">check if any shapes contain wrong data At now(13.08.2010) check if patriarch contains 2 or more comments with same coordinates</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#removeShape(org.apache.poi.hssf.usermodel.HSSFShape)">removeShape</a></strong>(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShape.html" title="class in org.apache.poi.hssf.usermodel">HSSFShape</a>&nbsp;shape)</code> <div class="block">remove first level shapes</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatriarch.html#setCoordinates(int, int, int, int)">setCoordinates</a></strong>(int&nbsp;x1, int&nbsp;y1, int&nbsp;x2, int&nbsp;y2)</code> <div class="block">Sets the coordinate space of this group.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="preSerialize()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>preSerialize</h4> <pre>protected&nbsp;void&nbsp;preSerialize()</pre> <div class="block">check if any shapes contain wrong data At now(13.08.2010) check if patriarch contains 2 or more comments with same coordinates</div> </li> </ul> <a name="removeShape(org.apache.poi.hssf.usermodel.HSSFShape)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>removeShape</h4> <pre>public&nbsp;boolean&nbsp;removeShape(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShape.html" title="class in org.apache.poi.hssf.usermodel">HSSFShape</a>&nbsp;shape)</pre> <div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html#removeShape(org.apache.poi.hssf.usermodel.HSSFShape)">HSSFShapeContainer</a></code></strong></div> <div class="block">remove first level shapes</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html#removeShape(org.apache.poi.hssf.usermodel.HSSFShape)">removeShape</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html" title="interface in org.apache.poi.hssf.usermodel">HSSFShapeContainer</a></code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>shape</code> - to be removed</dd> <dt><span class="strong">Returns:</span></dt><dd>true of shape is removed</dd></dl> </li> </ul> <a name="createGroup(org.apache.poi.hssf.usermodel.HSSFClientAnchor)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>createGroup</h4> <pre>public&nbsp;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeGroup.html" title="class in org.apache.poi.hssf.usermodel">HSSFShapeGroup</a>&nbsp;createGroup(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;anchor)</pre> <div class="block">Creates a new group record stored under this patriarch.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>anchor</code> - the client anchor describes how this group is attached to the sheet.</dd> <dt><span class="strong">Returns:</span></dt><dd>the newly created group.</dd></dl> </li> </ul> <a name="createSimpleShape(org.apache.poi.hssf.usermodel.HSSFClientAnchor)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>createSimpleShape</h4> <pre>public&nbsp;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFSimpleShape.html" title="class in org.apache.poi.hssf.usermodel">HSSFSimpleShape</a>&nbsp;createSimpleShape(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;anchor)</pre> <div class="block">Creates a simple shape. This includes such shapes as lines, rectangles, and ovals. Note: Microsoft Excel seems to sometimes disallow higher y1 than y2 or higher x1 than x2 in the anchor, you might need to reverse them and draw shapes vertically or horizontally flipped!</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>anchor</code> - the client anchor describes how this group is attached to the sheet.</dd> <dt><span class="strong">Returns:</span></dt><dd>the newly created shape.</dd></dl> </li> </ul> <a name="createPicture(org.apache.poi.hssf.usermodel.HSSFClientAnchor, int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>createPicture</h4> <pre>public&nbsp;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPicture.html" title="class in org.apache.poi.hssf.usermodel">HSSFPicture</a>&nbsp;createPicture(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;anchor, int&nbsp;pictureIndex)</pre> <div class="block">Creates a picture.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>anchor</code> - the client anchor describes how this group is attached to the sheet.</dd><dd><code>pictureIndex</code> - - pointer to the byte array saved inside workbook in escher bse record</dd> <dt><span class="strong">Returns:</span></dt><dd>the newly created shape.</dd></dl> </li> </ul> <a name="createPicture(org.apache.poi.ss.usermodel.ClientAnchor, int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>createPicture</h4> <pre>public&nbsp;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPicture.html" title="class in org.apache.poi.hssf.usermodel">HSSFPicture</a>&nbsp;createPicture(<a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a>&nbsp;anchor, int&nbsp;pictureIndex)</pre> <div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html#createPicture(org.apache.poi.ss.usermodel.ClientAnchor, int)">Drawing</a></code></strong></div> <div class="block">Creates a picture.</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html#createPicture(org.apache.poi.ss.usermodel.ClientAnchor, int)">createPicture</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html" title="interface in org.apache.poi.ss.usermodel">Drawing</a></code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>anchor</code> - the client anchor describes how this picture is attached to the sheet.</dd><dd><code>pictureIndex</code> - the index of the picture in the workbook collection of pictures.</dd> <dt><span class="strong">Returns:</span></dt><dd>newly created shape</dd></dl> </li> </ul> <a name="createObjectData(org.apache.poi.hssf.usermodel.HSSFClientAnchor, int, int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>createObjectData</h4> <pre>public&nbsp;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFObjectData.html" title="class in org.apache.poi.hssf.usermodel">HSSFObjectData</a>&nbsp;createObjectData(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;anchor, int&nbsp;storageId, int&nbsp;pictureIndex)</pre> <div class="block">Adds a new OLE Package Shape</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>anchor</code> - the client anchor describes how this picture is attached to the sheet.</dd><dd><code>storageId</code> - the storageId returned by <a href="../../../../../org/apache/poi/hssf/usermodel/HSSFWorkbook.html#addOlePackage(org.apache.poi.poifs.filesystem.POIFSFileSystem, java.lang.String, java.lang.String, java.lang.String)"><code>HSSFWorkbook.addOlePackage(POIFSFileSystem,String,String,String)</code></a></dd><dd><code>pictureIndex</code> - the index of the picture (used as preview image) in the workbook collection of pictures.</dd> <dt><span class="strong">Returns:</span></dt><dd>newly created shape</dd></dl> </li> </ul> <a name="createPolygon(org.apache.poi.hssf.usermodel.HSSFClientAnchor)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>createPolygon</h4> <pre>public&nbsp;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPolygon.html" title="class in org.apache.poi.hssf.usermodel">HSSFPolygon</a>&nbsp;createPolygon(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;anchor)</pre> <div class="block">Creates a polygon</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>anchor</code> - the client anchor describes how this group is attached to the sheet.</dd> <dt><span class="strong">Returns:</span></dt><dd>the newly created shape.</dd></dl> </li> </ul> <a name="createTextbox(org.apache.poi.hssf.usermodel.HSSFClientAnchor)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>createTextbox</h4> <pre>public&nbsp;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFTextbox.html" title="class in org.apache.poi.hssf.usermodel">HSSFTextbox</a>&nbsp;createTextbox(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;anchor)</pre> <div class="block">Constructs a textbox under the patriarch.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>anchor</code> - the client anchor describes how this group is attached to the sheet.</dd> <dt><span class="strong">Returns:</span></dt><dd>the newly created textbox.</dd></dl> </li> </ul> <a name="createComment(org.apache.poi.hssf.usermodel.HSSFAnchor)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>createComment</h4> <pre>public&nbsp;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFComment.html" title="class in org.apache.poi.hssf.usermodel">HSSFComment</a>&nbsp;createComment(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFAnchor</a>&nbsp;anchor)</pre> <div class="block">Constructs a cell comment.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>anchor</code> - the client anchor describes how this comment is attached to the sheet.</dd> <dt><span class="strong">Returns:</span></dt><dd>the newly created comment.</dd></dl> </li> </ul> <a name="createCellComment(org.apache.poi.ss.usermodel.ClientAnchor)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>createCellComment</h4> <pre>public&nbsp;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFComment.html" title="class in org.apache.poi.hssf.usermodel">HSSFComment</a>&nbsp;createCellComment(<a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a>&nbsp;anchor)</pre> <div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html#createCellComment(org.apache.poi.ss.usermodel.ClientAnchor)">Drawing</a></code></strong></div> <div class="block">Creates a comment.</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html#createCellComment(org.apache.poi.ss.usermodel.ClientAnchor)">createCellComment</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html" title="interface in org.apache.poi.ss.usermodel">Drawing</a></code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>anchor</code> - the client anchor describes how this comment is attached to the sheet.</dd> <dt><span class="strong">Returns:</span></dt><dd>the newly created comment.</dd></dl> </li> </ul> <a name="getChildren()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getChildren</h4> <pre>public&nbsp;java.util.List&lt;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShape.html" title="class in org.apache.poi.hssf.usermodel">HSSFShape</a>&gt;&nbsp;getChildren()</pre> <div class="block">Returns a unmodifiable list of all shapes contained by the patriarch.</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html#getChildren()">getChildren</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html" title="interface in org.apache.poi.hssf.usermodel">HSSFShapeContainer</a></code></dd> <dt><span class="strong">Returns:</span></dt><dd>Any children contained by this shape.</dd></dl> </li> </ul> <a name="addShape(org.apache.poi.hssf.usermodel.HSSFShape)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>addShape</h4> <pre><a href="../../../../../org/apache/poi/util/Internal.html" title="annotation in org.apache.poi.util">@Internal</a> public&nbsp;void&nbsp;addShape(<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShape.html" title="class in org.apache.poi.hssf.usermodel">HSSFShape</a>&nbsp;shape)</pre> <div class="block">add a shape to this drawing</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html#addShape(org.apache.poi.hssf.usermodel.HSSFShape)">addShape</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html" title="interface in org.apache.poi.hssf.usermodel">HSSFShapeContainer</a></code></dd> </dl> </li> </ul> <a name="countOfAllChildren()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>countOfAllChildren</h4> <pre>public&nbsp;int&nbsp;countOfAllChildren()</pre> <div class="block">Total count of all children and their children's children.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>count of shapes including shapes inside shape groups</dd></dl> </li> </ul> <a name="setCoordinates(int, int, int, int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setCoordinates</h4> <pre>public&nbsp;void&nbsp;setCoordinates(int&nbsp;x1, int&nbsp;y1, int&nbsp;x2, int&nbsp;y2)</pre> <div class="block">Sets the coordinate space of this group. All children are constrained to these coordinates.</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html#setCoordinates(int, int, int, int)">setCoordinates</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html" title="interface in org.apache.poi.hssf.usermodel">HSSFShapeContainer</a></code></dd> </dl> </li> </ul> <a name="clear()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>clear</h4> <pre>public&nbsp;void&nbsp;clear()</pre> <div class="block">remove all shapes inside patriarch</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html#clear()">clear</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html" title="interface in org.apache.poi.hssf.usermodel">HSSFShapeContainer</a></code></dd> </dl> </li> </ul> <a name="containsChart()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>containsChart</h4> <pre>public&nbsp;boolean&nbsp;containsChart()</pre> <div class="block">Does this HSSFPatriarch contain a chart? (Technically a reference to a chart, since they get stored in a different block of records) FIXME - detect chart in all cases (only seems to work on some charts so far)</div> </li> </ul> <a name="getX1()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getX1</h4> <pre>public&nbsp;int&nbsp;getX1()</pre> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html#getX1()">getX1</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html" title="interface in org.apache.poi.hssf.usermodel">HSSFShapeContainer</a></code></dd> <dt><span class="strong">Returns:</span></dt><dd>x coordinate of the left up corner</dd></dl> </li> </ul> <a name="getY1()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getY1</h4> <pre>public&nbsp;int&nbsp;getY1()</pre> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html#getY1()">getY1</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html" title="interface in org.apache.poi.hssf.usermodel">HSSFShapeContainer</a></code></dd> <dt><span class="strong">Returns:</span></dt><dd>y coordinate of the left up corner</dd></dl> </li> </ul> <a name="getX2()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getX2</h4> <pre>public&nbsp;int&nbsp;getX2()</pre> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html#getX2()">getX2</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html" title="interface in org.apache.poi.hssf.usermodel">HSSFShapeContainer</a></code></dd> <dt><span class="strong">Returns:</span></dt><dd>x coordinate of the right down corner</dd></dl> </li> </ul> <a name="getY2()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getY2</h4> <pre>public&nbsp;int&nbsp;getY2()</pre> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html#getY2()">getY2</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShapeContainer.html" title="interface in org.apache.poi.hssf.usermodel">HSSFShapeContainer</a></code></dd> <dt><span class="strong">Returns:</span></dt><dd>y coordinate of the right down corner</dd></dl> </li> </ul> <a name="_getBoundAggregate()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>_getBoundAggregate</h4> <pre>protected&nbsp;<a href="../../../../../org/apache/poi/hssf/record/EscherAggregate.html" title="class in org.apache.poi.hssf.record">EscherAggregate</a>&nbsp;_getBoundAggregate()</pre> <div class="block">Returns the aggregate escher record we're bound to</div> <dl><dt><span class="strong">Returns:</span></dt><dd>- low level representation of sheet drawing data</dd></dl> </li> </ul> <a name="createAnchor(int, int, int, int, int, int, int, int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>createAnchor</h4> <pre>public&nbsp;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFClientAnchor.html" title="class in org.apache.poi.hssf.usermodel">HSSFClientAnchor</a>&nbsp;createAnchor(int&nbsp;dx1, int&nbsp;dy1, int&nbsp;dx2, int&nbsp;dy2, int&nbsp;col1, int&nbsp;row1, int&nbsp;col2, int&nbsp;row2)</pre> <div class="block">Creates a new client anchor and sets the top-left and bottom-right coordinates of the anchor.</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html#createAnchor(int, int, int, int, int, int, int, int)">createAnchor</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html" title="interface in org.apache.poi.ss.usermodel">Drawing</a></code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>dx1</code> - the x coordinate in EMU within the first cell.</dd><dd><code>dy1</code> - the y coordinate in EMU within the first cell.</dd><dd><code>dx2</code> - the x coordinate in EMU within the second cell.</dd><dd><code>dy2</code> - the y coordinate in EMU within the second cell.</dd><dd><code>col1</code> - the column (0 based) of the first cell.</dd><dd><code>row1</code> - the row (0 based) of the first cell.</dd><dd><code>col2</code> - the column (0 based) of the second cell.</dd><dd><code>row2</code> - the row (0 based) of the second cell.</dd> <dt><span class="strong">Returns:</span></dt><dd>the newly created client anchor</dd></dl> </li> </ul> <a name="createChart(org.apache.poi.ss.usermodel.ClientAnchor)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>createChart</h4> <pre>public&nbsp;<a href="../../../../../org/apache/poi/ss/usermodel/Chart.html" title="interface in org.apache.poi.ss.usermodel">Chart</a>&nbsp;createChart(<a href="../../../../../org/apache/poi/ss/usermodel/ClientAnchor.html" title="interface in org.apache.poi.ss.usermodel">ClientAnchor</a>&nbsp;anchor)</pre> <div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html#createChart(org.apache.poi.ss.usermodel.ClientAnchor)">Drawing</a></code></strong></div> <div class="block">Creates a chart.</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html#createChart(org.apache.poi.ss.usermodel.ClientAnchor)">createChart</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/poi/ss/usermodel/Drawing.html" title="interface in org.apache.poi.ss.usermodel">Drawing</a></code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>anchor</code> - the client anchor describes how this chart is attached to the sheet.</dd> <dt><span class="strong">Returns:</span></dt><dd>the newly created chart</dd></dl> </li> </ul> <a name="iterator()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>iterator</h4> <pre>public&nbsp;java.util.Iterator&lt;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShape.html" title="class in org.apache.poi.hssf.usermodel">HSSFShape</a>&gt;&nbsp;iterator()</pre> <dl> <dt><strong>Specified by:</strong></dt> <dd><code>iterator</code>&nbsp;in interface&nbsp;<code>java.lang.Iterable&lt;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFShape.html" title="class in org.apache.poi.hssf.usermodel">HSSFShape</a>&gt;</code></dd> </dl> </li> </ul> <a name="getSheet()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>getSheet</h4> <pre>protected&nbsp;<a href="../../../../../org/apache/poi/hssf/usermodel/HSSFSheet.html" title="class in org.apache.poi.hssf.usermodel">HSSFSheet</a>&nbsp;getSheet()</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/HSSFPatriarch.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPalette.html" title="class in org.apache.poi.hssf.usermodel"><span class="strong">PREV CLASS</span></a></li> <li><a href="../../../../../org/apache/poi/hssf/usermodel/HSSFPatternFormatting.html" title="class in org.apache.poi.hssf.usermodel"><span class="strong">NEXT CLASS</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/poi/hssf/usermodel/HSSFPatriarch.html" target="_top">FRAMES</a></li> <li><a href="HSSFPatriarch.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>SUMMARY:&nbsp;</li> <li>NESTED&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li>CONSTR&nbsp;|&nbsp;</li> <li><a href="#method_summary">METHOD</a></li> </ul> <ul class="subNavList"> <li>DETAIL:&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li>CONSTR&nbsp;|&nbsp;</li> <li><a href="#method_detail">METHOD</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright 2014 The Apache Software Foundation or its licensors, as applicable.</i> </small></p> </body> </html>
RyoSaeba69/Bio-info
mylib/poi-3.11/docs/apidocs/org/apache/poi/hssf/usermodel/HSSFPatriarch.html
HTML
apache-2.0
42,530
<!-- ~ Copyright (c) 2013 SysGears, LLC ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <html> <head> <title>package com.sysgears.grain.config.*</title> </head> <body> <p> SiteConfig representation inside Grain: config reading, rereading, exposing to pages. </p> </body> </html>
hernad/grain
src/main/groovy/com/sysgears/grain/config/package.html
HTML
apache-2.0
820
<style> .release-coordinator-navbar .nav > li > a:focus, .release-coordinator-navbar .oppia-release-coordinator-page-dropdown-icon { background-color: #00376d; color: #fff; } .release-coordinator-navbar .oppia-navbar-profile-release-coordinator > li > a:hover, .release-coordinator-navbar .oppia-navbar-profile-release-coordinator > li > a:focus, .release-coordinator-navbar .oppia-navbar-profile-release-coordinator .open > a, .release-coordinator-navbar .oppia-navbar-profile-release-coordinator .open > a:hover, .release-coordinator-navbar .oppia-navbar-profile-release-coordinator .open > a:focus, .release-coordinator-navbar .oppia-navbar-tabs-release-coordinator > li > a:hover, .release-coordinator-navbar .oppia-navbar-tabs-release-coordinator > li > a.active, .release-coordinator-navbar .oppia-release-coordinator-page-dropdown-icon { background-color: #fff; color: #00376d; } .oppia-navbar-tabs-release-coordinator .dropdown-toggle::after { color: #fff; } .oppia-navbar-tabs-release-coordinator:hover .dropdown-toggle::after, .oppia-navbar-tabs-release-coordinator:focus .dropdown-toggle::after { color: #00376d; } .release-coordinator-navbar .oppia-navbar-release-coordinator { top: 0; } .release-coordinator-navbar .navbar-container.oppia-navbar-container { background-color: #00376d; } .release-coordinator-navbar .nav .dropdown:hover > .dropdown-menu > li > a.oppia-dropdown-item-text { color: #00376d; } .release-coordinator-navbar .oppia-dropdown-toggle-icon { margin-top: -1px; } @media screen and (max-width: 710px) { .release-coordinator-navbar .oppia-release-coordinator-page-dropdown { display: block; } .release-coordinator-navbar .oppia-hide-in-small-width-screens { display: none; } } @media screen and (min-width: 711px) { .release-coordinator-navbar .oppia-release-coordinator-page-dropdown, .release-coordinator-navbar .oppia-release-coordinator-page-dropdown-icon, .release-coordinator-navbar .oppia-release-coordinator-page-dropdown-menu { display: none; } } </style> <div class="release-coordinator-navbar"> <nav class="navbar navbar-default navbar-light oppia-navbar oppia-prevent-selection oppia-navbar-release-coordinator" role="navigation"> <div class="navbar-container oppia-navbar-container"> <div class="navbar-header protractor-test-navbar-header float-left"> <a class="oppia-navbar-brand-name oppia-transition-200 float-left" href="/community-library" routerLink="/community-library"> <picture> <source type="image/webp" [srcset]="logoWebpImageSrc"> <source type="image/png" [srcset]="logoPngImageSrc"> <img [src]="logoPngImageSrc" class="oppia-logo oppia-logo-wide" alt="Oppia Logo"> </picture> Return to Oppia Library Page </a> <ul class="nav navbar-nav oppia-navbar-breadcrumb"> <li> <span class="oppia-navbar-breadcrumb-separator"></span>Release coordinator </li> </ul> </div> <div class="navbar-header float-right"> <ul class="nav oppia-navbar-nav oppia-navbar-profile-release-coordinator"> <li> <ul class="nav oppia-navbar-tabs-release-coordinator oppia-hide-in-small-width-screens"> <li class="nav-item oppia-clickable-navbar-element float-right"> <a class="nav-link oppia-navbar-tab" (click)="switchTab(TAB_ID_BEAM_JOBS)" href="#" [ngClass]="{ 'active': activeTab == TAB_ID_BEAM_JOBS }" ngbTooltip="Jobs" placement="bottom" container="body"> Beam Jobs </a> </li> <li class="nav-item oppia-clickable-navbar-element float-right"> <a class="nav-link oppia-navbar-tab" (click)="switchTab(TAB_ID_MISC)" href="#" [ngClass]="{ 'active': activeTab == TAB_ID_MISC }" ngbTooltip="Miscellaneous" placement="bottom" container="body"> Misc </a> </li> </ul> </li> <li> <ul class="nav oppia-navbar-tabs-release-coordinator"> <li ngbDropdown class="nav-item dropdown float-right" [ngClass]="{'open' : profileDropdownIsActive}"> <a ngbDropdownToggle class="nav-link oppia-navbar-dropdown-toggle protractor-test-navbar-dropdown-toggle" data-toggle="dropdown" (mouseenter)="activateProfileDropdown()" (mouseleave)="deactivateProfileDropdown()"> <span *ngIf="profilePictureDataUrl"> <!-- Lighthouse flags <img> elements that don't have alt attributes: If the image acts as decoration and does not provide any useful content, give it an empty alt="" https://web.dev/image-alt/?utm_source=lighthouse&utm_medium=devtools#how-to-add-alternative-text-to-images --> <img [src]="profilePictureDataUrl" class="oppia-navbar-profile-picture rounded-circle" alt=""> </span> <div *ngIf="!profilePictureDataUrl" class="dropdown-toggle"> <i class="material-icons md-40 oppia-dropdown-toggle-icon">&#xE853;</i> </div> </a> <ul ngbDropdownMenu class="dropdown-menu dropdown-menu oppia-navbar-dropdown" role="menu" (mouseenter)="activateProfileDropdown()" (mouseleave)="deactivateProfileDropdown()"> <li> <a (click)="onMouseoutProfilePictureOrDropdown($event)" [href]="profileUrl" class="dropdown-item oppia-dropdown-item-text"> <strong>{{ username }}</strong> </a> </li> <hr class="oppia-top-right-menu-item-separator"> <li> <a (click)="onMouseoutProfilePictureOrDropdown($event)" href="/creator-dashboard" class="dropdown-item oppia-dropdown-item-text"> Creator Dashboard </a> </li> <li> <a (click)="onMouseoutProfilePictureOrDropdown($event)" href="/preferences" [routerLink]="'/' + PAGES_REGISTERED_WITH_FRONTEND.PREFERENCES.ROUTE" class="dropdown-item oppia-dropdown-item-text"> Preferences </a> </li> <hr class="oppia-top-right-menu-item-separator"> <li> <a (click)="onMouseoutProfilePictureOrDropdown($event)" [href]="logoutUrl" [routerLink]="logoutUrl" class="dropdown-item oppia-dropdown-item-text"> Logout </a> </li> </ul> </li> </ul> </li> </ul> </div> </div> </nav> </div>
brianrodri/oppia
core/templates/pages/release-coordinator-page/navbar/release-coordinator-navbar.component.html
HTML
apache-2.0
7,600
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_67) on Thu Feb 04 13:28:40 CST 2016 --> <title>Constants</title> <meta name="date" content="2016-02-04"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Constants"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../io/gearpump/streaming/AppMasterToMaster$.html" title="class in io.gearpump.streaming"><span class="strong">Prev Class</span></a></li> <li><a href="../../../io/gearpump/streaming/Constants$.html" title="class in io.gearpump.streaming"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?io/gearpump/streaming/Constants.html" target="_top">Frames</a></li> <li><a href="Constants.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">io.gearpump.streaming</div> <h2 title="Class Constants" class="title">Class Constants</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>io.gearpump.streaming.Constants</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">Constants</span> extends java.lang.Object</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../io/gearpump/streaming/Constants.html#Constants()">Constants</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/Constants.html#GEARPUMP_STREAMING_ACK_ONCE_EVERY_MESSAGE_COUNT()">GEARPUMP_STREAMING_ACK_ONCE_EVERY_MESSAGE_COUNT</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/Constants.html#GEARPUMP_STREAMING_GROUPBY_FUNCTION()">GEARPUMP_STREAMING_GROUPBY_FUNCTION</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/Constants.html#GEARPUMP_STREAMING_LOCALITIES()">GEARPUMP_STREAMING_LOCALITIES</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/Constants.html#GEARPUMP_STREAMING_MAX_PENDING_MESSAGE_COUNT()">GEARPUMP_STREAMING_MAX_PENDING_MESSAGE_COUNT</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/Constants.html#GEARPUMP_STREAMING_OPERATOR()">GEARPUMP_STREAMING_OPERATOR</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/Constants.html#GEARPUMP_STREAMING_REGISTER_TASK_TIMEOUT_MS()">GEARPUMP_STREAMING_REGISTER_TASK_TIMEOUT_MS</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/Constants.html#GEARPUMP_STREAMING_SINK()">GEARPUMP_STREAMING_SINK</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/Constants.html#GEARPUMP_STREAMING_SOURCE()">GEARPUMP_STREAMING_SOURCE</a></strong>()</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="Constants()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>Constants</h4> <pre>public&nbsp;Constants()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="GEARPUMP_STREAMING_OPERATOR()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GEARPUMP_STREAMING_OPERATOR</h4> <pre>public static&nbsp;java.lang.String&nbsp;GEARPUMP_STREAMING_OPERATOR()</pre> </li> </ul> <a name="GEARPUMP_STREAMING_SOURCE()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GEARPUMP_STREAMING_SOURCE</h4> <pre>public static&nbsp;java.lang.String&nbsp;GEARPUMP_STREAMING_SOURCE()</pre> </li> </ul> <a name="GEARPUMP_STREAMING_SINK()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GEARPUMP_STREAMING_SINK</h4> <pre>public static&nbsp;java.lang.String&nbsp;GEARPUMP_STREAMING_SINK()</pre> </li> </ul> <a name="GEARPUMP_STREAMING_GROUPBY_FUNCTION()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GEARPUMP_STREAMING_GROUPBY_FUNCTION</h4> <pre>public static&nbsp;java.lang.String&nbsp;GEARPUMP_STREAMING_GROUPBY_FUNCTION()</pre> </li> </ul> <a name="GEARPUMP_STREAMING_LOCALITIES()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GEARPUMP_STREAMING_LOCALITIES</h4> <pre>public static&nbsp;java.lang.String&nbsp;GEARPUMP_STREAMING_LOCALITIES()</pre> </li> </ul> <a name="GEARPUMP_STREAMING_REGISTER_TASK_TIMEOUT_MS()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GEARPUMP_STREAMING_REGISTER_TASK_TIMEOUT_MS</h4> <pre>public static&nbsp;java.lang.String&nbsp;GEARPUMP_STREAMING_REGISTER_TASK_TIMEOUT_MS()</pre> </li> </ul> <a name="GEARPUMP_STREAMING_MAX_PENDING_MESSAGE_COUNT()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GEARPUMP_STREAMING_MAX_PENDING_MESSAGE_COUNT</h4> <pre>public static&nbsp;java.lang.String&nbsp;GEARPUMP_STREAMING_MAX_PENDING_MESSAGE_COUNT()</pre> </li> </ul> <a name="GEARPUMP_STREAMING_ACK_ONCE_EVERY_MESSAGE_COUNT()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>GEARPUMP_STREAMING_ACK_ONCE_EVERY_MESSAGE_COUNT</h4> <pre>public static&nbsp;java.lang.String&nbsp;GEARPUMP_STREAMING_ACK_ONCE_EVERY_MESSAGE_COUNT()</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../io/gearpump/streaming/AppMasterToMaster$.html" title="class in io.gearpump.streaming"><span class="strong">Prev Class</span></a></li> <li><a href="../../../io/gearpump/streaming/Constants$.html" title="class in io.gearpump.streaming"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?io/gearpump/streaming/Constants.html" target="_top">Frames</a></li> <li><a href="Constants.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
stanleyxu2005/gearpump.github.io
releases/0.7.6/api/java/io/gearpump/streaming/Constants.html
HTML
apache-2.0
11,908
<html lang="ur"> <head> <script language="javascript"> function test_environment(){ var navigator_agnt = navigator.userAgent; var platform = window.navigator.platform; var browserName = navigator.appName; var full_Version = ""+parseFloat(navigator.appVersion); var nameOffset,verOffset,ix; var browser_details ="" var macosPlatforms = ["Macintosh", "MacIntel", "MacPPC", "Mac68K"]; var windowsPlatforms = ["Win32", "Win64", "Windows", "WinCE"]; var iosPlatforms = ["iPhone", "iPad", "iPod"]; var os = null; if ((verOffset=navigator_agnt.indexOf("Chrome"))!=-1){ browserName = "Chrome"; full_Version = navigator_agnt.substring(verOffset+7);} else if ((verOffset=navigator_agnt.indexOf("Safari"))!=-1){ browserName = "Safari"; full_Version = navigator_agnt.substring(verOffset+7); if ((verOffset=navigator_agnt.indexOf("Version"))!=-1) full_Version = navigator_agnt.substring(verOffset+8);} else if ((verOffset=navigator_agnt.indexOf("Firefox"))!=-1){ browserName = "Firefox"; full_Version = navigator_agnt.substring(verOffset+8);} else if ( (nameOffset=navigator_agnt.lastIndexOf(" ")+1) < (verOffset=navigator_agnt.lastIndexOf("/")) ) { browserName = navigator_agnt.substring(nameOffset,verOffset); full_Version = navigator_agnt.substring(verOffset+1); if (browserName.toLowerCase()==browserName.toUpperCase()){ browserName = navigator.appName;} } if ((ix=full_Version.indexOf(";"))!=-1) full_Version=full_Version.substring(0,ix); if ((ix=full_Version.indexOf(" "))!=-1) full_Version=full_Version.substring(0,ix); if (macosPlatforms.indexOf(platform) !== -1){ os = "Mac OS";} else if (iosPlatforms.indexOf(platform) !== -1){ os = "iOS";} else if (windowsPlatforms.indexOf(platform) !== -1){ os = "Windows";} else if (/Android/.test(userAgent)){ os = "Android";} else if (!os && /Linux/.test(platform)){ os = "Linux";} browser_details = browserName + " " + full_Version +" "+ os return browser_details} </script> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Expires" content="0"> <style> @font-face{font-family:"NotoSansArabic-Regular"; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoSansArabic/NotoSansArabic-Regular.ttf"); } @font-face{font-family:"NotoNaskhArabic-Regular"; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoNaskhArabic/NotoNaskhArabic-Regular.ttf"); } @font-face{font-family:"NotoNaskhArabicUI-Regular"; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoNaskhArabicUI/NotoNaskhArabicUI-Regular.ttf"); } @font-face{font-family:"NotoKufiArabic-Regular"; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoKufiArabic/NotoKufiArabic-Regular.ttf"); } @font-face{font-family:"NotoNastaliqUrdu-Regular"; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoNastaliqUrdu/NotoNastaliqUrdu-Regular.ttf"); } @font-face{font-family: AdobeBlank; src:url(AdobeBlank.ttf); } </style> </head> <body> <a href="https://github.com/googlefonts/noto-fonts/issues/1574">Issue 1574</a> <p>NotoSansArabic-Regular </p> <p dir="RTL"><span style="font-family:NotoSansArabic-Regular, AdobeBlank; font-weight:400; background-color:#EDEBEA">؀ ؀۱ ؀۱۲ ؀۱۲۳</span></p> <p>NotoKufiArabic-Regular </p> <p dir="RTL"><span style="font-family:NotoKufiArabic-Regular, AdobeBlank; font-weight:400; background-color:#EDEBEA">؀ ؀۱ ؀۱۲ ؀۱۲۳</span></p> <p>NotoNaskhArabic-Regular </p> <p dir="RTL"><span style="font-family:NotoNaskhArabic-Regular, AdobeBlank; font-weight:400; background-color:#EDEBEA">؀ ؀۱ ؀۱۲ ؀۱۲۳</span></p> <p>NotoNaskhArabicUI-Regular </p> <p dir="RTL"><span style="font-family:NotoNaskhArabicUI-Regular, AdobeBlank; font-weight:400; background-color:#EDEBEA">؀ ؀۱ ؀۱۲ ؀۱۲۳</span></p> <p>NotoNastaliqUrdu-Regular </p> <p dir="RTL"><span style="font-family:NotoNastaliqUrdu-Regular, AdobeBlank; font-weight:400; background-color:#EDEBEA">؀ ؀۱ ؀۱۲ ؀۱۲۳</span></p> <label style="font-size:10px"> Test details: <br>Fonts used:<br> https://github.com/googlefonts/noto-fonts/tree/main/unhinted/ttf/NotoSansArabic/NotoSansArabic-Regular.ttf<br> https://github.com/googlefonts/noto-fonts/tree/main/unhinted/ttf/NotoNaskhArabic/NotoNaskhArabic-Regular.ttf<br> https://github.com/googlefonts/noto-fonts/tree/main/unhinted/ttf/NotoNaskhArabicUI/NotoNaskhArabicUI-Regular.ttf<br> https://github.com/googlefonts/noto-fonts/tree/main/unhinted/ttf/NotoKufiArabic/NotoKufiArabic-Regular.ttf<br> https://github.com/googlefonts/noto-fonts/tree/main/unhinted/ttf/NotoNastaliqUrdu/NotoNastaliqUrdu-Regular.ttf<br></label> <br> <label style="font-size:10px" id="system_id"></label> <br><label style="font-size:10px">Test created on: </label> <label style="font-size:10px" id="date"></label> <script language="javascript"> var date_tag = new Date(); document.getElementById("date").innerHTML=date_tag; var system_info = test_environment(); document.getElementById("system_id").innerHTML=system_info; </script> </body> </html>
googlei18n/noto-source
test/Arabic/1574-Urdu.html
HTML
apache-2.0
5,376
<!DOCTYPE HTML> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="viewport" content="width=device-width"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <noscript> <meta http-equiv="Refresh" content="1; URL=/noscript"> </noscript> <title>Open Academic Environment - Service unavailable</title> <!-- STATIC SKIN CSS --> <link rel="stylesheet" type="text/css" href="/shared/oae/css/oae.skin.static.css" /> <!-- CORE CSS --> <link rel="stylesheet" type="text/css" href="/shared/oae/css/oae.core.css" /> <link rel="stylesheet" type="text/css" href="/api/ui/skin" /> <!-- PAGE CSS --> <link rel="stylesheet" type="text/css" href="/shared/oae/errors/css/oae.error.css" /> </head> <body style="display: block;"> <!-- BODY --> <main class="error-static oae-branding-container oae-main-content"> <div id="error-content"> <div class="row oae-panel-primary"> <div class="col-md-offset-1 col-md-3"> <div id="error-code">502</div> <h1>Service unavailable</h1> </div> <div class="col-md-8"> <div id="error-quote-container"> <div class="oae-panel-tertiary"> <p id="error-quote">&quot;Challenges are meant to be met and overcome.&quot;</p> </div> <div id="error-quote-author">Liu Xiang</div> </div> </div> </div> </div> </main> <!-- JAVASCRIPT --> <script data-main="/shared/oae/errors/js/unavailable.js" src="/shared/vendor/js/requirejs/require-jquery.js"></script> </body> </html>
stuartf/3akai-ux
shared/oae/errors/unavailable.html
HTML
apache-2.0
1,992
<div class="container-fluid form-horizontal"> <div class="form-group"> <div class="col-md-5 sm-label-right"> <b>Log driver (Optional)</b> <help-field key="ecs.logDriver"></help-field> </div> <div class="col-md-7"> <ui-select ng-model="$ctrl.command.logDriver" class="form-control input-sm"> <ui-select-match>{{ $select.selected }}</ui-select-match> <ui-select-choices repeat="item in ['None', 'awslogs', 'fluentd', 'gelf', 'journald', 'json-file', 'logentries', 'splunk', 'sumologic', 'syslog'] | filter: $select.search" > <span ng-bind-html="item"></span> </ui-select-choices> </ui-select> </div> </div> <div class="form-group" ng-if="$ctrl.command.logDriver && $ctrl.command.logDriver !== 'None'"> <div class="sm-label-left"> <b>Logging options (optional)</b> <help-field key="ecs.logOptions"></help-field> </div> <map-editor model="$ctrl.command.logOptions" allow-empty="true"></map-editor> </div> <div class="form-group" ng-if="!$ctrl.command.logDriver || $ctrl.command.logDriver == 'None'"> Logging options are not available for your log driver selection. </div> </div>
sgarlick987/deck
app/scripts/modules/ecs/src/serverGroup/configure/wizard/logging/logging.component.html
HTML
apache-2.0
1,203
<script type="text/ng-template" id="skins/ConversationEmbed"> <!-- Off-screen preview of the next card in order to pre-determine the target height for the card content transition animation. --> <div class="conversation-skin-future-tutor-card" aria-hidden="true"> <div class="conversation-skin-tutor-card-content"> <div class="conversation-skin-tutor-card-top-section"> <div class="conversation-skin-tutor-card-top-content" angular-html-bind="upcomingContentHtml"> </div> </div> <div ng-if="upcomingInlineInteractionHtml"> <div class="conversation-skin-inline-interaction"> <div angular-html-bind="upcomingInlineInteractionHtml"> </div> </div> </div> </div> </div> <div class="embeded-body"> <section role="main" ng-if="hasFullyLoaded"> <div class="conversation-skin-cards-container conversation-skin-animate-cards" ng-class="{'animate-to-two-cards': isAnimatingToTwoCards, 'animate-to-one-card': isAnimatingToOneCard, 'with-supplementary-card': isCurrentSupplementalCardNonempty()}"> <div class="conversation-skin-main-tutor-card-embed" ng-show="!isViewportNarrow() || isScreenNarrowAndShowingTutorCard()" ng-class="{ 'conversation-skin-animate-tutor-card-on-narrow': isViewportNarrow() && isCurrentSupplementalCardNonempty()}"> <tutor-card on-click-continue-button="showUpcomingCard()" on-submit-answer="submitAnswer(answer, rulesService)" on-dismiss="showSupplementalCardIfScreenIsNarrow()" start-card-change-animation="startCardChangeAnimation"> </tutor-card> </div> <div ng-if="isCurrentSupplementalCardNonempty()" class="conversation-skin-supplemental-card-container"> <img class="conversation-skin-oppia-avatar show-tutor-card" ng-if="isScreenNarrowAndShowingSupplementalCard() && isCurrentSupplementalCardNonempty()" ng-src="<[::OPPIA_AVATAR_IMAGE_URL]>" ng-click="showTutorCardIfScreenIsNarrow()" alt=""> <div ng-if="isScreenNarrowAndShowingTutorCard()" class="supplemental-mask"></div> <supplemental-card on-click-continue-button="showUpcomingCard()" on-submit-answer="submitAnswer(answer, rulesService)"> </supplemental-card> </div> </div> </section> <footer class="grid-container"> <nav class="bottom-nav-row"> <div class="col-1-4 bottom-nav-left"> <div ng-if="activeCard.answerFeedbackPairs[activeCard.answerFeedbackPairs.length - 1].oppiaFeedbackHtml && !isCurrentSupplementalCardNonempty() && isCurrentCardAtEndOfTranscript() && !waitingForOppiaFeedback && activeCard.destStateName && !isOnTerminalCard()"> <md-button aria-label="" class="oppia-learner-continue-button protractor-test-continue-to-next-card-button" focus-on="<[::CONTINUE_BUTTON_FOCUS_LABEL]>" ng-click="showPendingCard(upcomingStateName, upcomingParams, upcomingContentHtml)" translate="I18N_PLAYER_CONTINUE_BUTTON"> </md-button> </div> <div ng-if="isOnTerminalCard()" class="nav-bar-bottom-replay-content"> <i ng-click="reloadExploration()" class="material-icons replay-nav-icon">replay</i> <span class="oppia-restart-exploration"> Restart exploration? </span> </div> </div> <div class="col-1-2"> <progress-dots num-dots="numProgressDots" class="conversation-skin-progress-dots-in-bottom-nav"> </progress-dots> </div> <div class="col-1-4"> <div> <div class="nav-bar-bottom-visit-oppia"> <span ng-if="isOnTerminalCard()" class="oppia-view-more-explorations">For more explorations, visit:</span> <a class="oppia-link" ng-click="onNavigateFromIframe()" href="https://www.oppia.org/" target="_blank"> <img class="logo-bottom-nav-bar" src="/assets/images/logo/288x128_logo_white.png"> </a> </div> </div> </div> </nav> </footer> </div> <!-- The styles here need to be embedded within the directive script tags, since otherwise they will interfere with the non-iframed conversation skin directive. --> <style> html, body { background: #afd2eb no-repeat center center fixed; background-size: cover; color: rgba(0, 0, 0, 0.87); font-family: 'Roboto', Arial, sans-serif; font-size: 1.0em; height: 100%; position:fixed; top:0; bottom:0; width:100%; overflow-y:auto; } .oppia-progress-dot { width: 18px; height: 18px; } .oppia-progress-arrow-active { color: #fff; } .embeded-body { min-height: 100%; display: flex; flex-direction: column; position: absolute; width: 100%; } .bottom-nav-left { display: flex; align-items: center; height: 50px; } .grid-container{ width: 100%; } .bottom-nav-row:before, .bottom-nav-row:after { content:""; display: table ; clear:both; } [class*='col-'] { float: left; min-height: 1px; padding: 0; } [class*='col-'] { padding-right: 20px; } [class*='col-']:last-of-type { padding-right: 0; } .col-1-2 { width: 50%; } .col-1-4{ width: 25%; } .col-lg-12, .col-md-12, .col-sm-12 { width: 100%; } .logo-bottom-nav-bar { max-height: 50px; margin: auto; position: relative; min-width: 70px; } .nav-bar-bottom-replay-content { display: flex; align-items: center; color: white; } .nav-bar-bottom-visit-oppia { display: flex; justify-content: center; align-items: center; color: white; } .nav-bar-bottom-replay-content, .nav-bar-bottom-visit-oppia { line-height: 1; font-family: "Capriola", "Roboto", Arial, sans-serif; } .replay-nav-icon { font-size: 50px; font-weight: bold; } .row.numeric-input-container { margin-left: 0; margin-right: 0; } section { flex: 1 0 auto; } footer { background-color: #015c53; padding: 0.5em; z-index: 20; } iframe { overflow: scroll; } /* Additional CSS for the conversation_v1 skin. All classes below should start with .conversation-skin */ .conversation-skin-progress-dots { left: 0; margin: 0 auto; position: fixed; right: 0; z-index: 1; } .conversation-skin-progress-dots-in-bottom-nav { align-self: center; margin: 0 auto; z-index: 1; } .conversation-skin-oppia-avatar, .conversation-skin-user-avatar { height: 36px; position: absolute; top: 0; width: 36px; z-index: 1; } .conversation-skin-oppia-avatar { left: -20px; } .conversation-skin-tutor-card-top-section .conversation-skin-oppia-avatar { height: 48px; left: -28px; width: 48px; } .conversation-skin-inline-interaction .conversation-skin-user-avatar { left: -20px; top: 14px; } .conversation-skin-learner-answer-container .conversation-skin-user-avatar { right: -20px; } .conversation-skin-tutor-card-middle-section .conversation-skin-user-avatar, .conversation-skin-tutor-card-middle-section .conversation-skin-oppia-avatar { display: none; } .conversation-skin-responses-dropdown-icon { -moz-transition: all 0.2s; -o-transition: all 0.2s; -webkit-transition: all 0.2s; font-size: 10px; margin-bottom: -4px; transition: 0.2s; } .conversation-skin-responses-dropdown-icon-rotated { -moz-transform: rotate(90deg); -o-transform: rotate(90deg); -webkit-transform: rotate(90deg); transform: rotate(90deg); } .conversation-skin-responses-dropdown-container { border-bottom: 1px solid #ccc; cursor: pointer; line-height: 0.1em; margin: 8px 20px 20px 20px; text-align: center; } .conversation-skin-responses-dropdown-text { background-color: #fff; color: #888; font-size: 0.8em; padding: 0 10px; } .conversation-skin-bottom-gadget-panel { bottom: 4px; left: 0; margin: 0 auto; max-height: 135px; max-width: 400px; min-width: 150px; position: fixed; right: 0; width: 360px; } .conversation-skin-cards-container { display: flex; flex-direction: row; align-items: center; justify-content: center; height: 100%; margin: 20px auto; max-width: 1400px; width: 100%; } .conversation-skin-main-tutor-card, .conversation-skin-future-tutor-card { background: #fff; border-radius: 2px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24), 0 1px 3px rgba(0, 0, 0, 0.12); flex-shrink: 10000; max-width: 560px; min-width: 360px; margin-left: 30px; text-align: left; width: 100%; z-index: 1; } .conversation-skin-main-tutor-card-embed, .conversation-skin-future-tutor-card-embed { background: #fff; border-radius: 2px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24), 0 1px 3px rgba(0, 0, 0, 0.12); flex-shrink: 10000; min-width: 360px; margin-top: 20px; margin-left: 30px; text-align: left; width: 90%; z-index: 1; } .conversation-skin-supplemental-card-container { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24), 0 1px 3px rgba(0, 0, 0, 0.12); flex-shrink: 1; margin-left: 12px; max-width: 1000px; min-width: 560px; position: relative; } .conversation-skin-help-card { background: #fff; border-radius: 2px; /* We move the help card lower so that it does not block the terminal output in the CodeRepl interaction. */ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24), 0 1px 3px rgba(0, 0, 0, 0.12); min-height: 50px; opacity: 1; padding: 12px; right: 12px; text-align: left; transition: all 350ms; z-index: 500; } .help-card-standard { bottom: -50px; position: absolute; } .help-card-tall { bottom: 50px; position: fixed; } .conversation-skin-help-card.ng-enter, .conversation-skin-help-card.ng-leave-active { opacity: 0; transform: translateX(200px); } .conversation-skin-help-card .conversation-skin-oppia-avatar { top: 12px; } .conversation-skin-help-card-content { width: 270px; } .conversation-skin-close-help-card-button { background: none; border: 0; color: #000; cursor: pointer; height: 24px; opacity: 0.5; position: absolute; right: 2px; top: 2px; width: 24px; z-index: 200; } .conversation-skin-main-tutor-card.animate-card-width { -webkit-transition: width 500ms; transition: width 500ms; } .conversation-skin-future-tutor-card { left: -30000px; position: absolute; top: -30000px; } .conversation-skin-tutor-card-top-section, .conversation-skin-oppia-feedback-container, .conversation-skin-learner-answer-container { position: relative; } .conversation-skin-tutor-card-top-section, .conversation-skin-oppia-feedback-container, .conversation-skin-learner-answer-container { padding: 0 20px; } /* These rules must be kept in sync with corresponding rules in oppia.css (those with '.oppia-state-content-display-html > p, .form-control.oppia-rte-content > div > p' selectors specifying the same line-height, margin-top and margin-bottom attributes) */ .conversation-skin-tutor-card-top-content > p, .conversation-skin-oppia-feedback-content > p, .conversation-skin-learner-answer-content > p, .conversation-skin-help-card-content > p { line-height: 28px; margin-bottom: 18px; margin-top: 18px; } .conversation-skin-tutor-card-top-content > p:first-child, .conversation-skin-oppia-feedback-content > p:first-child, .conversation-skin-learner-answer-content > p:first-child, .conversation-skin-help-card-content > p:first-child { margin-top: 0; } .conversation-skin-tutor-card-top-content > p:last-child, .conversation-skin-oppia-feedback-content > p:last-child, .conversation-skin-learner-answer-content > p:last-child, .conversation-skin-help-card-content > p:last-child { margin-bottom: 0; } .conversation-skin-tutor-card-top-content, .conversation-skin-oppia-feedback-content, .conversation-skin-learner-answer-content, .conversation-skin-help-card-content { border-radius: 2px; display: inline-block; max-width: 100%; position: relative; text-align: left; } .conversation-skin-tutor-card-top-content, .conversation-skin-oppia-feedback-content, .conversation-skin-learner-answer-content { margin-bottom: 12px; } .conversation-skin-tutor-card-top-content { width: 100%; } .conversation-skin-tutor-card-top-content, .conversation-skin-help-card-content { padding: 12px; } .conversation-skin-oppia-feedback-content, .conversation-skin-learner-answer-content { padding: 8px 12px; } .conversation-skin-tutor-card-top-content, .conversation-skin-oppia-feedback-content, .conversation-skin-help-card-content { background-color: rgba(224, 242, 241, 1); } .conversation-skin-learner-answer-content { background-color: rgba(236, 239, 241, 1); border-bottom-right-radius: 0; } .conversation-skin-tutor-card-top-content, .conversation-skin-oppia-feedback-content, .conversation-skin-help-card-content { border-top-left-radius: 0; } .conversation-skin-learner-answer-container { text-align: right; } .conversation-skin-tutor-card-middle-section .conversation-skin-learner-answer-content { background-color: rgba(236, 239, 241, 0.4); } .conversation-skin-tutor-card-middle-section .conversation-skin-oppia-feedback-content { background-color: rgba(224, 242, 241, 0.4); } .conversation-skin-tutor-card-top-content::before, .conversation-skin-oppia-feedback-content::before, .conversation-skin-help-card-content::before { border-left: 8px solid transparent; border-top: 12px solid rgba(224, 242, 241, 1); content: " "; left: -8px; position: absolute; top: 0; } .conversation-skin-learner-answer-content::before { border-right: 8px solid transparent; border-top: 12px solid rgba(236, 239, 241, 1); content: " "; position: absolute; right: -8px; top: 0; } .conversation-skin-tutor-card-middle-section .conversation-skin-oppia-feedback-content::before, .conversation-skin-tutor-card-middle-section .conversation-skin-learner-answer-content::before { display: none; } .conversation-skin-inline-interaction { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; margin-top: 8px; padding: 16px 20px; position: relative; } .conversation-skin-learner-answer, .conversation-skin-oppia-feedback { word-wrap: break-word; } .conversation-skin-feedback-dot-one, .conversation-skin-feedback-dot-two, .conversation-skin-feedback-dot-three { background-color: #666; display: inline-block; height: 2px; width: 2px; } .conversation-skin-feedback-dot-one { -moz-animation-delay: 0.0s; -moz-animation: dot 1.0s infinite; -webkit-animation-delay: 0.0s; -webkit-animation: dot 1.0s infinite; animation-delay: 0.0s; animation: dot 1.0s infinite; opacity: 0; } .conversation-skin-feedback-dot-two { -moz-animation-delay: 0.2s; -moz-animation: dot 1.0s infinite; -webkit-animation-delay: 0.2s; -webkit-animation: dot 1.0s infinite; animation-delay: 0.2s; animation: dot 1.0s infinite; opacity: 0; } .conversation-skin-feedback-dot-three { -moz-animation-delay: 0.4s; -moz-animation: dot 1.0s infinite; -webkit-animation-delay: 0.4s; -webkit-animation: dot 1.0s infinite; animation-delay: 0.4s; animation: dot 1.0s infinite; opacity: 0; } .conversation-skin-final-ratings { text-align: center; } .conversation-skin-final-recommendations { margin-top: 50px; text-align: center; } .conversation-skin-oppia-feedback.ng-enter { opacity: 0; -webkit-transition: all .5s; transition: all .5s; } .conversation-skin-oppia-feedback.ng-enter.ng-enter-active { opacity: 1; } .conversation-skin-main-tutor-card.ng-hide-add.ng-hide-add-active, .conversation-skin-main-tutor-card.ng-hide-remove.ng-hide-remove-active, .conversation-skin-supplemental-card.ng-hide-add.ng-hide-add-active, .conversation-skin-supplemental-card.ng-hide-remove.ng-hide-remove-active { -webkit-transition: all ease-out 0.4s; transition: all ease-out 0.4s; } .conversation-skin-main-tutor-card.ng-hide { opacity: 0; transform: translateX(-1000px); } .conversation-skin-supplemental-card.ng-hide { opacity: 0; transform: translateX(1000px); } .conversation-skin-main-tutor-card .instructions-button { background: inherit; border: none; } @media screen and (max-width: 959px) { .conversation-skin-main-tutor-card-embed, .conversation-skin-future-tutor-card-embed { margin-left: 0; } .conversation-skin-main-tutor-card-embed.conversation-skin-animate-tutor-card-on-narrow { position: absolute; } .conversation-skin-cards-container { display: flex; flex-direction: column; align-items: center; height: 100%; max-width: 1400px; width: 100%; } .conversation-skin-cards-container.with-supplementary-card { min-height: 440px; } .conversation-skin-main-tutor-card { left: 0; margin: 0 auto; position: absolute; right: 0; top: 40px; width: 100%; z-index: 15; } .has-shadow { box-shadow: 0 10px 10px rgba(0, 0, 0, 0.24), 0 10px 10px rgba(0, 0, 0, 0.24); } .conversation-skin-supplemental-card-container { margin: 40px auto; max-width: 959px; min-width: 360px; position: relative; } .conversation-skin-supplemental-card-container .supplemental-mask { background-color: #ccc; height: 100%; left: 0; opacity: 0.7; position: absolute; top: 0; width: 100%; } .conversation-skin-main-tutor-card .instructions-button { background-color: #0D48A1; color: #ffffff; padding: 6px 12px; } .conversation-skin-main-tutor-card button.md-button.md-default-theme.instructions-button:focus, .conversation-skin-main-tutor-card button.md-button.md-default-theme.instructions-button:hover { background-color: #115FD4; } .conversation-skin-user-avatar, .conversation-skin-oppia-avatar { display: none; } .conversation-skin-oppia-avatar.show-tutor-card { border-radius: 50%; box-shadow: 0 3px 3px grey, 0 5px 3px grey; display: block; height: 40px; left: 100%; position: absolute; position: absolute; transform: translate(-100%, -100%); width: 40px; z-index: 16; } .conversation-skin-oppia-avatar.show-tutor-card:hover { opacity: 0.8; } .nav-bar-bottom-replay-content, .nav-bar-bottom-visit-oppia { font-size: 0.7em; } .oppia-view-more-explorations { display: none; } } @media screen and (max-width: 550px) { .oppia-restart-exploration { display: none; } [class*='col-'] { padding: 0; } .col-1-2 { width: 60%; } .col-1-4{ width: 20%; } .replay-nav-icon { font-size: 40px; } .help-card-standard { bottom: -20px; } } </style> </script>
amgowano/oppia
core/templates/dev/head/pages/exploration_player/conversation_skin_embed_directive.html
HTML
apache-2.0
20,937
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>rtree(parameters_type const &amp;, indexable_getter const &amp;, value_equal const &amp;, allocator_type const &amp;)</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../../index.html" title="Chapter&#160;1.&#160;Geometry"> <link rel="up" href="../boost__geometry__index__rtree.html" title="boost::geometry::index::rtree"> <link rel="prev" href="rtree__.html" title="rtree()"> <link rel="next" href="rtree_iterator__iterator_.html" title="rtree(Iterator, Iterator)"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../boost.png"></td> <td align="center"><a href="../../../../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="rtree__.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../boost__geometry__index__rtree.html"><img src="../../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="rtree_iterator__iterator_.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="geometry.reference.spatial_indexes.boost__geometry__index__rtree.rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___"></a><a name="classboost_1_1geometry_1_1index_1_1rtree_1a1a6b696d4855cbf1866196fe058c3a87"></a><a class="link" href="rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.html" title="rtree(parameters_type const &amp;, indexable_getter const &amp;, value_equal const &amp;, allocator_type const &amp;)">rtree(parameters_type const &amp;, indexable_getter const &amp;, value_equal const &amp;, allocator_type const &amp;)</a> </h5></div></div></div> <p> <a class="indexterm" name="idp60531304"></a> The constructor. </p> <h6> <a name="geometry.reference.spatial_indexes.boost__geometry__index__rtree.rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.h0"></a> <span class="phrase"><a name="geometry.reference.spatial_indexes.boost__geometry__index__rtree.rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.synopsis"></a></span><a class="link" href="rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.html#geometry.reference.spatial_indexes.boost__geometry__index__rtree.rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.synopsis">Synopsis</a> </h6> <pre class="programlisting"><code class="computeroutput"><span class="identifier">rtree</span></code><code class="computeroutput"><span class="special">(</span></code><code class="literal"><a class="link" href="../boost__geometry__index__rtree.html#classboost_1_1geometry_1_1index_1_1rtree_1a80db5532eb59f7a809bd44ded265eb17">parameters_type</a></code><code class="computeroutput"> <span class="keyword">const</span> <span class="special">&amp;</span></code> <code class="computeroutput"><span class="identifier">parameters</span></code><code class="computeroutput"><span class="special">,</span></code> <code class="literal"><a class="link" href="../boost__geometry__index__rtree.html#classboost_1_1geometry_1_1index_1_1rtree_1a43a7adb311cafc08e23010ccb4e97fb5">indexable_getter</a></code><code class="computeroutput"> <span class="keyword">const</span> <span class="special">&amp;</span></code> <code class="computeroutput"><span class="identifier">getter</span></code><code class="computeroutput"><span class="special">,</span></code> <code class="literal"><a class="link" href="../boost__geometry__index__rtree.html#classboost_1_1geometry_1_1index_1_1rtree_1ad8fe544de514014a1bd87ea1b881ff9b">value_equal</a></code><code class="computeroutput"> <span class="keyword">const</span> <span class="special">&amp;</span></code> <code class="computeroutput"><span class="identifier">equal</span></code><code class="computeroutput"><span class="special">,</span></code> <code class="literal"><a class="link" href="../boost__geometry__index__rtree.html#classboost_1_1geometry_1_1index_1_1rtree_1ab6618b5c7e88ed70533233fbac0f5b2e">allocator_type</a></code><code class="computeroutput"> <span class="keyword">const</span> <span class="special">&amp;</span></code> <code class="computeroutput"><span class="identifier">allocator</span></code><code class="computeroutput"><span class="special">)</span></code> </pre> <h6> <a name="geometry.reference.spatial_indexes.boost__geometry__index__rtree.rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.h1"></a> <span class="phrase"><a name="geometry.reference.spatial_indexes.boost__geometry__index__rtree.rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.parameter_s_"></a></span><a class="link" href="rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.html#geometry.reference.spatial_indexes.boost__geometry__index__rtree.rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.parameter_s_">Parameter(s)</a> </h6> <div class="informaltable"><table class="table"> <colgroup> <col> <col> <col> </colgroup> <thead><tr> <th> <p> Type </p> </th> <th> <p> Name </p> </th> <th> <p> Description </p> </th> </tr></thead> <tbody> <tr> <td> <p> <code class="literal"><a class="link" href="../boost__geometry__index__rtree.html#classboost_1_1geometry_1_1index_1_1rtree_1a80db5532eb59f7a809bd44ded265eb17">parameters_type</a></code><code class="computeroutput"> <span class="keyword">const</span> <span class="special">&amp;</span></code> </p> </td> <td> <p> <code class="computeroutput"><span class="identifier">parameters</span></code> </p> </td> <td> <p> The parameters object. </p> </td> </tr> <tr> <td> <p> <code class="literal"><a class="link" href="../boost__geometry__index__rtree.html#classboost_1_1geometry_1_1index_1_1rtree_1a43a7adb311cafc08e23010ccb4e97fb5">indexable_getter</a></code><code class="computeroutput"> <span class="keyword">const</span> <span class="special">&amp;</span></code> </p> </td> <td> <p> <code class="computeroutput"><span class="identifier">getter</span></code> </p> </td> <td> <p> The function object extracting Indexable from Value. </p> </td> </tr> <tr> <td> <p> <code class="literal"><a class="link" href="../boost__geometry__index__rtree.html#classboost_1_1geometry_1_1index_1_1rtree_1ad8fe544de514014a1bd87ea1b881ff9b">value_equal</a></code><code class="computeroutput"> <span class="keyword">const</span> <span class="special">&amp;</span></code> </p> </td> <td> <p> <code class="computeroutput"><span class="identifier">equal</span></code> </p> </td> <td> <p> The function object comparing Values. </p> </td> </tr> <tr> <td> <p> <code class="literal"><a class="link" href="../boost__geometry__index__rtree.html#classboost_1_1geometry_1_1index_1_1rtree_1ab6618b5c7e88ed70533233fbac0f5b2e">allocator_type</a></code><code class="computeroutput"> <span class="keyword">const</span> <span class="special">&amp;</span></code> </p> </td> <td> <p> <code class="computeroutput"><span class="identifier">allocator</span></code> </p> </td> <td> <p> The allocator object. </p> </td> </tr> </tbody> </table></div> <h6> <a name="geometry.reference.spatial_indexes.boost__geometry__index__rtree.rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.h2"></a> <span class="phrase"><a name="geometry.reference.spatial_indexes.boost__geometry__index__rtree.rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.throws"></a></span><a class="link" href="rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.html#geometry.reference.spatial_indexes.boost__geometry__index__rtree.rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.throws">Throws</a> </h6> <p> If allocator copy constructor throws. </p> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2009-2013 Barend Gehrels, Bruno Lalande, Mateusz Loskot, Adam Wulkiewicz<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="rtree__.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../boost__geometry__index__rtree.html"><img src="../../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="rtree_iterator__iterator_.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
NixaSoftware/CVis
venv/bin/libs/geometry/doc/html/geometry/reference/spatial_indexes/boost__geometry__index__rtree/rtree_parameters_type_const____indexable_getter_const____value_equal_const____allocator_type_const___.html
HTML
apache-2.0
11,523
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 27 14:54:13 PDT 2015 --> <title>ByteArrayDeserializer (clients 0.8.3-SNAPSHOT API)</title> <meta name="date" content="2015-03-27"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="ByteArrayDeserializer (clients 0.8.3-SNAPSHOT API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev Class</li> <li><a href="../../../../../org/apache/kafka/common/serialization/ByteArraySerializer.html" title="class in org.apache.kafka.common.serialization"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/kafka/common/serialization/ByteArrayDeserializer.html" target="_top">Frames</a></li> <li><a href="ByteArrayDeserializer.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.kafka.common.serialization</div> <h2 title="Class ByteArrayDeserializer" class="title">Class ByteArrayDeserializer</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.apache.kafka.common.serialization.ByteArrayDeserializer</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd><a href="../../../../../org/apache/kafka/common/serialization/Deserializer.html" title="interface in org.apache.kafka.common.serialization">Deserializer</a>&lt;byte[]&gt;</dd> </dl> <hr> <br> <pre>public class <span class="strong">ByteArrayDeserializer</span> extends java.lang.Object implements <a href="../../../../../org/apache/kafka/common/serialization/Deserializer.html" title="interface in org.apache.kafka.common.serialization">Deserializer</a>&lt;byte[]&gt;</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../org/apache/kafka/common/serialization/ByteArrayDeserializer.html#ByteArrayDeserializer()">ByteArrayDeserializer</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/kafka/common/serialization/ByteArrayDeserializer.html#close()">close</a></strong>()</code> <div class="block">Close this deserializer</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/kafka/common/serialization/ByteArrayDeserializer.html#configure(java.util.Map, boolean)">configure</a></strong>(java.util.Map&lt;java.lang.String,?&gt;&nbsp;configs, boolean&nbsp;isKey)</code> <div class="block">Configure this class.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>byte[]</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/kafka/common/serialization/ByteArrayDeserializer.html#deserialize(java.lang.String, byte[])">deserialize</a></strong>(java.lang.String&nbsp;topic, byte[]&nbsp;data)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="ByteArrayDeserializer()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>ByteArrayDeserializer</h4> <pre>public&nbsp;ByteArrayDeserializer()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="configure(java.util.Map, boolean)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>configure</h4> <pre>public&nbsp;void&nbsp;configure(java.util.Map&lt;java.lang.String,?&gt;&nbsp;configs, boolean&nbsp;isKey)</pre> <div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../../../org/apache/kafka/common/serialization/Deserializer.html#configure(java.util.Map, boolean)">Deserializer</a></code></strong></div> <div class="block">Configure this class.</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/kafka/common/serialization/Deserializer.html#configure(java.util.Map, boolean)">configure</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/kafka/common/serialization/Deserializer.html" title="interface in org.apache.kafka.common.serialization">Deserializer</a>&lt;byte[]&gt;</code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>configs</code> - configs in key/value pairs</dd><dd><code>isKey</code> - whether is for key or value</dd></dl> </li> </ul> <a name="deserialize(java.lang.String, byte[])"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>deserialize</h4> <pre>public&nbsp;byte[]&nbsp;deserialize(java.lang.String&nbsp;topic, byte[]&nbsp;data)</pre> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/kafka/common/serialization/Deserializer.html#deserialize(java.lang.String, byte[])">deserialize</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/kafka/common/serialization/Deserializer.html" title="interface in org.apache.kafka.common.serialization">Deserializer</a>&lt;byte[]&gt;</code></dd> <dt><span class="strong">Parameters:</span></dt><dd><code>topic</code> - topic associated with the data</dd><dd><code>data</code> - serialized bytes</dd> <dt><span class="strong">Returns:</span></dt><dd>deserialized typed data</dd></dl> </li> </ul> <a name="close()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>close</h4> <pre>public&nbsp;void&nbsp;close()</pre> <div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../../../org/apache/kafka/common/serialization/Deserializer.html#close()">Deserializer</a></code></strong></div> <div class="block">Close this deserializer</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../org/apache/kafka/common/serialization/Deserializer.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/apache/kafka/common/serialization/Deserializer.html" title="interface in org.apache.kafka.common.serialization">Deserializer</a>&lt;byte[]&gt;</code></dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev Class</li> <li><a href="../../../../../org/apache/kafka/common/serialization/ByteArraySerializer.html" title="class in org.apache.kafka.common.serialization"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/kafka/common/serialization/ByteArrayDeserializer.html" target="_top">Frames</a></li> <li><a href="ByteArrayDeserializer.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
WillCh/cs286A
dataMover/kafka/clients/build/docs/javadoc/org/apache/kafka/common/serialization/ByteArrayDeserializer.html
HTML
bsd-2-clause
12,034
<!-- @license Copyright (c) 2015 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --><html><head><link rel="import" href="../polymer/polymer.html"> <link rel="import" href="../iron-behaviors/iron-button-state.html"> <link rel="import" href="../iron-behaviors/iron-control-state.html"> <link rel="import" href="../iron-flex-layout/iron-flex-layout.html"> <link rel="import" href="../paper-behaviors/paper-ripple-behavior.html"> <!-- `paper-tab` is styled to look like a tab. It should be used in conjunction with `paper-tabs`. Example: <paper-tabs selected="0"> <paper-tab>TAB 1</paper-tab> <paper-tab>TAB 2</paper-tab> <paper-tab>TAB 3</paper-tab> </paper-tabs> ### Styling The following custom properties and mixins are available for styling: Custom property | Description | Default ----------------|-------------|---------- `--paper-tab-ink` | Ink color | `--paper-yellow-a100` `--paper-tab` | Mixin applied to the tab | `{}` `--paper-tab-content` | Mixin applied to the tab content | `{}` `--paper-tab-content-unselected` | Mixin applied to the tab content when the tab is not selected | `{}` This element applies the mixin `--paper-font-common-base` but does not import `paper-styles/typography.html`. In order to apply the `Roboto` font to this element, make sure you've imported `paper-styles/typography.html`. --> </head><body><dom-module id="paper-tab"> <template> <style> :host { @apply(--layout-inline); @apply(--layout-center); @apply(--layout-center-justified); @apply(--layout-flex-auto); position: relative; padding: 0 12px; overflow: hidden; cursor: pointer; @apply(--paper-font-common-base); @apply(--paper-tab); } :host(:focus) { outline: none; } :host([link]) { padding: 0; } .tab-content { height: 100%; transform: translateZ(0); -webkit-transform: translateZ(0); transition: opacity 0.1s cubic-bezier(0.4, 0.0, 1, 1); @apply(--layout-horizontal); @apply(--layout-center-center); @apply(--layout-flex-auto); @apply(--paper-tab-content); } :host(:not(.iron-selected)) > .tab-content { opacity: 0.8; @apply(--paper-tab-content-unselected); } :host(:focus) .tab-content { opacity: 1; font-weight: 700; } paper-ripple { color: var(--paper-tab-ink, --paper-yellow-a100); } .tab-content > ::content > a { @apply(--layout-flex-auto) height: 100%; } </style> <div class="tab-content"> <content></content> </div> </template> </dom-module> <script src="paper-tab-extracted.js"></script></body></html>
ds-hwang/chromium-crosswalk
third_party/polymer/v1_0/components-chromium/paper-tabs/paper-tab.html
HTML
bsd-3-clause
3,227
<article> <section class="header"> Posted on $date$ $if(author)$ by $author$ $endif$ </section> <section> $body$ </section> </article>
aniketd/aniketd.github.io
templates/post.html
HTML
bsd-3-clause
195
<script src="/$/content/scripts/project.js"></script> <div id="create-view" ng-controller="ProjectController as model"> <h2> Lark 入门 </h2> </div>
Lanfei/egret-core
tools/server/views/help.html
HTML
bsd-3-clause
173
{% extends "account/base.html" %} {% load i18n %} {% block head_title %}{% trans "Delete Password" %}{% endblock %} {% block content %} <h2>{% trans "Delete Password" %}</h2> <p>{% blocktrans %}You may delete your password since you are currently logged in using OpenID.{% endblocktrans %}</p> <form method="post" action="./"> {% csrf_token %} <button class="btn" type="submit">{% trans "delete my password" %}</button> </form> {% endblock %}
watchdogpolska/poradnia.siecobywatelska.pl
poradnia/templates/account/password_delete.html
HTML
bsd-3-clause
487
<!DOCTYPE html> <title>Test running different types of CDM in the system</title> <div id="console"></div> <script src='eme_player_js/app_loader.js' type='text/javascript'></script> <script type='text/javascript'> function log(message) { let consoleElement = document.getElementById('console'); let entry = document.createElement('div'); entry.appendChild(document.createTextNode(message)); consoleElement.appendChild(entry); console.log(message); } const EXTERNAL_CLEARKEY_DIFFERENTGUID = 'org.chromium.externalclearkey.differentguid'; const crashKeyId = 'crash'; const normalJwkSet = Utils.createJWKData(KEY_ID, KEY); const crashJwkSet = Utils.createJWKData(crashKeyId, KEY); var config = { initDataTypes : [ 'keyids' ], videoCapabilities: [{contentType: 'video/webm; codecs="vp8"'}], persistentState: 'optional', sessionTypes: ['temporary'], }; function createMediaKeySession(key_system) { var mediaKeySession; return navigator.requestMediaKeySystemAccess(key_system, [config]) .then(function(access) { initDataType = access.getConfiguration().initDataTypes[0]; initData = Utils.createKeyIdsInitializationData(KEY_ID) return access.createMediaKeys(); }).then(function(result) { log('CDM created'); var mediaKeys = result; mediaKeySession = mediaKeys.createSession(); return mediaKeySession.generateRequest(initDataType, initData); }).then(function() { mediaKeySession.update(normalJwkSet); }).then(function() { return mediaKeySession; }); } log('Start test'); // Using EXTERNAL_CLEARKEY var session1; // Both using EXTERNAL_CLEARKEY_DIFFERENTGUID var session2; var session3; // The following creates 3 MediaKeys instances each with a MediaKeySession. // MediaKeys using different CDM GUID will run in different processes. // |session1| uses EXTERNAL_CLEARKEY that is registered with the default GUID // for Clear Key CDM. |session2/3| use EXTERNAL_CLEARKEY_DIFFERENTGUID that is // registered with a different GUID. So |session1| will run in process1, and // |session2/3| will run in process2. // // Then we send a special response |crashJwkSet| to session2 which will cause // the process2 to crash. This will close both |session2/3| as they run in the // same process. |session1| should not be affected. Then we try to create // another MediaKeySession using EXTERNAL_CLEARKEY_DIFFERENTGUID, and the // creation should work as a new process should be started. createMediaKeySession(EXTERNAL_CLEARKEY).then(function(session) { log('Session1 created'); session1 = session; return createMediaKeySession(EXTERNAL_CLEARKEY_DIFFERENTGUID); }).then(function(session) { log('Session2 created'); session2 = session; return createMediaKeySession(EXTERNAL_CLEARKEY_DIFFERENTGUID); }).then(function(session) { log('Session3 created'); session3 = session; log('Crash session2'); return session.update(crashJwkSet); }).finally(function() { // Due to the crash, the update() above could resolve or reject. // So use "finally" so that we continue the test regardless. log('Session2 crashed'); return session2.closed; }).then(function() { log('Session2 closed'); return session3.closed; }).then(function() { log('Session3 also closed'); return session1.update(normalJwkSet); }).then(function() { log('Session1 still works'); return createMediaKeySession(EXTERNAL_CLEARKEY_DIFFERENTGUID); }).then(function(session) { log('Can still create a session after crash'); Utils.setResultInTitle('ENDED'); }).catch(function(error) { log('Error: ' + error); Utils.failTest('Test failed: ' + error); }); </script> </html>
youtube/cobalt
third_party/chromium/media/test/data/multiple_cdm_types.html
HTML
bsd-3-clause
3,807
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_131) on Mon Nov 13 11:51:51 EST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class com.exacttarget.fuelsdk.internal.TriggeredSendDefinition (Salesforce Marketing Cloud Java SDK 1.2.1 API)</title> <meta name="date" content="2017-11-13"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.exacttarget.fuelsdk.internal.TriggeredSendDefinition (Salesforce Marketing Cloud Java SDK 1.2.1 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/exacttarget/fuelsdk/internal/class-use/TriggeredSendDefinition.html" target="_top">Frames</a></li> <li><a href="TriggeredSendDefinition.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.exacttarget.fuelsdk.internal.TriggeredSendDefinition" class="title">Uses of Class<br>com.exacttarget.fuelsdk.internal.TriggeredSendDefinition</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.exacttarget.fuelsdk.internal">com.exacttarget.fuelsdk.internal</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="com.exacttarget.fuelsdk.internal"> <!-- --> </a> <h3>Uses of <a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a> in <a href="../../../../../com/exacttarget/fuelsdk/internal/package-summary.html">com.exacttarget.fuelsdk.internal</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../com/exacttarget/fuelsdk/internal/package-summary.html">com.exacttarget.fuelsdk.internal</a> declared as <a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></code></td> <td class="colLast"><span class="typeNameLabel">SenderProfile.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/SenderProfile.html#autoForwardTriggeredSend">autoForwardTriggeredSend</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected <a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></code></td> <td class="colLast"><span class="typeNameLabel">SenderProfile.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/SenderProfile.html#autoReplyTriggeredSend">autoReplyTriggeredSend</a></span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></code></td> <td class="colLast"><span class="typeNameLabel">SendEmailMOKeyword.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/SendEmailMOKeyword.html#triggeredSend">triggeredSend</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected <a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></code></td> <td class="colLast"><span class="typeNameLabel">TriggeredSendSummary.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendSummary.html#triggeredSendDefinition">triggeredSendDefinition</a></span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></code></td> <td class="colLast"><span class="typeNameLabel">TriggeredSend.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSend.html#triggeredSendDefinition">triggeredSendDefinition</a></span></code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../com/exacttarget/fuelsdk/internal/package-summary.html">com.exacttarget.fuelsdk.internal</a> that return <a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></code></td> <td class="colLast"><span class="typeNameLabel">ObjectFactory.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/ObjectFactory.html#createTriggeredSendDefinition--">createTriggeredSendDefinition</a></span>()</code> <div class="block">Create an instance of <a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal"><code>TriggeredSendDefinition</code></a></div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></code></td> <td class="colLast"><span class="typeNameLabel">SenderProfile.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/SenderProfile.html#getAutoForwardTriggeredSend--">getAutoForwardTriggeredSend</a></span>()</code> <div class="block">Gets the value of the autoForwardTriggeredSend property.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></code></td> <td class="colLast"><span class="typeNameLabel">SenderProfile.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/SenderProfile.html#getAutoReplyTriggeredSend--">getAutoReplyTriggeredSend</a></span>()</code> <div class="block">Gets the value of the autoReplyTriggeredSend property.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></code></td> <td class="colLast"><span class="typeNameLabel">SendEmailMOKeyword.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/SendEmailMOKeyword.html#getTriggeredSend--">getTriggeredSend</a></span>()</code> <div class="block">Gets the value of the triggeredSend property.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></code></td> <td class="colLast"><span class="typeNameLabel">TriggeredSendSummary.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendSummary.html#getTriggeredSendDefinition--">getTriggeredSendDefinition</a></span>()</code> <div class="block">Gets the value of the triggeredSendDefinition property.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></code></td> <td class="colLast"><span class="typeNameLabel">TriggeredSend.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSend.html#getTriggeredSendDefinition--">getTriggeredSendDefinition</a></span>()</code> <div class="block">Gets the value of the triggeredSendDefinition property.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../com/exacttarget/fuelsdk/internal/package-summary.html">com.exacttarget.fuelsdk.internal</a> that return types with arguments of type <a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/javax/xml/bind/JAXBElement.html?is-external=true" title="class or interface in javax.xml.bind">JAXBElement</a>&lt;<a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ObjectFactory.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/ObjectFactory.html#createTriggeredSendDefinition-com.exacttarget.fuelsdk.internal.TriggeredSendDefinition-">createTriggeredSendDefinition</a></span>(<a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a>&nbsp;value)</code> <div class="block">Create an instance of <a href="http://docs.oracle.com/javase/8/docs/api/javax/xml/bind/JAXBElement.html?is-external=true" title="class or interface in javax.xml.bind"><code>JAXBElement</code></a><code>&lt;</code><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal"><code>TriggeredSendDefinition</code></a><code>&gt;</code>}</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../com/exacttarget/fuelsdk/internal/package-summary.html">com.exacttarget.fuelsdk.internal</a> with parameters of type <a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/javax/xml/bind/JAXBElement.html?is-external=true" title="class or interface in javax.xml.bind">JAXBElement</a>&lt;<a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ObjectFactory.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/ObjectFactory.html#createTriggeredSendDefinition-com.exacttarget.fuelsdk.internal.TriggeredSendDefinition-">createTriggeredSendDefinition</a></span>(<a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a>&nbsp;value)</code> <div class="block">Create an instance of <a href="http://docs.oracle.com/javase/8/docs/api/javax/xml/bind/JAXBElement.html?is-external=true" title="class or interface in javax.xml.bind"><code>JAXBElement</code></a><code>&lt;</code><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal"><code>TriggeredSendDefinition</code></a><code>&gt;</code>}</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">SenderProfile.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/SenderProfile.html#setAutoForwardTriggeredSend-com.exacttarget.fuelsdk.internal.TriggeredSendDefinition-">setAutoForwardTriggeredSend</a></span>(<a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a>&nbsp;value)</code> <div class="block">Sets the value of the autoForwardTriggeredSend property.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">SenderProfile.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/SenderProfile.html#setAutoReplyTriggeredSend-com.exacttarget.fuelsdk.internal.TriggeredSendDefinition-">setAutoReplyTriggeredSend</a></span>(<a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a>&nbsp;value)</code> <div class="block">Sets the value of the autoReplyTriggeredSend property.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">SendEmailMOKeyword.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/SendEmailMOKeyword.html#setTriggeredSend-com.exacttarget.fuelsdk.internal.TriggeredSendDefinition-">setTriggeredSend</a></span>(<a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a>&nbsp;value)</code> <div class="block">Sets the value of the triggeredSend property.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">TriggeredSendSummary.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendSummary.html#setTriggeredSendDefinition-com.exacttarget.fuelsdk.internal.TriggeredSendDefinition-">setTriggeredSendDefinition</a></span>(<a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a>&nbsp;value)</code> <div class="block">Sets the value of the triggeredSendDefinition property.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">TriggeredSend.</span><code><span class="memberNameLink"><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSend.html#setTriggeredSendDefinition-com.exacttarget.fuelsdk.internal.TriggeredSendDefinition-">setTriggeredSendDefinition</a></span>(<a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">TriggeredSendDefinition</a>&nbsp;value)</code> <div class="block">Sets the value of the triggeredSendDefinition property.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/exacttarget/fuelsdk/internal/TriggeredSendDefinition.html" title="class in com.exacttarget.fuelsdk.internal">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/exacttarget/fuelsdk/internal/class-use/TriggeredSendDefinition.html" target="_top">Frames</a></li> <li><a href="TriggeredSendDefinition.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p> </body> </html>
salesforcefuel/FuelSDK-Java
docs/com/exacttarget/fuelsdk/internal/class-use/TriggeredSendDefinition.html
HTML
bsd-3-clause
20,576
<!-- @license Copyright (c) 2017 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --> <div> <span>purposefully unclosed tag </div>
webcomponents/polyfills
packages/tests/html-imports/html/imports/unclosed-import.html
HTML
bsd-3-clause
588
<!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"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>libpqxx: result.hxx Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">libpqxx &#160;<span id="projectnumber">4.0.1</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.1.2 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('a00156_source.html','');}); </script> <div id="doc-content"> <div class="header"> <div class="headertitle"> <div class="title">result.hxx</div> </div> </div><!--header--> <div class="contents"> <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;<span class="comment">/*-------------------------------------------------------------------------</span></div> <div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160;<span class="comment"> *</span></div> <div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160;<span class="comment"> * FILE</span></div> <div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160;<span class="comment"> * pqxx/result.hxx</span></div> <div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160;<span class="comment"> *</span></div> <div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160;<span class="comment"> * DESCRIPTION</span></div> <div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160;<span class="comment"> * definitions for the pqxx::result class and support classes.</span></div> <div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160;<span class="comment"> * pqxx::result represents the set of result tuples from a database query</span></div> <div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160;<span class="comment"> * DO NOT INCLUDE THIS FILE DIRECTLY; include pqxx/result instead.</span></div> <div class="line"><a name="l00010"></a><span class="lineno"> 10</span>&#160;<span class="comment"> *</span></div> <div class="line"><a name="l00011"></a><span class="lineno"> 11</span>&#160;<span class="comment"> * Copyright (c) 2001-2012, Jeroen T. Vermeulen &lt;jtv@xs4all.nl&gt;</span></div> <div class="line"><a name="l00012"></a><span class="lineno"> 12</span>&#160;<span class="comment"> *</span></div> <div class="line"><a name="l00013"></a><span class="lineno"> 13</span>&#160;<span class="comment"> * See COPYING for copyright license. If you did not receive a file called</span></div> <div class="line"><a name="l00014"></a><span class="lineno"> 14</span>&#160;<span class="comment"> * COPYING with this source code, please notify the distributor of this mistake,</span></div> <div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160;<span class="comment"> * or contact the author.</span></div> <div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160;<span class="comment"> *</span></div> <div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160;<span class="comment"> *-------------------------------------------------------------------------</span></div> <div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160;<span class="comment"> */</span></div> <div class="line"><a name="l00019"></a><span class="lineno"> 19</span>&#160;<span class="preprocessor">#ifndef PQXX_H_RESULT</span></div> <div class="line"><a name="l00020"></a><span class="lineno"> 20</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define PQXX_H_RESULT</span></div> <div class="line"><a name="l00021"></a><span class="lineno"> 21</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00022"></a><span class="lineno"> 22</span>&#160;<span class="preprocessor">#include &quot;pqxx/compiler-public.hxx&quot;</span></div> <div class="line"><a name="l00023"></a><span class="lineno"> 23</span>&#160;<span class="preprocessor">#include &quot;pqxx/compiler-internal-pre.hxx&quot;</span></div> <div class="line"><a name="l00024"></a><span class="lineno"> 24</span>&#160;</div> <div class="line"><a name="l00025"></a><span class="lineno"> 25</span>&#160;<span class="preprocessor">#ifdef PQXX_HAVE_IOS</span></div> <div class="line"><a name="l00026"></a><span class="lineno"> 26</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#include &lt;ios&gt;</span></div> <div class="line"><a name="l00027"></a><span class="lineno"> 27</span>&#160;<span class="preprocessor">#endif</span></div> <div class="line"><a name="l00028"></a><span class="lineno"> 28</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00029"></a><span class="lineno"> 29</span>&#160;<span class="preprocessor">#include &lt;stdexcept&gt;</span></div> <div class="line"><a name="l00030"></a><span class="lineno"> 30</span>&#160;</div> <div class="line"><a name="l00031"></a><span class="lineno"> 31</span>&#160;<span class="preprocessor">#include &quot;pqxx/internal/result_data.hxx&quot;</span></div> <div class="line"><a name="l00032"></a><span class="lineno"> 32</span>&#160;</div> <div class="line"><a name="l00033"></a><span class="lineno"> 33</span>&#160;<span class="preprocessor">#include &quot;pqxx/except&quot;</span></div> <div class="line"><a name="l00034"></a><span class="lineno"> 34</span>&#160;<span class="preprocessor">#include &quot;pqxx/field&quot;</span></div> <div class="line"><a name="l00035"></a><span class="lineno"> 35</span>&#160;<span class="preprocessor">#include &quot;pqxx/tuple&quot;</span></div> <div class="line"><a name="l00036"></a><span class="lineno"> 36</span>&#160;<span class="preprocessor">#include &quot;pqxx/util&quot;</span></div> <div class="line"><a name="l00037"></a><span class="lineno"> 37</span>&#160;</div> <div class="line"><a name="l00038"></a><span class="lineno"> 38</span>&#160;<span class="comment">/* Methods tested in eg. self-test program test001 are marked with &quot;//[t1]&quot;</span></div> <div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160;<span class="comment"> */</span></div> <div class="line"><a name="l00040"></a><span class="lineno"> 40</span>&#160;</div> <div class="line"><a name="l00041"></a><span class="lineno"> 41</span>&#160;<span class="comment">// TODO: Support SQL arrays</span></div> <div class="line"><a name="l00042"></a><span class="lineno"> 42</span>&#160;</div> <div class="line"><a name="l00043"></a><span class="lineno"> 43</span>&#160;<span class="keyword">namespace </span>pqxx</div> <div class="line"><a name="l00044"></a><span class="lineno"> 44</span>&#160;{</div> <div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160;<span class="keyword">namespace </span>internal</div> <div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160;{</div> <div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160;<span class="keyword">namespace </span>gate</div> <div class="line"><a name="l00048"></a><span class="lineno"> 48</span>&#160;{</div> <div class="line"><a name="l00049"></a><span class="lineno"> 49</span>&#160;<span class="keyword">class </span>result_connection;</div> <div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160;<span class="keyword">class </span>result_creation;</div> <div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160;<span class="keyword">class </span>result_sql_cursor;</div> <div class="line"><a name="l00052"></a><span class="lineno"> 52</span>&#160;} <span class="comment">// namespace internal::gate</span></div> <div class="line"><a name="l00053"></a><span class="lineno"> 53</span>&#160;} <span class="comment">// namespace internal</span></div> <div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160;</div> <div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160;</div> <div class="line"><a name="l00056"></a><span class="lineno"> 56</span>&#160;<span class="keyword">class </span>const_result_iterator;</div> <div class="line"><a name="l00057"></a><span class="lineno"> 57</span>&#160;<span class="keyword">class </span>const_reverse_result_iterator;</div> <div class="line"><a name="l00058"></a><span class="lineno"> 58</span>&#160;</div> <div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160;</div> <div class="line"><a name="l00061"></a><span class="lineno"> 61</span>&#160;</div> <div class="line"><a name="l00081"></a><span class="lineno"><a class="code" href="a00082.html"> 81</a></span>&#160;<span class="keyword">class </span>PQXX_LIBEXPORT <a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">result</a> :</div> <div class="line"><a name="l00082"></a><span class="lineno"> 82</span>&#160; <span class="keyword">private</span> <a class="code" href="a00073.html" title="Reference-counted smart pointer to libpq-allocated object.">internal::PQAlloc</a>&lt;</div> <div class="line"><a name="l00083"></a><span class="lineno"> 83</span>&#160; const internal::result_data, internal::freemem_result_data&gt;</div> <div class="line"><a name="l00084"></a><span class="lineno"> 84</span>&#160;{</div> <div class="line"><a name="l00085"></a><span class="lineno"> 85</span>&#160; <span class="keyword">typedef</span> <a class="code" href="a00073.html" title="Reference-counted smart pointer to libpq-allocated object.">internal::PQAlloc</a>&lt;</div> <div class="line"><a name="l00086"></a><span class="lineno"> 86</span>&#160; <span class="keyword">const</span> internal::result_data, internal::freemem_result_data&gt; <a class="code" href="a00073.html">super</a>;</div> <div class="line"><a name="l00087"></a><span class="lineno"> 87</span>&#160;<span class="keyword">public</span>:</div> <div class="line"><a name="l00088"></a><span class="lineno"><a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940"> 88</a></span>&#160; <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> <a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">size_type</a>;</div> <div class="line"><a name="l00089"></a><span class="lineno"><a class="code" href="a00082.html#abec7f7f4d7ed030f38b2a123b632b818"> 89</a></span>&#160; <span class="keyword">typedef</span> <span class="keywordtype">signed</span> <span class="keywordtype">long</span> <a class="code" href="a00082.html#abec7f7f4d7ed030f38b2a123b632b818">difference_type</a>;</div> <div class="line"><a name="l00090"></a><span class="lineno"><a class="code" href="a00082.html#a1d2df6fa727dd62239d98a0af8267cd2"> 90</a></span>&#160; <span class="keyword">typedef</span> <a class="code" href="a00107.html" title="Reference to one row in a result.">pqxx::tuple</a> <a class="code" href="a00082.html#a1d2df6fa727dd62239d98a0af8267cd2">reference</a>;</div> <div class="line"><a name="l00091"></a><span class="lineno"><a class="code" href="a00082.html#a231cf3451b578e1a77a0e3ba5c5332c0"> 91</a></span>&#160; <span class="keyword">typedef</span> <a class="code" href="a00025.html" title="Iterator for rows (tuples) in a result. Use as result::const_iterator.">const_result_iterator</a> <a class="code" href="a00082.html#a231cf3451b578e1a77a0e3ba5c5332c0">const_iterator</a>;</div> <div class="line"><a name="l00092"></a><span class="lineno"><a class="code" href="a00082.html#a16732cbff5bf11cefd68471577344551"> 92</a></span>&#160; <span class="keyword">typedef</span> <a class="code" href="a00025.html" title="Iterator for rows (tuples) in a result. Use as result::const_iterator.">const_iterator</a> <a class="code" href="a00082.html#a16732cbff5bf11cefd68471577344551">pointer</a>;</div> <div class="line"><a name="l00093"></a><span class="lineno"><a class="code" href="a00082.html#afa18f18140865290a1e7a3461cc604f4"> 93</a></span>&#160; <span class="keyword">typedef</span> <a class="code" href="a00025.html" title="Iterator for rows (tuples) in a result. Use as result::const_iterator.">const_iterator</a> <a class="code" href="a00082.html#afa18f18140865290a1e7a3461cc604f4">iterator</a>;</div> <div class="line"><a name="l00094"></a><span class="lineno"><a class="code" href="a00082.html#a4e8a0b23393257bb8438323af622ab0b"> 94</a></span>&#160; <span class="keyword">typedef</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> <a class="code" href="a00082.html#a4e8a0b23393257bb8438323af622ab0b">const_reverse_iterator</a>;</div> <div class="line"><a name="l00095"></a><span class="lineno"><a class="code" href="a00082.html#a95891ed8c127338b022f98365cce1e91"> 95</a></span>&#160; <span class="keyword">typedef</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_iterator</a> <a class="code" href="a00082.html#a95891ed8c127338b022f98365cce1e91">reverse_iterator</a>;</div> <div class="line"><a name="l00096"></a><span class="lineno"> 96</span>&#160;</div> <div class="line"><a name="l00098"></a><span class="lineno"><a class="code" href="a00082.html#ad928c2c47d1f6d890e4a97aa225ff9d5"> 98</a></span>&#160; <span class="keyword">typedef</span> <a class="code" href="a00107.html" title="Reference to one row in a result.">pqxx::tuple</a> <a class="code" href="a00082.html#ad928c2c47d1f6d890e4a97aa225ff9d5" title="For backward compatibility only.">tuple</a>;</div> <div class="line"><a name="l00100"></a><span class="lineno"><a class="code" href="a00082.html#ab3bcc6d210c747335a9f86aef975dfa9"> 100</a></span>&#160; <span class="keyword">typedef</span> <a class="code" href="a00040.html" title="Reference to a field in a result set.">pqxx::field</a> <a class="code" href="a00082.html#ab3bcc6d210c747335a9f86aef975dfa9" title="For backward compatibility only.">field</a>;</div> <div class="line"><a name="l00101"></a><span class="lineno"> 101</span>&#160;</div> <div class="line"><a name="l00102"></a><span class="lineno"><a class="code" href="a00082.html#aad8b1fd5e42dbfc4a4d75c0a1b0c6ddb"> 102</a></span>&#160; <a class="code" href="a00082.html#aad8b1fd5e42dbfc4a4d75c0a1b0c6ddb">result</a>() throw () : <a class="code" href="a00073.html">super</a>(), m_data(0) {} <span class="comment">//[t3]</span></div> <div class="line"><a name="l00103"></a><span class="lineno"><a class="code" href="a00082.html#a1d7279ca68e1d4da8da2829bb34e3b80"> 103</a></span>&#160; <a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">result</a>(<span class="keyword">const</span> <a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">result</a> &amp;rhs) <span class="keywordflow">throw</span> () : <span class="comment">//[t1]</span></div> <div class="line"><a name="l00104"></a><span class="lineno"> 104</span>&#160; <a class="code" href="a00073.html">super</a>(rhs), m_data(rhs.m_data) {}</div> <div class="line"><a name="l00105"></a><span class="lineno"> 105</span>&#160;</div> <div class="line"><a name="l00106"></a><span class="lineno"><a class="code" href="a00082.html#a6e2e28a20a517c6c3f4e4c9407fbe288"> 106</a></span>&#160; <a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">result</a> &amp;operator=(<span class="keyword">const</span> <a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">result</a> &amp;rhs) <span class="keywordflow">throw</span> () <span class="comment">//[t10]</span></div> <div class="line"><a name="l00107"></a><span class="lineno"> 107</span>&#160; { super::operator=(rhs); m_data=rhs.m_data; <span class="keywordflow">return</span> *<span class="keyword">this</span>; }</div> <div class="line"><a name="l00108"></a><span class="lineno"> 108</span>&#160;</div> <div class="line"><a name="l00113"></a><span class="lineno"> 113</span>&#160; <span class="keywordtype">bool</span> operator==(<span class="keyword">const</span> <a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">result</a> &amp;) <span class="keyword">const</span> throw (); <span class="comment">//[t70]</span></div> <div class="line"><a name="l00114"></a><span class="lineno"><a class="code" href="a00082.html#aced900b0f7d44652107e4df89df9023f"> 114</a></span>&#160; <span class="keywordtype">bool</span> operator!=(const <a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">result</a> &amp;rhs) const throw () <span class="comment">//[t70]</span></div> <div class="line"><a name="l00115"></a><span class="lineno"> 115</span>&#160; { <span class="keywordflow">return</span> !operator==(rhs); }</div> <div class="line"><a name="l00117"></a><span class="lineno"> 117</span>&#160;</div> <div class="line"><a name="l00118"></a><span class="lineno"> 118</span>&#160; const_reverse_iterator rbegin() <span class="keyword">const</span>; <span class="comment">//[t75]</span></div> <div class="line"><a name="l00119"></a><span class="lineno"> 119</span>&#160; const_reverse_iterator rend() <span class="keyword">const</span>; <span class="comment">//[t75]</span></div> <div class="line"><a name="l00120"></a><span class="lineno"> 120</span>&#160;</div> <div class="line"><a name="l00121"></a><span class="lineno"> 121</span>&#160; const_iterator begin() <span class="keyword">const</span> throw (); <span class="comment">//[t1]</span></div> <div class="line"><a name="l00122"></a><span class="lineno"> 122</span>&#160; inline const_iterator end() const throw (); <span class="comment">//[t1]</span></div> <div class="line"><a name="l00123"></a><span class="lineno"> 123</span>&#160;</div> <div class="line"><a name="l00124"></a><span class="lineno"><a class="code" href="a00082.html#a68dd2275bab0b4e254573ee664738904"> 124</a></span>&#160; <a class="code" href="a00107.html" title="Reference to one row in a result.">reference</a> front() const throw () { <span class="keywordflow">return</span> <a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a>(<span class="keyword">this</span>,0); } <span class="comment">//[t74]</span></div> <div class="line"><a name="l00125"></a><span class="lineno"><a class="code" href="a00082.html#ab60d18b1e9d4666c28551da2ad0e37d5"> 125</a></span>&#160; <a class="code" href="a00107.html" title="Reference to one row in a result.">reference</a> <a class="code" href="a00082.html#ab60d18b1e9d4666c28551da2ad0e37d5">back</a>() <span class="keyword">const</span> throw () {<span class="keywordflow">return</span> <a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a>(<span class="keyword">this</span>,size()-1);} <span class="comment">//[t75]</span></div> <div class="line"><a name="l00126"></a><span class="lineno"> 126</span>&#160;</div> <div class="line"><a name="l00127"></a><span class="lineno"> 127</span>&#160; size_type PQXX_PURE size() <span class="keyword">const</span> throw (); <span class="comment">//[t2]</span></div> <div class="line"><a name="l00128"></a><span class="lineno"> 128</span>&#160; <span class="keywordtype">bool</span> PQXX_PURE empty() const throw (); <span class="comment">//[t11]</span></div> <div class="line"><a name="l00129"></a><span class="lineno"><a class="code" href="a00082.html#a51879f289b45e502f320b34dbbe023ca"> 129</a></span>&#160; <a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">size_type</a> capacity() const throw () { <span class="keywordflow">return</span> size(); } <span class="comment">//[t20]</span></div> <div class="line"><a name="l00130"></a><span class="lineno"> 130</span>&#160;</div> <div class="line"><a name="l00131"></a><span class="lineno"> 131</span>&#160; <span class="keywordtype">void</span> swap(<a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">result</a> &amp;) throw (); <span class="comment">//[t77]</span></div> <div class="line"><a name="l00132"></a><span class="lineno"> 132</span>&#160;</div> <div class="line"><a name="l00133"></a><span class="lineno"><a class="code" href="a00082.html#a3aac4e676b132a3499e70bb83bcc4bec"> 133</a></span>&#160; const <a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a> operator[](<a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">size_type</a> i) const throw () <span class="comment">//[t2]</span></div> <div class="line"><a name="l00134"></a><span class="lineno"> 134</span>&#160; { <span class="keywordflow">return</span> <a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a>(<span class="keyword">this</span>, i); }</div> <div class="line"><a name="l00135"></a><span class="lineno"> 135</span>&#160; <span class="keyword">const</span> <a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a> at(size_type) <span class="keyword">const</span> throw (<a class="code" href="a00077.html" title="Something is out of range, similar to std::out_of_range.">range_error</a>); <span class="comment">//[t10]</span></div> <div class="line"><a name="l00136"></a><span class="lineno"> 136</span>&#160;</div> <div class="line"><a name="l00137"></a><span class="lineno"><a class="code" href="a00082.html#a77542a235a4ca711267e30d84492ce3b"> 137</a></span>&#160; <span class="keywordtype">void</span> clear() throw () { super::reset(); m_data = 0; } <span class="comment">//[t20]</span></div> <div class="line"><a name="l00138"></a><span class="lineno"> 138</span>&#160;</div> <div class="line"><a name="l00143"></a><span class="lineno"> 143</span>&#160;</div> <div class="line"><a name="l00144"></a><span class="lineno"> 144</span>&#160; <a class="code" href="a00107.html#ac641388403460c8bc2ba5d340693d4be">tuple::size_type</a> PQXX_PURE columns() <span class="keyword">const</span> throw (); <span class="comment">//[t11]</span></div> <div class="line"><a name="l00145"></a><span class="lineno"> 145</span>&#160;</div> <div class="line"><a name="l00147"></a><span class="lineno"> 147</span>&#160; <a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a>::size_type column_number(const <span class="keywordtype">char</span> ColName[]) const; <span class="comment">//[t11]</span></div> <div class="line"><a name="l00148"></a><span class="lineno"> 148</span>&#160;</div> <div class="line"><a name="l00150"></a><span class="lineno"><a class="code" href="a00082.html#afd40988f258ee059b0e76dac6480d8b3"> 150</a></span>&#160; <a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a>::<a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">size_type</a> column_number(const PGSTD::<span class="keywordtype">string</span> &amp;Name) const <span class="comment">//[t11]</span></div> <div class="line"><a name="l00151"></a><span class="lineno"> 151</span>&#160; {<span class="keywordflow">return</span> <a class="code" href="a00082.html#afd40988f258ee059b0e76dac6480d8b3" title="Number of given column (throws exception if it doesn&#39;t exist)">column_number</a>(Name.c_str());}</div> <div class="line"><a name="l00152"></a><span class="lineno"> 152</span>&#160;</div> <div class="line"><a name="l00154"></a><span class="lineno"> 154</span>&#160; <span class="keyword">const</span> <span class="keywordtype">char</span> *column_name(<a class="code" href="a00107.html#ac641388403460c8bc2ba5d340693d4be">tuple::size_type</a> Number) <span class="keyword">const</span>; <span class="comment">//[t11]</span></div> <div class="line"><a name="l00155"></a><span class="lineno"> 155</span>&#160;</div> <div class="line"><a name="l00157"></a><span class="lineno"> 157</span>&#160; oid column_type(<a class="code" href="a00107.html#ac641388403460c8bc2ba5d340693d4be">tuple::size_type</a> ColNum) <span class="keyword">const</span>; <span class="comment">//[t7]</span></div> <div class="line"><a name="l00159"></a><span class="lineno"><a class="code" href="a00082.html#a8f7e6221f552199a88b3cfb787bd03c2"> 159</a></span>&#160;<span class="comment"></span> oid column_type(<span class="keywordtype">int</span> ColNum) <span class="keyword">const</span> <span class="comment">//[t7]</span></div> <div class="line"><a name="l00160"></a><span class="lineno"> 160</span>&#160; { <span class="keywordflow">return</span> <a class="code" href="a00082.html#a8f7e6221f552199a88b3cfb787bd03c2" title="Type of given column.">column_type</a>(<a class="code" href="a00107.html#ac641388403460c8bc2ba5d340693d4be">tuple::size_type</a>(ColNum)); }</div> <div class="line"><a name="l00161"></a><span class="lineno"> 161</span>&#160;</div> <div class="line"><a name="l00163"></a><span class="lineno"><a class="code" href="a00082.html#af56d00ec20a26b2dfeb3a83b481cf243"> 163</a></span>&#160; oid column_type(<span class="keyword">const</span> PGSTD::string &amp;ColName) <span class="keyword">const</span> <span class="comment">//[t7]</span></div> <div class="line"><a name="l00164"></a><span class="lineno"> 164</span>&#160; { <span class="keywordflow">return</span> <a class="code" href="a00082.html#af56d00ec20a26b2dfeb3a83b481cf243" title="Type of given column.">column_type</a>(column_number(ColName)); }</div> <div class="line"><a name="l00165"></a><span class="lineno"> 165</span>&#160;</div> <div class="line"><a name="l00167"></a><span class="lineno"><a class="code" href="a00082.html#a33ab612efd39b727d6e1e151a6c354f6"> 167</a></span>&#160; oid column_type(<span class="keyword">const</span> <span class="keywordtype">char</span> ColName[]) <span class="keyword">const</span> <span class="comment">//[t7]</span></div> <div class="line"><a name="l00168"></a><span class="lineno"> 168</span>&#160; { <span class="keywordflow">return</span> <a class="code" href="a00082.html#a33ab612efd39b727d6e1e151a6c354f6" title="Type of given column.">column_type</a>(column_number(ColName)); }</div> <div class="line"><a name="l00169"></a><span class="lineno"> 169</span>&#160;</div> <div class="line"><a name="l00171"></a><span class="lineno"> 171</span>&#160; oid column_table(<a class="code" href="a00107.html#ac641388403460c8bc2ba5d340693d4be">tuple::size_type</a> ColNum) <span class="keyword">const</span>; <span class="comment">//[t2]</span></div> <div class="line"><a name="l00172"></a><span class="lineno"> 172</span>&#160;</div> <div class="line"><a name="l00174"></a><span class="lineno"><a class="code" href="a00082.html#ac5027b980639d8d0304ab32fb3052d73"> 174</a></span>&#160; oid column_table(<span class="keywordtype">int</span> ColNum) <span class="keyword">const</span> <span class="comment">//[t2]</span></div> <div class="line"><a name="l00175"></a><span class="lineno"> 175</span>&#160; { <span class="keywordflow">return</span> <a class="code" href="a00082.html#ac5027b980639d8d0304ab32fb3052d73" title="What table did this column come from?">column_table</a>(<a class="code" href="a00107.html#ac641388403460c8bc2ba5d340693d4be">tuple::size_type</a>(ColNum)); }</div> <div class="line"><a name="l00176"></a><span class="lineno"> 176</span>&#160;</div> <div class="line"><a name="l00178"></a><span class="lineno"><a class="code" href="a00082.html#a91a2dd4512530363cdf1240a0aeba46c"> 178</a></span>&#160; oid column_table(<span class="keyword">const</span> PGSTD::string &amp;ColName) <span class="keyword">const</span> <span class="comment">//[t2]</span></div> <div class="line"><a name="l00179"></a><span class="lineno"> 179</span>&#160; { <span class="keywordflow">return</span> <a class="code" href="a00082.html#a91a2dd4512530363cdf1240a0aeba46c" title="What table did this column come from?">column_table</a>(column_number(ColName)); }</div> <div class="line"><a name="l00180"></a><span class="lineno"> 180</span>&#160;</div> <div class="line"><a name="l00182"></a><span class="lineno"> 182</span>&#160; <a class="code" href="a00107.html#ac641388403460c8bc2ba5d340693d4be">tuple::size_type</a> table_column(<a class="code" href="a00107.html#ac641388403460c8bc2ba5d340693d4be">tuple::size_type</a> ColNum) <span class="keyword">const</span>; <span class="comment">//[t93]</span></div> <div class="line"><a name="l00183"></a><span class="lineno"> 183</span>&#160;</div> <div class="line"><a name="l00185"></a><span class="lineno"><a class="code" href="a00082.html#adadfb3831c89409ff3ff74a49b5b5bdd"> 185</a></span>&#160; <a class="code" href="a00107.html#ac641388403460c8bc2ba5d340693d4be">tuple::size_type</a> table_column(<span class="keywordtype">int</span> ColNum) <span class="keyword">const</span> <span class="comment">//[t93]</span></div> <div class="line"><a name="l00186"></a><span class="lineno"> 186</span>&#160; { <span class="keywordflow">return</span> <a class="code" href="a00082.html#adadfb3831c89409ff3ff74a49b5b5bdd" title="What column in its table did this column come from?">table_column</a>(<a class="code" href="a00107.html#ac641388403460c8bc2ba5d340693d4be">tuple::size_type</a>(ColNum)); }</div> <div class="line"><a name="l00187"></a><span class="lineno"> 187</span>&#160;</div> <div class="line"><a name="l00189"></a><span class="lineno"><a class="code" href="a00082.html#ad8ecab8bcc022fe5a489e2d2fded14bd"> 189</a></span>&#160; <a class="code" href="a00107.html#ac641388403460c8bc2ba5d340693d4be">tuple::size_type</a> table_column(<span class="keyword">const</span> PGSTD::string &amp;ColName) <span class="keyword">const</span> <span class="comment">//[t93]</span></div> <div class="line"><a name="l00190"></a><span class="lineno"> 190</span>&#160; { <span class="keywordflow">return</span> <a class="code" href="a00082.html#ad8ecab8bcc022fe5a489e2d2fded14bd" title="What column in its table did this column come from?">table_column</a>(column_number(ColName)); }</div> <div class="line"><a name="l00192"></a><span class="lineno"> 192</span>&#160;</div> <div class="line"><a name="l00194"></a><span class="lineno"> 194</span>&#160; <span class="keyword">const</span> PGSTD::string &amp; PQXX_PURE query() <span class="keyword">const</span> throw (); <span class="comment">//[t70]</span></div> <div class="line"><a name="l00195"></a><span class="lineno"> 195</span>&#160;</div> <div class="line"><a name="l00197"></a><span class="lineno"> 197</span>&#160;</div> <div class="line"><a name="l00200"></a><span class="lineno"> 200</span>&#160; oid PQXX_PURE inserted_oid() const; <span class="comment">//[t13]</span></div> <div class="line"><a name="l00201"></a><span class="lineno"> 201</span>&#160;</div> <div class="line"><a name="l00203"></a><span class="lineno"> 203</span>&#160;</div> <div class="line"><a name="l00206"></a><span class="lineno"> 206</span>&#160; size_type PQXX_PURE affected_rows() const; <span class="comment">//[t7]</span></div> <div class="line"><a name="l00207"></a><span class="lineno"> 207</span>&#160;</div> <div class="line"><a name="l00208"></a><span class="lineno"> 208</span>&#160;</div> <div class="line"><a name="l00209"></a><span class="lineno"> 209</span>&#160;private:</div> <div class="line"><a name="l00210"></a><span class="lineno"><a class="code" href="a00082.html#aea00d4ccd9783a65feb0c079c109c3e8"> 210</a></span>&#160; friend class pqxx::<a class="code" href="a00040.html" title="Reference to a field in a result set.">field</a>;</div> <div class="line"><a name="l00211"></a><span class="lineno"> 211</span>&#160; const <span class="keywordtype">char</span> * PQXX_PURE GetValue(<a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">size_type</a> Row, <a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a>::<a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">size_type</a> Col) const;</div> <div class="line"><a name="l00212"></a><span class="lineno"> 212</span>&#160; <span class="keywordtype">bool</span> PQXX_PURE GetIsNull(<a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">size_type</a> Row, <a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a>::<a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">size_type</a> Col) const;</div> <div class="line"><a name="l00213"></a><span class="lineno"> 213</span>&#160; field::<a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">size_type</a> PQXX_PURE GetLength(</div> <div class="line"><a name="l00214"></a><span class="lineno"> 214</span>&#160; <a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">size_type</a>,</div> <div class="line"><a name="l00215"></a><span class="lineno"> 215</span>&#160; <a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a>::size_type) const throw ();</div> <div class="line"><a name="l00216"></a><span class="lineno"> 216</span>&#160;</div> <div class="line"><a name="l00217"></a><span class="lineno"><a class="code" href="a00082.html#a137c5ab03f8e5975fe822571cfa796e4"> 217</a></span>&#160; friend class pqxx::internal::gate::result_creation;</div> <div class="line"><a name="l00218"></a><span class="lineno"> 218</span>&#160; <a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">result</a>(internal::pq::PGresult *rhs,</div> <div class="line"><a name="l00219"></a><span class="lineno"> 219</span>&#160; <span class="keywordtype">int</span> protocol,</div> <div class="line"><a name="l00220"></a><span class="lineno"> 220</span>&#160; const PGSTD::<span class="keywordtype">string</span> &amp;Query,</div> <div class="line"><a name="l00221"></a><span class="lineno"> 221</span>&#160; <span class="keywordtype">int</span> encoding_code);</div> <div class="line"><a name="l00222"></a><span class="lineno"> 222</span>&#160; <span class="keywordtype">void</span> PQXX_PRIVATE CheckStatus() const;</div> <div class="line"><a name="l00223"></a><span class="lineno"> 223</span>&#160;</div> <div class="line"><a name="l00224"></a><span class="lineno"><a class="code" href="a00082.html#a9fe15fed7d74b4ae0718cf9ae64427bf"> 224</a></span>&#160; friend class pqxx::internal::gate::result_connection;</div> <div class="line"><a name="l00225"></a><span class="lineno"> 225</span>&#160; <span class="keywordtype">bool</span> operator!() const throw () { <span class="keywordflow">return</span> !m_data; }</div> <div class="line"><a name="l00226"></a><span class="lineno"> 226</span>&#160; <span class="keyword">operator</span> bool() <span class="keyword">const</span> throw () { <span class="keywordflow">return</span> m_data != 0; }</div> <div class="line"><a name="l00227"></a><span class="lineno"> 227</span>&#160;</div> <div class="line"><a name="l00228"></a><span class="lineno"> 228</span>&#160; <span class="keywordtype">void</span> PQXX_PRIVATE PQXX_NORETURN ThrowSQLError(</div> <div class="line"><a name="l00229"></a><span class="lineno"> 229</span>&#160; <span class="keyword">const</span> PGSTD::string &amp;Err,</div> <div class="line"><a name="l00230"></a><span class="lineno"> 230</span>&#160; <span class="keyword">const</span> PGSTD::string &amp;Query) <span class="keyword">const</span>;</div> <div class="line"><a name="l00231"></a><span class="lineno"> 231</span>&#160; <span class="keywordtype">int</span> PQXX_PRIVATE PQXX_PURE errorposition() <span class="keyword">const</span> throw ();</div> <div class="line"><a name="l00232"></a><span class="lineno"> 232</span>&#160; PGSTD::<span class="keywordtype">string</span> PQXX_PRIVATE StatusError() const;</div> <div class="line"><a name="l00233"></a><span class="lineno"> 233</span>&#160;</div> <div class="line"><a name="l00234"></a><span class="lineno"><a class="code" href="a00082.html#ad7ebaaac4647f20a915fd6aa735cd1e5"> 234</a></span>&#160; friend class pqxx::internal::gate::result_sql_cursor;</div> <div class="line"><a name="l00235"></a><span class="lineno"> 235</span>&#160; const <span class="keywordtype">char</span> * PQXX_PURE CmdStatus() const throw ();</div> <div class="line"><a name="l00236"></a><span class="lineno"> 236</span>&#160;</div> <div class="line"><a name="l00238"></a><span class="lineno"> 238</span>&#160; pqxx::internal::pq::PGresult *m_data;</div> <div class="line"><a name="l00239"></a><span class="lineno"> 239</span>&#160;</div> <div class="line"><a name="l00240"></a><span class="lineno"> 240</span>&#160; static const PGSTD::<span class="keywordtype">string</span> PQXX_PRIVATE s_empty_string;</div> <div class="line"><a name="l00241"></a><span class="lineno"> 241</span>&#160;};</div> <div class="line"><a name="l00242"></a><span class="lineno"> 242</span>&#160;</div> <div class="line"><a name="l00243"></a><span class="lineno"> 243</span>&#160;</div> <div class="line"><a name="l00245"></a><span class="lineno"> 245</span>&#160;</div> <div class="line"><a name="l00249"></a><span class="lineno"><a class="code" href="a00025.html"> 249</a></span>&#160;class PQXX_LIBEXPORT <a class="code" href="a00025.html" title="Iterator for rows (tuples) in a result. Use as result::const_iterator.">const_result_iterator</a> :</div> <div class="line"><a name="l00250"></a><span class="lineno"> 250</span>&#160; public PGSTD::<a class="code" href="a00028.html" title="Iterator for fields in a tuple. Use as tuple::const_iterator.">iterator</a>&lt;</div> <div class="line"><a name="l00251"></a><span class="lineno"> 251</span>&#160; PGSTD::random_access_iterator_tag,</div> <div class="line"><a name="l00252"></a><span class="lineno"> 252</span>&#160; const <a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a>,</div> <div class="line"><a name="l00253"></a><span class="lineno"> 253</span>&#160; <a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">result</a>::<a class="code" href="a00025.html#af1bc6358a5c67e40dfca6acbbdee2eed">difference_type</a>,</div> <div class="line"><a name="l00254"></a><span class="lineno"> 254</span>&#160; <a class="code" href="a00025.html" title="Iterator for rows (tuples) in a result. Use as result::const_iterator.">const_result_iterator</a>,</div> <div class="line"><a name="l00255"></a><span class="lineno"> 255</span>&#160; tuple&gt;,</div> <div class="line"><a name="l00256"></a><span class="lineno"> 256</span>&#160; public tuple</div> <div class="line"><a name="l00257"></a><span class="lineno"> 257</span>&#160;{</div> <div class="line"><a name="l00258"></a><span class="lineno"> 258</span>&#160;<span class="keyword">public</span>:</div> <div class="line"><a name="l00259"></a><span class="lineno"><a class="code" href="a00025.html#af545df126c49a8ad52fc58ee4833e7d9"> 259</a></span>&#160; <span class="keyword">typedef</span> <span class="keyword">const</span> tuple *<a class="code" href="a00025.html#af545df126c49a8ad52fc58ee4833e7d9">pointer</a>;</div> <div class="line"><a name="l00260"></a><span class="lineno"><a class="code" href="a00025.html#a0b197686648ddd4acb3c803d6a51fc8d"> 260</a></span>&#160; <span class="keyword">typedef</span> tuple <a class="code" href="a00025.html#a0b197686648ddd4acb3c803d6a51fc8d">reference</a>;</div> <div class="line"><a name="l00261"></a><span class="lineno"><a class="code" href="a00025.html#ab8d1a4aa2c488d516b766e811a33fb6c"> 261</a></span>&#160; <span class="keyword">typedef</span> <a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">result::size_type</a> <a class="code" href="a00025.html#ab8d1a4aa2c488d516b766e811a33fb6c">size_type</a>;</div> <div class="line"><a name="l00262"></a><span class="lineno"><a class="code" href="a00025.html#af1bc6358a5c67e40dfca6acbbdee2eed"> 262</a></span>&#160; <span class="keyword">typedef</span> <a class="code" href="a00082.html#abec7f7f4d7ed030f38b2a123b632b818">result::difference_type</a> <a class="code" href="a00025.html#af1bc6358a5c67e40dfca6acbbdee2eed">difference_type</a>;</div> <div class="line"><a name="l00263"></a><span class="lineno"> 263</span>&#160;</div> <div class="line"><a name="l00264"></a><span class="lineno"><a class="code" href="a00025.html#a69a45f72ecd7d720ebdb830950df15ad"> 264</a></span>&#160; <a class="code" href="a00025.html#a69a45f72ecd7d720ebdb830950df15ad">const_result_iterator</a>() throw () : tuple(0,0) {}</div> <div class="line"><a name="l00265"></a><span class="lineno"><a class="code" href="a00025.html#a599088be998cb2998cd2cac6cd7bc9c6"> 265</a></span>&#160; <a class="code" href="a00025.html#a599088be998cb2998cd2cac6cd7bc9c6">const_result_iterator</a>(<span class="keyword">const</span> tuple &amp;t) <span class="keywordflow">throw</span> () : tuple(t) {}</div> <div class="line"><a name="l00266"></a><span class="lineno"> 266</span>&#160;</div> <div class="line"><a name="l00282"></a><span class="lineno"><a class="code" href="a00025.html#a5a6e8b74cb15a24e923016d56cd74df5"> 282</a></span>&#160; pointer <a class="code" href="a00025.html#a5a6e8b74cb15a24e923016d56cd74df5">operator-&gt;</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> <span class="keyword">this</span>; } <span class="comment">//[t12]</span></div> <div class="line"><a name="l00283"></a><span class="lineno"><a class="code" href="a00025.html#ab58d13117556c7bbe935db018c4bbbd9"> 283</a></span>&#160; reference <a class="code" href="a00025.html#ab58d13117556c7bbe935db018c4bbbd9">operator*</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> tuple(*<span class="keyword">this</span>); } <span class="comment">//[t12]</span></div> <div class="line"><a name="l00285"></a><span class="lineno"> 285</span>&#160;<span class="comment"></span></div> <div class="line"><a name="l00290"></a><span class="lineno"> 290</span>&#160; const_result_iterator operator++(<span class="keywordtype">int</span>); <span class="comment">//[t12]</span></div> <div class="line"><a name="l00291"></a><span class="lineno"><a class="code" href="a00025.html#ab92d7af9a2d9842cd5c1e12c99201893"> 291</a></span>&#160; const_result_iterator &amp;<a class="code" href="a00025.html#ab92d7af9a2d9842cd5c1e12c99201893">operator++</a>() { ++m_Index; <span class="keywordflow">return</span> *<span class="keyword">this</span>; } <span class="comment">//[t1]</span></div> <div class="line"><a name="l00292"></a><span class="lineno"> 292</span>&#160; const_result_iterator operator--(<span class="keywordtype">int</span>); <span class="comment">//[t12]</span></div> <div class="line"><a name="l00293"></a><span class="lineno"><a class="code" href="a00025.html#a45a6644ccdf8648196d310ec643414fb"> 293</a></span>&#160; const_result_iterator &amp;<a class="code" href="a00025.html#a45a6644ccdf8648196d310ec643414fb">operator--</a>() { --m_Index; <span class="keywordflow">return</span> *<span class="keyword">this</span>; } <span class="comment">//[t12]</span></div> <div class="line"><a name="l00294"></a><span class="lineno"> 294</span>&#160;</div> <div class="line"><a name="l00295"></a><span class="lineno"><a class="code" href="a00025.html#a9eb6caf606fd73bd3bc0e0bbbcd3387a"> 295</a></span>&#160; const_result_iterator &amp;operator+=(difference_type i) <span class="comment">//[t12]</span></div> <div class="line"><a name="l00296"></a><span class="lineno"> 296</span>&#160; { m_Index = size_type(difference_type(m_Index) + i); <span class="keywordflow">return</span> *<span class="keyword">this</span>; }</div> <div class="line"><a name="l00297"></a><span class="lineno"><a class="code" href="a00025.html#aac919ac1130c456cac33c2fb977e8f49"> 297</a></span>&#160; const_result_iterator &amp;operator-=(difference_type i) <span class="comment">//[t12]</span></div> <div class="line"><a name="l00298"></a><span class="lineno"> 298</span>&#160; { m_Index = size_type(difference_type (m_Index) - i); <span class="keywordflow">return</span> *<span class="keyword">this</span>; }</div> <div class="line"><a name="l00300"></a><span class="lineno"> 300</span>&#160;</div> <div class="line"><a name="l00305"></a><span class="lineno"><a class="code" href="a00025.html#a757c8e7d196c2a9d4e69af70a4234620"> 305</a></span>&#160; <span class="keywordtype">bool</span> operator==(<span class="keyword">const</span> const_result_iterator &amp;i) <span class="keyword">const</span> <span class="comment">//[t12]</span></div> <div class="line"><a name="l00306"></a><span class="lineno"> 306</span>&#160; {<span class="keywordflow">return</span> m_Index==i.m_Index;}</div> <div class="line"><a name="l00307"></a><span class="lineno"><a class="code" href="a00025.html#a9c831865874ab49c5a8e552503d8d6f8"> 307</a></span>&#160; <span class="keywordtype">bool</span> operator!=(<span class="keyword">const</span> const_result_iterator &amp;i) <span class="keyword">const</span> <span class="comment">//[t12]</span></div> <div class="line"><a name="l00308"></a><span class="lineno"> 308</span>&#160; {<span class="keywordflow">return</span> m_Index!=i.m_Index;}</div> <div class="line"><a name="l00309"></a><span class="lineno"><a class="code" href="a00025.html#abc4bdb24c31faff8986730cc418225c4"> 309</a></span>&#160; <span class="keywordtype">bool</span> operator&lt;(<span class="keyword">const</span> const_result_iterator &amp;i) <span class="keyword">const</span> <span class="comment">//[t12]</span></div> <div class="line"><a name="l00310"></a><span class="lineno"> 310</span>&#160; {<span class="keywordflow">return</span> m_Index&lt;i.m_Index;}</div> <div class="line"><a name="l00311"></a><span class="lineno"><a class="code" href="a00025.html#a5838760d8c9620674b3bc530f95ec6d5"> 311</a></span>&#160; <span class="keywordtype">bool</span> operator&lt;=(<span class="keyword">const</span> const_result_iterator &amp;i) <span class="keyword">const</span> <span class="comment">//[t12]</span></div> <div class="line"><a name="l00312"></a><span class="lineno"> 312</span>&#160; {<span class="keywordflow">return</span> m_Index&lt;=i.m_Index;}</div> <div class="line"><a name="l00313"></a><span class="lineno"><a class="code" href="a00025.html#a07d2e2279fef3c1476cffd06a8eb91de"> 313</a></span>&#160; <span class="keywordtype">bool</span> operator&gt;(<span class="keyword">const</span> const_result_iterator &amp;i) <span class="keyword">const</span> <span class="comment">//[t12]</span></div> <div class="line"><a name="l00314"></a><span class="lineno"> 314</span>&#160; {<span class="keywordflow">return</span> m_Index&gt;i.m_Index;}</div> <div class="line"><a name="l00315"></a><span class="lineno"><a class="code" href="a00025.html#a968c235eb6fecdf44b8f64827473c733"> 315</a></span>&#160; <span class="keywordtype">bool</span> operator&gt;=(<span class="keyword">const</span> const_result_iterator &amp;i) <span class="keyword">const</span> <span class="comment">//[t12]</span></div> <div class="line"><a name="l00316"></a><span class="lineno"> 316</span>&#160; {<span class="keywordflow">return</span> m_Index&gt;=i.m_Index;}</div> <div class="line"><a name="l00318"></a><span class="lineno"> 318</span>&#160;</div> <div class="line"><a name="l00323"></a><span class="lineno"> 323</span>&#160; <span class="keyword">inline</span> const_result_iterator <a class="code" href="a00176.html#a14f86142785f212ef3de46040e22c532">operator+</a>(difference_type) <span class="keyword">const</span>; <span class="comment">//[t12]</span></div> <div class="line"><a name="l00324"></a><span class="lineno"> 324</span>&#160; <span class="keyword">friend</span> const_result_iterator <a class="code" href="a00176.html#a14f86142785f212ef3de46040e22c532">operator+</a>( <span class="comment">//[t12]</span></div> <div class="line"><a name="l00325"></a><span class="lineno"> 325</span>&#160; difference_type,</div> <div class="line"><a name="l00326"></a><span class="lineno"> 326</span>&#160; const_result_iterator);</div> <div class="line"><a name="l00327"></a><span class="lineno"> 327</span>&#160; <span class="keyword">inline</span> const_result_iterator operator-(difference_type) <span class="keyword">const</span>; <span class="comment">//[t12]</span></div> <div class="line"><a name="l00328"></a><span class="lineno"> 328</span>&#160; <span class="keyword">inline</span> difference_type operator-(const_result_iterator) <span class="keyword">const</span>; <span class="comment">//[t12]</span></div> <div class="line"><a name="l00330"></a><span class="lineno"> 330</span>&#160;<span class="comment"></span></div> <div class="line"><a name="l00331"></a><span class="lineno"> 331</span>&#160;<span class="keyword">private</span>:</div> <div class="line"><a name="l00332"></a><span class="lineno"><a class="code" href="a00025.html#ac9149722b80a911706d9ad204417a69a"> 332</a></span>&#160; <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">pqxx::result</a>;</div> <div class="line"><a name="l00333"></a><span class="lineno"> 333</span>&#160; const_result_iterator(<span class="keyword">const</span> <a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">pqxx::result</a> *r, <a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">result::size_type</a> i) <span class="keywordflow">throw</span> () :</div> <div class="line"><a name="l00334"></a><span class="lineno"> 334</span>&#160; <a class="code" href="a00082.html#ad928c2c47d1f6d890e4a97aa225ff9d5" title="For backward compatibility only.">tuple</a>(r, i) {}</div> <div class="line"><a name="l00335"></a><span class="lineno"> 335</span>&#160;};</div> <div class="line"><a name="l00336"></a><span class="lineno"> 336</span>&#160;</div> <div class="line"><a name="l00337"></a><span class="lineno"> 337</span>&#160;</div> <div class="line"><a name="l00339"></a><span class="lineno"><a class="code" href="a00026.html"> 339</a></span>&#160;<span class="keyword">class </span>PQXX_LIBEXPORT <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> :</div> <div class="line"><a name="l00340"></a><span class="lineno"> 340</span>&#160; <span class="keyword">private</span> const_result_iterator</div> <div class="line"><a name="l00341"></a><span class="lineno"> 341</span>&#160;{</div> <div class="line"><a name="l00342"></a><span class="lineno"> 342</span>&#160;<span class="keyword">public</span>:</div> <div class="line"><a name="l00343"></a><span class="lineno"><a class="code" href="a00026.html#a9f89dabdd47d46a7e86551788620914b"> 343</a></span>&#160; <span class="keyword">typedef</span> const_result_iterator <a class="code" href="a00026.html#a9f89dabdd47d46a7e86551788620914b">super</a>;</div> <div class="line"><a name="l00344"></a><span class="lineno"><a class="code" href="a00026.html#a3944431a48bc056755e618de31ccb101"> 344</a></span>&#160; <span class="keyword">typedef</span> const_result_iterator <a class="code" href="a00026.html#a3944431a48bc056755e618de31ccb101">iterator_type</a>;</div> <div class="line"><a name="l00345"></a><span class="lineno"> 345</span>&#160; <span class="keyword">using</span> iterator_type::iterator_category;</div> <div class="line"><a name="l00346"></a><span class="lineno"> 346</span>&#160; <span class="keyword">using</span> <a class="code" href="a00025.html#af1bc6358a5c67e40dfca6acbbdee2eed">iterator_type::difference_type</a>;</div> <div class="line"><a name="l00347"></a><span class="lineno"> 347</span>&#160; <span class="keyword">using</span> <a class="code" href="a00107.html" title="Reference to one row in a result.">iterator_type::pointer</a>;</div> <div class="line"><a name="l00348"></a><span class="lineno"> 348</span>&#160;<span class="preprocessor">#ifndef _MSC_VER</span></div> <div class="line"><a name="l00349"></a><span class="lineno"> 349</span>&#160;<span class="preprocessor"></span> <span class="keyword">using</span> iterator_type::value_type;</div> <div class="line"><a name="l00350"></a><span class="lineno"> 350</span>&#160; <span class="keyword">using</span> <a class="code" href="a00107.html" title="Reference to one row in a result.">iterator_type::reference</a>;</div> <div class="line"><a name="l00351"></a><span class="lineno"> 351</span>&#160;<span class="preprocessor">#else</span></div> <div class="line"><a name="l00352"></a><span class="lineno"> 352</span>&#160;<span class="preprocessor"></span> <span class="comment">// Workaround for Visual C++.NET 2003, which has access problems</span></div> <div class="line"><a name="l00353"></a><span class="lineno"> 353</span>&#160; <span class="keyword">typedef</span> <span class="keyword">const</span> tuple &amp;reference;</div> <div class="line"><a name="l00354"></a><span class="lineno"> 354</span>&#160; <span class="keyword">typedef</span> tuple value_type;</div> <div class="line"><a name="l00355"></a><span class="lineno"> 355</span>&#160;<span class="preprocessor">#endif</span></div> <div class="line"><a name="l00356"></a><span class="lineno"> 356</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00357"></a><span class="lineno"><a class="code" href="a00026.html#a6544eebac8fc1c8c7d8ea6d65a1332a8"> 357</a></span>&#160; <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a>( <span class="comment">//[t75]</span></div> <div class="line"><a name="l00358"></a><span class="lineno"> 358</span>&#160; <span class="keyword">const</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;rhs) :</div> <div class="line"><a name="l00359"></a><span class="lineno"> 359</span>&#160; const_result_iterator(rhs) {}</div> <div class="line"><a name="l00360"></a><span class="lineno"><a class="code" href="a00026.html#ac0716cbc925a9250ac448c6cd35cd797"> 360</a></span>&#160; <span class="keyword">explicit</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a>( <span class="comment">//[t75]</span></div> <div class="line"><a name="l00361"></a><span class="lineno"> 361</span>&#160; <span class="keyword">const</span> const_result_iterator &amp;rhs) :</div> <div class="line"><a name="l00362"></a><span class="lineno"> 362</span>&#160; const_result_iterator(rhs) { super::operator--(); }</div> <div class="line"><a name="l00363"></a><span class="lineno"> 363</span>&#160;</div> <div class="line"><a name="l00364"></a><span class="lineno"> 364</span>&#160; const_result_iterator PQXX_PURE base() <span class="keyword">const</span> throw (); <span class="comment">//[t75]</span></div> <div class="line"><a name="l00365"></a><span class="lineno"> 365</span>&#160;</div> <div class="line"><a name="l00370"></a><span class="lineno"> 370</span>&#160; using const_result_iterator::operator-&gt;; <span class="comment">//[t75]</span></div> <div class="line"><a name="l00371"></a><span class="lineno"> 371</span>&#160; using const_result_iterator::operator*; <span class="comment">//[t75]</span></div> <div class="line"><a name="l00373"></a><span class="lineno"> 373</span>&#160;<span class="comment"></span></div> <div class="line"><a name="l00378"></a><span class="lineno"><a class="code" href="a00026.html#a26592398ebce2937d32420e4fbfbdd87"> 378</a></span>&#160; <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;operator=( <span class="comment">//[t75]</span></div> <div class="line"><a name="l00379"></a><span class="lineno"> 379</span>&#160; const <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;r)</div> <div class="line"><a name="l00380"></a><span class="lineno"> 380</span>&#160; { iterator_type::operator=(r); <span class="keywordflow">return</span> *<span class="keyword">this</span>; }</div> <div class="line"><a name="l00381"></a><span class="lineno"><a class="code" href="a00026.html#aa0aef3bc029f501703e2f941c85d03d5"> 381</a></span>&#160; <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> operator++() <span class="comment">//[t75]</span></div> <div class="line"><a name="l00382"></a><span class="lineno"> 382</span>&#160; { iterator_type::operator--(); <span class="keywordflow">return</span> *<span class="keyword">this</span>; }</div> <div class="line"><a name="l00383"></a><span class="lineno"> 383</span>&#160; <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> operator++(<span class="keywordtype">int</span>); <span class="comment">//[t75]</span></div> <div class="line"><a name="l00384"></a><span class="lineno"><a class="code" href="a00026.html#af6c63db21df71be91a1cf1c2d9905c47"> 384</a></span>&#160; <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;operator--() <span class="comment">//[t75]</span></div> <div class="line"><a name="l00385"></a><span class="lineno"> 385</span>&#160; { iterator_type::operator++(); <span class="keywordflow">return</span> *<span class="keyword">this</span>; }</div> <div class="line"><a name="l00386"></a><span class="lineno"> 386</span>&#160; <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> operator--(<span class="keywordtype">int</span>); <span class="comment">//[t75]</span></div> <div class="line"><a name="l00387"></a><span class="lineno"><a class="code" href="a00026.html#a3f9fbd9b493b163a45b1c15d2e5ff6b7"> 387</a></span>&#160; <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;operator+=(difference_type i) <span class="comment">//[t75]</span></div> <div class="line"><a name="l00388"></a><span class="lineno"> 388</span>&#160; { iterator_type::operator-=(i); <span class="keywordflow">return</span> *<span class="keyword">this</span>; }</div> <div class="line"><a name="l00389"></a><span class="lineno"><a class="code" href="a00026.html#a31bfd0560cc60c2496c48cafc47aeb41"> 389</a></span>&#160; <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;operator-=(difference_type i) <span class="comment">//[t75]</span></div> <div class="line"><a name="l00390"></a><span class="lineno"> 390</span>&#160; { iterator_type::operator+=(i); <span class="keywordflow">return</span> *<span class="keyword">this</span>; }</div> <div class="line"><a name="l00392"></a><span class="lineno"> 392</span>&#160;</div> <div class="line"><a name="l00397"></a><span class="lineno"><a class="code" href="a00026.html#a248bd6095a955103131179b8b797a465"> 397</a></span>&#160; <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> <a class="code" href="a00176.html#a14f86142785f212ef3de46040e22c532">operator+</a>(difference_type i) <span class="keyword">const</span> <span class="comment">//[t75]</span></div> <div class="line"><a name="l00398"></a><span class="lineno"> 398</span>&#160; { <span class="keywordflow">return</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a>(base() - i); }</div> <div class="line"><a name="l00399"></a><span class="lineno"><a class="code" href="a00026.html#abd88da5b5bc0d9e63efba1a6ba9f14b3"> 399</a></span>&#160; <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> operator-(difference_type i) <span class="comment">//[t75]</span></div> <div class="line"><a name="l00400"></a><span class="lineno"> 400</span>&#160; { <span class="keywordflow">return</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a>(base() + i); }</div> <div class="line"><a name="l00401"></a><span class="lineno"><a class="code" href="a00026.html#ab17e937b7d28ad346802a39d78a02af1"> 401</a></span>&#160; difference_type operator-( <span class="comment">//[t75]</span></div> <div class="line"><a name="l00402"></a><span class="lineno"> 402</span>&#160; <span class="keyword">const</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;rhs)<span class="keyword"> const</span></div> <div class="line"><a name="l00403"></a><span class="lineno"> 403</span>&#160;<span class="keyword"> </span>{ <span class="keywordflow">return</span> rhs.const_result_iterator::operator-(*this); }</div> <div class="line"><a name="l00405"></a><span class="lineno"> 405</span>&#160;</div> <div class="line"><a name="l00410"></a><span class="lineno"><a class="code" href="a00026.html#adeb96b3dd3de78f616e8ff6129cc8a26"> 410</a></span>&#160; <span class="keywordtype">bool</span> operator==( <span class="comment">//[t75]</span></div> <div class="line"><a name="l00411"></a><span class="lineno"> 411</span>&#160; <span class="keyword">const</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;rhs) <span class="keyword">const</span> <span class="keywordflow">throw</span> ()</div> <div class="line"><a name="l00412"></a><span class="lineno"> 412</span>&#160; { <span class="keywordflow">return</span> iterator_type::operator==(rhs); }</div> <div class="line"><a name="l00413"></a><span class="lineno"><a class="code" href="a00026.html#a9791060c7f9c94370fccf4f2a053f451"> 413</a></span>&#160; <span class="keywordtype">bool</span> operator!=( <span class="comment">//[t75]</span></div> <div class="line"><a name="l00414"></a><span class="lineno"> 414</span>&#160; <span class="keyword">const</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;rhs) <span class="keyword">const</span> <span class="keywordflow">throw</span> ()</div> <div class="line"><a name="l00415"></a><span class="lineno"> 415</span>&#160; { <span class="keywordflow">return</span> !operator==(rhs); }</div> <div class="line"><a name="l00416"></a><span class="lineno"> 416</span>&#160;</div> <div class="line"><a name="l00417"></a><span class="lineno"><a class="code" href="a00026.html#a7b18a6e600a88ac9a5689b2cd9ee5c1b"> 417</a></span>&#160; <span class="keywordtype">bool</span> operator&lt;(<span class="keyword">const</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;rhs) <span class="keyword">const</span> <span class="comment">//[t75]</span></div> <div class="line"><a name="l00418"></a><span class="lineno"> 418</span>&#160; { <span class="keywordflow">return</span> iterator_type::operator&gt;(rhs); }</div> <div class="line"><a name="l00419"></a><span class="lineno"><a class="code" href="a00026.html#a43793fc9e6cfcf3a400bcb9a3363dbf7"> 419</a></span>&#160; <span class="keywordtype">bool</span> operator&lt;=(<span class="keyword">const</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;rhs) <span class="keyword">const</span> <span class="comment">//[t75]</span></div> <div class="line"><a name="l00420"></a><span class="lineno"> 420</span>&#160; { <span class="keywordflow">return</span> iterator_type::operator&gt;=(rhs); }</div> <div class="line"><a name="l00421"></a><span class="lineno"><a class="code" href="a00026.html#af1b380239968fd36cfb1b22f25fe3c67"> 421</a></span>&#160; <span class="keywordtype">bool</span> operator&gt;(<span class="keyword">const</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;rhs) <span class="keyword">const</span> <span class="comment">//[t75]</span></div> <div class="line"><a name="l00422"></a><span class="lineno"> 422</span>&#160; { <span class="keywordflow">return</span> iterator_type::operator&lt;(rhs); }</div> <div class="line"><a name="l00423"></a><span class="lineno"><a class="code" href="a00026.html#aace3d30e02c3014d04cb1825dff7de6b"> 423</a></span>&#160; <span class="keywordtype">bool</span> operator&gt;=(<span class="keyword">const</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;rhs) <span class="keyword">const</span> <span class="comment">//[t75]</span></div> <div class="line"><a name="l00424"></a><span class="lineno"> 424</span>&#160; { <span class="keywordflow">return</span> iterator_type::operator&lt;=(rhs); }</div> <div class="line"><a name="l00426"></a><span class="lineno"> 426</span>&#160;};</div> <div class="line"><a name="l00427"></a><span class="lineno"> 427</span>&#160;</div> <div class="line"><a name="l00428"></a><span class="lineno"> 428</span>&#160;</div> <div class="line"><a name="l00429"></a><span class="lineno"> 429</span>&#160;</div> <div class="line"><a name="l00431"></a><span class="lineno"> 431</span>&#160;</div> <div class="line"><a name="l00451"></a><span class="lineno"> 451</span>&#160;<span class="keyword">template</span>&lt;<span class="keyword">typename</span> CHAR&gt;</div> <div class="line"><a name="l00452"></a><span class="lineno"><a class="code" href="a00176.html#abf6b4f639de27c5b0039381f17e9a07a"> 452</a></span>&#160;<span class="keyword">inline</span> PGSTD::basic_ostream&lt;CHAR&gt; &amp;<a class="code" href="a00176.html#abf6b4f639de27c5b0039381f17e9a07a" title="Write a result field to any type of stream.">operator&lt;&lt;</a>(</div> <div class="line"><a name="l00453"></a><span class="lineno"> 453</span>&#160; PGSTD::basic_ostream&lt;CHAR&gt; &amp;S, <span class="keyword">const</span> <a class="code" href="a00040.html" title="Reference to a field in a result set.">pqxx::field</a> &amp;F) <span class="comment">//[t46]</span></div> <div class="line"><a name="l00454"></a><span class="lineno"> 454</span>&#160;{</div> <div class="line"><a name="l00455"></a><span class="lineno"> 455</span>&#160; S.write(F.<a class="code" href="a00040.html#a97781b0028cbfd2dca1106943a27afae" title="Read as plain C string.">c_str</a>(), PGSTD::streamsize(F.<a class="code" href="a00040.html#ad8d3b3ef9308b577d178086e4b295ca5">size</a>()));</div> <div class="line"><a name="l00456"></a><span class="lineno"> 456</span>&#160; <span class="keywordflow">return</span> S;</div> <div class="line"><a name="l00457"></a><span class="lineno"> 457</span>&#160;}</div> <div class="line"><a name="l00458"></a><span class="lineno"> 458</span>&#160;</div> <div class="line"><a name="l00459"></a><span class="lineno"> 459</span>&#160;</div> <div class="line"><a name="l00461"></a><span class="lineno"> 461</span>&#160;<span class="keyword">template</span>&lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00462"></a><span class="lineno"><a class="code" href="a00176.html#a28aff4220c1c53e5c80b8a24fb0e9440"> 462</a></span>&#160;<span class="keyword">inline</span> <span class="keywordtype">void</span> <a class="code" href="a00176.html#a28aff4220c1c53e5c80b8a24fb0e9440" title="Convert a field&#39;s string contents to another type.">from_string</a>(<span class="keyword">const</span> <a class="code" href="a00040.html" title="Reference to a field in a result set.">field</a> &amp;F, T &amp;Obj) <span class="comment">//[t46]</span></div> <div class="line"><a name="l00463"></a><span class="lineno"> 463</span>&#160; { <a class="code" href="a00176.html#a28aff4220c1c53e5c80b8a24fb0e9440" title="Convert a field&#39;s string contents to another type.">from_string</a>(F.<a class="code" href="a00040.html#a97781b0028cbfd2dca1106943a27afae" title="Read as plain C string.">c_str</a>(), Obj, F.<a class="code" href="a00040.html#ad8d3b3ef9308b577d178086e4b295ca5">size</a>()); }</div> <div class="line"><a name="l00464"></a><span class="lineno"> 464</span>&#160;</div> <div class="line"><a name="l00466"></a><span class="lineno"> 466</span>&#160;<span class="keyword">template</span>&lt;&gt;</div> <div class="line"><a name="l00467"></a><span class="lineno"><a class="code" href="a00176.html#a4000e0b1288512dd1193b4dd442e6889"> 467</a></span>&#160;<span class="keyword">inline</span> PGSTD::string <a class="code" href="a00176.html#a4000e0b1288512dd1193b4dd442e6889" title="Convert a field to a string.">to_string</a>(<span class="keyword">const</span> <a class="code" href="a00040.html" title="Reference to a field in a result set.">field</a> &amp;Obj) <span class="comment">//[t74]</span></div> <div class="line"><a name="l00468"></a><span class="lineno"> 468</span>&#160; { <span class="keywordflow">return</span> PGSTD::string(Obj.<a class="code" href="a00040.html#a97781b0028cbfd2dca1106943a27afae" title="Read as plain C string.">c_str</a>(), Obj.<a class="code" href="a00040.html#ad8d3b3ef9308b577d178086e4b295ca5">size</a>()); }</div> <div class="line"><a name="l00469"></a><span class="lineno"> 469</span>&#160;</div> <div class="line"><a name="l00470"></a><span class="lineno"> 470</span>&#160;</div> <div class="line"><a name="l00471"></a><span class="lineno"> 471</span>&#160;<span class="keyword">inline</span> const_result_iterator</div> <div class="line"><a name="l00472"></a><span class="lineno"><a class="code" href="a00025.html#a2faa42822a70d1ad0dbf426b69ee8a69"> 472</a></span>&#160;<a class="code" href="a00176.html#a14f86142785f212ef3de46040e22c532">const_result_iterator::operator+</a>(<a class="code" href="a00082.html#abec7f7f4d7ed030f38b2a123b632b818">result::difference_type</a> o)<span class="keyword"> const</span></div> <div class="line"><a name="l00473"></a><span class="lineno"> 473</span>&#160;<span class="keyword"></span>{</div> <div class="line"><a name="l00474"></a><span class="lineno"> 474</span>&#160; <span class="keywordflow">return</span> const_result_iterator(</div> <div class="line"><a name="l00475"></a><span class="lineno"> 475</span>&#160; m_Home, size_type(<a class="code" href="a00082.html#abec7f7f4d7ed030f38b2a123b632b818">result::difference_type</a>(m_Index) + o));</div> <div class="line"><a name="l00476"></a><span class="lineno"> 476</span>&#160;}</div> <div class="line"><a name="l00477"></a><span class="lineno"> 477</span>&#160;</div> <div class="line"><a name="l00478"></a><span class="lineno"> 478</span>&#160;<span class="keyword">inline</span> const_result_iterator</div> <div class="line"><a name="l00479"></a><span class="lineno"><a class="code" href="a00176.html#a14f86142785f212ef3de46040e22c532"> 479</a></span>&#160;<a class="code" href="a00176.html#a14f86142785f212ef3de46040e22c532">operator+</a>(<a class="code" href="a00082.html#abec7f7f4d7ed030f38b2a123b632b818">result::difference_type</a> o, const_result_iterator i)</div> <div class="line"><a name="l00480"></a><span class="lineno"> 480</span>&#160; { <span class="keywordflow">return</span> i + o; }</div> <div class="line"><a name="l00481"></a><span class="lineno"> 481</span>&#160;</div> <div class="line"><a name="l00482"></a><span class="lineno"> 482</span>&#160;<span class="keyword">inline</span> const_result_iterator</div> <div class="line"><a name="l00483"></a><span class="lineno"><a class="code" href="a00025.html#adfa0ccba45f501111664d5e0c4bfa766"> 483</a></span>&#160;<a class="code" href="a00025.html#adfa0ccba45f501111664d5e0c4bfa766">const_result_iterator::operator-</a>(<a class="code" href="a00082.html#abec7f7f4d7ed030f38b2a123b632b818">result::difference_type</a> o)<span class="keyword"> const</span></div> <div class="line"><a name="l00484"></a><span class="lineno"> 484</span>&#160;<span class="keyword"></span>{</div> <div class="line"><a name="l00485"></a><span class="lineno"> 485</span>&#160; <span class="keywordflow">return</span> const_result_iterator(</div> <div class="line"><a name="l00486"></a><span class="lineno"> 486</span>&#160; m_Home,</div> <div class="line"><a name="l00487"></a><span class="lineno"> 487</span>&#160; <a class="code" href="a00082.html#a9e02bbf1126802fd7fd64df989e03940">result::size_type</a>(<a class="code" href="a00082.html#abec7f7f4d7ed030f38b2a123b632b818">result::difference_type</a>(m_Index) - o));</div> <div class="line"><a name="l00488"></a><span class="lineno"> 488</span>&#160;}</div> <div class="line"><a name="l00489"></a><span class="lineno"> 489</span>&#160;</div> <div class="line"><a name="l00490"></a><span class="lineno"> 490</span>&#160;<span class="keyword">inline</span> <a class="code" href="a00082.html#abec7f7f4d7ed030f38b2a123b632b818">result::difference_type</a></div> <div class="line"><a name="l00491"></a><span class="lineno"><a class="code" href="a00025.html#a4f404cbf15b073e6f877dbc405edabe0"> 491</a></span>&#160;<a class="code" href="a00025.html#adfa0ccba45f501111664d5e0c4bfa766">const_result_iterator::operator-</a>(const_result_iterator i)<span class="keyword"> const</span></div> <div class="line"><a name="l00492"></a><span class="lineno"> 492</span>&#160;<span class="keyword"> </span>{ <span class="keywordflow">return</span> <a class="code" href="a00082.html#abec7f7f4d7ed030f38b2a123b632b818">result::difference_type</a>(num() - i.<a class="code" href="a00107.html#a1cf7ff6980433ae25d4438b792039e71">num</a>()); }</div> <div class="line"><a name="l00493"></a><span class="lineno"> 493</span>&#160;</div> <div class="line"><a name="l00494"></a><span class="lineno"><a class="code" href="a00082.html#a629baba71ae365f79232780e6f8ac3a7"> 494</a></span>&#160;<span class="keyword">inline</span> const_result_iterator <a class="code" href="a00082.html#a629baba71ae365f79232780e6f8ac3a7">result::end</a>() <span class="keyword">const</span> throw ()</div> <div class="line"><a name="l00495"></a><span class="lineno"> 495</span>&#160; { <span class="keywordflow">return</span> const_result_iterator(<span class="keyword">this</span>, size()); }</div> <div class="line"><a name="l00496"></a><span class="lineno"> 496</span>&#160;</div> <div class="line"><a name="l00497"></a><span class="lineno"> 497</span>&#160;</div> <div class="line"><a name="l00498"></a><span class="lineno"> 498</span>&#160;<span class="keyword">inline</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a></div> <div class="line"><a name="l00499"></a><span class="lineno"><a class="code" href="a00176.html#af9d548cd3c597e67d8a4288ba24a17f8"> 499</a></span>&#160;<a class="code" href="a00176.html#a14f86142785f212ef3de46040e22c532">operator+</a>(<a class="code" href="a00082.html#abec7f7f4d7ed030f38b2a123b632b818">result::difference_type</a> n,</div> <div class="line"><a name="l00500"></a><span class="lineno"> 500</span>&#160; <span class="keyword">const</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a> &amp;i)</div> <div class="line"><a name="l00501"></a><span class="lineno"> 501</span>&#160; { <span class="keywordflow">return</span> <a class="code" href="a00026.html" title="Reverse iterator for result. Use as result::const_reverse_iterator.">const_reverse_result_iterator</a>(i.<a class="code" href="a00026.html#af0afdb9600704e015047eefae139bd27">base</a>() - n); }</div> <div class="line"><a name="l00502"></a><span class="lineno"> 502</span>&#160;</div> <div class="line"><a name="l00503"></a><span class="lineno"> 503</span>&#160;} <span class="comment">// namespace pqxx</span></div> <div class="line"><a name="l00504"></a><span class="lineno"> 504</span>&#160;</div> <div class="line"><a name="l00505"></a><span class="lineno"> 505</span>&#160;</div> <div class="line"><a name="l00506"></a><span class="lineno"> 506</span>&#160;<span class="preprocessor">#include &quot;pqxx/compiler-internal-post.hxx&quot;</span></div> <div class="line"><a name="l00507"></a><span class="lineno"> 507</span>&#160;</div> <div class="line"><a name="l00508"></a><span class="lineno"> 508</span>&#160;<span class="preprocessor">#endif</span></div> </div><!-- fragment --></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="dir_3d7cbfaf9a6edea0a348c9e21a88d076.html">pqxx</a></li><li class="navelem"><b>result.hxx</b></li> <li class="footer">Generated on Sun Jan 20 2013 13:09:09 for libpqxx by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.1.2 </li> </ul> </div> </body> </html>
giupo/libpqxx
doc/html/Reference/a00156_source.html
HTML
bsd-3-clause
81,475
{% extends "../layout.html" %} {% block page_title %} Find a career {% endblock %} {% block content %} {% set serviceName = 'Find a career' %} {% set bannerStyle = 'BETA-style' %} {% set filterName = 'Training routes' %} {% include "../includes/survey.html" %} {% include "../includes/global_header_bar.html" %} <main id="content" role="main"> {% include "../includes/breadcrumb_filters.html" %} <div class="grid-row"> <div class="column-two-thirds explore-top"> <h4 class="heading-small grey">Question 1 of 10</h4> <h1 class="heading-medium top0">Relating & Networking 1</h1> <p id="answer-1" class="js-hidden">Correct answer! Working with others is a key skill of a Plumbing Apprentice, and building relationships by listening to people is very important. From your response you are likely to be a good fit to the role.</p> <p id="answer-2" class="js-hidden">While it can be hard to work with people you have never met before, a Plumbing Apprentice will need to communicate with others and work together with other people.</p> <p id="answer-3" class="js-hidden">Sometimes a Plumbing Apprentice will need to work alone, but often you will need to communicate with others and work together to get your work done, even if they are people you have not met before and may not work with again soon. If you are likely to struggle with this, you may find the role difficult.</p> </div> </div> <div class="grid-row"> <div class="column-full"><a href="question2" id="cc-nextq" class="explore-button">Next</a></div> </div> </main> {% endblock %}
citizendigitalalpha/careers_beta
app/views/_sprintTemplate/e2e/competency-checker/answer1.html
HTML
mit
1,659