text
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
<!-- Copyright (c) 2014, 2016, Oracle and/or its affiliates. The Universal Permissive License (UPL), Version 1.0 --> <div class="oj-hybrid-padding"> <h3>Customers Content Area</h3> <div> To change the content of this section, you will make edits to the customers.html file located in the /js/views folder. </div> </div>
peppertech/OracleJET-Samples
MobileFilmstrip/src/js/views/customers.html
HTML
mit
335
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>is_member_object_pointer</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.TypeTraits"> <link rel="up" href="../reference.html" title="Alphabetical Reference"> <link rel="prev" href="is_member_function_pointer.html" title="is_member_function_pointer"> <link rel="next" href="is_member_pointer.html" title="is_member_pointer"> </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="is_member_function_pointer.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../reference.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="is_member_pointer.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="boost_typetraits.reference.is_member_object_pointer"></a><a class="link" href="is_member_object_pointer.html" title="is_member_object_pointer">is_member_object_pointer</a> </h3></div></div></div> <pre class="programlisting"><span class="keyword">template</span> <span class="special">&lt;</span><span class="keyword">class</span> <span class="identifier">T</span><span class="special">&gt;</span> <span class="keyword">struct</span> <span class="identifier">is_member_object_pointer</span> <span class="special">:</span> <span class="keyword">public</span> <em class="replaceable"><code><a class="link" href="integral_constant.html" title="integral_constant">true_type</a>-or-<a class="link" href="integral_constant.html" title="integral_constant">false_type</a></code></em> <span class="special">{};</span> </pre> <p> <span class="bold"><strong>Inherits:</strong></span> If T is a (possibly cv-qualified) pointer to a member object (a data member) then inherits from <a class="link" href="integral_constant.html" title="integral_constant">true_type</a>, otherwise inherits from <a class="link" href="integral_constant.html" title="integral_constant">false_type</a>. </p> <p> <span class="bold"><strong>C++ Standard Reference:</strong></span> 3.9.2 and 8.3.3. </p> <p> <span class="bold"><strong>Compiler Compatibility:</strong></span> All current compilers are supported by this trait. </p> <p> <span class="bold"><strong>Header:</strong></span> <code class="computeroutput"> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">type_traits</span><span class="special">/</span><span class="identifier">is_member_object_pointer</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code> or <code class="computeroutput"> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">type_traits</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code> </p> <p> <span class="bold"><strong>Examples:</strong></span> </p> <div class="blockquote"><blockquote class="blockquote"><p> <code class="computeroutput"><span class="identifier">is_member_object_pointer</span><span class="special">&lt;</span><span class="keyword">int</span> <span class="special">(</span><span class="identifier">MyClass</span><span class="special">::*)&gt;</span></code> inherits from <code class="computeroutput"><a class="link" href="integral_constant.html" title="integral_constant">true_type</a></code>. </p></blockquote></div> <div class="blockquote"><blockquote class="blockquote"><p> <code class="computeroutput"><span class="identifier">is_member_object_pointer</span><span class="special">&lt;</span><span class="keyword">double</span> <span class="special">(</span><span class="identifier">MyClass</span><span class="special">::*)&gt;::</span><span class="identifier">type</span></code> is the type <code class="computeroutput"><a class="link" href="integral_constant.html" title="integral_constant">true_type</a></code>. </p></blockquote></div> <div class="blockquote"><blockquote class="blockquote"><p> <code class="computeroutput"><span class="identifier">is_member_object_pointer</span><span class="special">&lt;</span><span class="keyword">const</span> <span class="keyword">int</span> <span class="special">(</span><span class="identifier">MyClass</span><span class="special">::*)&gt;::</span><span class="identifier">value</span></code> is an integral constant expression that evaluates to <span class="emphasis"><em>true</em></span>. </p></blockquote></div> <div class="blockquote"><blockquote class="blockquote"><p> <code class="computeroutput"><span class="identifier">is_member_object_pointer</span><span class="special">&lt;</span><span class="keyword">int</span> <span class="special">(</span><span class="identifier">MyClass</span><span class="special">::*)(</span><span class="keyword">void</span><span class="special">)&gt;::</span><span class="identifier">value</span></code> is an integral constant expression that evaluates to <span class="emphasis"><em>false</em></span>: the argument in this case is a pointer to a member function and not a member object, see <a class="link" href="is_member_function_pointer.html" title="is_member_function_pointer">is_member_function_pointer</a> and <a class="link" href="is_member_pointer.html" title="is_member_pointer">is_member_pointer</a> </p></blockquote></div> <div class="blockquote"><blockquote class="blockquote"><p> <code class="computeroutput"><span class="identifier">is_member_object_pointer</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">&gt;::</span><span class="identifier">value_type</span></code> is the type <code class="computeroutput"><span class="keyword">bool</span></code>. </p></blockquote></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; 2000, 2011 Adobe Systems Inc, David Abrahams, Frederic Bron, Steve Cleary, Beman Dawes, Aleksey Gurtovoy, Howard Hinnant, Jesse Jones, Mat Marcus, Itay Maman, John Maddock, Alexander Nasonov, Thorsten Ottosen, Roman Perepelitsa, Robert Ramey, Jeremy Siek, Robert Stewart and Steven Watanabe<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="is_member_function_pointer.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../reference.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="is_member_pointer.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
yinchunlong/abelkhan-1
ext/c++/thirdpart/c++/boost/libs/type_traits/doc/html/boost_typetraits/reference/is_member_object_pointer.html
HTML
mit
8,416
<!DOCTYPE html> <html data-require="math"> <head> <title>Algorithm Analysis Exercise: Bounds</title> <script src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.14/require.min.js"></script> <script src="../../khan-exercises/local-only/main.js" ></script> </head> <body> <div class="exercise"> <div class="problems"> <div id="MisunderstandingsTF6p"> <p class="problem">Answer TRUE or FALSE.</p> <p class="question">The worst case for the sequencial search algorithm occurs when the array size tends to infinity. </p> <div class="solution">False</div> <ul class="choices" data-category="true"> <li>True</li> <li>False</li> </ul> <div class="hints"> <p>Worst case cost refers to the most expensive problem instance AS THE INPUT GETS BIG.</p> <p>That is, worst case does not refer to what the input size it.</p> <p>It refers to which input of a particular size is the worst one.</p> <p>The worst case for sequential search occurs when the last element of the array (for whatever size) is the value being searched for.</p> </div> </div> </div> </div> </body> </html>
RJFreund/OpenDSA
Exercises/AlgAnal/MisunderstandingsTF6.html
HTML
mit
1,391
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>read (2 of 8 overloads)</title> <link rel="stylesheet" href="../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../index.html" title="Asio"> <link rel="up" href="../read.html" title="read"> <link rel="prev" href="overload1.html" title="read (1 of 8 overloads)"> <link rel="next" href="overload3.html" title="read (3 of 8 overloads)"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr><td valign="top"><img alt="asio C++ library" width="250" height="60" src="../../../asio.png"></td></tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="overload1.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../read.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="overload3.html"><img src="../../../next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="asio.reference.read.overload2"></a><a class="link" href="overload2.html" title="read (2 of 8 overloads)">read (2 of 8 overloads)</a> </h4></div></div></div> <p> Attempt to read a certain amount of data from a stream before returning. </p> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span> <span class="keyword">typename</span> <a class="link" href="../SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a><span class="special">,</span> <span class="keyword">typename</span> <a class="link" href="../MutableBufferSequence.html" title="Mutable buffer sequence requirements">MutableBufferSequence</a><span class="special">&gt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <span class="identifier">read</span><span class="special">(</span> <span class="identifier">SyncReadStream</span> <span class="special">&amp;</span> <span class="identifier">s</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">MutableBufferSequence</span> <span class="special">&amp;</span> <span class="identifier">buffers</span><span class="special">,</span> <span class="identifier">asio</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> </pre> <p> This function is used to read a certain number of bytes of data from a stream. The call will block until one of the following conditions is true: </p> <div class="itemizedlist"><ul class="itemizedlist" type="disc"> <li class="listitem"> The supplied buffers are full. That is, the bytes transferred is equal to the sum of the buffer sizes. </li> <li class="listitem"> An error occurred. </li> </ul></div> <p> This operation is implemented in terms of zero or more calls to the stream's read_some function. </p> <h6> <a name="asio.reference.read.overload2.h0"></a> <span><a name="asio.reference.read.overload2.parameters"></a></span><a class="link" href="overload2.html#asio.reference.read.overload2.parameters">Parameters</a> </h6> <div class="variablelist"> <p class="title"><b></b></p> <dl> <dt><span class="term">s</span></dt> <dd><p> The stream from which the data is to be read. The type must support the SyncReadStream concept. </p></dd> <dt><span class="term">buffers</span></dt> <dd><p> One or more buffers into which the data will be read. The sum of the buffer sizes indicates the maximum number of bytes to read from the stream. </p></dd> <dt><span class="term">ec</span></dt> <dd><p> Set to indicate what error occurred, if any. </p></dd> </dl> </div> <h6> <a name="asio.reference.read.overload2.h1"></a> <span><a name="asio.reference.read.overload2.return_value"></a></span><a class="link" href="overload2.html#asio.reference.read.overload2.return_value">Return Value</a> </h6> <p> The number of bytes transferred. </p> <h6> <a name="asio.reference.read.overload2.h2"></a> <span><a name="asio.reference.read.overload2.example"></a></span><a class="link" href="overload2.html#asio.reference.read.overload2.example">Example</a> </h6> <p> To read into a single data buffer use the <a class="link" href="../buffer.html" title="buffer"><code class="computeroutput"><span class="identifier">buffer</span></code></a> function as follows: </p> <pre class="programlisting"><span class="identifier">asio</span><span class="special">::</span><span class="identifier">read</span><span class="special">(</span><span class="identifier">s</span><span class="special">,</span> <span class="identifier">asio</span><span class="special">::</span><span class="identifier">buffer</span><span class="special">(</span><span class="identifier">data</span><span class="special">,</span> <span class="identifier">size</span><span class="special">),</span> <span class="identifier">ec</span><span class="special">);</span> </pre> <p> See the <a class="link" href="../buffer.html" title="buffer"><code class="computeroutput"><span class="identifier">buffer</span></code></a> documentation for information on reading into multiple buffers in one go, and how to use it with arrays, boost::array or std::vector. </p> <h6> <a name="asio.reference.read.overload2.h3"></a> <span><a name="asio.reference.read.overload2.remarks"></a></span><a class="link" href="overload2.html#asio.reference.read.overload2.remarks">Remarks</a> </h6> <p> This overload is equivalent to calling: </p> <pre class="programlisting"><span class="identifier">asio</span><span class="special">::</span><span class="identifier">read</span><span class="special">(</span> <span class="identifier">s</span><span class="special">,</span> <span class="identifier">buffers</span><span class="special">,</span> <span class="identifier">asio</span><span class="special">::</span><span class="identifier">transfer_all</span><span class="special">(),</span> <span class="identifier">ec</span><span class="special">);</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="overload1.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../read.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="overload3.html"><img src="../../../next.png" alt="Next"></a> </div> </body> </html>
otgaard/zap
third_party/asio/doc/asio/reference/read/overload2.html
HTML
mit
7,601
<a href='https://github.com/angular/angular.js/edit/v1.2.x/src/Angular.js?message=docs(angular.toJson)%3A%20describe%20your%20change...#L1028' 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.29/src/Angular.js#L1028' 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">angular.toJson</h1> <ol class="api-profile-header-structure naked-list step-list"> <li> - function in module <a href="api/ng">ng</a> </li> </ol> </header> <div class="api-profile-description"> <p>Serializes input into a JSON-formatted string. Properties with leading $ characters will be stripped since angular uses this notation internally.</p> </div> <div> <h2 id="usage">Usage</h2> <p><code>angular.toJson(obj, [pretty]);</code></p> <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> obj </td> <td> <a href="" class="label type-hint type-hint-object">Object</a><a href="" class="label type-hint type-hint-array">Array</a><a href="" class="label type-hint type-hint-date">Date</a><a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-number">number</a> </td> <td> <p>Input to be serialized into JSON.</p> </td> </tr> <tr> <td> pretty <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-boolean">boolean</a> </td> <td> <p>If set to true, the JSON output will contain newlines and whitespace.</p> </td> </tr> </tbody> </table> </section> <h3>Returns</h3> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-string">string</a><a href="" class="label type-hint type-hint-undefined">undefined</a></td> <td><p>JSON-ified string representing <code>obj</code>.</p> </td> </tr> </table> </div>
dolymood/angular-packages
angular-1.2.29/docs/partials/api/ng/function/angular.toJson.html
HTML
mit
2,442
<!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_40) on Tue Jun 23 23:06:47 JST 2015 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>twitter4j Class Hierarchy (twitter4j-appengine 4.0.4 API)</title> <meta name="date" content="2015-06-23"> <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="twitter4j Class Hierarchy (twitter4j-appengine 4.0.4 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="../twitter4j/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>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../index.html?twitter4j/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.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"> <h1 class="title">Hierarchy For Package twitter4j</h1> </div> <div class="contentContainer"> <h2 title="Class Hierarchy">Class Hierarchy</h2> <ul> <li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a> <ul> <li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Throwable</span></a> (implements java.io.<a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>) <ul> <li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Exception</span></a> <ul> <li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/RuntimeException.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">RuntimeException</span></a> <ul> <li type="circle">twitter4j.<a href="../twitter4j/TwitterRuntimeException.html" title="class in twitter4j"><span class="typeNameLink">TwitterRuntimeException</span></a></li> </ul> </li> </ul> </li> </ul> </li> <li type="circle">twitter4j.<a href="../twitter4j/VersionAppEngine.html" title="class in twitter4j"><span class="typeNameLink">VersionAppEngine</span></a></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="../twitter4j/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>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../index.html?twitter4j/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.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; 2015. All rights reserved.</small></p> </body> </html>
john494/SmartMirror
phoneapp/SmartMirror/app/src/twitter4j-4/twitter4j-appengine/javadoc/twitter4j/package-tree.html
HTML
cc0-1.0
5,265
<div class="box"> 用户名:{{user_name}} </div> <div class="box"> 上传事件数:{{event_count}} </div> <div class="box"> 上传地点数:{{map_count}} </div> <div class="box"> 上传人物数:{{people_count}} </div>
haiyangxue/HMapVis
WebRoot/js/templates/user_template.html
HTML
apache-2.0
232
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../includes/main.css" type="text/css"> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> <title>Apache CloudStack | The Power Behind Your Cloud</title> </head> <body> <div id="insidetopbg"> <div id="inside_wrapper"> <div class="uppermenu_panel"> <div class="uppermenu_box"></div> </div> <div id="main_master"> <div id="inside_header"> <div class="header_top"> <a class="cloud_logo" href="http://cloudstack.org"></a> <div class="mainemenu_panel"></div> </div> </div> <div id="main_content"> <div class="inside_apileftpanel"> <div class="inside_contentpanel" style="width:930px;"> <div class="api_titlebox"> <div class="api_titlebox_left"> <span> Apache CloudStack 4.14.1.0-SNAPSHOT Root Admin API Reference </span> <p></p> <h1>addPaloAltoFirewall</h1> <p>Adds a Palo Alto firewall device</p> </div> <div class="api_titlebox_right"> <a class="api_backbutton" href="../index.html"></a> </div> </div> <div class="api_tablepanel"> <h2>Request parameters</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td> </tr> <tr> <td style="width:200px;"><strong>networkdevicetype</strong></td><td style="width:500px;"><strong>supports only PaloAltoFirewall</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> <tr> <td style="width:200px;"><strong>password</strong></td><td style="width:500px;"><strong>Credentials to reach Palo Alto firewall device</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> <tr> <td style="width:200px;"><strong>physicalnetworkid</strong></td><td style="width:500px;"><strong>the Physical Network ID</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> <tr> <td style="width:200px;"><strong>url</strong></td><td style="width:500px;"><strong>URL of the Palo Alto appliance.</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> <tr> <td style="width:200px;"><strong>username</strong></td><td style="width:500px;"><strong>Credentials to reach Palo Alto firewall device</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> </table> </div> <div class="api_tablepanel"> <h2>Response Tags</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td> </tr> <tr> <td style="width:200px;"><strong>fwdevicecapacity</strong></td><td style="width:500px;">device capacity</td> </tr> <tr> <td style="width:200px;"><strong>fwdeviceid</strong></td><td style="width:500px;">device id of the Palo Alto firewall</td> </tr> <tr> <td style="width:200px;"><strong>fwdevicename</strong></td><td style="width:500px;">device name</td> </tr> <tr> <td style="width:200px;"><strong>fwdevicestate</strong></td><td style="width:500px;">device state</td> </tr> <tr> <td style="width:200px;"><strong>ipaddress</strong></td><td style="width:500px;">the management IP address of the external firewall</td> </tr> <tr> <td style="width:200px;"><strong>numretries</strong></td><td style="width:500px;">the number of times to retry requests to the external firewall</td> </tr> <tr> <td style="width:200px;"><strong>physicalnetworkid</strong></td><td style="width:500px;">the physical network to which this Palo Alto firewall belongs to</td> </tr> <tr> <td style="width:200px;"><strong>privateinterface</strong></td><td style="width:500px;">the private interface of the external firewall</td> </tr> <tr> <td style="width:200px;"><strong>privatezone</strong></td><td style="width:500px;">the private security zone of the external firewall</td> </tr> <tr> <td style="width:200px;"><strong>provider</strong></td><td style="width:500px;">name of the provider</td> </tr> <tr> <td style="width:200px;"><strong>publicinterface</strong></td><td style="width:500px;">the public interface of the external firewall</td> </tr> <tr> <td style="width:200px;"><strong>publiczone</strong></td><td style="width:500px;">the public security zone of the external firewall</td> </tr> <tr> <td style="width:200px;"><strong>timeout</strong></td><td style="width:500px;">the timeout (in seconds) for requests to the external firewall</td> </tr> <tr> <td style="width:200px;"><strong>usageinterface</strong></td><td style="width:500px;">the usage interface of the external firewall</td> </tr> <tr> <td style="width:200px;"><strong>username</strong></td><td style="width:500px;">the username that's used to log in to the external firewall</td> </tr> <tr> <td style="width:200px;"><strong>zoneid</strong></td><td style="width:500px;">the zone ID of the external firewall</td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> <div id="comments_thread"> <script type="text/javascript" src="https://comments.apache.org/show_comments.lua?site=test" async="true"></script> <noscript> <iframe width="930" height="500" src="https://comments.apache.org/iframe.lua?site=test&amp;page=4.2.0/rootadmin"></iframe> </noscript> </div> <div id="footer_mainmaster"> <p> Copyright &copy; 2015 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br> Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation. </p> </div> </div> </div> </div> </body> </html>
apache/cloudstack-www
source/api/apidocs-4.14/apis/addPaloAltoFirewall.html
HTML
apache-2.0
10,172
<!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=UTF-8"> <link rel="stylesheet" href="../../../style.css" type="text/css" media="screen"> <link rel="stylesheet" href="../../../print.css" type="text/css" media="print"> <meta content="MapMoveEvent,com.google.maps.MapMoveEvent,MOVE_END,MOVE_START,MOVE_STEP,latLng" name="keywords"> <title>com.google.maps.MapMoveEvent</title> </head> <body> <script type="text/javascript" language="javascript" src="../../../asdoc.js"></script><script type="text/javascript" language="javascript" src="../../../cookies.js"></script><script type="text/javascript" language="javascript"> <!-- asdocTitle = 'MapMoveEvent - Google Maps API for Flash Documentation'; var baseRef = '../../../'; window.onload = configPage; --></script> <table style="display:none" id="titleTable" cellspacing="0" cellpadding="0" class="titleTable"> <tr> <td align="left" class="titleTableTitle">Google Maps API for Flash Documentation, Version 1.20</td><td align="right" class="titleTableTopNav"><a onclick="loadClassListFrame('../../../all-classes.html')" href="../../../package-summary.html">All&nbsp;Packages</a>&nbsp;|&nbsp;<a onclick="loadClassListFrame('../../../all-classes.html')" href="../../../class-summary.html">All&nbsp;Classes</a>&nbsp;|&nbsp;<a onclick="loadClassListFrame('../../../index-list.html')" href="../../../all-index-A.html">Index</a>&nbsp;|&nbsp;<a href="../../../index.html?com/google/maps/MapMoveEvent.html&amp;com/google/maps/class-list.html" id="framesLink1">Frames</a><a onclick="parent.location=document.location" href="" style="display:none" id="noFramesLink1">No&nbsp;Frames</a></td><td rowspan="3" align="right" class="titleTableLogo"><img alt="Adobe Logo" title="Adobe Logo" class="logoImage" src="../../../images/logo.jpg"></td> </tr> <tr class="titleTableRow2"> <td align="left" id="subTitle" class="titleTableSubTitle">Class&nbsp;MapMoveEvent</td><td align="right" id="subNav" class="titleTableSubNav"><a href="#propertySummary">Properties</a>&nbsp;| <a href="#methodSummary">Methods</a>&nbsp;| <a href="#constantSummary">Constants</a></td> </tr> <tr class="titleTableRow3"> <td colspan="2">&nbsp;</td> </tr> </table> <script type="text/javascript" language="javascript"> <!-- if (!isEclipse() || window.name != ECLIPSE_FRAME_NAME) {titleBar_setSubTitle("Class MapMoveEvent"); titleBar_setSubNav(true,true,false,false,false,false,true,false,false,false,false,false,false,false);} --></script> <div class="MainContent"> <table cellspacing="0" cellpadding="0" class="classHeaderTable"> <tr> <td class="classHeaderTableLabel">Package</td><td><a onclick="javascript:loadClassListFrame('class-list.html')" href="package-detail.html">com.google.maps</a></td> </tr> <tr> <td class="classHeaderTableLabel">Class</td><td class="classSignature">public class MapMoveEvent</td> </tr> <tr> <td class="classHeaderTableLabel">Inheritance</td><td class="inheritanceList">MapMoveEvent <img class="inheritArrow" alt="Inheritance" title="Inheritance" src="../../../images/inherit-arrow.gif"> <a href="MapEvent.html">MapEvent</a> <img class="inheritArrow" alt="Inheritance" title="Inheritance" src="../../../images/inherit-arrow.gif"> flash.events.Event</td> </tr> </table> <p></p> A MapMoveEvent object is dispatched into the event flow whenever the map view is changing. <p></p> <br> <hr> </div> <a name="propertySummary"></a> <div class="summarySection"> <div class="summaryTableTitle">Public Properties</div> <div class="showHideLinks"> <div class="hideInheritedProperty" id="hideInheritedProperty"> <a onclick="javascript:setInheritedVisible(false,'Property');" href="#propertySummary" class="showHideLink"><img src="../../../images/expanded.gif" class="showHideLinkImage"> Hide Inherited Public Properties</a> </div> <div class="showInheritedProperty" id="showInheritedProperty"> <a onclick="javascript:setInheritedVisible(true,'Property');" href="#propertySummary" class="showHideLink"><img src="../../../images/collapsed.gif" class="showHideLinkImage"> Show Inherited Public Properties</a> </div> </div> <table id="summaryTableProperty" class="summaryTable " cellpadding="3" cellspacing="0"> <tr> <th>&nbsp;</th><th colspan="2">Property</th><th class="summaryTableOwnerCol">Defined&nbsp;by</th> </tr> <tr class="hideInheritedProperty"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#feature">feature</a> : Object<div class="summaryTableDescription"> The object that the event refers to (such as an instance of <code>IMapType</code> for <code>MapEvent.MAPTYPE_ADDED</code> event or an instance of <code>IControl</code> for <code>MapEvent.CONTROL_REMOVED</code>).</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class=""> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol">&nbsp;</td><td class="summaryTableSignatureCol"><a class="signatureLink" href="#latLng">latLng</a> : <a href="../maps/LatLng.html">LatLng</a> <div class="summaryTableDescription">[read-only] LatLng over which the MapMoveEvent occurred.</div> </td><td class="summaryTableOwnerCol">MapMoveEvent</td> </tr> </table> </div> <a name="methodSummary"></a> <div class="summarySection"> <div class="summaryTableTitle">Public Methods</div> <table id="summaryTableMethod" class="summaryTable " cellpadding="3" cellspacing="0"> <tr> <th>&nbsp;</th><th colspan="2">Method</th><th class="summaryTableOwnerCol">Defined&nbsp;by</th> </tr> <tr class=""> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol">&nbsp;</td><td class="summaryTableSignatureCol"> <div class="summarySignature"> <a class="signatureLink" href="#MapMoveEvent()">MapMoveEvent</a>(type:String, latLng:<a href="LatLng.html">LatLng</a>, bubbles:Boolean = false, cancellable:Boolean = false)</div> <div class="summaryTableDescription"> Creates a MapMoveEvent object to pass as a parameter to event listeners.</div> </td><td class="summaryTableOwnerCol">MapMoveEvent</td> </tr> </table> </div> <a name="constantSummary"></a> <div class="summarySection"> <div class="summaryTableTitle">Public Constants</div> <div class="showHideLinks"> <div class="hideInheritedConstant" id="hideInheritedConstant"> <a onclick="javascript:setInheritedVisible(false,'Constant');" href="#constantSummary" class="showHideLink"><img src="../../../images/expanded.gif" class="showHideLinkImage"> Hide Inherited Public Constants</a> </div> <div class="showInheritedConstant" id="showInheritedConstant"> <a onclick="javascript:setInheritedVisible(true,'Constant');" href="#constantSummary" class="showHideLink"><img src="../../../images/collapsed.gif" class="showHideLinkImage"> Show Inherited Public Constants</a> </div> </div> <table id="summaryTableConstant" class="summaryTable " cellpadding="3" cellspacing="0"> <tr> <th>&nbsp;</th><th colspan="2">Constant</th><th class="summaryTableOwnerCol">Defined&nbsp;by</th> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#CONTROL_ADDED">CONTROL_ADDED</a> : String = "mapevent_controladded"<div class="summaryTableDescription">[static] This event is fired on the map when a control is added to the map.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#CONTROL_REMOVED">CONTROL_REMOVED</a> : String = "mapevent_controlremoved"<div class="summaryTableDescription">[static] This event is fired on the map when a control is removed from the map.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#COPYRIGHTS_UPDATED">COPYRIGHTS_UPDATED</a> : String = "mapevent_copyrightsupdated"<div class="summaryTableDescription">[static] This event is fired when the copyright that should be displayed on the map is updated.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#FLY_TO_CANCELED">FLY_TO_CANCELED</a> : String = "mapevent_flytocanceled"<div class="summaryTableDescription">[static] This event is fired when the map motion produced by a call to <code>Map3D.flyTo()</code> is canceled via a call to <code>Map3D.cancelFlyTo()</code>.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#FLY_TO_DONE">FLY_TO_DONE</a> : String = "mapevent_flytodone"<div class="summaryTableDescription">[static] This event is fired when the map motion produced by a call to <code>Map3D.flyTo()</code> completes.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#INFOWINDOW_CLOSED">INFOWINDOW_CLOSED</a> : String = "mapevent_infowindowclosed"<div class="summaryTableDescription">[static] This event is fired when the info window closes.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#INFOWINDOW_CLOSING">INFOWINDOW_CLOSING</a> : String = "mapevent_infowindowclosing"<div class="summaryTableDescription">[static] This event is fired before the info window closes.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#INFOWINDOW_OPENED">INFOWINDOW_OPENED</a> : String = "mapevent_infowindowopened"<div class="summaryTableDescription">[static] This event is fired when the info window opens.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#MAP_PREINITIALIZE">MAP_PREINITIALIZE</a> : String = "mapevent_mappreinitialize"<div class="summaryTableDescription">[static] This event is fired immediately before the map is initialized.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#MAP_READY">MAP_READY</a> : String = "mapevent_mapready"<div class="summaryTableDescription">[static] This event is fired when map initialization is complete and isLoaded() would return true.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#MAPTYPE_ADDED">MAPTYPE_ADDED</a> : String = "mapevent_maptypeadded"<div class="summaryTableDescription">[static] This event is fired when a new MapType has been added to the map.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#MAPTYPE_CHANGED">MAPTYPE_CHANGED</a> : String = "maptypechanged"<div class="summaryTableDescription">[static] This event is fired when another map type is selected.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#MAPTYPE_REMOVED">MAPTYPE_REMOVED</a> : String = "mapevent_maptyperemoved"<div class="summaryTableDescription">[static] This event is fired when a MapType has been removed from the map.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#MAPTYPE_STYLE_CHANGED">MAPTYPE_STYLE_CHANGED</a> : String = "mapevent_maptypestylechanged"<div class="summaryTableDescription">[static] This event is fired when the style of a styled map type changes.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class=""> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol">&nbsp;</td><td class="summaryTableSignatureCol"><a class="signatureLink" href="#MOVE_END">MOVE_END</a> : String = "mapevent_moveend"<div class="summaryTableDescription">[static] This event is fired when the change of the map view ends.</div> </td><td class="summaryTableOwnerCol">MapMoveEvent</td> </tr> <tr class=""> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol">&nbsp;</td><td class="summaryTableSignatureCol"><a class="signatureLink" href="#MOVE_START">MOVE_START</a> : String = "mapevent_movestart"<div class="summaryTableDescription">[static] This event is fired when the map view starts changing.</div> </td><td class="summaryTableOwnerCol">MapMoveEvent</td> </tr> <tr class=""> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol">&nbsp;</td><td class="summaryTableSignatureCol"><a class="signatureLink" href="#MOVE_STEP">MOVE_STEP</a> : String = "mapevent_movestep"<div class="summaryTableDescription">[static] This event is fired repeatedly while the map view is changing.</div> </td><td class="summaryTableOwnerCol">MapMoveEvent</td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#OVERLAY_BEFORE_REMOVED">OVERLAY_BEFORE_REMOVED</a> : String = "mapevent_overlaybeforeremoved"<div class="summaryTableDescription">[static] This event is fired when an overlay is about to be removed from the map.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#OVERLAY_MOVED">OVERLAY_MOVED</a> : String = "mapevent_overlaymoved"<div class="summaryTableDescription">[static] This event is fired when an overlay's position is changed.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#OVERLAY_REMOVED">OVERLAY_REMOVED</a> : String = "mapevent_overlayremoved"<div class="summaryTableDescription">[static] This event is fired after a single overlay is removed from the map.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#SIZE_CHANGED">SIZE_CHANGED</a> : String = "mapevent_sizechanged"<div class="summaryTableDescription">[static] This event is fired when the size of the map has changed.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#TILES_LOADED">TILES_LOADED</a> : String = "mapevent_tilesloaded"<div class="summaryTableDescription">[static] This event is fired when all visible target tiles have finished loading.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#TILES_LOADED_PENDING">TILES_LOADED_PENDING</a> : String = "mapevent_tilesloadedpending"<div class="summaryTableDescription">[static] This is a companion event to <code>MapEvent.TILES_LOADED</code> indicating that loading of new tiles has been initiated and that <code>MapEvent.TILES_LOADED</code> will be dispatched when all tiles have loaded.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#VIEW_CHANGED">VIEW_CHANGED</a> : String = "mapevent_viewchanged"<div class="summaryTableDescription">[static] This event is fired when the map view changes.</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> <tr class="hideInheritedConstant"> <td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol"><img class="inheritedSummaryImage" title="Inherited" alt="Inherited" src="../../../images/inheritedSummary.gif"></td><td class="summaryTableSignatureCol"><a class="signatureLink" href="MapEvent.html#VISIBILITY_CHANGED">VISIBILITY_CHANGED</a> : String = "mapevent_visibilitychanged"<div class="summaryTableDescription">[static] This event is fired when an overlay's visibility has changed (from visible to hidden or vice-versa).</div> </td><td class="summaryTableOwnerCol"><a href="MapEvent.html">MapEvent</a></td> </tr> </table> </div> <script type="text/javascript" language="javascript"> <!-- showHideInherited(); --></script> <div class="MainContent"> <a name="propertyDetail"></a> <div class="detailSectionHeader">Property detail</div> <a name="latLng"></a> <table cellspacing="0" cellpadding="0" class="detailHeader"> <tr> <td class="detailHeaderName">latLng</td><td class="detailHeaderType">property</td> </tr> </table> <div class="detailBody"> <code>latLng:<a href="../maps/LatLng.html">LatLng</a></code>&nbsp;&nbsp;[read-only]<p> LatLng over which the MapMoveEvent occurred. </p><span class="label">Implementation</span> <br> <code>&nbsp;&nbsp;&nbsp;&nbsp;public function get latLng():<a href="../maps/LatLng.html">LatLng</a></code> <br> </div> <a name="constructorDetail"></a> <div class="detailSectionHeader">Constructor detail</div> <a name="MapMoveEvent()"></a> <table cellspacing="0" cellpadding="0" class="detailHeader"> <tr> <td class="detailHeaderName">MapMoveEvent</td><td class="detailHeaderParens">()</td><td class="detailHeaderType">constructor</td> </tr> </table> <div class="detailBody"> <code>public function MapMoveEvent(type:String, latLng:<a href="LatLng.html">LatLng</a>, bubbles:Boolean = false, cancellable:Boolean = false)</code><p> Creates a MapMoveEvent object to pass as a parameter to event listeners. </p><span class="label">Parameters</span> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td width="20px"></td><td><code><span class="label">type</span>:String</code> &mdash; The type of the event, accessible as MapMoveEvent.type. </td> </tr> <tr> <td class="paramSpacer">&nbsp;</td> </tr> <tr> <td width="20px"></td><td><code><span class="label">latLng</span>:<a href="LatLng.html">LatLng</a></code> &mdash; Map's latLng. </td> </tr> <tr> <td class="paramSpacer">&nbsp;</td> </tr> <tr> <td width="20px"></td><td><code><span class="label">bubbles</span>:Boolean</code> (default = <code>false</code>)<code></code> &mdash; Determines whether the Event object participates in the bubbling stage of the event flow. The default value is false. </td> </tr> <tr> <td class="paramSpacer">&nbsp;</td> </tr> <tr> <td width="20px"></td><td><code><span class="label">cancellable</span>:Boolean</code> (default = <code>false</code>)<code></code> &mdash; Determines whether the Event object can be cancelled. The default values is false. </td> </tr> </table> </div> <a name="constantDetail"></a> <div class="detailSectionHeader">Constant detail</div> <a name="MOVE_END"></a> <table cellspacing="0" cellpadding="0" class="detailHeader"> <tr> <td class="detailHeaderName">MOVE_END</td><td class="detailHeaderType">constant</td> </tr> </table> <div class="detailBody"> <code>public static const MOVE_END:String = "mapevent_moveend"</code><p> This event is fired when the change of the map view ends. </p></div> <a name="MOVE_START"></a> <table cellspacing="0" cellpadding="0" class="detailHeader"> <tr> <td class="detailHeaderName">MOVE_START</td><td class="detailHeaderType">constant</td><td class="detailHeaderRule">&nbsp;</td> </tr> </table> <div class="detailBody"> <code>public static const MOVE_START:String = "mapevent_movestart"</code><p> This event is fired when the map view starts changing. This can be caused by dragging, in which case a MapMouseEvent.DRAG_START event is also fired, or by invocation of a method that changes the map view. </p></div> <a name="MOVE_STEP"></a> <table cellspacing="0" cellpadding="0" class="detailHeader"> <tr> <td class="detailHeaderName">MOVE_STEP</td><td class="detailHeaderType">constant</td><td class="detailHeaderRule">&nbsp;</td> </tr> </table> <div class="detailBody"> <code>public static const MOVE_STEP:String = "mapevent_movestep"</code><p> This event is fired repeatedly while the map view is changing. If the change is caused as a result of dragging, MapMouseEvent.DRAG_STEP events will also be generated. </p></div> <br> <br> <hr> <br> <p></p> <center class="copyright"> </center> </div> </body> </html> <!-- -->
g-amador/Tangible-User-Interface
tui_flashdevelop4_2_1__tuioAS3_0_8__AIR2_6/docs/GoogleMapsAPIforFlash/com/google/maps/MapMoveEvent.html
HTML
apache-2.0
26,033
<html><body> <style> body, h1, h2, h3, div, span, p, pre, a { margin: 0; padding: 0; border: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; } body { font-size: 13px; padding: 1em; } h1 { font-size: 26px; margin-bottom: 1em; } h2 { font-size: 24px; margin-bottom: 1em; } h3 { font-size: 20px; margin-bottom: 1em; margin-top: 1em; } pre, code { line-height: 1.5; font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; } pre { margin-top: 0.5em; } h1, h2, h3, p { font-family: Arial, sans serif; } h1, h2, h3 { border-bottom: solid #CCC 1px; } .toc_element { margin-top: 0.5em; } .firstline { margin-left: 2 em; } .method { margin-top: 1em; border: solid 1px #CCC; padding: 1em; background: #EEE; } .details { font-weight: bold; font-size: 14px; } </style> <h1><a href="dfareporting_v3_5.html">Campaign Manager 360 API</a> . <a href="dfareporting_v3_5.orderDocuments.html">orderDocuments</a></h1> <h2>Instance Methods</h2> <p class="toc_element"> <code><a href="#close">close()</a></code></p> <p class="firstline">Close httplib2 connections.</p> <p class="toc_element"> <code><a href="#get">get(profileId, projectId, id, x__xgafv=None)</a></code></p> <p class="firstline">Gets one order document by ID.</p> <p class="toc_element"> <code><a href="#list">list(profileId, projectId, approved=None, ids=None, maxResults=None, orderId=None, pageToken=None, searchString=None, siteId=None, sortField=None, sortOrder=None, x__xgafv=None)</a></code></p> <p class="firstline">Retrieves a list of order documents, possibly filtered. This method supports paging.</p> <p class="toc_element"> <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p> <p class="firstline">Retrieves the next page of results.</p> <h3>Method Details</h3> <div class="method"> <code class="details" id="close">close()</code> <pre>Close httplib2 connections.</pre> </div> <div class="method"> <code class="details" id="get">get(profileId, projectId, id, x__xgafv=None)</code> <pre>Gets one order document by ID. Args: profileId: string, User profile ID associated with this request. (required) projectId: string, Project ID for order documents. (required) id: string, Order document ID. (required) x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Contains properties of a Planning order document. &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this order document. &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this order document. &quot;amendedOrderDocumentId&quot;: &quot;A String&quot;, # The amended order document ID of this order document. An order document can be created by optionally amending another order document so that the change history can be preserved. &quot;approvedByUserProfileIds&quot;: [ # IDs of users who have approved this order document. &quot;A String&quot;, ], &quot;cancelled&quot;: True or False, # Whether this order document is cancelled. &quot;createdInfo&quot;: { # Modification timestamp. # Information about the creation of this order document. &quot;time&quot;: &quot;A String&quot;, # Timestamp of the last change in milliseconds since epoch. }, &quot;effectiveDate&quot;: &quot;A String&quot;, &quot;id&quot;: &quot;A String&quot;, # ID of this order document. &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#orderDocument&quot;. &quot;lastSentRecipients&quot;: [ # List of email addresses that received the last sent document. &quot;A String&quot;, ], &quot;lastSentTime&quot;: &quot;A String&quot;, &quot;orderId&quot;: &quot;A String&quot;, # ID of the order from which this order document is created. &quot;projectId&quot;: &quot;A String&quot;, # Project ID of this order document. &quot;signed&quot;: True or False, # Whether this order document has been signed. &quot;subaccountId&quot;: &quot;A String&quot;, # Subaccount ID of this order document. &quot;title&quot;: &quot;A String&quot;, # Title of this order document. &quot;type&quot;: &quot;A String&quot;, # Type of this order document }</pre> </div> <div class="method"> <code class="details" id="list">list(profileId, projectId, approved=None, ids=None, maxResults=None, orderId=None, pageToken=None, searchString=None, siteId=None, sortField=None, sortOrder=None, x__xgafv=None)</code> <pre>Retrieves a list of order documents, possibly filtered. This method supports paging. Args: profileId: string, User profile ID associated with this request. (required) projectId: string, Project ID for order documents. (required) approved: boolean, Select only order documents that have been approved by at least one user. ids: string, Select only order documents with these IDs. (repeated) maxResults: integer, Maximum number of results to return. orderId: string, Select only order documents for specified orders. (repeated) pageToken: string, Value of the nextPageToken from the previous result page. searchString: string, Allows searching for order documents by name or ID. Wildcards (*) are allowed. For example, &quot;orderdocument*2015&quot; will return order documents with names like &quot;orderdocument June 2015&quot;, &quot;orderdocument April 2015&quot;, or simply &quot;orderdocument 2015&quot;. Most of the searches also add wildcards implicitly at the start and the end of the search string. For example, a search string of &quot;orderdocument&quot; will match order documents with name &quot;my orderdocument&quot;, &quot;orderdocument 2015&quot;, or simply &quot;orderdocument&quot;. siteId: string, Select only order documents that are associated with these sites. (repeated) sortField: string, Field by which to sort the list. Allowed values ID - NAME - sortOrder: string, Order of sorted results. Allowed values ASCENDING - DESCENDING - x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Order document List Response &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#orderDocumentsListResponse&quot;. &quot;nextPageToken&quot;: &quot;A String&quot;, # Pagination token to be used for the next list operation. &quot;orderDocuments&quot;: [ # Order document collection { # Contains properties of a Planning order document. &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this order document. &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this order document. &quot;amendedOrderDocumentId&quot;: &quot;A String&quot;, # The amended order document ID of this order document. An order document can be created by optionally amending another order document so that the change history can be preserved. &quot;approvedByUserProfileIds&quot;: [ # IDs of users who have approved this order document. &quot;A String&quot;, ], &quot;cancelled&quot;: True or False, # Whether this order document is cancelled. &quot;createdInfo&quot;: { # Modification timestamp. # Information about the creation of this order document. &quot;time&quot;: &quot;A String&quot;, # Timestamp of the last change in milliseconds since epoch. }, &quot;effectiveDate&quot;: &quot;A String&quot;, &quot;id&quot;: &quot;A String&quot;, # ID of this order document. &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#orderDocument&quot;. &quot;lastSentRecipients&quot;: [ # List of email addresses that received the last sent document. &quot;A String&quot;, ], &quot;lastSentTime&quot;: &quot;A String&quot;, &quot;orderId&quot;: &quot;A String&quot;, # ID of the order from which this order document is created. &quot;projectId&quot;: &quot;A String&quot;, # Project ID of this order document. &quot;signed&quot;: True or False, # Whether this order document has been signed. &quot;subaccountId&quot;: &quot;A String&quot;, # Subaccount ID of this order document. &quot;title&quot;: &quot;A String&quot;, # Title of this order document. &quot;type&quot;: &quot;A String&quot;, # Type of this order document }, ], }</pre> </div> <div class="method"> <code class="details" id="list_next">list_next(previous_request, previous_response)</code> <pre>Retrieves the next page of results. Args: previous_request: The request for the previous page. (required) previous_response: The response from the request for the previous page. (required) Returns: A request object that you can call &#x27;execute()&#x27; on to request the next page. Returns None if there are no more items in the collection. </pre> </div> </body></html>
googleapis/google-api-python-client
docs/dyn/dfareporting_v3_5.orderDocuments.html
HTML
apache-2.0
9,203
<!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>CompoundConfiguration xref</title> <link type="text/css" rel="stylesheet" href="../../../../stylesheet.css" /> </head> <body> <div id="overview"><a href="../../../../../apidocs/org/apache/hadoop/hbase/CompoundConfiguration.html">View Javadoc</a></div><pre> <a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_javadoccomment"> * Copyright The Apache Software Foundation</em> <a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="4" href="#4">4</a> <em class="jxr_javadoccomment"> * Licensed to the Apache Software Foundation (ASF) under one</em> <a class="jxr_linenumber" name="5" href="#5">5</a> <em class="jxr_javadoccomment"> * or more contributor license agreements. See the NOTICE file</em> <a class="jxr_linenumber" name="6" href="#6">6</a> <em class="jxr_javadoccomment"> * distributed with this work for additional information</em> <a class="jxr_linenumber" name="7" href="#7">7</a> <em class="jxr_javadoccomment"> * regarding copyright ownership. The ASF licenses this file</em> <a class="jxr_linenumber" name="8" href="#8">8</a> <em class="jxr_javadoccomment"> * to you under the Apache License, Version 2.0 (the</em> <a class="jxr_linenumber" name="9" href="#9">9</a> <em class="jxr_javadoccomment"> * "License"); you may not use this file except in compliance</em> <a class="jxr_linenumber" name="10" href="#10">10</a> <em class="jxr_javadoccomment"> * with the License. You may obtain a copy of the License at</em> <a class="jxr_linenumber" name="11" href="#11">11</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="12" href="#12">12</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 class="jxr_linenumber" name="13" href="#13">13</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="14" href="#14">14</a> <em class="jxr_javadoccomment"> * Unless required by applicable law or agreed to in writing, software</em> <a class="jxr_linenumber" name="15" href="#15">15</a> <em class="jxr_javadoccomment"> * distributed under the License is distributed on an "AS IS" BASIS,</em> <a class="jxr_linenumber" name="16" href="#16">16</a> <em class="jxr_javadoccomment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em> <a class="jxr_linenumber" name="17" href="#17">17</a> <em class="jxr_javadoccomment"> * See the License for the specific language governing permissions and</em> <a class="jxr_linenumber" name="18" href="#18">18</a> <em class="jxr_javadoccomment"> * limitations under the License.</em> <a class="jxr_linenumber" name="19" href="#19">19</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="20" href="#20">20</a> <strong class="jxr_keyword">package</strong> org.apache.hadoop.hbase; <a class="jxr_linenumber" name="21" href="#21">21</a> <a class="jxr_linenumber" name="22" href="#22">22</a> <strong class="jxr_keyword">import</strong> java.io.DataOutput; <a class="jxr_linenumber" name="23" href="#23">23</a> <strong class="jxr_keyword">import</strong> java.io.IOException; <a class="jxr_linenumber" name="24" href="#24">24</a> <strong class="jxr_keyword">import</strong> java.io.OutputStream; <a class="jxr_linenumber" name="25" href="#25">25</a> <strong class="jxr_keyword">import</strong> java.util.ArrayList; <a class="jxr_linenumber" name="26" href="#26">26</a> <strong class="jxr_keyword">import</strong> java.util.HashMap; <a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">import</strong> java.util.Iterator; <a class="jxr_linenumber" name="28" href="#28">28</a> <strong class="jxr_keyword">import</strong> java.util.List; <a class="jxr_linenumber" name="29" href="#29">29</a> <strong class="jxr_keyword">import</strong> java.util.Map; <a class="jxr_linenumber" name="30" href="#30">30</a> <a class="jxr_linenumber" name="31" href="#31">31</a> <strong class="jxr_keyword">import</strong> org.apache.commons.collections.iterators.UnmodifiableIterator; <a class="jxr_linenumber" name="32" href="#32">32</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.classification.InterfaceAudience; <a class="jxr_linenumber" name="33" href="#33">33</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.conf.Configuration; <a class="jxr_linenumber" name="34" href="#34">34</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.io.ImmutableBytesWritable; <a class="jxr_linenumber" name="35" href="#35">35</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.Bytes; <a class="jxr_linenumber" name="36" href="#36">36</a> <a class="jxr_linenumber" name="37" href="#37">37</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="38" href="#38">38</a> <em class="jxr_javadoccomment"> * Do a shallow merge of multiple KV configuration pools. This is a very useful</em> <a class="jxr_linenumber" name="39" href="#39">39</a> <em class="jxr_javadoccomment"> * utility class to easily add per-object configurations in addition to wider</em> <a class="jxr_linenumber" name="40" href="#40">40</a> <em class="jxr_javadoccomment"> * scope settings. This is different from Configuration.addResource()</em> <a class="jxr_linenumber" name="41" href="#41">41</a> <em class="jxr_javadoccomment"> * functionality, which performs a deep merge and mutates the common data</em> <a class="jxr_linenumber" name="42" href="#42">42</a> <em class="jxr_javadoccomment"> * structure.</em> <a class="jxr_linenumber" name="43" href="#43">43</a> <em class="jxr_javadoccomment"> * &lt;p&gt;</em> <a class="jxr_linenumber" name="44" href="#44">44</a> <em class="jxr_javadoccomment"> * The iterator on CompoundConfiguration is unmodifiable. Obtaining iterator is an expensive</em> <a class="jxr_linenumber" name="45" href="#45">45</a> <em class="jxr_javadoccomment"> * operation.</em> <a class="jxr_linenumber" name="46" href="#46">46</a> <em class="jxr_javadoccomment"> * &lt;p&gt;</em> <a class="jxr_linenumber" name="47" href="#47">47</a> <em class="jxr_javadoccomment"> * For clarity: the shallow merge allows the user to mutate either of the</em> <a class="jxr_linenumber" name="48" href="#48">48</a> <em class="jxr_javadoccomment"> * configuration objects and have changes reflected everywhere. In contrast to a</em> <a class="jxr_linenumber" name="49" href="#49">49</a> <em class="jxr_javadoccomment"> * deep merge, that requires you to explicitly know all applicable copies to</em> <a class="jxr_linenumber" name="50" href="#50">50</a> <em class="jxr_javadoccomment"> * propagate changes.</em> <a class="jxr_linenumber" name="51" href="#51">51</a> <em class="jxr_javadoccomment"> * </em> <a class="jxr_linenumber" name="52" href="#52">52</a> <em class="jxr_javadoccomment"> * WARNING: The values set in the CompoundConfiguration are do not handle Property variable</em> <a class="jxr_linenumber" name="53" href="#53">53</a> <em class="jxr_javadoccomment"> * substitution. However, if they are set in the underlying configuration substitutions are</em> <a class="jxr_linenumber" name="54" href="#54">54</a> <em class="jxr_javadoccomment"> * done. </em> <a class="jxr_linenumber" name="55" href="#55">55</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="56" href="#56">56</a> @InterfaceAudience.Private <a class="jxr_linenumber" name="57" href="#57">57</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">CompoundConfiguration</a> <strong class="jxr_keyword">extends</strong> Configuration { <a class="jxr_linenumber" name="58" href="#58">58</a> <a class="jxr_linenumber" name="59" href="#59">59</a> <strong class="jxr_keyword">private</strong> Configuration mutableConf = <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="60" href="#60">60</a> <a class="jxr_linenumber" name="61" href="#61">61</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="62" href="#62">62</a> <em class="jxr_javadoccomment"> * Default Constructor. Initializes empty configuration</em> <a class="jxr_linenumber" name="63" href="#63">63</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="64" href="#64">64</a> <strong class="jxr_keyword">public</strong> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">CompoundConfiguration</a>() { <a class="jxr_linenumber" name="65" href="#65">65</a> } <a class="jxr_linenumber" name="66" href="#66">66</a> <a class="jxr_linenumber" name="67" href="#67">67</a> <em class="jxr_comment">// Devs: these APIs are the same contract as their counterparts in</em> <a class="jxr_linenumber" name="68" href="#68">68</a> <em class="jxr_comment">// Configuration.java</em> <a class="jxr_linenumber" name="69" href="#69">69</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">ImmutableConfigMap</a> <strong class="jxr_keyword">extends</strong> Iterable&lt;Map.Entry&lt;String,String&gt;&gt; { <a class="jxr_linenumber" name="70" href="#70">70</a> String get(String key); <a class="jxr_linenumber" name="71" href="#71">71</a> String getRaw(String key); <a class="jxr_linenumber" name="72" href="#72">72</a> Class&lt;?&gt; getClassByName(String name) <strong class="jxr_keyword">throws</strong> ClassNotFoundException; <a class="jxr_linenumber" name="73" href="#73">73</a> <strong class="jxr_keyword">int</strong> size(); <a class="jxr_linenumber" name="74" href="#74">74</a> } <a class="jxr_linenumber" name="75" href="#75">75</a> <a class="jxr_linenumber" name="76" href="#76">76</a> <strong class="jxr_keyword">protected</strong> List&lt;ImmutableConfigMap&gt; configs <a class="jxr_linenumber" name="77" href="#77">77</a> = <strong class="jxr_keyword">new</strong> ArrayList&lt;ImmutableConfigMap&gt;(); <a class="jxr_linenumber" name="78" href="#78">78</a> <a class="jxr_linenumber" name="79" href="#79">79</a> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">ImmutableConfWrapper</a> <strong class="jxr_keyword">implements</strong> ImmutableConfigMap { <a class="jxr_linenumber" name="80" href="#80">80</a> Configuration c; <a class="jxr_linenumber" name="81" href="#81">81</a> <a class="jxr_linenumber" name="82" href="#82">82</a> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">ImmutableConfWrapper</a>(Configuration conf) { <a class="jxr_linenumber" name="83" href="#83">83</a> c = conf; <a class="jxr_linenumber" name="84" href="#84">84</a> } <a class="jxr_linenumber" name="85" href="#85">85</a> <a class="jxr_linenumber" name="86" href="#86">86</a> @Override <a class="jxr_linenumber" name="87" href="#87">87</a> <strong class="jxr_keyword">public</strong> Iterator&lt;Map.Entry&lt;String,String&gt;&gt; iterator() { <a class="jxr_linenumber" name="88" href="#88">88</a> <strong class="jxr_keyword">return</strong> c.iterator(); <a class="jxr_linenumber" name="89" href="#89">89</a> } <a class="jxr_linenumber" name="90" href="#90">90</a> <a class="jxr_linenumber" name="91" href="#91">91</a> @Override <a class="jxr_linenumber" name="92" href="#92">92</a> <strong class="jxr_keyword">public</strong> String get(String key) { <a class="jxr_linenumber" name="93" href="#93">93</a> <strong class="jxr_keyword">return</strong> c.get(key); <a class="jxr_linenumber" name="94" href="#94">94</a> } <a class="jxr_linenumber" name="95" href="#95">95</a> <a class="jxr_linenumber" name="96" href="#96">96</a> @Override <a class="jxr_linenumber" name="97" href="#97">97</a> <strong class="jxr_keyword">public</strong> String getRaw(String key) { <a class="jxr_linenumber" name="98" href="#98">98</a> <strong class="jxr_keyword">return</strong> c.getRaw(key); <a class="jxr_linenumber" name="99" href="#99">99</a> } <a class="jxr_linenumber" name="100" href="#100">100</a> <a class="jxr_linenumber" name="101" href="#101">101</a> @Override <a class="jxr_linenumber" name="102" href="#102">102</a> <strong class="jxr_keyword">public</strong> Class&lt;?&gt; getClassByName(String name) <a class="jxr_linenumber" name="103" href="#103">103</a> <strong class="jxr_keyword">throws</strong> ClassNotFoundException { <a class="jxr_linenumber" name="104" href="#104">104</a> <strong class="jxr_keyword">return</strong> c.getClassByName(name); <a class="jxr_linenumber" name="105" href="#105">105</a> } <a class="jxr_linenumber" name="106" href="#106">106</a> <a class="jxr_linenumber" name="107" href="#107">107</a> @Override <a class="jxr_linenumber" name="108" href="#108">108</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> size() { <a class="jxr_linenumber" name="109" href="#109">109</a> <strong class="jxr_keyword">return</strong> c.size(); <a class="jxr_linenumber" name="110" href="#110">110</a> } <a class="jxr_linenumber" name="111" href="#111">111</a> <a class="jxr_linenumber" name="112" href="#112">112</a> @Override <a class="jxr_linenumber" name="113" href="#113">113</a> <strong class="jxr_keyword">public</strong> String toString() { <a class="jxr_linenumber" name="114" href="#114">114</a> <strong class="jxr_keyword">return</strong> c.toString(); <a class="jxr_linenumber" name="115" href="#115">115</a> } <a class="jxr_linenumber" name="116" href="#116">116</a> } <a class="jxr_linenumber" name="117" href="#117">117</a> <a class="jxr_linenumber" name="118" href="#118">118</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="119" href="#119">119</a> <em class="jxr_javadoccomment"> * If set has been called, it will create a mutableConf. This converts the mutableConf to an</em> <a class="jxr_linenumber" name="120" href="#120">120</a> <em class="jxr_javadoccomment"> * immutable one and resets it to allow a new mutable conf. This is used when a new map or</em> <a class="jxr_linenumber" name="121" href="#121">121</a> <em class="jxr_javadoccomment"> * conf is added to the compound configuration to preserve proper override semantics.</em> <a class="jxr_linenumber" name="122" href="#122">122</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="123" href="#123">123</a> <strong class="jxr_keyword">void</strong> freezeMutableConf() { <a class="jxr_linenumber" name="124" href="#124">124</a> <strong class="jxr_keyword">if</strong> (mutableConf == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="125" href="#125">125</a> <em class="jxr_comment">// do nothing if there is no current mutableConf</em> <a class="jxr_linenumber" name="126" href="#126">126</a> <strong class="jxr_keyword">return</strong>; <a class="jxr_linenumber" name="127" href="#127">127</a> } <a class="jxr_linenumber" name="128" href="#128">128</a> <a class="jxr_linenumber" name="129" href="#129">129</a> <strong class="jxr_keyword">this</strong>.configs.add(0, <strong class="jxr_keyword">new</strong> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">ImmutableConfWrapper</a>(mutableConf)); <a class="jxr_linenumber" name="130" href="#130">130</a> mutableConf = <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="131" href="#131">131</a> } <a class="jxr_linenumber" name="132" href="#132">132</a> <a class="jxr_linenumber" name="133" href="#133">133</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="134" href="#134">134</a> <em class="jxr_javadoccomment"> * Add Hadoop Configuration object to config list.</em> <a class="jxr_linenumber" name="135" href="#135">135</a> <em class="jxr_javadoccomment"> * The added configuration overrides the previous ones if there are name collisions.</em> <a class="jxr_linenumber" name="136" href="#136">136</a> <em class="jxr_javadoccomment"> * @param conf configuration object</em> <a class="jxr_linenumber" name="137" href="#137">137</a> <em class="jxr_javadoccomment"> * @return this, for builder pattern</em> <a class="jxr_linenumber" name="138" href="#138">138</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="139" href="#139">139</a> <strong class="jxr_keyword">public</strong> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">CompoundConfiguration</a> add(<strong class="jxr_keyword">final</strong> Configuration conf) { <a class="jxr_linenumber" name="140" href="#140">140</a> freezeMutableConf(); <a class="jxr_linenumber" name="141" href="#141">141</a> <a class="jxr_linenumber" name="142" href="#142">142</a> <strong class="jxr_keyword">if</strong> (conf instanceof CompoundConfiguration) { <a class="jxr_linenumber" name="143" href="#143">143</a> <strong class="jxr_keyword">this</strong>.configs.addAll(0, ((CompoundConfiguration) conf).configs); <a class="jxr_linenumber" name="144" href="#144">144</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>; <a class="jxr_linenumber" name="145" href="#145">145</a> } <a class="jxr_linenumber" name="146" href="#146">146</a> <em class="jxr_comment">// put new config at the front of the list (top priority)</em> <a class="jxr_linenumber" name="147" href="#147">147</a> <strong class="jxr_keyword">this</strong>.configs.add(0, <strong class="jxr_keyword">new</strong> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">ImmutableConfWrapper</a>(conf)); <a class="jxr_linenumber" name="148" href="#148">148</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>; <a class="jxr_linenumber" name="149" href="#149">149</a> } <a class="jxr_linenumber" name="150" href="#150">150</a> <a class="jxr_linenumber" name="151" href="#151">151</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="152" href="#152">152</a> <em class="jxr_javadoccomment"> * Add ImmutableBytesWritable map to config list. This map is generally</em> <a class="jxr_linenumber" name="153" href="#153">153</a> <em class="jxr_javadoccomment"> * created by HTableDescriptor or HColumnDescriptor, but can be abstractly</em> <a class="jxr_linenumber" name="154" href="#154">154</a> <em class="jxr_javadoccomment"> * used. The added configuration overrides the previous ones if there are</em> <a class="jxr_linenumber" name="155" href="#155">155</a> <em class="jxr_javadoccomment"> * name collisions.</em> <a class="jxr_linenumber" name="156" href="#156">156</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="157" href="#157">157</a> <em class="jxr_javadoccomment"> * @param map</em> <a class="jxr_linenumber" name="158" href="#158">158</a> <em class="jxr_javadoccomment"> * ImmutableBytesWritable map</em> <a class="jxr_linenumber" name="159" href="#159">159</a> <em class="jxr_javadoccomment"> * @return this, for builder pattern</em> <a class="jxr_linenumber" name="160" href="#160">160</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="161" href="#161">161</a> <strong class="jxr_keyword">public</strong> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">CompoundConfiguration</a> addWritableMap( <a class="jxr_linenumber" name="162" href="#162">162</a> <strong class="jxr_keyword">final</strong> Map&lt;ImmutableBytesWritable, ImmutableBytesWritable&gt; map) { <a class="jxr_linenumber" name="163" href="#163">163</a> freezeMutableConf(); <a class="jxr_linenumber" name="164" href="#164">164</a> <a class="jxr_linenumber" name="165" href="#165">165</a> <em class="jxr_comment">// put new map at the front of the list (top priority)</em> <a class="jxr_linenumber" name="166" href="#166">166</a> <strong class="jxr_keyword">this</strong>.configs.add(0, <strong class="jxr_keyword">new</strong> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">ImmutableConfigMap</a>() { <a class="jxr_linenumber" name="167" href="#167">167</a> Map&lt;ImmutableBytesWritable, ImmutableBytesWritable&gt; m = map; <a class="jxr_linenumber" name="168" href="#168">168</a> <a class="jxr_linenumber" name="169" href="#169">169</a> @Override <a class="jxr_linenumber" name="170" href="#170">170</a> <strong class="jxr_keyword">public</strong> Iterator&lt;Map.Entry&lt;String,String&gt;&gt; iterator() { <a class="jxr_linenumber" name="171" href="#171">171</a> Map&lt;String, String&gt; ret = <strong class="jxr_keyword">new</strong> HashMap&lt;String, String&gt;(); <a class="jxr_linenumber" name="172" href="#172">172</a> <strong class="jxr_keyword">for</strong> (Map.Entry&lt;ImmutableBytesWritable, ImmutableBytesWritable&gt; entry : map.entrySet()) { <a class="jxr_linenumber" name="173" href="#173">173</a> String key = Bytes.toString(entry.getKey().get()); <a class="jxr_linenumber" name="174" href="#174">174</a> String val = entry.getValue() == <strong class="jxr_keyword">null</strong> ? <strong class="jxr_keyword">null</strong> : Bytes.toString(entry.getValue().get()); <a class="jxr_linenumber" name="175" href="#175">175</a> ret.put(key, val); <a class="jxr_linenumber" name="176" href="#176">176</a> } <a class="jxr_linenumber" name="177" href="#177">177</a> <strong class="jxr_keyword">return</strong> ret.entrySet().iterator(); <a class="jxr_linenumber" name="178" href="#178">178</a> } <a class="jxr_linenumber" name="179" href="#179">179</a> <a class="jxr_linenumber" name="180" href="#180">180</a> @Override <a class="jxr_linenumber" name="181" href="#181">181</a> <strong class="jxr_keyword">public</strong> String get(String key) { <a class="jxr_linenumber" name="182" href="#182">182</a> <a href="../../../../org/apache/hadoop/hbase/io/ImmutableBytesWritable.html">ImmutableBytesWritable</a> ibw = <strong class="jxr_keyword">new</strong> <a href="../../../../org/apache/hadoop/hbase/io/ImmutableBytesWritable.html">ImmutableBytesWritable</a>(<a href="../../../../org/apache/hadoop/hbase/util/Bytes.html">Bytes</a> <a class="jxr_linenumber" name="183" href="#183">183</a> .toBytes(key)); <a class="jxr_linenumber" name="184" href="#184">184</a> <strong class="jxr_keyword">if</strong> (!m.containsKey(ibw)) <a class="jxr_linenumber" name="185" href="#185">185</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="186" href="#186">186</a> <a href="../../../../org/apache/hadoop/hbase/io/ImmutableBytesWritable.html">ImmutableBytesWritable</a> value = m.get(ibw); <a class="jxr_linenumber" name="187" href="#187">187</a> <strong class="jxr_keyword">if</strong> (value == <strong class="jxr_keyword">null</strong> || value.get() == <strong class="jxr_keyword">null</strong>) <a class="jxr_linenumber" name="188" href="#188">188</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="189" href="#189">189</a> <strong class="jxr_keyword">return</strong> Bytes.toString(value.get()); <a class="jxr_linenumber" name="190" href="#190">190</a> } <a class="jxr_linenumber" name="191" href="#191">191</a> <a class="jxr_linenumber" name="192" href="#192">192</a> @Override <a class="jxr_linenumber" name="193" href="#193">193</a> <strong class="jxr_keyword">public</strong> String getRaw(String key) { <a class="jxr_linenumber" name="194" href="#194">194</a> <strong class="jxr_keyword">return</strong> get(key); <a class="jxr_linenumber" name="195" href="#195">195</a> } <a class="jxr_linenumber" name="196" href="#196">196</a> <a class="jxr_linenumber" name="197" href="#197">197</a> @Override <a class="jxr_linenumber" name="198" href="#198">198</a> <strong class="jxr_keyword">public</strong> Class&lt;?&gt; getClassByName(String name) <a class="jxr_linenumber" name="199" href="#199">199</a> <strong class="jxr_keyword">throws</strong> ClassNotFoundException { <a class="jxr_linenumber" name="200" href="#200">200</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="201" href="#201">201</a> } <a class="jxr_linenumber" name="202" href="#202">202</a> <a class="jxr_linenumber" name="203" href="#203">203</a> @Override <a class="jxr_linenumber" name="204" href="#204">204</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> size() { <a class="jxr_linenumber" name="205" href="#205">205</a> <strong class="jxr_keyword">return</strong> m.size(); <a class="jxr_linenumber" name="206" href="#206">206</a> } <a class="jxr_linenumber" name="207" href="#207">207</a> <a class="jxr_linenumber" name="208" href="#208">208</a> @Override <a class="jxr_linenumber" name="209" href="#209">209</a> <strong class="jxr_keyword">public</strong> String toString() { <a class="jxr_linenumber" name="210" href="#210">210</a> <strong class="jxr_keyword">return</strong> m.toString(); <a class="jxr_linenumber" name="211" href="#211">211</a> } <a class="jxr_linenumber" name="212" href="#212">212</a> }); <a class="jxr_linenumber" name="213" href="#213">213</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>; <a class="jxr_linenumber" name="214" href="#214">214</a> } <a class="jxr_linenumber" name="215" href="#215">215</a> <a class="jxr_linenumber" name="216" href="#216">216</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="217" href="#217">217</a> <em class="jxr_javadoccomment"> * Add String map to config list. This map is generally created by HTableDescriptor</em> <a class="jxr_linenumber" name="218" href="#218">218</a> <em class="jxr_javadoccomment"> * or HColumnDescriptor, but can be abstractly used. The added configuration</em> <a class="jxr_linenumber" name="219" href="#219">219</a> <em class="jxr_javadoccomment"> * overrides the previous ones if there are name collisions.</em> <a class="jxr_linenumber" name="220" href="#220">220</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="221" href="#221">221</a> <em class="jxr_javadoccomment"> * @return this, for builder pattern</em> <a class="jxr_linenumber" name="222" href="#222">222</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="223" href="#223">223</a> <strong class="jxr_keyword">public</strong> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">CompoundConfiguration</a> addStringMap(<strong class="jxr_keyword">final</strong> Map&lt;String, String&gt; map) { <a class="jxr_linenumber" name="224" href="#224">224</a> freezeMutableConf(); <a class="jxr_linenumber" name="225" href="#225">225</a> <a class="jxr_linenumber" name="226" href="#226">226</a> <em class="jxr_comment">// put new map at the front of the list (top priority)</em> <a class="jxr_linenumber" name="227" href="#227">227</a> <strong class="jxr_keyword">this</strong>.configs.add(0, <strong class="jxr_keyword">new</strong> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">ImmutableConfigMap</a>() { <a class="jxr_linenumber" name="228" href="#228">228</a> Map&lt;String, String&gt; m = map; <a class="jxr_linenumber" name="229" href="#229">229</a> <a class="jxr_linenumber" name="230" href="#230">230</a> @Override <a class="jxr_linenumber" name="231" href="#231">231</a> <strong class="jxr_keyword">public</strong> Iterator&lt;Map.Entry&lt;String,String&gt;&gt; iterator() { <a class="jxr_linenumber" name="232" href="#232">232</a> <strong class="jxr_keyword">return</strong> map.entrySet().iterator(); <a class="jxr_linenumber" name="233" href="#233">233</a> } <a class="jxr_linenumber" name="234" href="#234">234</a> <a class="jxr_linenumber" name="235" href="#235">235</a> @Override <a class="jxr_linenumber" name="236" href="#236">236</a> <strong class="jxr_keyword">public</strong> String get(String key) { <a class="jxr_linenumber" name="237" href="#237">237</a> <strong class="jxr_keyword">return</strong> m.get(key); <a class="jxr_linenumber" name="238" href="#238">238</a> } <a class="jxr_linenumber" name="239" href="#239">239</a> <a class="jxr_linenumber" name="240" href="#240">240</a> @Override <a class="jxr_linenumber" name="241" href="#241">241</a> <strong class="jxr_keyword">public</strong> String getRaw(String key) { <a class="jxr_linenumber" name="242" href="#242">242</a> <strong class="jxr_keyword">return</strong> get(key); <a class="jxr_linenumber" name="243" href="#243">243</a> } <a class="jxr_linenumber" name="244" href="#244">244</a> <a class="jxr_linenumber" name="245" href="#245">245</a> @Override <a class="jxr_linenumber" name="246" href="#246">246</a> <strong class="jxr_keyword">public</strong> Class&lt;?&gt; getClassByName(String name) <a class="jxr_linenumber" name="247" href="#247">247</a> <strong class="jxr_keyword">throws</strong> ClassNotFoundException { <a class="jxr_linenumber" name="248" href="#248">248</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="249" href="#249">249</a> } <a class="jxr_linenumber" name="250" href="#250">250</a> <a class="jxr_linenumber" name="251" href="#251">251</a> @Override <a class="jxr_linenumber" name="252" href="#252">252</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> size() { <a class="jxr_linenumber" name="253" href="#253">253</a> <strong class="jxr_keyword">return</strong> m.size(); <a class="jxr_linenumber" name="254" href="#254">254</a> } <a class="jxr_linenumber" name="255" href="#255">255</a> <a class="jxr_linenumber" name="256" href="#256">256</a> @Override <a class="jxr_linenumber" name="257" href="#257">257</a> <strong class="jxr_keyword">public</strong> String toString() { <a class="jxr_linenumber" name="258" href="#258">258</a> <strong class="jxr_keyword">return</strong> m.toString(); <a class="jxr_linenumber" name="259" href="#259">259</a> } <a class="jxr_linenumber" name="260" href="#260">260</a> }); <a class="jxr_linenumber" name="261" href="#261">261</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>; <a class="jxr_linenumber" name="262" href="#262">262</a> } <a class="jxr_linenumber" name="263" href="#263">263</a> <a class="jxr_linenumber" name="264" href="#264">264</a> @Override <a class="jxr_linenumber" name="265" href="#265">265</a> <strong class="jxr_keyword">public</strong> String toString() { <a class="jxr_linenumber" name="266" href="#266">266</a> StringBuffer sb = <strong class="jxr_keyword">new</strong> StringBuffer(); <a class="jxr_linenumber" name="267" href="#267">267</a> sb.append(<span class="jxr_string">"CompoundConfiguration: "</span> + <strong class="jxr_keyword">this</strong>.configs.size() + <span class="jxr_string">" configs"</span>); <a class="jxr_linenumber" name="268" href="#268">268</a> <strong class="jxr_keyword">for</strong> (ImmutableConfigMap m : <strong class="jxr_keyword">this</strong>.configs) { <a class="jxr_linenumber" name="269" href="#269">269</a> sb.append(<strong class="jxr_keyword">this</strong>.configs); <a class="jxr_linenumber" name="270" href="#270">270</a> } <a class="jxr_linenumber" name="271" href="#271">271</a> <strong class="jxr_keyword">return</strong> sb.toString(); <a class="jxr_linenumber" name="272" href="#272">272</a> } <a class="jxr_linenumber" name="273" href="#273">273</a> <a class="jxr_linenumber" name="274" href="#274">274</a> @Override <a class="jxr_linenumber" name="275" href="#275">275</a> <strong class="jxr_keyword">public</strong> String get(String key) { <a class="jxr_linenumber" name="276" href="#276">276</a> <strong class="jxr_keyword">if</strong> (mutableConf != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="277" href="#277">277</a> String value = mutableConf.get(key); <a class="jxr_linenumber" name="278" href="#278">278</a> <strong class="jxr_keyword">if</strong> (value != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="279" href="#279">279</a> <strong class="jxr_keyword">return</strong> value; <a class="jxr_linenumber" name="280" href="#280">280</a> } <a class="jxr_linenumber" name="281" href="#281">281</a> } <a class="jxr_linenumber" name="282" href="#282">282</a> <a class="jxr_linenumber" name="283" href="#283">283</a> <strong class="jxr_keyword">for</strong> (ImmutableConfigMap m : <strong class="jxr_keyword">this</strong>.configs) { <a class="jxr_linenumber" name="284" href="#284">284</a> String value = m.get(key); <a class="jxr_linenumber" name="285" href="#285">285</a> <strong class="jxr_keyword">if</strong> (value != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="286" href="#286">286</a> <strong class="jxr_keyword">return</strong> value; <a class="jxr_linenumber" name="287" href="#287">287</a> } <a class="jxr_linenumber" name="288" href="#288">288</a> } <a class="jxr_linenumber" name="289" href="#289">289</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="290" href="#290">290</a> } <a class="jxr_linenumber" name="291" href="#291">291</a> <a class="jxr_linenumber" name="292" href="#292">292</a> @Override <a class="jxr_linenumber" name="293" href="#293">293</a> <strong class="jxr_keyword">public</strong> String getRaw(String key) { <a class="jxr_linenumber" name="294" href="#294">294</a> <strong class="jxr_keyword">if</strong> (mutableConf != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="295" href="#295">295</a> String value = mutableConf.getRaw(key); <a class="jxr_linenumber" name="296" href="#296">296</a> <strong class="jxr_keyword">if</strong> (value != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="297" href="#297">297</a> <strong class="jxr_keyword">return</strong> value; <a class="jxr_linenumber" name="298" href="#298">298</a> } <a class="jxr_linenumber" name="299" href="#299">299</a> } <a class="jxr_linenumber" name="300" href="#300">300</a> <a class="jxr_linenumber" name="301" href="#301">301</a> <strong class="jxr_keyword">for</strong> (ImmutableConfigMap m : <strong class="jxr_keyword">this</strong>.configs) { <a class="jxr_linenumber" name="302" href="#302">302</a> String value = m.getRaw(key); <a class="jxr_linenumber" name="303" href="#303">303</a> <strong class="jxr_keyword">if</strong> (value != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="304" href="#304">304</a> <strong class="jxr_keyword">return</strong> value; <a class="jxr_linenumber" name="305" href="#305">305</a> } <a class="jxr_linenumber" name="306" href="#306">306</a> } <a class="jxr_linenumber" name="307" href="#307">307</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>; <a class="jxr_linenumber" name="308" href="#308">308</a> } <a class="jxr_linenumber" name="309" href="#309">309</a> <a class="jxr_linenumber" name="310" href="#310">310</a> @Override <a class="jxr_linenumber" name="311" href="#311">311</a> <strong class="jxr_keyword">public</strong> Class&lt;?&gt; getClassByName(String name) <strong class="jxr_keyword">throws</strong> ClassNotFoundException { <a class="jxr_linenumber" name="312" href="#312">312</a> <strong class="jxr_keyword">if</strong> (mutableConf != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="313" href="#313">313</a> Class&lt;?&gt; value = mutableConf.getClassByName(name); <a class="jxr_linenumber" name="314" href="#314">314</a> <strong class="jxr_keyword">if</strong> (value != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="315" href="#315">315</a> <strong class="jxr_keyword">return</strong> value; <a class="jxr_linenumber" name="316" href="#316">316</a> } <a class="jxr_linenumber" name="317" href="#317">317</a> } <a class="jxr_linenumber" name="318" href="#318">318</a> <a class="jxr_linenumber" name="319" href="#319">319</a> <strong class="jxr_keyword">for</strong> (ImmutableConfigMap m : <strong class="jxr_keyword">this</strong>.configs) { <a class="jxr_linenumber" name="320" href="#320">320</a> Class&lt;?&gt; value = m.getClassByName(name); <a class="jxr_linenumber" name="321" href="#321">321</a> <strong class="jxr_keyword">if</strong> (value != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="322" href="#322">322</a> <strong class="jxr_keyword">return</strong> value; <a class="jxr_linenumber" name="323" href="#323">323</a> } <a class="jxr_linenumber" name="324" href="#324">324</a> } <a class="jxr_linenumber" name="325" href="#325">325</a> <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> ClassNotFoundException(); <a class="jxr_linenumber" name="326" href="#326">326</a> } <a class="jxr_linenumber" name="327" href="#327">327</a> <a class="jxr_linenumber" name="328" href="#328">328</a> <em class="jxr_comment">// TODO: This method overestimates the number of configuration settings -- if a value is masked</em> <a class="jxr_linenumber" name="329" href="#329">329</a> <em class="jxr_comment">// by an overriding config or map, it will be counted multiple times. </em> <a class="jxr_linenumber" name="330" href="#330">330</a> @Override <a class="jxr_linenumber" name="331" href="#331">331</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> size() { <a class="jxr_linenumber" name="332" href="#332">332</a> <strong class="jxr_keyword">int</strong> ret = 0; <a class="jxr_linenumber" name="333" href="#333">333</a> <a class="jxr_linenumber" name="334" href="#334">334</a> <strong class="jxr_keyword">if</strong> (mutableConf != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="335" href="#335">335</a> ret += mutableConf.size(); <a class="jxr_linenumber" name="336" href="#336">336</a> } <a class="jxr_linenumber" name="337" href="#337">337</a> <a class="jxr_linenumber" name="338" href="#338">338</a> <strong class="jxr_keyword">for</strong> (ImmutableConfigMap m : <strong class="jxr_keyword">this</strong>.configs) { <a class="jxr_linenumber" name="339" href="#339">339</a> ret += m.size(); <a class="jxr_linenumber" name="340" href="#340">340</a> } <a class="jxr_linenumber" name="341" href="#341">341</a> <strong class="jxr_keyword">return</strong> ret; <a class="jxr_linenumber" name="342" href="#342">342</a> } <a class="jxr_linenumber" name="343" href="#343">343</a> <a class="jxr_linenumber" name="344" href="#344">344</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="345" href="#345">345</a> <em class="jxr_javadoccomment"> * Get the value of the &lt;code&gt;name&lt;/code&gt;. If the key is deprecated,</em> <a class="jxr_linenumber" name="346" href="#346">346</a> <em class="jxr_javadoccomment"> * it returns the value of the first key which replaces the deprecated key</em> <a class="jxr_linenumber" name="347" href="#347">347</a> <em class="jxr_javadoccomment"> * and is not null.</em> <a class="jxr_linenumber" name="348" href="#348">348</a> <em class="jxr_javadoccomment"> * If no such property exists,</em> <a class="jxr_linenumber" name="349" href="#349">349</a> <em class="jxr_javadoccomment"> * then &lt;code&gt;defaultValue&lt;/code&gt; is returned.</em> <a class="jxr_linenumber" name="350" href="#350">350</a> <a class="jxr_linenumber" name="351" href="#351">351</a> <em class="jxr_javadoccomment"> * The CompooundConfiguration does not do property substitution. To do so we need</em> <a class="jxr_linenumber" name="352" href="#352">352</a> <em class="jxr_javadoccomment"> * Configuration.getProps to be protected or package visible. Though in hadoop2 it is</em> <a class="jxr_linenumber" name="353" href="#353">353</a> <em class="jxr_javadoccomment"> * protected, in hadoop1 the method is private and not accessible.</em> <a class="jxr_linenumber" name="354" href="#354">354</a> <em class="jxr_javadoccomment"> * </em> <a class="jxr_linenumber" name="355" href="#355">355</a> <em class="jxr_javadoccomment"> * All of the get* methods call this overridden get method.</em> <a class="jxr_linenumber" name="356" href="#356">356</a> <em class="jxr_javadoccomment"> * </em> <a class="jxr_linenumber" name="357" href="#357">357</a> <em class="jxr_javadoccomment"> * @param name property name.</em> <a class="jxr_linenumber" name="358" href="#358">358</a> <em class="jxr_javadoccomment"> * @param defaultValue default value.</em> <a class="jxr_linenumber" name="359" href="#359">359</a> <em class="jxr_javadoccomment"> * @return property value, or &lt;code&gt;defaultValue&lt;/code&gt; if the property </em> <a class="jxr_linenumber" name="360" href="#360">360</a> <em class="jxr_javadoccomment"> * doesn't exist. </em> <a class="jxr_linenumber" name="361" href="#361">361</a> <em class="jxr_javadoccomment"> **/</em> <a class="jxr_linenumber" name="362" href="#362">362</a> @Override <a class="jxr_linenumber" name="363" href="#363">363</a> <strong class="jxr_keyword">public</strong> String get(String name, String defaultValue) { <a class="jxr_linenumber" name="364" href="#364">364</a> String ret = get(name); <a class="jxr_linenumber" name="365" href="#365">365</a> <strong class="jxr_keyword">return</strong> ret == <strong class="jxr_keyword">null</strong> ? defaultValue : ret; <a class="jxr_linenumber" name="366" href="#366">366</a> } <a class="jxr_linenumber" name="367" href="#367">367</a> <a class="jxr_linenumber" name="368" href="#368">368</a> @Override <a class="jxr_linenumber" name="369" href="#369">369</a> <strong class="jxr_keyword">public</strong> Iterator&lt;Map.Entry&lt;String, String&gt;&gt; iterator() { <a class="jxr_linenumber" name="370" href="#370">370</a> Map&lt;String, String&gt; ret = <strong class="jxr_keyword">new</strong> HashMap&lt;String, String&gt;(); <a class="jxr_linenumber" name="371" href="#371">371</a> <a class="jxr_linenumber" name="372" href="#372">372</a> <em class="jxr_comment">// add in reverse order so that oldest get overridden.</em> <a class="jxr_linenumber" name="373" href="#373">373</a> <strong class="jxr_keyword">if</strong> (!configs.isEmpty()) { <a class="jxr_linenumber" name="374" href="#374">374</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = configs.size() - 1; i &gt;= 0; i--) { <a class="jxr_linenumber" name="375" href="#375">375</a> <a href="../../../../org/apache/hadoop/hbase/CompoundConfiguration.html">ImmutableConfigMap</a> map = configs.get(i); <a class="jxr_linenumber" name="376" href="#376">376</a> Iterator&lt;Map.Entry&lt;String, String&gt;&gt; iter = map.iterator(); <a class="jxr_linenumber" name="377" href="#377">377</a> <strong class="jxr_keyword">while</strong> (iter.hasNext()) { <a class="jxr_linenumber" name="378" href="#378">378</a> Map.Entry&lt;String, String&gt; entry = iter.next(); <a class="jxr_linenumber" name="379" href="#379">379</a> ret.put(entry.getKey(), entry.getValue()); <a class="jxr_linenumber" name="380" href="#380">380</a> } <a class="jxr_linenumber" name="381" href="#381">381</a> } <a class="jxr_linenumber" name="382" href="#382">382</a> } <a class="jxr_linenumber" name="383" href="#383">383</a> <a class="jxr_linenumber" name="384" href="#384">384</a> <em class="jxr_comment">// add mutations to this CompoundConfiguration last.</em> <a class="jxr_linenumber" name="385" href="#385">385</a> <strong class="jxr_keyword">if</strong> (mutableConf != <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="386" href="#386">386</a> Iterator&lt;Map.Entry&lt;String, String&gt;&gt; miter = mutableConf.iterator(); <a class="jxr_linenumber" name="387" href="#387">387</a> <strong class="jxr_keyword">while</strong> (miter.hasNext()) { <a class="jxr_linenumber" name="388" href="#388">388</a> Map.Entry&lt;String, String&gt; entry = miter.next(); <a class="jxr_linenumber" name="389" href="#389">389</a> ret.put(entry.getKey(), entry.getValue()); <a class="jxr_linenumber" name="390" href="#390">390</a> } <a class="jxr_linenumber" name="391" href="#391">391</a> } <a class="jxr_linenumber" name="392" href="#392">392</a> <a class="jxr_linenumber" name="393" href="#393">393</a> <strong class="jxr_keyword">return</strong> UnmodifiableIterator.decorate(ret.entrySet().iterator()); <a class="jxr_linenumber" name="394" href="#394">394</a> } <a class="jxr_linenumber" name="395" href="#395">395</a> <a class="jxr_linenumber" name="396" href="#396">396</a> @Override <a class="jxr_linenumber" name="397" href="#397">397</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> set(String name, String value) { <a class="jxr_linenumber" name="398" href="#398">398</a> <strong class="jxr_keyword">if</strong> (mutableConf == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="399" href="#399">399</a> <em class="jxr_comment">// not thread safe</em> <a class="jxr_linenumber" name="400" href="#400">400</a> mutableConf = <strong class="jxr_keyword">new</strong> Configuration(false); <em class="jxr_comment">// an empty configuration</em> <a class="jxr_linenumber" name="401" href="#401">401</a> } <a class="jxr_linenumber" name="402" href="#402">402</a> mutableConf.set(name, value); <a class="jxr_linenumber" name="403" href="#403">403</a> } <a class="jxr_linenumber" name="404" href="#404">404</a> <a class="jxr_linenumber" name="405" href="#405">405</a> <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment">*********************************************************************************************</em> <a class="jxr_linenumber" name="406" href="#406">406</a> <em class="jxr_javadoccomment"> * These methods are unsupported, and no code using CompoundConfiguration depend upon them.</em> <a class="jxr_linenumber" name="407" href="#407">407</a> <em class="jxr_javadoccomment"> * Quickly abort upon any attempts to use them. </em> <a class="jxr_linenumber" name="408" href="#408">408</a> <em class="jxr_javadoccomment"> **********************************************************************************************/</em> <a class="jxr_linenumber" name="409" href="#409">409</a> <a class="jxr_linenumber" name="410" href="#410">410</a> @Override <a class="jxr_linenumber" name="411" href="#411">411</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> clear() { <a class="jxr_linenumber" name="412" href="#412">412</a> <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> UnsupportedOperationException(<span class="jxr_string">"Immutable Configuration"</span>); <a class="jxr_linenumber" name="413" href="#413">413</a> } <a class="jxr_linenumber" name="414" href="#414">414</a> <a class="jxr_linenumber" name="415" href="#415">415</a> @Override <a class="jxr_linenumber" name="416" href="#416">416</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> write(DataOutput out) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="417" href="#417">417</a> <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> UnsupportedOperationException(<span class="jxr_string">"Immutable Configuration"</span>); <a class="jxr_linenumber" name="418" href="#418">418</a> } <a class="jxr_linenumber" name="419" href="#419">419</a> <a class="jxr_linenumber" name="420" href="#420">420</a> @Override <a class="jxr_linenumber" name="421" href="#421">421</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> writeXml(OutputStream out) <strong class="jxr_keyword">throws</strong> IOException { <a class="jxr_linenumber" name="422" href="#422">422</a> <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> UnsupportedOperationException(<span class="jxr_string">"Immutable Configuration"</span>); <a class="jxr_linenumber" name="423" href="#423">423</a> } <a class="jxr_linenumber" name="424" href="#424">424</a> }; </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
scalingdata/Impala
thirdparty/hbase-1.1.1.2.3.0.0-2557/docs/xref/org/apache/hadoop/hbase/CompoundConfiguration.html
HTML
apache-2.0
50,198
<!DOCTYPE html> <!-- ~ Copyright 2017 PayPal ~ ~ 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>Publish Subscribe</title> </head> <body> <h2>Category Information</h2> <form id="myform" name="myform" action="/pubsub/adm/info" onsubmit="return false;"> <table> <tr> <td>Category Id:</td> <td><input type="text" name="category" id="catid" value="mycategory"/></td> </tr> </table> <p> <input id="submit" type="submit"> </p> </form> <div id="request"></div> <div id="response"></div> <script type="text/javascript"> var submit = document.querySelector("#submit"); submit.addEventListener('click', sendForm, false); function sendForm(evt) { var xhr = new XMLHttpRequest(); var getURL = getFormAction("myform") + '/' + getFormValue("catid") document.getElementById("request").innerHTML = "<hr/><h4>Request:</h4>GET " + getURL; xhr.onreadystatechange = function() { if (xhr.readyState == 4) { document.getElementById("response").innerHTML = "<hr/><h4>Response:</h4>" + xhr.responseText + "<hr/>"; } } xhr.open('GET', getURL, true); xhr.send(); return false; //Prevent the form to post and refresh the browser } function getFormAction(elId) { return document.getElementById(elId).action; } function getFormValue(elId) { return document.getElementById(elId).value; } </script> </body> </html>
SarathChandran/squbs
samples/pubsub/pubsubsvc/src/main/resources/html/category_info.html
HTML
apache-2.0
2,067
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Ionic makes it incredibly easy to build beautiful and interactive mobile apps using HTML5 and AngularJS."> <meta name="keywords" content="html5,javascript,mobile,drifty,ionic,hybrid,phonegap,cordova,native,ios,android,angularjs"> <meta name="author" content="Drifty"> <meta property="og:image" content="http://ionicframework.com/img/ionic-logo-blog.png"/> <title>ion-header-bar - Directive in module ionic - Ionic Framework</title> <link href="/css/site.css?12" rel="stylesheet"> <!--<script src="//cdn.optimizely.com/js/595530035.js"></script>--> <script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script> <script> (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-44023830-1', 'ionicframework.com'); ga('send', 'pageview'); </script> <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> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> </head> <body class="docs docs-page docs-api"> <nav class="navbar navbar-default horizontal-gradient" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle button ionic" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <i class="icon ion-navicon"></i> </button> <a class="navbar-brand" href="/"> <img src="/img/ionic-logo-white.svg" width="123" height="43" alt="Ionic Framework"> </a> <a href="http://blog.ionic.io/announcing-ionic-1-0/" target="_blank"> <img src="/img/ionic1-tag.png" alt="Ionic 1.0 is out!" width="28" height="32" style="margin-left: 140px; margin-top:22px; display:block"> </a> </div> <div class="collapse navbar-collapse navbar-ex1-collapse"> <ul class="nav navbar-nav navbar-right"> <li><a class="getting-started-nav nav-link" href="/getting-started/">Getting Started</a></li> <li><a class="docs-nav nav-link" href="/docs/">Docs</a></li> <li><a class="getting-started-nav nav-link" href="http://ionic.io/support">Support</a></li> <li><a class="blog-nav nav-link" href="http://blog.ionic.io/">Blog <span id="blog-badge">1</span></a></li> <li><a class="nav-link" href="http://forum.ionicframework.com/">Forum</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">More <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> <div class="arrow-up"></div> <li><a class="products-nav nav-link" href="http://ionic.io/">Ionic.io</a></li> <li><a class="examples-nav nav-link" href="http://showcase.ionicframework.com/">Showcase</a></li> <li><a class="nav-link" href="http://jobs.ionic.io/">Job Board</a></li> <li><a class="nav-link" href="http://market.ionic.io/">Market</a></li> <li><a class="nav-link" href="http://ionicworldwide.herokuapp.com/">Ionic Worldwide</a></li> <li><a class="nav-link" href="http://play.ionic.io/">Playground</a></li> <li><a class="nav-link" href="http://creator.ionic.io/">Creator</a></li> <li><a class="nav-link" href="http://shop.ionic.io/">Shop</a></li> <!--<li><a class="nav-link" href="http://ngcordova.com/">ngCordova</a></li>--> </ul> </li> </ul> </div> </div> </nav> <div class="header horizontal-gradient"> <div class="container"> <h3>ion-header-bar</h3> <h4>Directive in module ionic</h4> </div> <div class="news"> <div class="container"> <div class="row"> <div class="col-sm-8 news-col"> <div class="picker"> <select onchange="window.location.href=this.options[this.selectedIndex].value"> <option value="/docs/nightly/api/directive/ionHeaderBar/" > nightly </option> <option value="/docs/api/directive/ionHeaderBar/" selected> 1.0.1 (latest) </option> <option value="/docs/1.0.0/api/directive/ionHeaderBar/" > 1.0.0 </option> <option value="/docs/1.0.0-rc.5/api/directive/ionHeaderBar/" > 1.0.0-rc.5 </option> <option value="/docs/1.0.0-rc.4/api/directive/ionHeaderBar/" > 1.0.0-rc.4 </option> <option value="/docs/1.0.0-rc.3/api/directive/ionHeaderBar/" > 1.0.0-rc.3 </option> <option value="/docs/1.0.0-rc.2/api/directive/ionHeaderBar/" > 1.0.0-rc.2 </option> <option value="/docs/1.0.0-rc.1/api/directive/ionHeaderBar/" > 1.0.0-rc.1 </option> <option value="/docs/1.0.0-rc.0/api/directive/ionHeaderBar/" > 1.0.0-rc.0 </option> <option value="/docs/1.0.0-beta.14/api/directive/ionHeaderBar/" > 1.0.0-beta.14 </option> <option value="/docs/1.0.0-beta.13/api/directive/ionHeaderBar/" > 1.0.0-beta.13 </option> <option value="/docs/1.0.0-beta.12/api/directive/ionHeaderBar/" > 1.0.0-beta.12 </option> <option value="/docs/1.0.0-beta.11/api/directive/ionHeaderBar/" > 1.0.0-beta.11 </option> <option value="/docs/1.0.0-beta.10/api/directive/ionHeaderBar/" > 1.0.0-beta.10 </option> </select> </div> </div> <div class="col-sm-4 search-col"> <div class="search-bar"> <span class="search-icon ionic"><i class="ion-ios7-search-strong"></i></span> <input type="search" id="search-input" value="Search"> </div> </div> </div> </div> </div> </div> <div id="search-results" class="search-results" style="display:none"> <div class="container"> <div class="search-section search-api"> <h4>JavaScript</h4> <ul id="results-api"></ul> </div> <div class="search-section search-css"> <h4>CSS</h4> <ul id="results-css"></ul> </div> <div class="search-section search-content"> <h4>Resources</h4> <ul id="results-content"></ul> </div> </div> </div> <div class="container content-container"> <div class="row"> <div class="col-md-2 col-sm-3 aside-menu"> <div> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/overview/">Overview</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/components/">CSS</a> </li> </ul> <!-- Docs: JavaScript --> <ul class="nav left-menu active-menu"> <li class="menu-title"> <a href="/docs/api/"> JavaScript </a> </li> <!-- Action Sheet --> <li class="menu-section"> <a href="/docs/api/service/$ionicActionSheet/" class="api-section"> Action Sheet </a> <ul> <li> <a href="/docs/api/service/$ionicActionSheet/"> $ionicActionSheet </a> </li> </ul> </li> <!-- Backdrop --> <li class="menu-section"> <a href="/docs/api/service/$ionicBackdrop/" class="api-section"> Backdrop </a> <ul> <li> <a href="/docs/api/service/$ionicBackdrop/"> $ionicBackdrop </a> </li> </ul> </li> <!-- Content --> <li class="menu-section"> <a href="/docs/api/directive/ionContent/" class="api-section"> Content </a> <ul> <li> <a href="/docs/api/directive/ionContent/"> ion-content </a> </li> <li> <a href="/docs/api/directive/ionRefresher/"> ion-refresher </a> </li> <li> <a href="/docs/api/directive/ionPane/"> ion-pane </a> </li> </ul> </li> <!-- Form Inputs --> <li class="menu-section"> <a href="/docs/api/directive/ionCheckbox/" class="api-section"> Form Inputs </a> <ul> <li> <a href="/docs/api/directive/ionCheckbox/"> ion-checkbox </a> </li> <li> <a href="/docs/api/directive/ionRadio/"> ion-radio </a> </li> <li> <a href="/docs/api/directive/ionToggle/"> ion-toggle </a> </li> </ul> </li> <!-- Gesture and Events --> <li class="menu-section"> <a href="/docs/api/directive/onHold/" class="api-section"> Gestures and Events </a> <ul> <li> <a href="/docs/api/directive/onHold/"> on-hold </a> </li> <li> <a href="/docs/api/directive/onTap/"> on-tap </a> </li> <li> <a href="/docs/api/directive/onDoubleTap/"> on-double-tap </a> </li> <li> <a href="/docs/api/directive/onTouch/"> on-touch </a> </li> <li> <a href="/docs/api/directive/onRelease/"> on-release </a> </li> <li> <a href="/docs/api/directive/onDrag/"> on-drag </a> </li> <li> <a href="/docs/api/directive/onDragUp/"> on-drag-up </a> </li> <li> <a href="/docs/api/directive/onDragRight/"> on-drag-right </a> </li> <li> <a href="/docs/api/directive/onDragDown/"> on-drag-down </a> </li> <li> <a href="/docs/api/directive/onDragLeft/"> on-drag-left </a> </li> <li> <a href="/docs/api/directive/onSwipe/"> on-swipe </a> </li> <li> <a href="/docs/api/directive/onSwipeUp/"> on-swipe-up </a> </li> <li> <a href="/docs/api/directive/onSwipeRight/"> on-swipe-right </a> </li> <li> <a href="/docs/api/directive/onSwipeDown/"> on-swipe-down </a> </li> <li> <a href="/docs/api/directive/onSwipeLeft/"> on-swipe-left </a> </li> <li> <a href="/docs/api/service/$ionicGesture/"> $ionicGesture </a> </li> </ul> </li> <!-- Headers/Footers --> <li class="menu-section"> <a href="/docs/api/directive/ionHeaderBar/" class="api-section"> Headers/Footers </a> <ul> <li> <a href="/docs/api/directive/ionHeaderBar/"> ion-header-bar </a> </li> <li> <a href="/docs/api/directive/ionFooterBar/"> ion-footer-bar </a> </li> </ul> </li> <!-- Keyboard --> <li class="menu-section"> <a href="/docs/api/page/keyboard/" class="api-section"> Keyboard </a> <ul> <li> <a href="/docs/api/page/keyboard/"> Keyboard </a> </li> <li> <a href="/docs/api/directive/keyboardAttach/"> keyboard-attach </a> </li> </ul> </li> <!-- Lists --> <li class="menu-section"> <a href="/docs/api/directive/ionList/" class="api-section"> Lists </a> <ul> <li> <a href="/docs/api/directive/ionList/"> ion-list </a> </li> <li> <a href="/docs/api/directive/ionItem/"> ion-item </a> </li> <li> <a href="/docs/api/directive/ionDeleteButton/"> ion-delete-button </a> </li> <li> <a href="/docs/api/directive/ionReorderButton/"> ion-reorder-button </a> </li> <li> <a href="/docs/api/directive/ionOptionButton/"> ion-option-button </a> </li> <li> <a href="/docs/api/directive/collectionRepeat/"> collection-repeat </a> </li> <li> <a href="/docs/api/service/$ionicListDelegate/"> $ionicListDelegate </a> </li> </ul> </li> <!-- Loading --> <li class="menu-section"> <a href="/docs/api/service/$ionicLoading/" class="api-section"> Loading </a> <ul> <li> <a href="/docs/api/service/$ionicLoading/"> $ionicLoading </a> </li> </ul> <ul> <li> <a href="/docs/api/object/$ionicLoadingConfig/"> $ionicLoadingConfig </a> </li> </ul> </li> <!-- Modal --> <li class="menu-section"> <a href="/docs/api/service/$ionicModal/" class="api-section"> Modal </a> <ul> <li> <a href="/docs/api/service/$ionicModal/"> $ionicModal </a> </li> <li> <a href="/docs/api/controller/ionicModal/"> ionicModal </a> </li> </ul> </li> <!-- Navigation --> <li class="menu-section"> <a href="/docs/api/directive/ionNavView/" class="api-section"> Navigation </a> <ul> <li> <a href="/docs/api/directive/ionNavView/"> ion-nav-view </a> </li> <li> <a href="/docs/api/directive/ionView/"> ion-view </a> </li> <li> <a href="/docs/api/directive/ionNavBar/"> ion-nav-bar </a> </li> <li> <a href="/docs/api/directive/ionNavBackButton/"> ion-nav-back-button </a> </li> <li> <a href="/docs/api/directive/ionNavButtons/"> ion-nav-buttons </a> </li> <li> <a href="/docs/api/directive/ionNavTitle/"> ion-nav-title </a> </li> <li> <a href="/docs/api/directive/navTransition/"> nav-transition </a> </li> <li> <a href="/docs/api/directive/navDirection/"> nav-direction </a> </li> <li> <a href="/docs/api/service/$ionicNavBarDelegate/"> $ionicNavBarDelegate </a> </li> <li> <a href="/docs/api/service/$ionicHistory/"> $ionicHistory </a> </li> </ul> </li> <!-- Platform --> <li class="menu-section"> <a href="/docs/api/service/$ionicPlatform/" class="api-section"> Platform </a> <ul> <li> <a href="/docs/api/service/$ionicPlatform/"> $ionicPlatform </a> </li> </ul> </li> <!-- Popover --> <li class="menu-section"> <a href="/docs/api/service/$ionicPopover/" class="api-section"> Popover </a> <ul> <li> <a href="/docs/api/service/$ionicPopover/"> $ionicPopover </a> </li> <li> <a href="/docs/api/controller/ionicPopover/"> ionicPopover </a> </li> </ul> </li> <!-- Popup --> <li class="menu-section"> <a href="/docs/api/service/$ionicPopup/" class="api-section"> Popup </a> <ul> <li> <a href="/docs/api/service/$ionicPopup/"> $ionicPopup </a> </li> </ul> </li> <!-- Scroll --> <li class="menu-section"> <a href="/docs/api/directive/ionScroll/" class="api-section"> Scroll </a> <ul> <li> <a href="/docs/api/directive/ionScroll/"> ion-scroll </a> </li> <li> <a href="/docs/api/directive/ionInfiniteScroll/"> ion-infinite-scroll </a> </li> <li> <a href="/docs/api/service/$ionicScrollDelegate/"> $ionicScrollDelegate </a> </li> </ul> </li> <!-- Side Menus --> <li class="menu-section"> <a href="/docs/api/directive/ionSideMenus/" class="api-section"> Side Menus </a> <ul> <li> <a href="/docs/api/directive/ionSideMenus/"> ion-side-menus </a> </li> <li> <a href="/docs/api/directive/ionSideMenuContent/"> ion-side-menu-content </a> </li> <li> <a href="/docs/api/directive/ionSideMenu/"> ion-side-menu </a> </li> <li> <a href="/docs/api/directive/exposeAsideWhen/"> expose-aside-when </a> </li> <li> <a href="/docs/api/directive/menuToggle/"> menu-toggle </a> </li> <li> <a href="/docs/api/directive/menuClose/"> menu-close </a> </li> <li> <a href="/docs/api/service/$ionicSideMenuDelegate/"> $ionicSideMenuDelegate </a> </li> </ul> </li> <!-- Slide Box --> <li class="menu-section"> <a href="/docs/api/directive/ionSlideBox/" class="api-section"> Slide Box </a> <ul> <li> <a href="/docs/api/directive/ionSlideBox/"> ion-slide-box </a> </li> <li> <a href="/docs/api/directive/ionSlidePager/"> ion-slide-pager </a> </li> <li> <a href="/docs/api/directive/ionSlide/"> ion-slide </a> </li> <li> <a href="/docs/api/service/$ionicSlideBoxDelegate/"> $ionicSlideBoxDelegate </a> </li> </ul> </li> <!-- Spinner --> <li class="menu-section"> <a href="/docs/api/directive/ionSpinner/" class="api-section"> Spinner </a> <ul> <li> <a href="/docs/api/directive/ionSpinner/"> ion-spinner </a> </li> </ul> </li> <!-- Tabs --> <li class="menu-section"> <a href="/docs/api/directive/ionTabs/" class="api-section"> Tabs </a> <ul> <li> <a href="/docs/api/directive/ionTabs/"> ion-tabs </a> </li> <li> <a href="/docs/api/directive/ionTab/"> ion-tab </a> </li> <li> <a href="/docs/api/service/$ionicTabsDelegate/"> $ionicTabsDelegate </a> </li> </ul> </li> <!-- Tap --> <li class="menu-section"> <a href="/docs/api/page/tap/" class="api-section"> Tap &amp; Click </a> </li> <!-- Utility --> <li class="menu-section"> <a href="#" class="api-section"> Utility </a> <ul> <li> <a href="/docs/api/provider/$ionicConfigProvider/"> $ionicConfigProvider </a> </li> <li> <a href="/docs/api/utility/ionic.Platform/"> ionic.Platform </a> </li> <li> <a href="/docs/api/utility/ionic.DomUtil/"> ionic.DomUtil </a> </li> <li> <a href="/docs/api/utility/ionic.EventController/"> ionic.EventController </a> </li> <li> <a href="/docs/api/service/$ionicPosition/"> $ionicPosition </a> </li> </ul> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/cli/">CLI</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="http://learn.ionicframework.com/">Learn Ionic</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/guide/">Guide</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/ionic-cli-faq/">FAQ</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/getting-help/">Getting Help</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/concepts/">Ionic Concepts</a> </li> </ul> </div> </div> <div class="col-md-10 col-sm-9 main-content"> <div class="improve-docs"> <a href='http://github.com/driftyco/ionic/tree/master/js/angular/directive/headerFooterBar.js#L5'> View Source </a> &nbsp; <a href='http://github.com/driftyco/ionic/edit/master/js/angular/directive/headerFooterBar.js#L5'> Improve this doc </a> </div> <h1 class="api-title"> ion-header-bar </h1> <p>Adds a fixed header bar above some content.</p> <p>Can also be a subheader (lower down) if the &#39;bar-subheader&#39; class is applied. See <a href="/docs/components/#subheader">the header CSS docs</a>.</p> <h2 id="usage">Usage</h2> <div class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt">&lt;ion-header-bar</span> <span class="na">align-title=</span><span class="s">&quot;left&quot;</span> <span class="na">class=</span><span class="s">&quot;bar-positive&quot;</span><span class="nt">&gt;</span> <span class="nt">&lt;div</span> <span class="na">class=</span><span class="s">&quot;buttons&quot;</span><span class="nt">&gt;</span> <span class="nt">&lt;button</span> <span class="na">class=</span><span class="s">&quot;button&quot;</span> <span class="na">ng-click=</span><span class="s">&quot;doSomething()&quot;</span><span class="nt">&gt;</span>Left Button<span class="nt">&lt;/button&gt;</span> <span class="nt">&lt;/div&gt;</span> <span class="nt">&lt;h1</span> <span class="na">class=</span><span class="s">&quot;title&quot;</span><span class="nt">&gt;</span>Title!<span class="nt">&lt;/h1&gt;</span> <span class="nt">&lt;div</span> <span class="na">class=</span><span class="s">&quot;buttons&quot;</span><span class="nt">&gt;</span> <span class="nt">&lt;button</span> <span class="na">class=</span><span class="s">&quot;button&quot;</span><span class="nt">&gt;</span>Right Button<span class="nt">&lt;/button&gt;</span> <span class="nt">&lt;/div&gt;</span> <span class="nt">&lt;/ion-header-bar&gt;</span> <span class="nt">&lt;ion-content&gt;</span> Some content! <span class="nt">&lt;/ion-content&gt;</span> </code></pre></div> <h2 id="api" style="clear:both;">API</h2> <table class="table" style="margin:0;"> <thead> <tr> <th>Attr</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> align-title <div><em>(optional)</em></div> </td> <td> <code>string</code> </td> <td> <p>How to align the title. By default the title will be aligned the same as how the platform aligns its titles (iOS centers titles, Android aligns them left). Available: &#39;left&#39;, &#39;right&#39;, or &#39;center&#39;. Defaults to the same as the platform.</p> </td> </tr> <tr> <td> no-tap-scroll <div><em>(optional)</em></div> </td> <td> <code>boolean</code> </td> <td> <p>By default, the header bar will scroll the content to the top when tapped. Set no-tap-scroll to true to disable this behavior. Available: true or false. Defaults to false.</p> </td> </tr> </tbody> </table> </div> </div> </div> <div class="pre-footer"> <div class="row ionic"> <div class="col-sm-6 col-a"> <h4> <a href="/getting-started/">Getting started <span class="icon ion-arrow-right-c"></span></a> </h4> <p> Learn more about how Ionic was built, why you should use it, and what's included. We'll cover the basics and help you get started from the ground up. </p> </div> <div class="col-sm-6 col-b"> <h4> <a href="/docs/">Documentation <span class="icon ion-arrow-right-c"></span></a> </h4> <p> What are you waiting for? Take a look and get coding! Our documentation covers all you need to know to get an app up and running in minutes. </p> </div> </div> </div> <footer class="footer"> <nav class="base-links"> <dl> <dt>Docs</dt> <dd><a href="http://ionicframework.com/docs/">Documentation</a></dd> <dd><a href="http://ionicframework.com/getting-started/">Getting Started</a></dd> <dd><a href="http://ionicframework.com/docs/overview/">Overview</a></dd> <dd><a href="http://ionicframework.com/docs/components/">Components</a></dd> <dd><a href="http://ionicframework.com/docs/api/">JavaScript</a></dd> <dd><a href="http://ionicframework.com/submit-issue/">Submit Issue</a></dd> </dl> <dl> <dt>Resources</dt> <dd><a href="http://learn.ionicframework.com/">Learn Ionic</a></dd> <dd><a href="http://ngcordova.com/">ngCordova</a></dd> <dd><a href="http://ionicons.com/">Ionicons</a></dd> <dd><a href="http://creator.ionic.io/">Creator</a></dd> <dd><a href="http://showcase.ionicframework.com/">Showcase</a></dd> <dd><a href="http://manning.com/wilken/?a_aid=ionicinactionben&a_bid=1f0a0e1d">The Ionic Book</a></dd> </dl> <dl> <dt>Contribute</dt> <dd><a href="http://forum.ionicframework.com/">Community Forum</a></dd> <dd><a href="http://webchat.freenode.net/?randomnick=1&amp;channels=%23ionic&amp;uio=d4">Ionic IRC</a></dd> <dd><a href="http://ionicframework.com/present-ionic/">Present Ionic</a></dd> <dd><a href="http://ionicframework.com/contribute/">Contribute</a></dd> <dd><a href="https://github.com/driftyco/ionic-learn/issues/new">Write for us</a></dd> <dd><a href="http://shop.ionic.io/">Ionic Shop</a></dd> </dl> <dl class="small-break"> <dt>About</dt> <dd><a href="http://blog.ionic.io/">Blog</a></dd> <dd><a href="http://ionic.io">Services</a></dd> <dd><a href="http://drifty.com">Company</a></dd> <dd><a href="https://s3.amazonaws.com/ionicframework.com/logo-pack.zip">Logo Pack</a></dd> <dd><a href="mailto:[email protected]">Contact</a></dd> <dd><a href="http://ionicframework.com/jobs/">Jobs</a></dd> </dl> <dl> <dt>Connect</dt> <dd><a href="https://twitter.com/IonicFramework">Twitter</a></dd> <dd><a href="https://github.com/driftyco/ionic">GitHub</a></dd> <dd><a href="https://www.facebook.com/ionicframework">Facebook</a></dd> <dd><a href="https://plus.google.com/b/112280728135675018538/+Ionicframework/posts">Google+</a></dd> <dd><a href="https://www.youtube.com/channel/UChYheBnVeCfhCmqZfCUdJQw">YouTube</a></dd> <dd><a href="https://twitter.com/ionitron">Ionitron</a></dd> </dl> </nav> <div class="newsletter row"> <div class="newsletter-container"> <div class="col-sm-7"> <div class="newsletter-text">Stay in the loop</div> <div class="sign-up">Sign up to receive emails for the latest updates, features, and news on the framework.</div> </div> <form action="http://codiqa.createsend.com/t/t/s/jytylh/" method="post" class="input-group col-sm-5"> <input id="fieldEmail" name="cm-jytylh-jytylh" class="form-control" type="email" placeholder="Email" required /> <span class="input-group-btn"> <button class="btn btn-default" type="submit">Subscribe</button> </span> </form> </div> </div> <div class="copy"> <div class="copy-container"> <p class="authors"> Code licensed under <a href="/docs/#license">MIT</a>. Docs under <a href="https://tldrlegal.com/license/apache-license-2.0-(apache-2.0)">Apache 2</a> <span>|</span> &copy; 2013-2015 <a href="http://drifty.com/">Drifty Co</a> </p> </div> </div> </footer> <script type="text/javascript"> var _sf_async_config = { uid: 54141, domain: 'ionicframework.com', useCanonical: true }; (function() { function loadChartbeat() { window._sf_endpt = (new Date()).getTime(); var e = document.createElement('script'); e.setAttribute('language', 'javascript'); e.setAttribute('type', 'text/javascript'); e.setAttribute('src','//static.chartbeat.com/js/chartbeat.js'); document.body.appendChild(e); }; var oldonload = window.onload; window.onload = (typeof window.onload != 'function') ? loadChartbeat : function() { oldonload(); loadChartbeat(); }; })(); </script> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script> <script src="/js/site.js?1"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/Cookies.js/0.4.0/cookies.min.js"></script> <script> $('.navbar .dropdown').on('show.bs.dropdown', function(e){ //$(this).find('.dropdown-menu').addClass('animated fadeInDown'); }); // ADD SLIDEUP ANIMATION TO DROPDOWN // $('.navbar .dropdown').on('hide.bs.dropdown', function(e){ //$(this).find('.dropdown-menu').first().stop(true, true).slideUp(200); //$(this).find('.dropdown-menu').removeClass('animated fadeInDown'); }); try { var d = new Date('2015-03-20 05:00:00 +0000'); var ts = d.getTime(); var cd = Cookies.get('_iondj'); if(cd) { cd = JSON.parse(atob(cd)); if(parseInt(cd.lp) < ts) { var bt = document.getElementById('blog-badge'); bt.style.display = 'block'; } cd.lp = ts; } else { var bt = document.getElementById('blog-badge'); bt.style.display = 'block'; cd = { lp: ts } } Cookies.set('_iondj', btoa(JSON.stringify(cd))); } catch(e) { } </script> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> </body> </html>
johnli388/ionic-site
_site/docs/api/directive/ionHeaderBar/index.html
HTML
apache-2.0
30,694
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Implementation</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="../circular_buffer.html" title="Chapter&#160;7.&#160;Boost.Circular Buffer"> <link rel="prev" href="rationale.html" title="Rationale"> <link rel="next" href="examples.html" title="More Examples"> </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="rationale.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../circular_buffer.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="examples.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="circular_buffer.implementation"></a><a class="link" href="implementation.html" title="Implementation">Implementation </a> </h2></div></div></div> <p> The following paragraphs describe issues that had to be considered during the implementation of the circular_buffer: </p> <h4> <a name="circular_buffer.implementation.h0"></a> <span class="phrase"><a name="circular_buffer.implementation.thread_safety"></a></span><a class="link" href="implementation.html#circular_buffer.implementation.thread_safety">Thread-Safety</a> </h4> <p> The thread-safety of the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> is the same as the thread-safety of containers in most STL implementations. This means the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> is not fully thread-safe. The thread-safety is guaranteed only in the sense that simultaneous accesses to distinct instances of the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> are safe, and simultaneous read accesses to a shared <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> are safe. </p> <p> If multiple threads access a single <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code>, and at least one of the threads may potentially write, then the user is responsible for ensuring mutual exclusion between the threads during the container accesses. The mutual exclusion between the threads can be achieved by wrapping operations of the underlying <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> with a lock acquisition and release. (See the Bounded Buffer example code at <a href="../../../libs/circular_buffer/example/circular_buffer_bound_example.cpp" target="_top">circular_buffer_bound_example.cpp</a>) </p> <h4> <a name="circular_buffer.implementation.h1"></a> <span class="phrase"><a name="circular_buffer.implementation.overwrite_operation"></a></span><a class="link" href="implementation.html#circular_buffer.implementation.overwrite_operation">Overwrite Operation</a> </h4> <p> Overwrite operation occurs when an element is inserted into a full <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> - the old element is being overwritten by the new one. There was a discussion what exactly "overwriting of an element" means during the formal review. It may be either a destruction of the original element and a consequent inplace construction of a new element or it may be an assignment of a new element into an old one. The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> implements assignment because it is more effective. </p> <p> From the point of business logic of a stored element, the destruction/construction operation and assignment usually mean the same. However, in very rare cases (if in any) they may differ. If there is a requirement for elements to be destructed/constructed instead of being assigned, consider implementing a wrapper of the element which would implement the assign operator, and store the wrappers instead. It is necessary to note that storing such wrappers has a drawback. The destruction/construction will be invoked on every assignment of the wrapper - not only when a wrapper is being overwritten (when the buffer is full) but also when the stored wrappers are being shifted (e.g. as a result of insertion into the middle of container). </p> <h4> <a name="circular_buffer.implementation.h2"></a> <span class="phrase"><a name="circular_buffer.implementation.writing_to_a_full_buffer"></a></span><a class="link" href="implementation.html#circular_buffer.implementation.writing_to_a_full_buffer">Writing to a Full Buffer</a> </h4> <p> There are several options how to cope if a data source produces more data than can fit in the fixed-sized buffer: </p> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> Inform the data source to wait until there is room in the buffer (e.g. by throwing an overflow exception). </li> <li class="listitem"> If the oldest data is the most important, ignore new data from the source until there is room in the buffer again. </li> <li class="listitem"> If the latest data is the most important, write over the oldest data. </li> <li class="listitem"> Let the producer to be responsible for checking the size of the buffer prior writing into it. </li> </ul></div> <p> It is apparent that the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> implements the third option. But it may be less apparent it does not implement any other option - especially the first two. One can get an impression that the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> should implement first three options and offer a mechanism of choosing among them. This impression is wrong. </p> <p> The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> was designed and optimized to be circular (which means overwriting the oldest data when full). If such a controlling mechanism had been enabled, it would just complicate the matters and the usage of the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> would be probably less straightforward. </p> <p> Moreover, the first two options (and the fourth option as well) do not require the buffer to be circular at all. If there is a need for the first or second option, consider implementing an adaptor of e.g. std::vector. In this case the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> is not suitable for adapting, because, contrary to std::vector, it bears an overhead for its circular behaviour. </p> <h4> <a name="circular_buffer.implementation.h3"></a> <span class="phrase"><a name="circular_buffer.implementation.reading_removing_from_an_empty_b"></a></span><a class="link" href="implementation.html#circular_buffer.implementation.reading_removing_from_an_empty_b">Reading/Removing from an Empty Buffer</a> </h4> <p> When reading or removing an element from an empty buffer, the buffer should be able to notify the data consumer (e.g. by throwing underflow exception) that there are no elements stored in it. The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> does not implement such a behaviour for two reasons: </p> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> It would introduce a performance overhead. </li> <li class="listitem"> No other std container implements it this way. </li> </ul></div> <p> It is considered to be a bug to read or remove an element (e.g. by calling <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp30151952-bb">front()</a></code> or <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp30626384-bb">pop_back()</a></code>) from an empty std container and from an empty <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> as well. The data consumer has to test if the container is not empty before reading/removing from it by testing <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp30324160-bb">empty()</a></code>. However, when reading from the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code>, there is an option to rely on the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html#idp30130640-bb">at()</a></code> method which throws an exception when the index is out of range. </p> <h4> <a name="circular_buffer.implementation.h4"></a> <span class="phrase"><a name="circular_buffer.implementation.iterator_invalidation"></a></span><a class="link" href="implementation.html#circular_buffer.implementation.iterator_invalidation">Iterator Invalidation</a> </h4> <p> An iterator is usually considered to be invalidated if an element, the iterator pointed to, had been removed or overwritten by an another element. This definition is enforced by the Debug Support and is documented for every method. However, some applications utilizing <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> may require less strict definition: an iterator is invalid only if it points to an uninitialized memory. </p> <p> Consider following example: </p> <pre class="programlisting"><span class="preprocessor">#define</span> <span class="identifier">BOOST_CB_DISABLE_DEBUG</span> <span class="comment">// The Debug Support has to be disabled, otherwise the code produces a runtime error.</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">circular_buffer</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">assert</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">assert</span><span class="special">.</span><span class="identifier">h</span><span class="special">&gt;</span> <span class="keyword">int</span> <span class="identifier">main</span><span class="special">(</span><span class="keyword">int</span> <span class="comment">/*argc*/</span><span class="special">,</span> <span class="keyword">char</span><span class="special">*</span> <span class="comment">/*argv*/</span><span class="special">[])</span> <span class="special">{</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">circular_buffer</span><span class="special">&lt;</span><span class="keyword">int</span><span class="special">&gt;</span> <span class="identifier">cb</span><span class="special">(</span><span class="number">3</span><span class="special">);</span> <span class="identifier">cb</span><span class="special">.</span><span class="identifier">push_back</span><span class="special">(</span><span class="number">1</span><span class="special">);</span> <span class="identifier">cb</span><span class="special">.</span><span class="identifier">push_back</span><span class="special">(</span><span class="number">2</span><span class="special">);</span> <span class="identifier">cb</span><span class="special">.</span><span class="identifier">push_back</span><span class="special">(</span><span class="number">3</span><span class="special">);</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">circular_buffer</span><span class="special">&lt;</span><span class="keyword">int</span><span class="special">&gt;::</span><span class="identifier">iterator</span> <span class="identifier">it</span> <span class="special">=</span> <span class="identifier">cb</span><span class="special">.</span><span class="identifier">begin</span><span class="special">();</span> <span class="identifier">assert</span><span class="special">(*</span><span class="identifier">it</span> <span class="special">==</span> <span class="number">1</span><span class="special">);</span> <span class="identifier">cb</span><span class="special">.</span><span class="identifier">push_back</span><span class="special">(</span><span class="number">4</span><span class="special">);</span> <span class="identifier">assert</span><span class="special">(*</span><span class="identifier">it</span> <span class="special">==</span> <span class="number">4</span><span class="special">);</span> <span class="comment">// The iterator still points to the initialized memory.</span> <span class="keyword">return</span> <span class="number">0</span><span class="special">;</span> <span class="special">}</span> </pre> <p> The iterator does not point to the original element any more (and is considered to be invalid from the "strict" point of view) but it still points to the same valid place in the memory. This "soft" definition of iterator invalidation is supported by the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> but should be considered as an implementation detail rather than a full-fledged feature. The rules when the iterator is still valid can be inferred from the code in <a href="../../../libs/circular_buffer/test/soft_iterator_invalidation.cpp" target="_top">soft_iterator_invalidation.cpp</a>. </p> <h4> <a name="circular_buffer.implementation.h5"></a> <span class="phrase"><a name="circular_buffer.implementation.move_emulation_and_rvalues"></a></span><a class="link" href="implementation.html#circular_buffer.implementation.move_emulation_and_rvalues">Move emulation and rvalues</a> </h4> <p> Since Boost 1.54.0 support for move semantics was implemented using the <a href="../../../libs/move/index.html" target="_top">Boost.Move</a> library. If rvalue references are available <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> will use them, but if not it uses a close, but imperfect emulation. On such compilers: </p> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> Non-copyable objects can be stored in the containers. They can be constructed in place using <code class="computeroutput"><span class="identifier">emplace</span></code>, or if they support Boost.Move, moved into place. </li> <li class="listitem"> The containers themselves are not movable. </li> <li class="listitem"> Argument forwarding is not perfect. </li> </ul></div> <p> <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> will use rvalues and move emulations for value types only if move constructor and move assignment operator of the value type do not throw; or if the value type has no copy constructor. </p> <p> Some methods won't use move constructor for the value type at all, if the constructor throws. This is required for data consistency and avoidance of situations, when aftrer an exception <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> contains moved away objects along with the good ones. </p> <p> See documentation for <a href="../../../libs/type_traits/doc/html/boost_typetraits/reference/is_copy_constructible.html" target="_top"><code class="computeroutput"><span class="identifier">is_copy_constructible</span></code></a>, <a href="../../../libs/type_traits/doc/html/boost_typetraits/reference/is_nothrow_move_assignable.html" target="_top"><code class="computeroutput"><span class="identifier">is_nothrow_move_assignable</span></code></a> and <a href="../../../libs/type_traits/doc/html/boost_typetraits/reference/is_nothrow_move_constructible.html" target="_top"><code class="computeroutput"><span class="identifier">is_nothrow_move_constructible</span></code></a> type triats. There you'll find information about how to make constructor of class noexcept and how to make a non-copyable class in C++03 and C++98. </p> <p> Performance of <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> will <span class="bold"><strong>greatly improve</strong></span> if value type has noexcept move constructor and noexcept move assignment. </p> <h4> <a name="circular_buffer.implementation.h6"></a> <span class="phrase"><a name="circular_buffer.implementation.exceptions_of_move_if_noexcept_t"></a></span><a class="link" href="implementation.html#circular_buffer.implementation.exceptions_of_move_if_noexcept_t">Exceptions of move_if_noexcept(T&amp;)</a> </h4> <p> Reference documentation of the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> contains notes like "Throws: See Exceptions of <code class="computeroutput"><span class="identifier">move_if_noexcept</span><span class="special">(</span><span class="identifier">T</span><span class="special">&amp;)</span></code>". That note means the following: <code class="computeroutput"><span class="identifier">move_if_noexcept</span><span class="special">(</span><span class="identifier">T</span><span class="special">&amp;</span> <span class="identifier">value</span><span class="special">)</span></code> does not throws exceptions at all, but it returns <code class="computeroutput"><span class="identifier">value</span></code> as rvalue reference only if class <code class="computeroutput"><span class="identifier">T</span></code> have noexcept move constructor and noexcept move assignment operator; or if it has no copy constructor. Otherwise <code class="computeroutput"><span class="identifier">move_if_noexcept</span><span class="special">(</span><span class="identifier">T</span><span class="special">&amp;</span> <span class="identifier">value</span><span class="special">)</span></code> returns <code class="computeroutput"><span class="identifier">value</span></code> as const reference. </p> <p> This leads us to the following situation: </p> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> If <code class="computeroutput"><span class="identifier">value</span></code> has a noexcept move constructor and noexcept move assignment operator, then no exceptions will be thrown at all. </li> <li class="listitem"> If <code class="computeroutput"><span class="identifier">value</span></code> has a throwing move constructor and some copy constructor, then method may throw exceptions of copy constructor. </li> <li class="listitem"> If <code class="computeroutput"><span class="identifier">value</span></code> has no copy constructor, then method may throw exceptions of move constructor. </li> </ul></div> <p> <code class="computeroutput"><span class="identifier">move_if_noexcept</span><span class="special">(</span><span class="identifier">T</span><span class="special">&amp;)</span></code> uses <a href="../../../libs/move/index.html" target="_top">Boost.Move</a>, <a href="../../../libs/type_traits/doc/html/boost_typetraits/reference/is_copy_constructible.html" target="_top"><code class="computeroutput"><span class="identifier">is_copy_constructible</span></code></a>, <a href="../../../libs/type_traits/doc/html/boost_typetraits/reference/is_nothrow_move_assignable.html" target="_top"><code class="computeroutput"><span class="identifier">is_nothrow_move_assignable</span></code></a> and <a href="../../../libs/type_traits/doc/html/boost_typetraits/reference/is_nothrow_move_constructible.html" target="_top"><code class="computeroutput"><span class="identifier">is_nothrow_move_constructible</span></code></a> type triats. </p> <h4> <a name="circular_buffer.implementation.h7"></a> <span class="phrase"><a name="circular_buffer.implementation.caveats"></a></span><a class="link" href="implementation.html#circular_buffer.implementation.caveats">Caveats</a> </h4> <p> The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> should not be used for storing pointers to dynamically allocated objects. When a circular buffer becomes full, further insertion will overwrite the stored pointers - resulting in a <span class="bold"><strong>memory leak</strong></span>. One recommend alternative is the use of smart pointers, for example <a href="http://www.boost.org/doc/libs/1_53_0/libs/smart_ptr/smart_ptr.htm" target="_top">Boost Smart pointers</a>. </p> <p> <a href="http://en.wikipedia.org/wiki/Std::auto_ptr" target="_top">std::auto_ptr</a> </p> <div class="caution"><table border="0" summary="Caution"> <tr> <td rowspan="2" align="center" valign="top" width="25"><img alt="[Caution]" src="../../../doc/src/images/caution.png"></td> <th align="left">Caution</th> </tr> <tr><td align="left" valign="top"><p> Any container of <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">auto_ptr</span></code> is considered particularly hazardous. </p></td></tr> </table></div> <div class="tip"><table border="0" summary="Tip"> <tr> <td rowspan="2" align="center" valign="top" width="25"><img alt="[Tip]" src="../../../doc/src/images/tip.png"></td> <th align="left">Tip</th> </tr> <tr><td align="left" valign="top"><p> Never create a circular buffer of <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">auto_ptr</span></code>. Refer to Scott Meyers' excellent book Effective STL for a detailed discussion. (Meyers S., Effective STL: 50 Specific Ways to Improve Your Use of the Standard Template Library. Addison-Wesley, 2001.) </p></td></tr> </table></div> <p> While internals of a <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> are circular, <span class="bold"><strong>iterators are not</strong></span>. Iterators of a <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> are only valid for the range <code class="computeroutput"><span class="special">\[</span><span class="identifier">begin</span><span class="special">(),</span> <span class="identifier">end</span><span class="special">()\]</span></code>, so for example: iterators <code class="computeroutput"><span class="special">(</span><span class="identifier">begin</span><span class="special">()</span> <span class="special">-</span> <span class="number">1</span><span class="special">)</span></code> and <code class="computeroutput"><span class="special">(</span><span class="identifier">end</span><span class="special">()</span> <span class="special">+</span> <span class="number">1</span><span class="special">)</span></code> are both invalid. </p> <h4> <a name="circular_buffer.implementation.h8"></a> <span class="phrase"><a name="circular_buffer.implementation.debug_support"></a></span><a class="link" href="implementation.html#circular_buffer.implementation.debug_support">Debug Support</a> </h4> <p> In order to help a programmer to avoid and find common bugs, the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> contains a kind of debug support. </p> <p> The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> maintains a list of valid iterators. As soon as any element gets destroyed all iterators pointing to this element are removed from this list and explicitly invalidated (an invalidation flag is set). The debug support also consists of many assertions (<code class="computeroutput"><span class="identifier">BOOST_ASSERT</span></code> macros) which ensure the <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> and its iterators are used in the correct manner at runtime. In case an invalid iterator is used, the assertion will report an error. The connection of explicit iterator invalidation and assertions makes a very robust debug technique which catches most of the errors. </p> <p> Moreover, the uninitialized memory allocated by <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> is filled with the value <code class="computeroutput"><span class="number">0xcc</span></code> in the debug mode. When debugging the code, this can help the programmer to recognize the initialized memory from the uninitialized. For details refer the source code <a href="../../../boost/circular_buffer/debug.hpp" target="_top">circular_buffer/debug.hpp</a>. </p> <p> The debug support is enabled only in the debug mode (when the <code class="computeroutput"><span class="identifier">NDEBUG</span></code> is not defined). It can also be explicitly disabled (only for <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code>) by defining macro BOOST_CB_DISABLE_DEBUG. </p> <h4> <a name="circular_buffer.implementation.h9"></a> <span class="phrase"><a name="circular_buffer.implementation.compatibility_with_interprocess_"></a></span><a class="link" href="implementation.html#circular_buffer.implementation.compatibility_with_interprocess_">Compatibility with Interprocess library</a> </h4> <p> The <code class="computeroutput"><a class="link" href="../boost/circular_buffer.html" title="Class template circular_buffer">circular_buffer</a></code> is compatible with the <a href="../../../libs/interprocess/index.html" target="_top">Boost.Interprocess</a> library used for interprocess communication. Considering that the circular_buffer's debug support relies on 'raw' pointers (which is not permited by the Interprocess library) the code has to compiled with <code class="computeroutput"><span class="special">-</span><span class="identifier">DBOOST_CB_DISABLE_DEBUG</span></code> or <code class="computeroutput"><span class="special">-</span><span class="identifier">DNDEBUG</span></code> (which disables the Debug Support). Not doing that will cause the compilation to fail. </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; 2003-2013 Jan Gaspar<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="rationale.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../circular_buffer.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="examples.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
biospi/seamass-windeps
src/boost_1_57_0/doc/html/circular_buffer/implementation.html
HTML
apache-2.0
31,326
<?xml version="1.0" encoding="iso-8859-1"?> <!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> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page function.html_select_time.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/libs/plugins/function.html_select_time.php</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-functions">Functions</a> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Smarty plugin</p> </div> </div> <a name="sec-functions"></a> <div class="info-box"> <div class="info-box-title">Functions</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Functions</span> </div> <div class="info-box-body"> <a name="functionsmarty_function_html_select_time" id="functionsmarty_function_html_select_time"><!-- --></a> <div class="oddrow"> <div> <span class="method-title">smarty_function_html_select_time</span> (line <span class="line-number">34</span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Smarty {html_select_time} function plugin</p> <p class="description"><p>Type: function<br /> Name: html_select_time<br /> Purpose: Prints the dropdowns for time selection</p></p> <ul class="tags"> <li><span class="field">author:</span> Roberto Berto &lt;<a href="mailto:[email protected]">[email protected]</a>&gt;</li> <li><span class="field">author:</span> Monte Ohrt &lt;<a href="mailto:monte">AT ohrt DOT com monte AT ohrt DOT com</a>&gt;</li> <li><span class="field">link:</span> <a href="http://www.smarty.net/manual/en/language.function.html.select.time.php">{html_select_time} (Smarty online manual)</a></li> <li><span class="field">uses:</span> <a href="../../Smarty/PluginsShared/_libs---plugins---shared.make_timestamp.php.html#functionsmarty_make_timestamp">smarty_make_timestamp()</a></li> </ul> <div class="method-signature"> <span class="method-result">string</span> <span class="method-name"> smarty_function_html_select_time </span> (<span class="var-type">array</span>&nbsp;<span class="var-name">$params</span>, <span class="var-type"><a href="../../Smarty/Template/Smarty_Internal_Template.html">Smarty_Internal_Template</a></span>&nbsp;<span class="var-name">$template</span>) </div> <ul class="parameters"> <li> <span class="var-type">array</span> <span class="var-name">$params</span><span class="var-description">: parameters</span> </li> <li> <span class="var-type"><a href="../../Smarty/Template/Smarty_Internal_Template.html">Smarty_Internal_Template</a></span> <span class="var-name">$template</span><span class="var-description">: template object</span> </li> </ul> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Mon, 17 Jun 2013 21:06:41 +0000 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.3</a> </p> </div></body> </html>
FranTorletti/inmobiliaria
vendor/smarty/smarty/development/Smarty3Doc/Smarty/PluginsFunction/_libs---plugins---function.html_select_time.php.html
HTML
apache-2.0
3,531
<!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 --> <title>SimplePropertyDescriptor</title> <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="SimplePropertyDescriptor"; } } catch(err) { } //--> var methods = {"i0":10,"i1":9,"i2":10,"i3":10}; var tabs = {65535:["t0","All Methods"],1:["t1","Static 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-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/openqa/selenium/remote/SessionNotFoundException.html" title="class in org.openqa.selenium.remote"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/openqa/selenium/remote/UnreachableBrowserException.html" title="class in org.openqa.selenium.remote"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/openqa/selenium/remote/SimplePropertyDescriptor.html" target="_top">Frames</a></li> <li><a href="SimplePropertyDescriptor.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">org.openqa.selenium.remote</div> <h2 title="Class SimplePropertyDescriptor" class="title">Class SimplePropertyDescriptor</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.openqa.selenium.remote.SimplePropertyDescriptor</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="typeNameLabel">SimplePropertyDescriptor</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="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="../../../../org/openqa/selenium/remote/SimplePropertyDescriptor.html#SimplePropertyDescriptor--">SimplePropertyDescriptor</a></span>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/openqa/selenium/remote/SimplePropertyDescriptor.html#SimplePropertyDescriptor-java.lang.String-java.lang.reflect.Method-java.lang.reflect.Method-">SimplePropertyDescriptor</a></span>(java.lang.String&nbsp;name, java.lang.reflect.Method&nbsp;readMethod, java.lang.reflect.Method&nbsp;writeMethod)</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="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></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>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/openqa/selenium/remote/SimplePropertyDescriptor.html#getName--">getName</a></span>()</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>static <a href="../../../../org/openqa/selenium/remote/SimplePropertyDescriptor.html" title="class in org.openqa.selenium.remote">SimplePropertyDescriptor</a>[]</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/openqa/selenium/remote/SimplePropertyDescriptor.html#getPropertyDescriptors-java.lang.Class-">getPropertyDescriptors</a></span>(java.lang.Class&lt;? extends java.lang.Object&gt;&nbsp;clazz)</code>&nbsp;</td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>java.lang.reflect.Method</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/openqa/selenium/remote/SimplePropertyDescriptor.html#getReadMethod--">getReadMethod</a></span>()</code>&nbsp;</td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>java.lang.reflect.Method</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/openqa/selenium/remote/SimplePropertyDescriptor.html#getWriteMethod--">getWriteMethod</a></span>()</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="SimplePropertyDescriptor--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SimplePropertyDescriptor</h4> <pre>public&nbsp;SimplePropertyDescriptor()</pre> </li> </ul> <a name="SimplePropertyDescriptor-java.lang.String-java.lang.reflect.Method-java.lang.reflect.Method-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>SimplePropertyDescriptor</h4> <pre>public&nbsp;SimplePropertyDescriptor(java.lang.String&nbsp;name, java.lang.reflect.Method&nbsp;readMethod, java.lang.reflect.Method&nbsp;writeMethod)</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="getName--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getName</h4> <pre>public&nbsp;java.lang.String&nbsp;getName()</pre> </li> </ul> <a name="getReadMethod--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getReadMethod</h4> <pre>public&nbsp;java.lang.reflect.Method&nbsp;getReadMethod()</pre> </li> </ul> <a name="getWriteMethod--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getWriteMethod</h4> <pre>public&nbsp;java.lang.reflect.Method&nbsp;getWriteMethod()</pre> </li> </ul> <a name="getPropertyDescriptors-java.lang.Class-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>getPropertyDescriptors</h4> <pre>public static&nbsp;<a href="../../../../org/openqa/selenium/remote/SimplePropertyDescriptor.html" title="class in org.openqa.selenium.remote">SimplePropertyDescriptor</a>[]&nbsp;getPropertyDescriptors(java.lang.Class&lt;? extends java.lang.Object&gt;&nbsp;clazz)</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> <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-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/openqa/selenium/remote/SessionNotFoundException.html" title="class in org.openqa.selenium.remote"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/openqa/selenium/remote/UnreachableBrowserException.html" title="class in org.openqa.selenium.remote"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/openqa/selenium/remote/SimplePropertyDescriptor.html" target="_top">Frames</a></li> <li><a href="SimplePropertyDescriptor.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>
sebady/selenium
docs/api/java/org/openqa/selenium/remote/SimplePropertyDescriptor.html
HTML
apache-2.0
12,221
<!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>Trackback Class : CodeIgniter User Guide</title> <style type='text/css' media='all'>@import url('../userguide.css');</style> <link rel='stylesheet' type='text/css' media='all' href='../userguide.css' /> <script type="text/javascript" src="../nav/nav.js"></script> <script type="text/javascript" src="../nav/prototype.lite.js"></script> <script type="text/javascript" src="../nav/moo.fx.js"></script> <script type="text/javascript" src="../nav/user_guide_menu.js"></script> <meta http-equiv='expires' content='-1' /> <meta http-equiv= 'pragma' content='no-cache' /> <meta name='robots' content='all' /> <meta name='author' content='ExpressionEngine Dev Team' /> <meta name='description' content='CodeIgniter User Guide' /> </head> <body> <!-- START NAVIGATION --> <div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div> <div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div> <div id="masthead"> <table cellpadding="0" cellspacing="0" border="0" style="width:100%"> <tr> <td><h1>CodeIgniter User Guide Version 1.7.3</h1></td> <td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td> </tr> </table> </div> <!-- END NAVIGATION --> <!-- START BREADCRUMB --> <table cellpadding="0" cellspacing="0" border="0" style="width:100%"> <tr> <td id="breadcrumb"> <a href="http://codeigniter.com/">CodeIgniter Home</a> &nbsp;&#8250;&nbsp; <a href="../index.html">User Guide Home</a> &nbsp;&#8250;&nbsp; Trackback Class </td> <td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide&nbsp; <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" />&nbsp;<input type="submit" class="submit" name="sa" value="Go" /></form></td> </tr> </table> <!-- END BREADCRUMB --> <br clear="all" /> <!-- START CONTENT --> <div id="content"> <h1>Trackback Class</h1> <p>The Trackback Class provides functions that enable you to send and receive Trackback data.</p> <p>If you are not familiar with Trackbacks you'll find more information <a href="http://en.wikipedia.org/wiki/Trackback">here</a>.</p> <h2>Initializing the Class</h2> <p>Like most other classes in CodeIgniter, the Trackback class is initialized in your controller using the <dfn>$this->load->library</dfn> function:</p> <code>$this->load->library('trackback');</code> <p>Once loaded, the Trackback library object will be available using: <dfn>$this->trackback</dfn></p> <h2>Sending Trackbacks</h2> <p>A Trackback can be sent from any of your controller functions using code similar to this example:</p> <code>$this->load->library('trackback');<br /> <br /> $tb_data = array(<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'ping_url'&nbsp;&nbsp;=> 'http://example.com/trackback/456',<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'url'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=> 'http://www.my-example.com/blog/entry/123',<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'title'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=> 'The Title of My Entry',<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'excerpt'&nbsp;&nbsp;&nbsp;=> 'The entry content.',<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'blog_name' => 'My Blog Name',<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'charset'&nbsp;&nbsp;&nbsp;=> 'utf-8'<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;);<br /> <br /> if ( ! $this->trackback->send($tb_data))<br /> {<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo $this->trackback->display_errors();<br /> }<br /> else<br /> {<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo 'Trackback was sent!';<br /> }</code> <p>Description of array data:</p> <ul> <li><strong>ping_url</strong> - The URL of the site you are sending the Trackback to. You can send Trackbacks to multiple URLs by separating each URL with a comma.</li> <li><strong>url</strong> - The URL to YOUR site where the weblog entry can be seen.</li> <li><strong>title</strong> - The title of your weblog entry.</li> <li><strong>excerpt</strong> - The content of your weblog entry. Note: the Trackback class will automatically send only the first 500 characters of your entry. It will also strip all HTML.</li> <li><strong>blog_name</strong> - The name of your weblog.</li> <li><strong>charset</strong> - The character encoding your weblog is written in. If omitted, UTF-8 will be used.</li> </ul> <p>The Trackback sending function returns TRUE/FALSE (boolean) on success or failure. If it fails, you can retrieve the error message using:</p> <code>$this->trackback->display_errors();</code> <h2>Receiving Trackbacks</h2> <p>Before you can receive Trackbacks you must create a weblog. If you don't have a blog yet there's no point in continuing.</p> <p>Receiving Trackbacks is a little more complex than sending them, only because you will need a database table in which to store them, and you will need to validate the incoming trackback data. You are encouraged to implement a thorough validation process to guard against spam and duplicate data. You may also want to limit the number of Trackbacks you allow from a particular IP within a given span of time to further curtail spam. The process of receiving a Trackback is quite simple; the validation is what takes most of the effort.</p> <h2>Your Ping URL</h2> <p>In order to accept Trackbacks you must display a Trackback URL next to each one of your weblog entries. This will be the URL that people will use to send you Trackbacks (we will refer to this as your "Ping URL").</p> <p>Your Ping URL must point to a controller function where your Trackback receiving code is located, and the URL must contain the ID number for each particular entry, so that when the Trackback is received you'll be able to associate it with a particular entry.</p> <p>For example, if your controller class is called <dfn>Trackback</dfn>, and the receiving function is called <dfn>receive</dfn>, your Ping URLs will look something like this:</p> <code>http://example.com/index.php/trackback/receive/<samp>entry_id</samp></code> <p>Where <samp>entry_id</samp> represents the individual ID number for each of your entries.</p> <h2>Creating a Trackback Table</h2> <p>Before you can receive Trackbacks you must create a table in which to store them. Here is a basic prototype for such a table:</p> <textarea class="textarea" style="width:100%" cols="50" rows="13"> CREATE TABLE trackbacks ( tb_id int(10) unsigned NOT NULL auto_increment, entry_id int(10) unsigned NOT NULL default 0, url varchar(200) NOT NULL, title varchar(100) NOT NULL, excerpt text NOT NULL, blog_name varchar(100) NOT NULL, tb_date int(10) NOT NULL, ip_address varchar(16) NOT NULL, PRIMARY KEY `tb_id` (`tb_id`), KEY `entry_id` (`entry_id`) );</textarea> <p>The Trackback specification only requires four pieces of information to be sent in a Trackback (url, title, excerpt, blog_name), but to make the data more useful we've added a few more fields in the above table schema (date, IP address, etc.).</p> <h2>Processing a Trackback</h2> <p>Here is an example showing how you will receive and process a Trackback. The following code is intended for use within the controller function where you expect to receive Trackbacks.</p> <code>$this->load->library('trackback');<br /> $this->load->database();<br /> <br /> if ($this->uri->segment(3) == FALSE)<br /> {<br /> &nbsp;&nbsp;&nbsp;&nbsp;$this->trackback->send_error("Unable to determine the entry ID");<br /> }<br /> <br /> if ( ! $this->trackback->receive())<br /> {<br /> &nbsp;&nbsp;&nbsp;&nbsp;$this->trackback->send_error("The Trackback did not contain valid data");<br /> }<br /> <br /> $data = array(<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'tb_id'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=> '',<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'entry_id'&nbsp;&nbsp;&nbsp;=> $this->uri->segment(3),<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'url'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=> $this->trackback->data('url'),<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'title'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=> $this->trackback->data('title'),<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'excerpt'&nbsp;&nbsp;&nbsp;&nbsp;=> $this->trackback->data('excerpt'),<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'blog_name'&nbsp;&nbsp;=> $this->trackback->data('blog_name'),<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'tb_date'&nbsp;&nbsp;&nbsp;&nbsp;=> time(),<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'ip_address' => $this->input->ip_address()<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;);<br /> <br /> $sql = $this->db->insert_string('trackbacks', $data);<br /> $this->db->query($sql);<br /> <br /> $this->trackback->send_success();</code> <h4>Notes:</h4> <p>The entry ID number is expected in the third segment of your URL. This is based on the URI example we gave earlier:</p> <code>http://example.com/index.php/trackback/receive/<samp>entry_id</samp></code> <p>Notice the entry_id is in the third URI segment, which you can retrieve using:</p> <code>$this->uri->segment(3);</code> <p>In our Trackback receiving code above, if the third segment is missing, we will issue an error. Without a valid entry ID, there's no reason to continue.</p> <p>The <dfn>$this->trackback->receive()</dfn> function is simply a validation function that looks at the incoming data and makes sure it contains the four pieces of data that are required (url, title, excerpt, blog_name). It returns TRUE on success and FALSE on failure. If it fails you will issue an error message.</p> <p>The incoming Trackback data can be retrieved using this function:</p> <code>$this->trackback->data('<var>item</var>')</code> <p>Where <var>item</var> represents one of these four pieces of info: url, title, excerpt, or blog_name</p> <p>If the Trackback data is successfully received, you will issue a success message using:</p> <code>$this->trackback->send_success();</code> <p class="important"><strong>Note:</strong> The above code contains no data validation, which you are encouraged to add.</p> </div> <!-- END CONTENT --> <div id="footer"> <p> Previous Topic:&nbsp;&nbsp;<a href="sessions.html">Session Class</a> &nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp; <a href="#top">Top of Page</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp; <a href="../index.html">User Guide Home</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp; Next Topic:&nbsp;&nbsp;<a href="parser.html">Template Parser Class</a> </p> <p><a href="http://codeigniter.com">CodeIgniter</a> &nbsp;&middot;&nbsp; Copyright &#169; 2006-2010 &nbsp;&middot;&nbsp; <a href="http://ellislab.com/">Ellislab, Inc.</a></p> </div> </body> </html>
prashants/webzash-v1-defunct
user_guide/libraries/trackback.html
HTML
apache-2.0
12,107
<html> <body> <b>Extension for GFM tables using "|" pipes (GitHub Flavored Markdown)</b> <p>See {@link org.commonmark.ext.gfm.tables.TablesExtension}</p> </body> </html>
atlassian/commonmark-java
commonmark-ext-gfm-tables/src/main/javadoc/overview.html
HTML
bsd-2-clause
170
<a href='https://github.com/angular/angular.js/edit/v1.4.x/src/ng/directive/ngEventDirs.js?message=docs(ngSubmit)%3A%20describe%20your%20change...#L317' 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.4.12/src/ng/directive/ngEventDirs.js#L317' 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">ngSubmit</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>Enables binding angular expressions to onsubmit events.</p> <p>Additionally it prevents the default action (which for form means sending the request to the server and reloading the current page), but only if the form does not contain <code>action</code>, <code>data-action</code>, or <code>x-action</code> attributes.</p> <div class="alert alert-warning"> <strong>Warning:</strong> Be careful not to cause &quot;double-submission&quot; by using both the <code>ngClick</code> and <code>ngSubmit</code> handlers together. See the <a href="api/ng/directive/form#submitting-a-form-and-preventing-the-default-action"><code>form</code> directive documentation</a> for a detailed discussion of when <code>ngSubmit</code> may be triggered. </div> </div> <div> <h2>Directive Info</h2> <ul> <li>This directive executes at priority level 0.</li> </ul> <h2 id="usage">Usage</h2> <div class="usage"> <ul> <li>as attribute: <pre><code>&lt;form&#10; ng-submit=&quot;expression&quot;&gt;&#10;...&#10;&lt;/form&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> ngSubmit </td> <td> <a href="" class="label type-hint type-hint-expression">expression</a> </td> <td> <p><a href="guide/expression">Expression</a> to eval. (<a href="guide/expression#-event-">Event object is available as <code>$event</code></a>)</p> </td> </tr> </tbody> </table> </section> <h2 id="example">Example</h2><p> <div> <a ng-click="openPlunkr('examples/example-example79', $event)" class="btn pull-right"> <i class="glyphicon glyphicon-edit">&nbsp;</i> Edit in Plunker</a> <div class="runnable-example" path="examples/example-example79" module="submitExample"> <div class="runnable-example-file" name="index.html" language="html" type="html"> <pre><code>&lt;script&gt;&#10; angular.module(&#39;submitExample&#39;, [])&#10; .controller(&#39;ExampleController&#39;, [&#39;$scope&#39;, function($scope) {&#10; $scope.list = [];&#10; $scope.text = &#39;hello&#39;;&#10; $scope.submit = function() {&#10; if ($scope.text) {&#10; $scope.list.push(this.text);&#10; $scope.text = &#39;&#39;;&#10; }&#10; };&#10; }]);&#10;&lt;/script&gt;&#10;&lt;form ng-submit=&quot;submit()&quot; ng-controller=&quot;ExampleController&quot;&gt;&#10; Enter text and hit enter:&#10; &lt;input type=&quot;text&quot; ng-model=&quot;text&quot; name=&quot;text&quot; /&gt;&#10; &lt;input type=&quot;submit&quot; id=&quot;submit&quot; value=&quot;Submit&quot; /&gt;&#10; &lt;pre&gt;list={{list}}&lt;/pre&gt;&#10;&lt;/form&gt;</code></pre> </div> <div class="runnable-example-file" name="protractor.js" type="protractor" language="js"> <pre><code>it(&#39;should check ng-submit&#39;, function() {&#10; expect(element(by.binding(&#39;list&#39;)).getText()).toBe(&#39;list=[]&#39;);&#10; element(by.css(&#39;#submit&#39;)).click();&#10; expect(element(by.binding(&#39;list&#39;)).getText()).toContain(&#39;hello&#39;);&#10; expect(element(by.model(&#39;text&#39;)).getAttribute(&#39;value&#39;)).toBe(&#39;&#39;);&#10;});&#10;it(&#39;should ignore empty strings&#39;, function() {&#10; expect(element(by.binding(&#39;list&#39;)).getText()).toBe(&#39;list=[]&#39;);&#10; element(by.css(&#39;#submit&#39;)).click();&#10; element(by.css(&#39;#submit&#39;)).click();&#10; expect(element(by.binding(&#39;list&#39;)).getText()).toContain(&#39;hello&#39;);&#10; });</code></pre> </div> <iframe class="runnable-example-frame" src="examples/example-example79/index.html" name="example-example79"></iframe> </div> </div> </p> </div>
bborbe/portfolio
files/libs/angularjs/1.4.12/docs/partials/api/ng/directive/ngSubmit.html
HTML
bsd-2-clause
4,800
<!DOCTYPE html> <html> <head> <title>Mongoose</title> <META HTTP-EQUIV="Pragma" CONTENT="no-cache" /> <META HTTP-EQUIV="Expires" CONTENT="-1" /> <script type="text/javascript" src="hterm.concat.js"></script> <script type="text/javascript" src="naclterm.js"></script> <script type="text/javascript" src="mongoose.js"></script> <style type="text/css"> body { position: absolute; padding: 0; margin: 0; height: 100%; width: 100%; overflow: hidden; } #terminal { display: block; position: static; width: 100%; height: 100%; } </style> </head> <body> <div id="terminal"></div> </body> </html>
adlr/naclports
ports/mongoose/index.html
HTML
bsd-3-clause
738
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <script src="../../../../../tools/svgweb/src/svg.js" data-path="../../../../../tools/svgweb/src"></script> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta name="keywords" content="W3C SVG 1.1 2nd Edition Test Suite"/> <meta name="description" content="W3C SVG 1.1 2nd Edition SVGWeb Test Suite"/> <title> SVG 1.1 2nd Edition Test (svgweb): pservers-pattern-04-f.svg </title> <style type="text/css"> <!-- .bodytext { font-family:verdana, helvetica, sans-serif; font-size: 12pt; line-height: 125%; text-align: Left; margin-top: 0; margin-bottom: 0 } .pageTitle { line-height: 150%; font-size: 20pt; font-weight : 900; margin-bottom: 20pt } .pageSubTitle { color : blue; line-height: 100%; font-size: 24pt; font-weight : 900 } .openChapter { color : blue; line-height: 125%; font-weight : 900 } .openSection { color : blue; line-height: 125%; font-weight : 900 } .info { color : black; line-height: 110%; font-size: 10pt; font-weight : 100 } p { margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0 } blockquote { margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0 } .opscript { margin-left: 3%; margin-right: 3%; } .opscript p { margin-top: 0.7em } .navbar { background: black; color: white; font-weight: bold } .warning { color: red; text-align: Center;} a,a:visited { color: blue } --> </style> <link rel="prev" href="pservers-pattern-03-f.html" /> <link rel="index" href="index.html" /> <link rel="next" href="pservers-pattern-05-f.html" /> <script src="../resources/testharnessreport.js"></script> </head> <body class="bodytext"> <div class="linkbar"> <p>Specification link: <a target="spec" href="http://www.w3.org/TR/SVG11/pservers.html#Patterns">13.3 Patterns</a></p> <p> <a href="pservers-pattern-03-f.html" rel="prev">pservers-pattern-03-f ←</a> <a href="index.html" rel="index">index</a> <a href="pservers-pattern-05-f.html" rel="next">→ pservers-pattern-05-f</a> </p> </div> <div> <br /> <p class="warning"> Tests that contain the draft-watermark are under development and may be incorrectly testing a feature. </p> </div> <table align="center" border="0" cellspacing="0" cellpadding="10"> <tr> <td align="center" colspan="3"> <table border="0" cellpadding="8"> <tr> <td align="center" colspan="2" class="pageTitle"> <h1>pservers-pattern-04-f.svg</h1> </td> </tr> <tr class="navbar"> <td align="center"> SVG Image </td> <td align="center"> PNG Image </td> </tr> <tr> <td align="right"> <!--[if IE]> <object src="../../svg/pservers-pattern-04-f.svg" width="480" height="360" classid="image/svg+xml"><p style="font-size:300%;color:red">FAIL</p> <![endif]--> <!--[if !IE]>--> <object data="../../svg/pservers-pattern-04-f.svg" width="480" height="360" type="image/svg+xml"><p style="font-size:300%;color:red">FAIL</p> <!--<![endif]--> </object> </td> <td align="left"> <img alt="raster image of pservers-pattern-04-f.svg" src="../../png/pservers-pattern-04-f.png" width="480" height="360"/> </td> </tr> </table> </td> </tr> </table> <div class="opscript"> <h2 id="operatorscript"> Operator Script </h2> <div> <p> Run the test. No interaction required. </p> </div> <h2 id="passcriteria"> Pass Criteria </h2> <div> <p> The test is passed if there are four green circles visible on the page, and no red. </p> </div> <h2 id="testdescription"> Test Description </h2> <div> <p> Inherited attributes from a referenced 'pattern' are not applied if they are already defined on the referencing 'pattern' element. </p><p> Define a pattern 'pattern1' with circles that have red fill. Inherit 'pattern1' into 'pattern2' and add circles at different 'y' attribute and with 'fill' set to 'lime' on 'pattern2'. Reference 'pattern1' from a square using 'fill' attribute. Reference 'pattern2' from a different square using 'fill' attribute. Position the second square directly over the first square. Verify that there is green visible. </p> </div> </div> <br/> <div class="linkbar"> <p> <a href="pservers-pattern-03-f.html" rel="prev">pservers-pattern-03-f ←</a> <a href="index.html" rel="index">index</a> <a href="pservers-pattern-05-f.html" rel="next">→ pservers-pattern-05-f</a> </p> </div> </body> </html>
frivoal/presto-testo
SVG/Testsuites/W3C-1_1F2/harness/htmlSVGWeb/pservers-pattern-04-f.html
HTML
bsd-3-clause
5,126
<div class="modal fade" id="{{modalId}}" tabindex="-1" role="dialog"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h4 class="modal-title">{{modalTitle}}</h4> </div> <div class="modal-body"> <div data-ng-transclude></div> <div style="height:40px"> <button type="button" class="btn btn-success pull-right" data-dismiss="modal">{{modalSaveText}}</button> </div> </div> </div> </div> </div>
cazzerson/Suma
analysis/reports/views/directives/modal.html
HTML
mit
502
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> Uses of Class org.apache.poi.hssf.model.RowBlocksReader (POI API Documentation) </TITLE> <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.poi.hssf.model.RowBlocksReader (POI API Documentation)"; } } </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/poi/hssf/model/RowBlocksReader.html" title="class in org.apache.poi.hssf.model"><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/poi/hssf/model/\class-useRowBlocksReader.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="RowBlocksReader.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.poi.hssf.model.RowBlocksReader</B></H2> </CENTER> No usage of org.apache.poi.hssf.model.RowBlocksReader <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/poi/hssf/model/RowBlocksReader.html" title="class in org.apache.poi.hssf.model"><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/poi/hssf/model/\class-useRowBlocksReader.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="RowBlocksReader.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> <i>Copyright 2016 The Apache Software Foundation or its licensors, as applicable.</i> </BODY> </HTML>
Sebaxtian/KDD
poi-3.14/docs/apidocs/org/apache/poi/hssf/model/class-use/RowBlocksReader.html
HTML
mit
6,179
<!-- HTML header for doxygen 1.8.13--> <!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.6"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>Generic Image Library: ColorBasesCompatibleConcept&lt; ColorBase1, ColorBase2 &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="doxygen.css" rel="stylesheet" type="text/css" /> <link href="doxygen-boost.css" rel="stylesheet" type="text/css"/> </head> <body> <div class="boost-header"> <table border="0" cellpadding="7" cellspacing="0" width="100%" summary="header"> <tr> <td valign="top" width="300"> <h3><a href="../index.html"><img alt="Boost GIL" src="../_static/gil.png" border="0"></a></h3> </td> <td ><h1 align="center"><a href="../index.html"></a></h1></td> <td></td> </tr> </table> </div> <hr/> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <!-- Generated by Doxygen 1.8.6 --> <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>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="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"><b>boost</b></li><li class="navelem"><b>gil</b></li><li class="navelem"><a class="el" href="structboost_1_1gil_1_1_color_bases_compatible_concept.html">ColorBasesCompatibleConcept</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="structboost_1_1gil_1_1_color_bases_compatible_concept-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">ColorBasesCompatibleConcept&lt; ColorBase1, ColorBase2 &gt; Struct Template Reference<div class="ingroups"><a class="el" href="group___color_base_concept.html">Concepts</a></div></div> </div> </div><!--header--> <div class="contents"> <p>Two color bases are compatible if they have the same color space and their elements are compatible, semantic-pairwise. <a href="structboost_1_1gil_1_1_color_bases_compatible_concept.html#details">More...</a></p> <p><code>#include &lt;<a class="el" href="concepts_8hpp_source.html">concepts.hpp</a>&gt;</code></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:ab0a0dbf6ca9028bbbb2240cad5882537"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab0a0dbf6ca9028bbbb2240cad5882537"></a> void&#160;</td><td class="memItemRight" valign="bottom"><b>constraints</b> ()</td></tr> <tr class="separator:ab0a0dbf6ca9028bbbb2240cad5882537"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><h3>template&lt;typename ColorBase1, typename ColorBase2&gt;<br/> struct boost::gil::ColorBasesCompatibleConcept&lt; ColorBase1, ColorBase2 &gt;</h3> <p>Two color bases are compatible if they have the same color space and their elements are compatible, semantic-pairwise. </p> <div class="fragment"><div class="line">concept ColorBasesCompatibleConcept&lt;ColorBaseConcept C1, ColorBaseConcept C2&gt; {</div> <div class="line"> where SameType&lt;C1::layout_t::color_space_t, C2::layout_t::color_space_t&gt;;</div> <div class="line"> <span class="comment">// also, for all K in [0 ... size&lt;C1&gt;::value):</span></div> <div class="line"> <span class="comment">// where Convertible&lt;kth_semantic_element_type&lt;C1,K&gt;::type, kth_semantic_element_type&lt;C2,K&gt;::type&gt;;</span></div> <div class="line"> <span class="comment">// where Convertible&lt;kth_semantic_element_type&lt;C2,K&gt;::type, kth_semantic_element_type&lt;C1,K&gt;::type&gt;;</span></div> <div class="line">};</div> </div><!-- fragment --> </div><hr/>The documentation for this struct was generated from the following file:<ul> <li><a class="el" href="concepts_8hpp_source.html">concepts.hpp</a></li> </ul> </div><!-- contents --> <!-- HTML footer for doxygen 1.8.13--> <!-- start footer part --> <hr class="footer"/> <address class="footer"> <small> Generated on Wed Dec 5 2018 20:05:50 for Generic Image Library by &#160;<a href="http://www.doxygen.org/index.html">doxygen</a> 1.8.6 </small> </address> </body> </html>
nawawi/poedit
deps/boost/libs/gil/doc/html/reference/structboost_1_1gil_1_1_color_bases_compatible_concept.html
HTML
mit
5,475
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>coroutine::is_parent</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../coroutine.html" title="coroutine"> <link rel="prev" href="is_complete.html" title="coroutine::is_complete"> <link rel="next" href="../deadline_timer.html" title="deadline_timer"> </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="is_complete.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../coroutine.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="../deadline_timer.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.coroutine.is_parent"></a><a class="link" href="is_parent.html" title="coroutine::is_parent">coroutine::is_parent</a> </h4></div></div></div> <p> <a class="indexterm" name="boost_asio.indexterm.coroutine.is_parent"></a> Returns true if the coroutine is the parent of a fork. </p> <pre class="programlisting">bool is_parent() const; </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-2018 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="is_complete.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../coroutine.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="../deadline_timer.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
nawawi/poedit
deps/boost/doc/html/boost_asio/reference/coroutine/is_parent.html
HTML
mit
3,106
<!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>Struct weighted_p_square_quantile_for_median</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.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.weighted_p_square_quantile_hpp" title="Header &lt;boost/accumulators/statistics/weighted_p_square_quantile.hpp&gt;"> <link rel="prev" href="weighted_p_square_quantile.html" title="Struct weighted_p_square_quantile"> <link rel="next" href="../extract/weigh_1_3_2_6_3_50_1_1_3_1.html" title="Global weighted_peaks_over_threshold"> </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="weighted_p_square_quantile.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.weighted_p_square_quantile_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/weigh_1_3_2_6_3_50_1_1_3_1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.accumulators.tag.weigh_1_3_2_6_3_49_1_1_3_2"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct weighted_p_square_quantile_for_median</span></h2> <p>boost::accumulators::tag::weighted_p_square_quantile_for_median</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.weighted_p_square_quantile_hpp" title="Header &lt;boost/accumulators/statistics/weighted_p_square_quantile.hpp&gt;">boost/accumulators/statistics/weighted_p_square_quantile.hpp</a>&gt; </span> <span class="keyword">struct</span> <a class="link" href="weigh_1_3_2_6_3_49_1_1_3_2.html" title="Struct weighted_p_square_quantile_for_median">weighted_p_square_quantile_for_median</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="identifier">count</span><span class="special">,</span> <span class="identifier">sum_of_weights</span> <span class="special">&gt;</span> <span class="special">{</span> <span class="comment">// types</span> <span class="keyword">typedef</span> <a class="link" href="../impl/wei_1_3_2_6_3_59_1_1_22_44.html" title="Struct template weighted_p_square_quantile_impl">accumulators::impl::weighted_p_square_quantile_impl</a><span class="special">&lt;</span> <span class="identifier">mpl</span><span class="special">::</span><span class="identifier">_1</span><span class="special">,</span> <span class="identifier">mpl</span><span class="special">::</span><span class="identifier">_2</span><span class="special">,</span> <a class="link" href="../for_median.html" title="Struct for_median">for_median</a> <span class="special">&gt;</span> <a name="boost.accumulators.tag.weigh_1_3_2_6_3_49_1_1_3_2.impl"></a><span class="identifier">impl</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="weighted_p_square_quantile.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.weighted_p_square_quantile_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/weigh_1_3_2_6_3_50_1_1_3_1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
nawawi/poedit
deps/boost/doc/html/boost/accumulators/tag/weigh_1_3_2_6_3_49_1_1_3_2.html
HTML
mit
5,645
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="robots" content="index, follow, all" /> <title>Thelia\Model\Base\Category | </title> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css"> </head> <body id="class"> <div class="header"> <ul> <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> </ul> <div id="title"></div> <div class="type">Class</div> <h1><a href="../../../Thelia/Model/Base.html">Thelia\Model\Base</a>\Category</h1> </div> <div class="content"> <p>abstract class <strong>Category</strong> implements <abbr title="Propel\Runtime\ActiveRecord\ActiveRecordInterface">ActiveRecordInterface</abbr></p> <h2>Constants</h2> <table> <tr> <td>TABLE_MAP</td> <td class="last"> <p><em>TableMap class name</em></p> <p> </p> </td> </tr> </table> <h2>Methods</h2> <table> <tr> <td class="type"> </td> <td class="last"> <a href="#method_applyDefaultValues">applyDefaultValues</a>() <p>Applies default values to this object.</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method___construct">__construct</a>() <p>Initializes internal state of Thelia\Model\Base\Category object.</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_isModified">isModified</a>() <p>Returns whether the object has been modified.</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_isColumnModified">isColumnModified</a>(string $col) <p>Has specified column been modified?</p> </td> <td></td> </tr> <tr> <td class="type"> array </td> <td class="last"> <a href="#method_getModifiedColumns">getModifiedColumns</a>() <p>Get the columns that have been modified in this object.</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_isNew">isNew</a>() <p>Returns whether the object has ever been saved.</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_setNew">setNew</a>(boolean $b) <p>Setter for the isNew attribute.</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_isDeleted">isDeleted</a>() <p>Whether this object has been deleted.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_setDeleted">setDeleted</a>(boolean $b) <p>Specify whether this object has been deleted.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_resetModified">resetModified</a>(string $col = null) <p>Sets the modified state for the object to be false.</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_equals">equals</a>(mixed $obj) <p>Compares this with another <code>Category</code> instance.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_hashCode">hashCode</a>() <p>If the primary key is not null, return the hashcode of the primary key.</p> </td> <td></td> </tr> <tr> <td class="type"> array </td> <td class="last"> <a href="#method_getVirtualColumns">getVirtualColumns</a>() <p>Get the associative array of the virtual columns in this object</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_hasVirtualColumn">hasVirtualColumn</a>(string $name) <p>Checks the existence of a virtual column in this object</p> </td> <td></td> </tr> <tr> <td class="type"> mixed </td> <td class="last"> <a href="#method_getVirtualColumn">getVirtualColumn</a>(string $name) <p>Get the value of a virtual column in this object</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Base/Category.html"><abbr title="Thelia\Model\Base\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setVirtualColumn">setVirtualColumn</a>(string $name, mixed $value) <p>Set the value of a virtual column in this object</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Base/Category.html"><abbr title="Thelia\Model\Base\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_importFrom">importFrom</a>(mixed $parser, string $data) <p>Populate the current object from a string, using a given parser format <code> $book = new Book(); $book->importFrom('JSON', '{"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}'); </code></p> </td> <td></td> </tr> <tr> <td class="type"> string </td> <td class="last"> <a href="#method_exportTo">exportTo</a>(mixed $parser, boolean $includeLazyLoadColumns = true) <p>Export the current object properties to a string, using a given parser format <code> $book = BookQuery::create()->findPk(9012); echo $book->exportTo('JSON'); => {"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}'); </code></p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method___sleep">__sleep</a>() <p>Clean up internal collections prior to serializing Avoids recursive loops that turn into segmentation faults when serializing</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_getId">getId</a>() <p>Get the [id] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_getParent">getParent</a>() <p>Get the [parent] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_getVisible">getVisible</a>() <p>Get the [visible] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_getPosition">getPosition</a>() <p>Get the [position] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> mixed </td> <td class="last"> <a href="#method_getCreatedAt">getCreatedAt</a>(string $format = NULL) <p>Get the [optionally formatted] temporal [created_at] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> mixed </td> <td class="last"> <a href="#method_getUpdatedAt">getUpdatedAt</a>(string $format = NULL) <p>Get the [optionally formatted] temporal [updated_at] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_getVersion">getVersion</a>() <p>Get the [version] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> mixed </td> <td class="last"> <a href="#method_getVersionCreatedAt">getVersionCreatedAt</a>(string $format = NULL) <p>Get the [optionally formatted] temporal [version<em>created</em>at] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> string </td> <td class="last"> <a href="#method_getVersionCreatedBy">getVersionCreatedBy</a>() <p>Get the [version<em>created</em>by] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setId">setId</a>(int $v) <p>Set the value of [id] column.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setParent">setParent</a>(int $v) <p>Set the value of [parent] column.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setVisible">setVisible</a>(int $v) <p>Set the value of [visible] column.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setPosition">setPosition</a>(int $v) <p>Set the value of [position] column.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setCreatedAt">setCreatedAt</a>(mixed $v) <p>Sets the value of [created_at] column to a normalized version of the date/time value specified.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setUpdatedAt">setUpdatedAt</a>(mixed $v) <p>Sets the value of [updated_at] column to a normalized version of the date/time value specified.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setVersion">setVersion</a>(int $v) <p>Set the value of [version] column.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setVersionCreatedAt">setVersionCreatedAt</a>(mixed $v) <p>Sets the value of [version<em>created</em>at] column to a normalized version of the date/time value specified.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setVersionCreatedBy">setVersionCreatedBy</a>(string $v) <p>Set the value of [version<em>created</em>by] column.</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_hasOnlyDefaultValues">hasOnlyDefaultValues</a>() <p>Indicates whether the columns in this object are only set to default values.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_hydrate">hydrate</a>(array $row, int $startcol, boolean $rehydrate = false, string $indexType = TableMap::TYPE_NUM) <p>Hydrates (populates) the object variables with values from the database resultset.</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_ensureConsistency">ensureConsistency</a>() <p>Checks and repairs the internal consistency of the object.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_reload">reload</a>(boolean $deep = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Reloads this object from datastore based on primary key and (optionally) resets all associated objects.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_delete">delete</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Removes this object from datastore and sets delete attribute.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_save">save</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Persists this object to the database.</p> </td> <td></td> </tr> <tr> <td class="type"> mixed </td> <td class="last"> <a href="#method_getByName">getByName</a>(string $name, string $type = TableMap::TYPE_PHPNAME) <p>Retrieves a field from the object by name passed in as a string.</p> </td> <td></td> </tr> <tr> <td class="type"> mixed </td> <td class="last"> <a href="#method_getByPosition">getByPosition</a>(int $pos) <p>Retrieves a field from the object by Position as specified in the xml schema.</p> </td> <td></td> </tr> <tr> <td class="type"> array </td> <td class="last"> <a href="#method_toArray">toArray</a>(string $keyType = TableMap::TYPE_PHPNAME, boolean $includeLazyLoadColumns = true, array $alreadyDumpedObjects = array(), boolean $includeForeignObjects = false) <p>Exports the object as an array.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_setByName">setByName</a>(string $name, mixed $value, string $type = TableMap::TYPE_PHPNAME) <p>Sets a field from the object by name passed in as a string.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_setByPosition">setByPosition</a>(int $pos, mixed $value) <p>Sets a field from the object by Position as specified in the xml schema.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_fromArray">fromArray</a>(array $arr, string $keyType = TableMap::TYPE_PHPNAME) <p>Populates the object using an array.</p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> </td> <td class="last"> <a href="#method_buildCriteria">buildCriteria</a>() <p>Build a Criteria object containing the values of all modified columns in this object.</p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> </td> <td class="last"> <a href="#method_buildPkeyCriteria">buildPkeyCriteria</a>() <p>Builds a Criteria object containing the primary key for this object.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_getPrimaryKey">getPrimaryKey</a>() <p>Returns the primary key for this object (row).</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_setPrimaryKey">setPrimaryKey</a>(int $key) <p>Generic method to set the primary key (id column).</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_isPrimaryKeyNull">isPrimaryKeyNull</a>() <p>Returns true if the primary key for this object is null.</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_copyInto">copyInto</a>(object $copyObj, boolean $deepCopy = false, boolean $makeNew = true) <p>Sets contents of passed object to values from current object.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_copy">copy</a>(boolean $deepCopy = false) <p>Makes a copy of this object that will be inserted as a new row in table when saved.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_initRelation">initRelation</a>(string $relationName) <p>Initializes a collection based on the name of a relation.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_clearProductCategories">clearProductCategories</a>() <p>Clears out the collProductCategories collection</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_resetPartialProductCategories">resetPartialProductCategories</a>($v = true) <p>Reset is the collProductCategories collection loaded partially.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_initProductCategories">initProductCategories</a>(boolean $overrideExisting = true) <p>Initializes the collProductCategories collection.</p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/ProductCategory.html"><abbr title="Thelia\Model\ProductCategory">ProductCategory</abbr></a>[] </td> <td class="last"> <a href="#method_getProductCategories">getProductCategories</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Gets an array of ChildProductCategory objects which contain a foreign key that references this object.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setProductCategories">setProductCategories</a>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $productCategories, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Sets a collection of ProductCategory objects related by a one-to-many relationship to the current object.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_countProductCategories">countProductCategories</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Returns the number of related ProductCategory objects.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_addProductCategory">addProductCategory</a>(<a href="../../../Thelia/Model/ProductCategory.html"><abbr title="Thelia\Model\ProductCategory">ProductCategory</abbr></a> $l) <p>Method called to associate a ChildProductCategory object to this object through the ChildProductCategory foreign key attribute.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_removeProductCategory">removeProductCategory</a>(<a href="../../../Thelia/Model/Base/ProductCategory.html"><abbr title="Thelia\Model\Base\ProductCategory">ProductCategory</abbr></a> $productCategory) <p> </p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/ProductCategory.html"><abbr title="Thelia\Model\ProductCategory">ProductCategory</abbr></a>[] </td> <td class="last"> <a href="#method_getProductCategoriesJoinProduct">getProductCategoriesJoinProduct</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null, string $joinBehavior = Criteria::LEFT_JOIN) <p>If this collection has already been initialized with an identical criteria, it returns the collection.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_clearCategoryImages">clearCategoryImages</a>() <p>Clears out the collCategoryImages collection</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_resetPartialCategoryImages">resetPartialCategoryImages</a>($v = true) <p>Reset is the collCategoryImages collection loaded partially.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_initCategoryImages">initCategoryImages</a>(boolean $overrideExisting = true) <p>Initializes the collCategoryImages collection.</p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryImage.html"><abbr title="Thelia\Model\CategoryImage">CategoryImage</abbr></a>[] </td> <td class="last"> <a href="#method_getCategoryImages">getCategoryImages</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Gets an array of ChildCategoryImage objects which contain a foreign key that references this object.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setCategoryImages">setCategoryImages</a>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $categoryImages, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Sets a collection of CategoryImage objects related by a one-to-many relationship to the current object.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_countCategoryImages">countCategoryImages</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Returns the number of related CategoryImage objects.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_addCategoryImage">addCategoryImage</a>(<a href="../../../Thelia/Model/CategoryImage.html"><abbr title="Thelia\Model\CategoryImage">CategoryImage</abbr></a> $l) <p>Method called to associate a ChildCategoryImage object to this object through the ChildCategoryImage foreign key attribute.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_removeCategoryImage">removeCategoryImage</a>(<a href="../../../Thelia/Model/Base/CategoryImage.html"><abbr title="Thelia\Model\Base\CategoryImage">CategoryImage</abbr></a> $categoryImage) <p> </p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_clearCategoryDocuments">clearCategoryDocuments</a>() <p>Clears out the collCategoryDocuments collection</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_resetPartialCategoryDocuments">resetPartialCategoryDocuments</a>($v = true) <p>Reset is the collCategoryDocuments collection loaded partially.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_initCategoryDocuments">initCategoryDocuments</a>(boolean $overrideExisting = true) <p>Initializes the collCategoryDocuments collection.</p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryDocument.html"><abbr title="Thelia\Model\CategoryDocument">CategoryDocument</abbr></a>[] </td> <td class="last"> <a href="#method_getCategoryDocuments">getCategoryDocuments</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Gets an array of ChildCategoryDocument objects which contain a foreign key that references this object.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setCategoryDocuments">setCategoryDocuments</a>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $categoryDocuments, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Sets a collection of CategoryDocument objects related by a one-to-many relationship to the current object.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_countCategoryDocuments">countCategoryDocuments</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Returns the number of related CategoryDocument objects.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_addCategoryDocument">addCategoryDocument</a>(<a href="../../../Thelia/Model/CategoryDocument.html"><abbr title="Thelia\Model\CategoryDocument">CategoryDocument</abbr></a> $l) <p>Method called to associate a ChildCategoryDocument object to this object through the ChildCategoryDocument foreign key attribute.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_removeCategoryDocument">removeCategoryDocument</a>(<a href="../../../Thelia/Model/Base/CategoryDocument.html"><abbr title="Thelia\Model\Base\CategoryDocument">CategoryDocument</abbr></a> $categoryDocument) <p> </p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_clearCategoryAssociatedContents">clearCategoryAssociatedContents</a>() <p>Clears out the collCategoryAssociatedContents collection</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_resetPartialCategoryAssociatedContents">resetPartialCategoryAssociatedContents</a>($v = true) <p>Reset is the collCategoryAssociatedContents collection loaded partially.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_initCategoryAssociatedContents">initCategoryAssociatedContents</a>(boolean $overrideExisting = true) <p>Initializes the collCategoryAssociatedContents collection.</p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryAssociatedContent.html"><abbr title="Thelia\Model\CategoryAssociatedContent">CategoryAssociatedContent</abbr></a>[] </td> <td class="last"> <a href="#method_getCategoryAssociatedContents">getCategoryAssociatedContents</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Gets an array of ChildCategoryAssociatedContent objects which contain a foreign key that references this object.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setCategoryAssociatedContents">setCategoryAssociatedContents</a>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $categoryAssociatedContents, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Sets a collection of CategoryAssociatedContent objects related by a one-to-many relationship to the current object.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_countCategoryAssociatedContents">countCategoryAssociatedContents</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Returns the number of related CategoryAssociatedContent objects.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_addCategoryAssociatedContent">addCategoryAssociatedContent</a>(<a href="../../../Thelia/Model/CategoryAssociatedContent.html"><abbr title="Thelia\Model\CategoryAssociatedContent">CategoryAssociatedContent</abbr></a> $l) <p>Method called to associate a ChildCategoryAssociatedContent object to this object through the ChildCategoryAssociatedContent foreign key attribute.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_removeCategoryAssociatedContent">removeCategoryAssociatedContent</a>(<a href="../../../Thelia/Model/Base/CategoryAssociatedContent.html"><abbr title="Thelia\Model\Base\CategoryAssociatedContent">CategoryAssociatedContent</abbr></a> $categoryAssociatedContent) <p> </p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryAssociatedContent.html"><abbr title="Thelia\Model\CategoryAssociatedContent">CategoryAssociatedContent</abbr></a>[] </td> <td class="last"> <a href="#method_getCategoryAssociatedContentsJoinContent">getCategoryAssociatedContentsJoinContent</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null, string $joinBehavior = Criteria::LEFT_JOIN) <p>If this collection has already been initialized with an identical criteria, it returns the collection.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_clearCategoryI18ns">clearCategoryI18ns</a>() <p>Clears out the collCategoryI18ns collection</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_resetPartialCategoryI18ns">resetPartialCategoryI18ns</a>($v = true) <p>Reset is the collCategoryI18ns collection loaded partially.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_initCategoryI18ns">initCategoryI18ns</a>(boolean $overrideExisting = true) <p>Initializes the collCategoryI18ns collection.</p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a>[] </td> <td class="last"> <a href="#method_getCategoryI18ns">getCategoryI18ns</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Gets an array of ChildCategoryI18n objects which contain a foreign key that references this object.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setCategoryI18ns">setCategoryI18ns</a>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $categoryI18ns, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Sets a collection of CategoryI18n objects related by a one-to-many relationship to the current object.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_countCategoryI18ns">countCategoryI18ns</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Returns the number of related CategoryI18n objects.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_addCategoryI18n">addCategoryI18n</a>(<a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> $l) <p>Method called to associate a ChildCategoryI18n object to this object through the ChildCategoryI18n foreign key attribute.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_removeCategoryI18n">removeCategoryI18n</a>(<a href="../../../Thelia/Model/Base/CategoryI18n.html"><abbr title="Thelia\Model\Base\CategoryI18n">CategoryI18n</abbr></a> $categoryI18n) <p> </p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_clearCategoryVersions">clearCategoryVersions</a>() <p>Clears out the collCategoryVersions collection</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_resetPartialCategoryVersions">resetPartialCategoryVersions</a>($v = true) <p>Reset is the collCategoryVersions collection loaded partially.</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_initCategoryVersions">initCategoryVersions</a>(boolean $overrideExisting = true) <p>Initializes the collCategoryVersions collection.</p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a>[] </td> <td class="last"> <a href="#method_getCategoryVersions">getCategoryVersions</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Gets an array of ChildCategoryVersion objects which contain a foreign key that references this object.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setCategoryVersions">setCategoryVersions</a>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $categoryVersions, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Sets a collection of CategoryVersion objects related by a one-to-many relationship to the current object.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_countCategoryVersions">countCategoryVersions</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Returns the number of related CategoryVersion objects.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_addCategoryVersion">addCategoryVersion</a>(<a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a> $l) <p>Method called to associate a ChildCategoryVersion object to this object through the ChildCategoryVersion foreign key attribute.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_removeCategoryVersion">removeCategoryVersion</a>(<a href="../../../Thelia/Model/Base/CategoryVersion.html"><abbr title="Thelia\Model\Base\CategoryVersion">CategoryVersion</abbr></a> $categoryVersion) <p> </p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_clearProducts">clearProducts</a>() <p>Clears out the collProducts collection</p> </td> <td></td> </tr> <tr> <td class="type"> void </td> <td class="last"> <a href="#method_initProducts">initProducts</a>() <p>Initializes the collProducts collection.</p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Propel\Runtime\Collection\ObjectCollection">ObjectCollection</abbr>|<a href="../../../Thelia/Model/Product.html"><abbr title="Thelia\Model\Product">Product</abbr></a>[] </td> <td class="last"> <a href="#method_getProducts">getProducts</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Gets a collection of ChildProduct objects related by a many-to-many relationship to the current object by way of the product_category cross-reference table.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setProducts">setProducts</a>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $products, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Sets a collection of Product objects related by a many-to-many relationship to the current object by way of the product_category cross-reference table.</p> </td> <td></td> </tr> <tr> <td class="type"> int </td> <td class="last"> <a href="#method_countProducts">countProducts</a>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Gets the number of ChildProduct objects related by a many-to-many relationship to the current object by way of the product_category cross-reference table.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_addProduct">addProduct</a>(<a href="../../../Thelia/Model/Product.html"><abbr title="Thelia\Model\Product">Product</abbr></a> $product) <p>Associate a ChildProduct object to this object through the product_category cross reference table.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_removeProduct">removeProduct</a>(<a href="../../../Thelia/Model/Product.html"><abbr title="Thelia\Model\Product">Product</abbr></a> $product) <p>Remove a ChildProduct object to this object through the product_category cross reference table.</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_clear">clear</a>() <p>Clears the current object and sets all attributes to their default values</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_clearAllReferences">clearAllReferences</a>(boolean $deep = false) <p>Resets all references to other model objects or collections of model objects.</p> </td> <td></td> </tr> <tr> <td class="type"> string </td> <td class="last"> <a href="#method___toString">__toString</a>() <p>Return the string representation of this object</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_setLocale">setLocale</a>(string $locale = &#039;en_US&#039;) <p>Sets the locale for translations</p> </td> <td></td> </tr> <tr> <td class="type"> string </td> <td class="last"> <a href="#method_getLocale">getLocale</a>() <p>Gets the locale for translations</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> </td> <td class="last"> <a href="#method_getTranslation">getTranslation</a>(string $locale = &#039;en_US&#039;, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Returns the current translation for a given locale</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_removeTranslation">removeTranslation</a>(string $locale = &#039;en_US&#039;, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Remove the translation for a given locale</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> </td> <td class="last"> <a href="#method_getCurrentTranslation">getCurrentTranslation</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Returns the current translation</p> </td> <td></td> </tr> <tr> <td class="type"> string </td> <td class="last"> <a href="#method_getTitle">getTitle</a>() <p>Get the [title] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> </td> <td class="last"> <a href="#method_setTitle">setTitle</a>(string $v) <p>Set the value of [title] column.</p> </td> <td></td> </tr> <tr> <td class="type"> string </td> <td class="last"> <a href="#method_getDescription">getDescription</a>() <p>Get the [description] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> </td> <td class="last"> <a href="#method_setDescription">setDescription</a>(string $v) <p>Set the value of [description] column.</p> </td> <td></td> </tr> <tr> <td class="type"> string </td> <td class="last"> <a href="#method_getChapo">getChapo</a>() <p>Get the [chapo] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> </td> <td class="last"> <a href="#method_setChapo">setChapo</a>(string $v) <p>Set the value of [chapo] column.</p> </td> <td></td> </tr> <tr> <td class="type"> string </td> <td class="last"> <a href="#method_getPostscriptum">getPostscriptum</a>() <p>Get the [postscriptum] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> </td> <td class="last"> <a href="#method_setPostscriptum">setPostscriptum</a>(string $v) <p>Set the value of [postscriptum] column.</p> </td> <td></td> </tr> <tr> <td class="type"> string </td> <td class="last"> <a href="#method_getMetaTitle">getMetaTitle</a>() <p>Get the [meta_title] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> </td> <td class="last"> <a href="#method_setMetaTitle">setMetaTitle</a>(string $v) <p>Set the value of [meta_title] column.</p> </td> <td></td> </tr> <tr> <td class="type"> string </td> <td class="last"> <a href="#method_getMetaDescription">getMetaDescription</a>() <p>Get the [meta_description] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> </td> <td class="last"> <a href="#method_setMetaDescription">setMetaDescription</a>(string $v) <p>Set the value of [meta_description] column.</p> </td> <td></td> </tr> <tr> <td class="type"> string </td> <td class="last"> <a href="#method_getMetaKeywords">getMetaKeywords</a>() <p>Get the [meta_keywords] column value.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> </td> <td class="last"> <a href="#method_setMetaKeywords">setMetaKeywords</a>(string $v) <p>Set the value of [meta_keywords] column.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_enforceVersioning">enforceVersioning</a>() <p>Enforce a new Version of this object upon next save.</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_isVersioningNecessary">isVersioningNecessary</a>($con = null) <p>Checks whether the current state must be recorded as a version</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a> </td> <td class="last"> <a href="#method_addVersion">addVersion</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Creates a version of the current object and saves it.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_toVersion">toVersion</a>(integer $versionNumber, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Sets the properties of the current object to the value they had at a specific version</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_populateFromVersion">populateFromVersion</a>(<a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a> $version, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null, array $loadedObjects = array()) <p>Sets the properties of the current object to the value they had at a specific version</p> </td> <td></td> </tr> <tr> <td class="type"> integer </td> <td class="last"> <a href="#method_getLastVersionNumber">getLastVersionNumber</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Gets the latest persisted version number for the current object</p> </td> <td></td> </tr> <tr> <td class="type"> Boolean </td> <td class="last"> <a href="#method_isLastVersion">isLastVersion</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Checks whether the current object is the latest one</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a> </td> <td class="last"> <a href="#method_getOneVersion">getOneVersion</a>(integer $versionNumber, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Retrieves a version object for this entity and a version number</p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Propel\Runtime\Collection\ObjectCollection">ObjectCollection</abbr> </td> <td class="last"> <a href="#method_getAllVersions">getAllVersions</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Gets all the versions of this object, in incremental order</p> </td> <td></td> </tr> <tr> <td class="type"> array </td> <td class="last"> <a href="#method_compareVersion">compareVersion</a>(integer $versionNumber, string $keys = &#039;columns&#039;, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null, array $ignoredColumns = array()) <p>Compares the current object with another of its version.</p> </td> <td></td> </tr> <tr> <td class="type"> array </td> <td class="last"> <a href="#method_compareVersions">compareVersions</a>(integer $fromVersionNumber, integer $toVersionNumber, string $keys = &#039;columns&#039;, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null, array $ignoredColumns = array()) <p>Compares two versions of the current object.</p> </td> <td></td> </tr> <tr> <td class="type"> <abbr title="Thelia\Model\Base\PropelCollection">PropelCollection</abbr>|array </td> <td class="last"> <a href="#method_getLastVersions">getLastVersions</a>($number = 10, $criteria = null, $con = null) <p>retrieve the last $number versions.</p> </td> <td></td> </tr> <tr> <td class="type"> <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> </td> <td class="last"> <a href="#method_keepUpdateDateUnchanged">keepUpdateDateUnchanged</a>() <p>Mark the current object so that the update date doesn't get updated during next save</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_preSave">preSave</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run before persisting the object</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_postSave">postSave</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run after persisting the object</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_preInsert">preInsert</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run before inserting to database</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_postInsert">postInsert</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run after inserting to database</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_preUpdate">preUpdate</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run before updating the object in database</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_postUpdate">postUpdate</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run after updating the object in database</p> </td> <td></td> </tr> <tr> <td class="type"> boolean </td> <td class="last"> <a href="#method_preDelete">preDelete</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run before deleting the object in database</p> </td> <td></td> </tr> <tr> <td class="type"> </td> <td class="last"> <a href="#method_postDelete">postDelete</a>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null) <p>Code to be run after deleting the object in database</p> </td> <td></td> </tr> <tr> <td class="type"> array|string </td> <td class="last"> <a href="#method___call">__call</a>(string $name, mixed $params) <p>Derived method to catches calls to undefined methods.</p> </td> <td></td> </tr> </table> <h2>Details</h2> <h3 id="method_applyDefaultValues"> <div class="location">at line 245</div> <code> public <strong>applyDefaultValues</strong>()</code> </h3> <div class="details"> <p>Applies default values to this object.</p> <p>This method should be called from the object's constructor (or equivalent initialization method).</p> <div class="tags"> <h4>See also</h4> <table> <tr> <td>__construct()</td> <td></td> </tr> </table> </div> </div> <h3 id="method___construct"> <div class="location">at line 254</div> <code> public <strong>__construct</strong>()</code> </h3> <div class="details"> <p>Initializes internal state of Thelia\Model\Base\Category object.</p> <p> </p> <div class="tags"> <h4>See also</h4> <table> <tr> <td>applyDefaults()</td> <td></td> </tr> </table> </div> </div> <h3 id="method_isModified"> <div class="location">at line 264</div> <code> public boolean <strong>isModified</strong>()</code> </h3> <div class="details"> <p>Returns whether the object has been modified.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td>True if the object has been modified.</td> </tr> </table> </div> </div> <h3 id="method_isColumnModified"> <div class="location">at line 275</div> <code> public boolean <strong>isColumnModified</strong>(string $col)</code> </h3> <div class="details"> <p>Has specified column been modified?</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$col</td> <td>column fully qualified name (TableMap::TYPE<em>COLNAME), e.g. Book::AUTHOR</em>ID</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td>True if $col has been modified.</td> </tr> </table> </div> </div> <h3 id="method_getModifiedColumns"> <div class="location">at line 284</div> <code> public array <strong>getModifiedColumns</strong>()</code> </h3> <div class="details"> <p>Get the columns that have been modified in this object.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>array</td> <td>A unique list of the modified column names for this object.</td> </tr> </table> </div> </div> <h3 id="method_isNew"> <div class="location">at line 296</div> <code> public boolean <strong>isNew</strong>()</code> </h3> <div class="details"> <p>Returns whether the object has ever been saved.</p> <p>This will be false, if the object was retrieved from storage or was created and then saved.</p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td>true, if the object has never been persisted.</td> </tr> </table> </div> </div> <h3 id="method_setNew"> <div class="location">at line 307</div> <code> public <strong>setNew</strong>(boolean $b)</code> </h3> <div class="details"> <p>Setter for the isNew attribute.</p> <p>This method will be called by Propel-generated children and objects.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>boolean</td> <td>$b</td> <td>the state of the object.</td> </tr> </table> </div> </div> <h3 id="method_isDeleted"> <div class="location">at line 316</div> <code> public boolean <strong>isDeleted</strong>()</code> </h3> <div class="details"> <p>Whether this object has been deleted.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td>The deleted state of this object.</td> </tr> </table> </div> </div> <h3 id="method_setDeleted"> <div class="location">at line 326</div> <code> public void <strong>setDeleted</strong>(boolean $b)</code> </h3> <div class="details"> <p>Specify whether this object has been deleted.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>boolean</td> <td>$b</td> <td>The deleted state of this object.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_resetModified"> <div class="location">at line 336</div> <code> public void <strong>resetModified</strong>(string $col = null)</code> </h3> <div class="details"> <p>Sets the modified state for the object to be false.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$col</td> <td>If supplied, only the specified column is reset.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_equals"> <div class="location">at line 355</div> <code> public boolean <strong>equals</strong>(mixed $obj)</code> </h3> <div class="details"> <p>Compares this with another <code>Category</code> instance.</p> <p>If <code>obj</code> is an instance of <code>Category</code>, delegates to <code>equals(Category)</code>. Otherwise, returns <code>false</code>.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>mixed</td> <td>$obj</td> <td>The object to compare to.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td>Whether equal to the object specified.</td> </tr> </table> </div> </div> <h3 id="method_hashCode"> <div class="location">at line 380</div> <code> public int <strong>hashCode</strong>()</code> </h3> <div class="details"> <p>If the primary key is not null, return the hashcode of the primary key.</p> <p>Otherwise, return the hash code of the object.</p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>int</td> <td>Hashcode</td> </tr> </table> </div> </div> <h3 id="method_getVirtualColumns"> <div class="location">at line 394</div> <code> public array <strong>getVirtualColumns</strong>()</code> </h3> <div class="details"> <p>Get the associative array of the virtual columns in this object</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>array</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_hasVirtualColumn"> <div class="location">at line 405</div> <code> public boolean <strong>hasVirtualColumn</strong>(string $name)</code> </h3> <div class="details"> <p>Checks the existence of a virtual column in this object</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$name</td> <td>The virtual column name</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getVirtualColumn"> <div class="location">at line 418</div> <code> public mixed <strong>getVirtualColumn</strong>(string $name)</code> </h3> <div class="details"> <p>Get the value of a virtual column in this object</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$name</td> <td>The virtual column name</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>mixed</td> <td> </td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setVirtualColumn"> <div class="location">at line 435</div> <code> public <a href="../../../Thelia/Model/Base/Category.html"><abbr title="Thelia\Model\Base\Category">Category</abbr></a> <strong>setVirtualColumn</strong>(string $name, mixed $value)</code> </h3> <div class="details"> <p>Set the value of a virtual column in this object</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$name</td> <td>The virtual column name</td> </tr> <tr> <td>mixed</td> <td>$value</td> <td>The value to give to the virtual column</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Base/Category.html"><abbr title="Thelia\Model\Base\Category">Category</abbr></a></td> <td>The current object, for fluid interface</td> </tr> </table> </div> </div> <h3 id="method_importFrom"> <div class="location">at line 467</div> <code> public <a href="../../../Thelia/Model/Base/Category.html"><abbr title="Thelia\Model\Base\Category">Category</abbr></a> <strong>importFrom</strong>(mixed $parser, string $data)</code> </h3> <div class="details"> <p>Populate the current object from a string, using a given parser format <code> $book = new Book(); $book->importFrom('JSON', '{"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}'); </code></p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>mixed</td> <td>$parser</td> <td>A AbstractParser instance, or a format name ('XML', 'YAML', 'JSON', 'CSV')</td> </tr> <tr> <td>string</td> <td>$data</td> <td>The source data to import from</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Base/Category.html"><abbr title="Thelia\Model\Base\Category">Category</abbr></a></td> <td>The current object, for fluid interface</td> </tr> </table> </div> </div> <h3 id="method_exportTo"> <div class="location">at line 490</div> <code> public string <strong>exportTo</strong>(mixed $parser, boolean $includeLazyLoadColumns = true)</code> </h3> <div class="details"> <p>Export the current object properties to a string, using a given parser format <code> $book = BookQuery::create()->findPk(9012); echo $book->exportTo('JSON'); => {"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}'); </code></p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>mixed</td> <td>$parser</td> <td>A AbstractParser instance, or a format name ('XML', 'YAML', 'JSON', 'CSV')</td> </tr> <tr> <td>boolean</td> <td>$includeLazyLoadColumns</td> <td>(optional) Whether to include lazy load(ed) columns. Defaults to TRUE.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>string</td> <td>The exported data</td> </tr> </table> </div> </div> <h3 id="method___sleep"> <div class="location">at line 503</div> <code> public <strong>__sleep</strong>()</code> </h3> <div class="details"> <p>Clean up internal collections prior to serializing Avoids recursive loops that turn into segmentation faults when serializing</p> <p> </p> <div class="tags"> </div> </div> <h3 id="method_getId"> <div class="location">at line 515</div> <code> public int <strong>getId</strong>()</code> </h3> <div class="details"> <p>Get the [id] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>int</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getParent"> <div class="location">at line 525</div> <code> public int <strong>getParent</strong>()</code> </h3> <div class="details"> <p>Get the [parent] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>int</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getVisible"> <div class="location">at line 535</div> <code> public int <strong>getVisible</strong>()</code> </h3> <div class="details"> <p>Get the [visible] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>int</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getPosition"> <div class="location">at line 545</div> <code> public int <strong>getPosition</strong>()</code> </h3> <div class="details"> <p>Get the [position] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>int</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getCreatedAt"> <div class="location">at line 561</div> <code> public mixed <strong>getCreatedAt</strong>(string $format = NULL)</code> </h3> <div class="details"> <p>Get the [optionally formatted] temporal [created_at] column value.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$format</td> <td>The date/time format string (either date()-style or strftime()-style). If format is NULL, then the raw \DateTime object will be returned.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>mixed</td> <td>Formatted date/time value as string or \DateTime object (if format is NULL), NULL if column is NULL, and 0 if column value is 0000-00-00 00:00:00</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td><ul> <li>if unable to parse/validate the date/time value.</li> </ul> </td> </tr> </table> </div> </div> <h3 id="method_getUpdatedAt"> <div class="location">at line 581</div> <code> public mixed <strong>getUpdatedAt</strong>(string $format = NULL)</code> </h3> <div class="details"> <p>Get the [optionally formatted] temporal [updated_at] column value.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$format</td> <td>The date/time format string (either date()-style or strftime()-style). If format is NULL, then the raw \DateTime object will be returned.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>mixed</td> <td>Formatted date/time value as string or \DateTime object (if format is NULL), NULL if column is NULL, and 0 if column value is 0000-00-00 00:00:00</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td><ul> <li>if unable to parse/validate the date/time value.</li> </ul> </td> </tr> </table> </div> </div> <h3 id="method_getVersion"> <div class="location">at line 595</div> <code> public int <strong>getVersion</strong>()</code> </h3> <div class="details"> <p>Get the [version] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>int</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getVersionCreatedAt"> <div class="location">at line 611</div> <code> public mixed <strong>getVersionCreatedAt</strong>(string $format = NULL)</code> </h3> <div class="details"> <p>Get the [optionally formatted] temporal [version<em>created</em>at] column value.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$format</td> <td>The date/time format string (either date()-style or strftime()-style). If format is NULL, then the raw \DateTime object will be returned.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>mixed</td> <td>Formatted date/time value as string or \DateTime object (if format is NULL), NULL if column is NULL, and 0 if column value is 0000-00-00 00:00:00</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td><ul> <li>if unable to parse/validate the date/time value.</li> </ul> </td> </tr> </table> </div> </div> <h3 id="method_getVersionCreatedBy"> <div class="location">at line 625</div> <code> public string <strong>getVersionCreatedBy</strong>()</code> </h3> <div class="details"> <p>Get the [version<em>created</em>by] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>string</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setId"> <div class="location">at line 636</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setId</strong>(int $v)</code> </h3> <div class="details"> <p>Set the value of [id] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>int</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_setParent"> <div class="location">at line 656</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setParent</strong>(int $v)</code> </h3> <div class="details"> <p>Set the value of [parent] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>int</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_setVisible"> <div class="location">at line 676</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setVisible</strong>(int $v)</code> </h3> <div class="details"> <p>Set the value of [visible] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>int</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_setPosition"> <div class="location">at line 696</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setPosition</strong>(int $v)</code> </h3> <div class="details"> <p>Set the value of [position] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>int</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_setCreatedAt"> <div class="location">at line 717</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setCreatedAt</strong>(mixed $v)</code> </h3> <div class="details"> <p>Sets the value of [created_at] column to a normalized version of the date/time value specified.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>mixed</td> <td>$v</td> <td>string, integer (timestamp), or \DateTime value. Empty strings are treated as NULL.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_setUpdatedAt"> <div class="location">at line 737</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setUpdatedAt</strong>(mixed $v)</code> </h3> <div class="details"> <p>Sets the value of [updated_at] column to a normalized version of the date/time value specified.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>mixed</td> <td>$v</td> <td>string, integer (timestamp), or \DateTime value. Empty strings are treated as NULL.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_setVersion"> <div class="location">at line 756</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setVersion</strong>(int $v)</code> </h3> <div class="details"> <p>Set the value of [version] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>int</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_setVersionCreatedAt"> <div class="location">at line 777</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setVersionCreatedAt</strong>(mixed $v)</code> </h3> <div class="details"> <p>Sets the value of [version<em>created</em>at] column to a normalized version of the date/time value specified.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>mixed</td> <td>$v</td> <td>string, integer (timestamp), or \DateTime value. Empty strings are treated as NULL.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_setVersionCreatedBy"> <div class="location">at line 796</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setVersionCreatedBy</strong>(string $v)</code> </h3> <div class="details"> <p>Set the value of [version<em>created</em>by] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_hasOnlyDefaultValues"> <div class="location">at line 818</div> <code> public boolean <strong>hasOnlyDefaultValues</strong>()</code> </h3> <div class="details"> <p>Indicates whether the columns in this object are only set to default values.</p> <p>This method can be used in conjunction with isModified() to indicate whether an object is both modified <em>and</em> has some values set which are non-default.</p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td>Whether the columns in this object are only been set with default values.</td> </tr> </table> </div> </div> <h3 id="method_hydrate"> <div class="location">at line 846</div> <code> public int <strong>hydrate</strong>(array $row, int $startcol, boolean $rehydrate = false, string $indexType = TableMap::TYPE_NUM)</code> </h3> <div class="details"> <p>Hydrates (populates) the object variables with values from the database resultset.</p> <p>An offset (0-based "start column") is specified so that objects can be hydrated with a subset of the columns in the resultset rows. This is needed, for example, for results of JOIN queries where the resultset row includes columns from two or more tables.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>array</td> <td>$row</td> <td>The row returned by DataFetcher->fetch().</td> </tr> <tr> <td>int</td> <td>$startcol</td> <td>0-based offset column which indicates which restultset column to start with.</td> </tr> <tr> <td>boolean</td> <td>$rehydrate</td> <td>Whether this object is being re-hydrated from the database.</td> </tr> <tr> <td>string</td> <td>$indexType</td> <td>The index type of $row. Mostly DataFetcher->getIndexType(). One of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE_NUM.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>int</td> <td>next starting column</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td><ul> <li>Any caught Exception will be rewrapped as a PropelException.</li> </ul> </td> </tr> </table> </div> </div> <h3 id="method_ensureConsistency"> <div class="location">at line 913</div> <code> public <strong>ensureConsistency</strong>()</code> </h3> <div class="details"> <p>Checks and repairs the internal consistency of the object.</p> <p>This method is executed after an already-instantiated object is re-hydrated from the database. It exists to check any foreign keys to make sure that the objects related to the current object are correct based on foreign key.</p> <p>You can override this method in the stub class, but you should always invoke the base method from the overridden method (i.e. parent::ensureConsistency()), in case your model changes.</p> <div class="tags"> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_reload"> <div class="location">at line 927</div> <code> public void <strong>reload</strong>(boolean $deep = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Reloads this object from datastore based on primary key and (optionally) resets all associated objects.</p> <p>This will only work if the object has been saved and has a valid primary key set.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>boolean</td> <td>$deep</td> <td>(optional) Whether to also de-associated any related objects.</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>(optional) The ConnectionInterface connection to use.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td><ul> <li>if this object is deleted, unsaved or doesn't have pk match in db</li> </ul> </td> </tr> </table> </div> </div> <h3 id="method_delete"> <div class="location">at line 979</div> <code> public void <strong>delete</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Removes this object from datastore and sets delete attribute.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> <h4>See also</h4> <table> <tr> <td>Category::setDeleted()</td> <td></td> </tr> <tr> <td>Category::isDeleted()</td> <td></td> </tr> </table> </div> </div> <h3 id="method_save"> <div class="location">at line 1021</div> <code> public int <strong>save</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Persists this object to the database.</p> <p>If the object is new, it inserts it; otherwise an update is performed. All modified related objects will also be persisted in the doSave() method. This method wraps all precipitate database operations in a single transaction.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>int</td> <td>The number of rows affected by this insert/update and any referring fk objects' save() operations.</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> <h4>See also</h4> <table> <tr> <td>doSave()</td> <td></td> </tr> </table> </div> </div> <h3 id="method_getByName"> <div class="location">at line 1376</div> <code> public mixed <strong>getByName</strong>(string $name, string $type = TableMap::TYPE_PHPNAME)</code> </h3> <div class="details"> <p>Retrieves a field from the object by name passed in as a string.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$name</td> <td>name</td> </tr> <tr> <td>string</td> <td>$type</td> <td>The type of fieldname the $name is of: one of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE<em>NUM. Defaults to TableMap::TYPE</em>PHPNAME.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>mixed</td> <td>Value of field.</td> </tr> </table> </div> </div> <h3 id="method_getByPosition"> <div class="location">at line 1391</div> <code> public mixed <strong>getByPosition</strong>(int $pos)</code> </h3> <div class="details"> <p>Retrieves a field from the object by Position as specified in the xml schema.</p> <p>Zero-based.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>int</td> <td>$pos</td> <td>position in xml schema</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>mixed</td> <td>Value of field at $pos</td> </tr> </table> </div> </div> <h3 id="method_toArray"> <div class="location">at line 1442</div> <code> public array <strong>toArray</strong>(string $keyType = TableMap::TYPE_PHPNAME, boolean $includeLazyLoadColumns = true, array $alreadyDumpedObjects = array(), boolean $includeForeignObjects = false)</code> </h3> <div class="details"> <p>Exports the object as an array.</p> <p>You can specify the key type of the array by passing one of the class type constants.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$keyType</td> <td>(optional) One of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME, TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE<em>NUM. Defaults to TableMap::TYPE</em>PHPNAME.</td> </tr> <tr> <td>boolean</td> <td>$includeLazyLoadColumns</td> <td>(optional) Whether to include lazy loaded columns. Defaults to TRUE.</td> </tr> <tr> <td>array</td> <td>$alreadyDumpedObjects</td> <td>List of objects to skip to avoid recursion</td> </tr> <tr> <td>boolean</td> <td>$includeForeignObjects</td> <td>(optional) Whether to include hydrated related objects. Default to FALSE.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>array</td> <td>an associative array containing the field names (as keys) and field values</td> </tr> </table> </div> </div> <h3 id="method_setByName"> <div class="location">at line 1500</div> <code> public void <strong>setByName</strong>(string $name, mixed $value, string $type = TableMap::TYPE_PHPNAME)</code> </h3> <div class="details"> <p>Sets a field from the object by name passed in as a string.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$name</td> <td> </td> </tr> <tr> <td>mixed</td> <td>$value</td> <td>field value</td> </tr> <tr> <td>string</td> <td>$type</td> <td>The type of fieldname the $name is of: one of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE<em>NUM. Defaults to TableMap::TYPE</em>PHPNAME.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setByPosition"> <div class="location">at line 1515</div> <code> public void <strong>setByPosition</strong>(int $pos, mixed $value)</code> </h3> <div class="details"> <p>Sets a field from the object by Position as specified in the xml schema.</p> <p>Zero-based.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>int</td> <td>$pos</td> <td>position in xml schema</td> </tr> <tr> <td>mixed</td> <td>$value</td> <td>field value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_fromArray"> <div class="location">at line 1565</div> <code> public void <strong>fromArray</strong>(array $arr, string $keyType = TableMap::TYPE_PHPNAME)</code> </h3> <div class="details"> <p>Populates the object using an array.</p> <p>This is particularly useful when populating an object from one of the request arrays (e.g. $_POST). This method goes through the column names, checking to see whether a matching key exists in populated array. If so the setByName() method is called for that column.</p> <p>You can specify the key type of the array by additionally passing one of the class type constants TableMap::TYPE<em>PHPNAME, TableMap::TYPE</em>STUDLYPHPNAME, TableMap::TYPE<em>COLNAME, TableMap::TYPE</em>FIELDNAME, TableMap::TYPE<em>NUM. The default key type is the column's TableMap::TYPE</em>PHPNAME.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>array</td> <td>$arr</td> <td>An array to populate the object from.</td> </tr> <tr> <td>string</td> <td>$keyType</td> <td>The type of keys the array uses.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_buildCriteria"> <div class="location">at line 1585</div> <code> public <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> <strong>buildCriteria</strong>()</code> </h3> <div class="details"> <p>Build a Criteria object containing the values of all modified columns in this object.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>The Criteria object containing all modified values.</td> </tr> </table> </div> </div> <h3 id="method_buildPkeyCriteria"> <div class="location">at line 1609</div> <code> public <abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> <strong>buildPkeyCriteria</strong>()</code> </h3> <div class="details"> <p>Builds a Criteria object containing the primary key for this object.</p> <p>Unlike buildCriteria() this method includes the primary key values regardless of whether or not they have been modified.</p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>The Criteria object containing value(s) for primary key(s).</td> </tr> </table> </div> </div> <h3 id="method_getPrimaryKey"> <div class="location">at line 1621</div> <code> public int <strong>getPrimaryKey</strong>()</code> </h3> <div class="details"> <p>Returns the primary key for this object (row).</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>int</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setPrimaryKey"> <div class="location">at line 1632</div> <code> public void <strong>setPrimaryKey</strong>(int $key)</code> </h3> <div class="details"> <p>Generic method to set the primary key (id column).</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>int</td> <td>$key</td> <td>Primary key.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_isPrimaryKeyNull"> <div class="location">at line 1641</div> <code> public boolean <strong>isPrimaryKeyNull</strong>()</code> </h3> <div class="details"> <p>Returns true if the primary key for this object is null.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_copyInto"> <div class="location">at line 1657</div> <code> public <strong>copyInto</strong>(object $copyObj, boolean $deepCopy = false, boolean $makeNew = true)</code> </h3> <div class="details"> <p>Sets contents of passed object to values from current object.</p> <p>If desired, this method can also make copies of all associated (fkey referrers) objects.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>object</td> <td>$copyObj</td> <td>An object of \Thelia\Model\Category (or compatible) type.</td> </tr> <tr> <td>boolean</td> <td>$deepCopy</td> <td>Whether to also copy all rows that refer (by fkey) to the current row.</td> </tr> <tr> <td>boolean</td> <td>$makeNew</td> <td>Whether to reset autoincrement PKs and make the object new.</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_copy"> <div class="location">at line 1729</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>copy</strong>(boolean $deepCopy = false)</code> </h3> <div class="details"> <p>Makes a copy of this object that will be inserted as a new row in table when saved.</p> <p>It creates a new object filling in the simple attributes, but skipping any primary keys that are defined for the table.</p> <p>If desired, this method can also make copies of all associated (fkey referrers) objects.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>boolean</td> <td>$deepCopy</td> <td>Whether to also copy all rows that refer (by fkey) to the current row.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>Clone of current object.</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_initRelation"> <div class="location">at line 1747</div> <code> public void <strong>initRelation</strong>(string $relationName)</code> </h3> <div class="details"> <p>Initializes a collection based on the name of a relation.</p> <p>Avoids crafting an 'init[$relationName]s' method name that wouldn't work when StandardEnglishPluralizer is used.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$relationName</td> <td>The name of the relation to initialize</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_clearProductCategories"> <div class="location">at line 1778</div> <code> public void <strong>clearProductCategories</strong>()</code> </h3> <div class="details"> <p>Clears out the collProductCategories collection</p> <p>This does not modify the database; however, it will remove any associated objects, causing them to be refetched by subsequent calls to accessor method.</p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> <h4>See also</h4> <table> <tr> <td>addProductCategories()</td> <td></td> </tr> </table> </div> </div> <h3 id="method_resetPartialProductCategories"> <div class="location">at line 1786</div> <code> public <strong>resetPartialProductCategories</strong>($v = true)</code> </h3> <div class="details"> <p>Reset is the collProductCategories collection loaded partially.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td></td> <td>$v</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_initProductCategories"> <div class="location">at line 1803</div> <code> public void <strong>initProductCategories</strong>(boolean $overrideExisting = true)</code> </h3> <div class="details"> <p>Initializes the collProductCategories collection.</p> <p>By default this just sets the collProductCategories collection to an empty array (like clearcollProductCategories()); however, you may wish to override this method in your stub class to provide setting appropriate to your application -- for example, setting the initial array to the values stored in database.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>boolean</td> <td>$overrideExisting</td> <td>If set to true, the method call initializes the collection even if it is not empty</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getProductCategories"> <div class="location">at line 1826</div> <code> public <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/ProductCategory.html"><abbr title="Thelia\Model\ProductCategory">ProductCategory</abbr></a>[] <strong>getProductCategories</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Gets an array of ChildProductCategory objects which contain a foreign key that references this object.</p> <p>If the $criteria is not null, it is used to always fetch the results from the database. Otherwise the results are fetched from the database the first time, then cached. Next time the same method is called without $criteria, the cached collection is returned. If this ChildCategory is new, it will return an empty collection or the current collection; the criteria is ignored on a new object.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td>optional Criteria object to narrow the query</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/ProductCategory.html"><abbr title="Thelia\Model\ProductCategory">ProductCategory</abbr></a>[]</td> <td>List of ChildProductCategory objects</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setProductCategories"> <div class="location">at line 1882</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setProductCategories</strong>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $productCategories, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Sets a collection of ProductCategory objects related by a one-to-many relationship to the current object.</p> <p>It will also schedule objects for deletion based on a diff between old objects (aka persisted) and new objects from the given Propel collection.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr></td> <td>$productCategories</td> <td>A Propel collection.</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>Optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_countProductCategories"> <div class="location">at line 1916</div> <code> public int <strong>countProductCategories</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Returns the number of related ProductCategory objects.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td> </td> </tr> <tr> <td>boolean</td> <td>$distinct</td> <td> </td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>int</td> <td>Count of related ProductCategory objects.</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_addProductCategory"> <div class="location">at line 1948</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>addProductCategory</strong>(<a href="../../../Thelia/Model/ProductCategory.html"><abbr title="Thelia\Model\ProductCategory">ProductCategory</abbr></a> $l)</code> </h3> <div class="details"> <p>Method called to associate a ChildProductCategory object to this object through the ChildProductCategory foreign key attribute.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/ProductCategory.html"><abbr title="Thelia\Model\ProductCategory">ProductCategory</abbr></a></td> <td>$l</td> <td>ChildProductCategory</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_removeProductCategory"> <div class="location">at line 1975</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>removeProductCategory</strong>(<a href="../../../Thelia/Model/Base/ProductCategory.html"><abbr title="Thelia\Model\Base\ProductCategory">ProductCategory</abbr></a> $productCategory)</code> </h3> <div class="details"> <p> </p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/Base/ProductCategory.html"><abbr title="Thelia\Model\Base\ProductCategory">ProductCategory</abbr></a></td> <td>$productCategory</td> <td>The productCategory object to remove.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_getProductCategoriesJoinProduct"> <div class="location">at line 2007</div> <code> public <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/ProductCategory.html"><abbr title="Thelia\Model\ProductCategory">ProductCategory</abbr></a>[] <strong>getProductCategoriesJoinProduct</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null, string $joinBehavior = Criteria::LEFT_JOIN)</code> </h3> <div class="details"> <p>If this collection has already been initialized with an identical criteria, it returns the collection.</p> <p>Otherwise if this Category is new, it will return an empty collection; or if this Category has previously been saved, it will retrieve related ProductCategories from storage.</p> <p>This method is protected by default in order to keep the public api reasonable. You can provide public methods for those you actually need in Category.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td>optional Criteria object to narrow the query</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>optional connection object</td> </tr> <tr> <td>string</td> <td>$joinBehavior</td> <td>optional join type to use (defaults to Criteria::LEFT_JOIN)</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/ProductCategory.html"><abbr title="Thelia\Model\ProductCategory">ProductCategory</abbr></a>[]</td> <td>List of ChildProductCategory objects</td> </tr> </table> </div> </div> <h3 id="method_clearCategoryImages"> <div class="location">at line 2024</div> <code> public void <strong>clearCategoryImages</strong>()</code> </h3> <div class="details"> <p>Clears out the collCategoryImages collection</p> <p>This does not modify the database; however, it will remove any associated objects, causing them to be refetched by subsequent calls to accessor method.</p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> <h4>See also</h4> <table> <tr> <td>addCategoryImages()</td> <td></td> </tr> </table> </div> </div> <h3 id="method_resetPartialCategoryImages"> <div class="location">at line 2032</div> <code> public <strong>resetPartialCategoryImages</strong>($v = true)</code> </h3> <div class="details"> <p>Reset is the collCategoryImages collection loaded partially.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td></td> <td>$v</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_initCategoryImages"> <div class="location">at line 2049</div> <code> public void <strong>initCategoryImages</strong>(boolean $overrideExisting = true)</code> </h3> <div class="details"> <p>Initializes the collCategoryImages collection.</p> <p>By default this just sets the collCategoryImages collection to an empty array (like clearcollCategoryImages()); however, you may wish to override this method in your stub class to provide setting appropriate to your application -- for example, setting the initial array to the values stored in database.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>boolean</td> <td>$overrideExisting</td> <td>If set to true, the method call initializes the collection even if it is not empty</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getCategoryImages"> <div class="location">at line 2072</div> <code> public <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryImage.html"><abbr title="Thelia\Model\CategoryImage">CategoryImage</abbr></a>[] <strong>getCategoryImages</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Gets an array of ChildCategoryImage objects which contain a foreign key that references this object.</p> <p>If the $criteria is not null, it is used to always fetch the results from the database. Otherwise the results are fetched from the database the first time, then cached. Next time the same method is called without $criteria, the cached collection is returned. If this ChildCategory is new, it will return an empty collection or the current collection; the criteria is ignored on a new object.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td>optional Criteria object to narrow the query</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryImage.html"><abbr title="Thelia\Model\CategoryImage">CategoryImage</abbr></a>[]</td> <td>List of ChildCategoryImage objects</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setCategoryImages"> <div class="location">at line 2128</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setCategoryImages</strong>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $categoryImages, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Sets a collection of CategoryImage objects related by a one-to-many relationship to the current object.</p> <p>It will also schedule objects for deletion based on a diff between old objects (aka persisted) and new objects from the given Propel collection.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr></td> <td>$categoryImages</td> <td>A Propel collection.</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>Optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_countCategoryImages"> <div class="location">at line 2159</div> <code> public int <strong>countCategoryImages</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Returns the number of related CategoryImage objects.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td> </td> </tr> <tr> <td>boolean</td> <td>$distinct</td> <td> </td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>int</td> <td>Count of related CategoryImage objects.</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_addCategoryImage"> <div class="location">at line 2191</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>addCategoryImage</strong>(<a href="../../../Thelia/Model/CategoryImage.html"><abbr title="Thelia\Model\CategoryImage">CategoryImage</abbr></a> $l)</code> </h3> <div class="details"> <p>Method called to associate a ChildCategoryImage object to this object through the ChildCategoryImage foreign key attribute.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryImage.html"><abbr title="Thelia\Model\CategoryImage">CategoryImage</abbr></a></td> <td>$l</td> <td>ChildCategoryImage</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_removeCategoryImage"> <div class="location">at line 2218</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>removeCategoryImage</strong>(<a href="../../../Thelia/Model/Base/CategoryImage.html"><abbr title="Thelia\Model\Base\CategoryImage">CategoryImage</abbr></a> $categoryImage)</code> </h3> <div class="details"> <p> </p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/Base/CategoryImage.html"><abbr title="Thelia\Model\Base\CategoryImage">CategoryImage</abbr></a></td> <td>$categoryImage</td> <td>The categoryImage object to remove.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_clearCategoryDocuments"> <div class="location">at line 2242</div> <code> public void <strong>clearCategoryDocuments</strong>()</code> </h3> <div class="details"> <p>Clears out the collCategoryDocuments collection</p> <p>This does not modify the database; however, it will remove any associated objects, causing them to be refetched by subsequent calls to accessor method.</p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> <h4>See also</h4> <table> <tr> <td>addCategoryDocuments()</td> <td></td> </tr> </table> </div> </div> <h3 id="method_resetPartialCategoryDocuments"> <div class="location">at line 2250</div> <code> public <strong>resetPartialCategoryDocuments</strong>($v = true)</code> </h3> <div class="details"> <p>Reset is the collCategoryDocuments collection loaded partially.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td></td> <td>$v</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_initCategoryDocuments"> <div class="location">at line 2267</div> <code> public void <strong>initCategoryDocuments</strong>(boolean $overrideExisting = true)</code> </h3> <div class="details"> <p>Initializes the collCategoryDocuments collection.</p> <p>By default this just sets the collCategoryDocuments collection to an empty array (like clearcollCategoryDocuments()); however, you may wish to override this method in your stub class to provide setting appropriate to your application -- for example, setting the initial array to the values stored in database.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>boolean</td> <td>$overrideExisting</td> <td>If set to true, the method call initializes the collection even if it is not empty</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getCategoryDocuments"> <div class="location">at line 2290</div> <code> public <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryDocument.html"><abbr title="Thelia\Model\CategoryDocument">CategoryDocument</abbr></a>[] <strong>getCategoryDocuments</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Gets an array of ChildCategoryDocument objects which contain a foreign key that references this object.</p> <p>If the $criteria is not null, it is used to always fetch the results from the database. Otherwise the results are fetched from the database the first time, then cached. Next time the same method is called without $criteria, the cached collection is returned. If this ChildCategory is new, it will return an empty collection or the current collection; the criteria is ignored on a new object.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td>optional Criteria object to narrow the query</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryDocument.html"><abbr title="Thelia\Model\CategoryDocument">CategoryDocument</abbr></a>[]</td> <td>List of ChildCategoryDocument objects</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setCategoryDocuments"> <div class="location">at line 2346</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setCategoryDocuments</strong>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $categoryDocuments, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Sets a collection of CategoryDocument objects related by a one-to-many relationship to the current object.</p> <p>It will also schedule objects for deletion based on a diff between old objects (aka persisted) and new objects from the given Propel collection.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr></td> <td>$categoryDocuments</td> <td>A Propel collection.</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>Optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_countCategoryDocuments"> <div class="location">at line 2377</div> <code> public int <strong>countCategoryDocuments</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Returns the number of related CategoryDocument objects.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td> </td> </tr> <tr> <td>boolean</td> <td>$distinct</td> <td> </td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>int</td> <td>Count of related CategoryDocument objects.</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_addCategoryDocument"> <div class="location">at line 2409</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>addCategoryDocument</strong>(<a href="../../../Thelia/Model/CategoryDocument.html"><abbr title="Thelia\Model\CategoryDocument">CategoryDocument</abbr></a> $l)</code> </h3> <div class="details"> <p>Method called to associate a ChildCategoryDocument object to this object through the ChildCategoryDocument foreign key attribute.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryDocument.html"><abbr title="Thelia\Model\CategoryDocument">CategoryDocument</abbr></a></td> <td>$l</td> <td>ChildCategoryDocument</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_removeCategoryDocument"> <div class="location">at line 2436</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>removeCategoryDocument</strong>(<a href="../../../Thelia/Model/Base/CategoryDocument.html"><abbr title="Thelia\Model\Base\CategoryDocument">CategoryDocument</abbr></a> $categoryDocument)</code> </h3> <div class="details"> <p> </p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/Base/CategoryDocument.html"><abbr title="Thelia\Model\Base\CategoryDocument">CategoryDocument</abbr></a></td> <td>$categoryDocument</td> <td>The categoryDocument object to remove.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_clearCategoryAssociatedContents"> <div class="location">at line 2460</div> <code> public void <strong>clearCategoryAssociatedContents</strong>()</code> </h3> <div class="details"> <p>Clears out the collCategoryAssociatedContents collection</p> <p>This does not modify the database; however, it will remove any associated objects, causing them to be refetched by subsequent calls to accessor method.</p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> <h4>See also</h4> <table> <tr> <td>addCategoryAssociatedContents()</td> <td></td> </tr> </table> </div> </div> <h3 id="method_resetPartialCategoryAssociatedContents"> <div class="location">at line 2468</div> <code> public <strong>resetPartialCategoryAssociatedContents</strong>($v = true)</code> </h3> <div class="details"> <p>Reset is the collCategoryAssociatedContents collection loaded partially.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td></td> <td>$v</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_initCategoryAssociatedContents"> <div class="location">at line 2485</div> <code> public void <strong>initCategoryAssociatedContents</strong>(boolean $overrideExisting = true)</code> </h3> <div class="details"> <p>Initializes the collCategoryAssociatedContents collection.</p> <p>By default this just sets the collCategoryAssociatedContents collection to an empty array (like clearcollCategoryAssociatedContents()); however, you may wish to override this method in your stub class to provide setting appropriate to your application -- for example, setting the initial array to the values stored in database.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>boolean</td> <td>$overrideExisting</td> <td>If set to true, the method call initializes the collection even if it is not empty</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getCategoryAssociatedContents"> <div class="location">at line 2508</div> <code> public <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryAssociatedContent.html"><abbr title="Thelia\Model\CategoryAssociatedContent">CategoryAssociatedContent</abbr></a>[] <strong>getCategoryAssociatedContents</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Gets an array of ChildCategoryAssociatedContent objects which contain a foreign key that references this object.</p> <p>If the $criteria is not null, it is used to always fetch the results from the database. Otherwise the results are fetched from the database the first time, then cached. Next time the same method is called without $criteria, the cached collection is returned. If this ChildCategory is new, it will return an empty collection or the current collection; the criteria is ignored on a new object.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td>optional Criteria object to narrow the query</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryAssociatedContent.html"><abbr title="Thelia\Model\CategoryAssociatedContent">CategoryAssociatedContent</abbr></a>[]</td> <td>List of ChildCategoryAssociatedContent objects</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setCategoryAssociatedContents"> <div class="location">at line 2564</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setCategoryAssociatedContents</strong>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $categoryAssociatedContents, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Sets a collection of CategoryAssociatedContent objects related by a one-to-many relationship to the current object.</p> <p>It will also schedule objects for deletion based on a diff between old objects (aka persisted) and new objects from the given Propel collection.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr></td> <td>$categoryAssociatedContents</td> <td>A Propel collection.</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>Optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_countCategoryAssociatedContents"> <div class="location">at line 2595</div> <code> public int <strong>countCategoryAssociatedContents</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Returns the number of related CategoryAssociatedContent objects.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td> </td> </tr> <tr> <td>boolean</td> <td>$distinct</td> <td> </td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>int</td> <td>Count of related CategoryAssociatedContent objects.</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_addCategoryAssociatedContent"> <div class="location">at line 2627</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>addCategoryAssociatedContent</strong>(<a href="../../../Thelia/Model/CategoryAssociatedContent.html"><abbr title="Thelia\Model\CategoryAssociatedContent">CategoryAssociatedContent</abbr></a> $l)</code> </h3> <div class="details"> <p>Method called to associate a ChildCategoryAssociatedContent object to this object through the ChildCategoryAssociatedContent foreign key attribute.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryAssociatedContent.html"><abbr title="Thelia\Model\CategoryAssociatedContent">CategoryAssociatedContent</abbr></a></td> <td>$l</td> <td>ChildCategoryAssociatedContent</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_removeCategoryAssociatedContent"> <div class="location">at line 2654</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>removeCategoryAssociatedContent</strong>(<a href="../../../Thelia/Model/Base/CategoryAssociatedContent.html"><abbr title="Thelia\Model\Base\CategoryAssociatedContent">CategoryAssociatedContent</abbr></a> $categoryAssociatedContent)</code> </h3> <div class="details"> <p> </p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/Base/CategoryAssociatedContent.html"><abbr title="Thelia\Model\Base\CategoryAssociatedContent">CategoryAssociatedContent</abbr></a></td> <td>$categoryAssociatedContent</td> <td>The categoryAssociatedContent object to remove.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_getCategoryAssociatedContentsJoinContent"> <div class="location">at line 2686</div> <code> public <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryAssociatedContent.html"><abbr title="Thelia\Model\CategoryAssociatedContent">CategoryAssociatedContent</abbr></a>[] <strong>getCategoryAssociatedContentsJoinContent</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null, string $joinBehavior = Criteria::LEFT_JOIN)</code> </h3> <div class="details"> <p>If this collection has already been initialized with an identical criteria, it returns the collection.</p> <p>Otherwise if this Category is new, it will return an empty collection; or if this Category has previously been saved, it will retrieve related CategoryAssociatedContents from storage.</p> <p>This method is protected by default in order to keep the public api reasonable. You can provide public methods for those you actually need in Category.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td>optional Criteria object to narrow the query</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>optional connection object</td> </tr> <tr> <td>string</td> <td>$joinBehavior</td> <td>optional join type to use (defaults to Criteria::LEFT_JOIN)</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryAssociatedContent.html"><abbr title="Thelia\Model\CategoryAssociatedContent">CategoryAssociatedContent</abbr></a>[]</td> <td>List of ChildCategoryAssociatedContent objects</td> </tr> </table> </div> </div> <h3 id="method_clearCategoryI18ns"> <div class="location">at line 2703</div> <code> public void <strong>clearCategoryI18ns</strong>()</code> </h3> <div class="details"> <p>Clears out the collCategoryI18ns collection</p> <p>This does not modify the database; however, it will remove any associated objects, causing them to be refetched by subsequent calls to accessor method.</p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> <h4>See also</h4> <table> <tr> <td>addCategoryI18ns()</td> <td></td> </tr> </table> </div> </div> <h3 id="method_resetPartialCategoryI18ns"> <div class="location">at line 2711</div> <code> public <strong>resetPartialCategoryI18ns</strong>($v = true)</code> </h3> <div class="details"> <p>Reset is the collCategoryI18ns collection loaded partially.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td></td> <td>$v</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_initCategoryI18ns"> <div class="location">at line 2728</div> <code> public void <strong>initCategoryI18ns</strong>(boolean $overrideExisting = true)</code> </h3> <div class="details"> <p>Initializes the collCategoryI18ns collection.</p> <p>By default this just sets the collCategoryI18ns collection to an empty array (like clearcollCategoryI18ns()); however, you may wish to override this method in your stub class to provide setting appropriate to your application -- for example, setting the initial array to the values stored in database.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>boolean</td> <td>$overrideExisting</td> <td>If set to true, the method call initializes the collection even if it is not empty</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getCategoryI18ns"> <div class="location">at line 2751</div> <code> public <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a>[] <strong>getCategoryI18ns</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Gets an array of ChildCategoryI18n objects which contain a foreign key that references this object.</p> <p>If the $criteria is not null, it is used to always fetch the results from the database. Otherwise the results are fetched from the database the first time, then cached. Next time the same method is called without $criteria, the cached collection is returned. If this ChildCategory is new, it will return an empty collection or the current collection; the criteria is ignored on a new object.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td>optional Criteria object to narrow the query</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a>[]</td> <td>List of ChildCategoryI18n objects</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setCategoryI18ns"> <div class="location">at line 2807</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setCategoryI18ns</strong>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $categoryI18ns, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Sets a collection of CategoryI18n objects related by a one-to-many relationship to the current object.</p> <p>It will also schedule objects for deletion based on a diff between old objects (aka persisted) and new objects from the given Propel collection.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr></td> <td>$categoryI18ns</td> <td>A Propel collection.</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>Optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_countCategoryI18ns"> <div class="location">at line 2841</div> <code> public int <strong>countCategoryI18ns</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Returns the number of related CategoryI18n objects.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td> </td> </tr> <tr> <td>boolean</td> <td>$distinct</td> <td> </td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>int</td> <td>Count of related CategoryI18n objects.</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_addCategoryI18n"> <div class="location">at line 2873</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>addCategoryI18n</strong>(<a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> $l)</code> </h3> <div class="details"> <p>Method called to associate a ChildCategoryI18n object to this object through the ChildCategoryI18n foreign key attribute.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a></td> <td>$l</td> <td>ChildCategoryI18n</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_removeCategoryI18n"> <div class="location">at line 2904</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>removeCategoryI18n</strong>(<a href="../../../Thelia/Model/Base/CategoryI18n.html"><abbr title="Thelia\Model\Base\CategoryI18n">CategoryI18n</abbr></a> $categoryI18n)</code> </h3> <div class="details"> <p> </p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/Base/CategoryI18n.html"><abbr title="Thelia\Model\Base\CategoryI18n">CategoryI18n</abbr></a></td> <td>$categoryI18n</td> <td>The categoryI18n object to remove.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_clearCategoryVersions"> <div class="location">at line 2928</div> <code> public void <strong>clearCategoryVersions</strong>()</code> </h3> <div class="details"> <p>Clears out the collCategoryVersions collection</p> <p>This does not modify the database; however, it will remove any associated objects, causing them to be refetched by subsequent calls to accessor method.</p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> <h4>See also</h4> <table> <tr> <td>addCategoryVersions()</td> <td></td> </tr> </table> </div> </div> <h3 id="method_resetPartialCategoryVersions"> <div class="location">at line 2936</div> <code> public <strong>resetPartialCategoryVersions</strong>($v = true)</code> </h3> <div class="details"> <p>Reset is the collCategoryVersions collection loaded partially.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td></td> <td>$v</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_initCategoryVersions"> <div class="location">at line 2953</div> <code> public void <strong>initCategoryVersions</strong>(boolean $overrideExisting = true)</code> </h3> <div class="details"> <p>Initializes the collCategoryVersions collection.</p> <p>By default this just sets the collCategoryVersions collection to an empty array (like clearcollCategoryVersions()); however, you may wish to override this method in your stub class to provide setting appropriate to your application -- for example, setting the initial array to the values stored in database.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>boolean</td> <td>$overrideExisting</td> <td>If set to true, the method call initializes the collection even if it is not empty</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getCategoryVersions"> <div class="location">at line 2976</div> <code> public <abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a>[] <strong>getCategoryVersions</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Gets an array of ChildCategoryVersion objects which contain a foreign key that references this object.</p> <p>If the $criteria is not null, it is used to always fetch the results from the database. Otherwise the results are fetched from the database the first time, then cached. Next time the same method is called without $criteria, the cached collection is returned. If this ChildCategory is new, it will return an empty collection or the current collection; the criteria is ignored on a new object.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td>optional Criteria object to narrow the query</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr>|<a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a>[]</td> <td>List of ChildCategoryVersion objects</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setCategoryVersions"> <div class="location">at line 3032</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setCategoryVersions</strong>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $categoryVersions, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Sets a collection of CategoryVersion objects related by a one-to-many relationship to the current object.</p> <p>It will also schedule objects for deletion based on a diff between old objects (aka persisted) and new objects from the given Propel collection.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr></td> <td>$categoryVersions</td> <td>A Propel collection.</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>Optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_countCategoryVersions"> <div class="location">at line 3066</div> <code> public int <strong>countCategoryVersions</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Returns the number of related CategoryVersion objects.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td> </td> </tr> <tr> <td>boolean</td> <td>$distinct</td> <td> </td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>int</td> <td>Count of related CategoryVersion objects.</td> </tr> </table> <h4>Exceptions</h4> <table> <tr> <td><abbr title="PropelException">PropelException</abbr></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_addCategoryVersion"> <div class="location">at line 3098</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>addCategoryVersion</strong>(<a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a> $l)</code> </h3> <div class="details"> <p>Method called to associate a ChildCategoryVersion object to this object through the ChildCategoryVersion foreign key attribute.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a></td> <td>$l</td> <td>ChildCategoryVersion</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_removeCategoryVersion"> <div class="location">at line 3125</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>removeCategoryVersion</strong>(<a href="../../../Thelia/Model/Base/CategoryVersion.html"><abbr title="Thelia\Model\Base\CategoryVersion">CategoryVersion</abbr></a> $categoryVersion)</code> </h3> <div class="details"> <p> </p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/Base/CategoryVersion.html"><abbr title="Thelia\Model\Base\CategoryVersion">CategoryVersion</abbr></a></td> <td>$categoryVersion</td> <td>The categoryVersion object to remove.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_clearProducts"> <div class="location">at line 3149</div> <code> public void <strong>clearProducts</strong>()</code> </h3> <div class="details"> <p>Clears out the collProducts collection</p> <p>This does not modify the database; however, it will remove any associated objects, causing them to be refetched by subsequent calls to accessor method.</p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> <h4>See also</h4> <table> <tr> <td>addProducts()</td> <td></td> </tr> </table> </div> </div> <h3 id="method_initProducts"> <div class="location">at line 3164</div> <code> public void <strong>initProducts</strong>()</code> </h3> <div class="details"> <p>Initializes the collProducts collection.</p> <p>By default this just sets the collProducts collection to an empty collection (like clearProducts()); however, you may wish to override this method in your stub class to provide setting appropriate to your application -- for example, setting the initial array to the values stored in database.</p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>void</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getProducts"> <div class="location">at line 3185</div> <code> public <abbr title="Propel\Runtime\Collection\ObjectCollection">ObjectCollection</abbr>|<a href="../../../Thelia/Model/Product.html"><abbr title="Thelia\Model\Product">Product</abbr></a>[] <strong>getProducts</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Gets a collection of ChildProduct objects related by a many-to-many relationship to the current object by way of the product_category cross-reference table.</p> <p>If the $criteria is not null, it is used to always fetch the results from the database. Otherwise the results are fetched from the database the first time, then cached. Next time the same method is called without $criteria, the cached collection is returned. If this ChildCategory is new, it will return an empty collection or the current collection; the criteria is ignored on a new object.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td>Optional query object to filter the query</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>Optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\ObjectCollection">ObjectCollection</abbr>|<a href="../../../Thelia/Model/Product.html"><abbr title="Thelia\Model\Product">Product</abbr></a>[]</td> <td>List of ChildProduct objects</td> </tr> </table> </div> </div> <h3 id="method_setProducts"> <div class="location">at line 3215</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setProducts</strong>(<abbr title="Propel\Runtime\Collection\Collection">Collection</abbr> $products, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Sets a collection of Product objects related by a many-to-many relationship to the current object by way of the product_category cross-reference table.</p> <p>It will also schedule objects for deletion based on a diff between old objects (aka persisted) and new objects from the given Propel collection.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\Collection">Collection</abbr></td> <td>$products</td> <td>A Propel collection.</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>Optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_countProducts"> <div class="location">at line 3243</div> <code> public int <strong>countProducts</strong>(<abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr> $criteria = null, boolean $distinct = false, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Gets the number of ChildProduct objects related by a many-to-many relationship to the current object by way of the product_category cross-reference table.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\ActiveQuery\Criteria">Criteria</abbr></td> <td>$criteria</td> <td>Optional query object to filter the query</td> </tr> <tr> <td>boolean</td> <td>$distinct</td> <td>Set to true to force count distinct</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>Optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>int</td> <td>the number of related ChildProduct objects</td> </tr> </table> </div> </div> <h3 id="method_addProduct"> <div class="location">at line 3270</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>addProduct</strong>(<a href="../../../Thelia/Model/Product.html"><abbr title="Thelia\Model\Product">Product</abbr></a> $product)</code> </h3> <div class="details"> <p>Associate a ChildProduct object to this object through the product_category cross reference table.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/Product.html"><abbr title="Thelia\Model\Product">Product</abbr></a></td> <td>$product</td> <td>The ChildProductCategory object to relate</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_removeProduct"> <div class="location">at line 3307</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>removeProduct</strong>(<a href="../../../Thelia/Model/Product.html"><abbr title="Thelia\Model\Product">Product</abbr></a> $product)</code> </h3> <div class="details"> <p>Remove a ChildProduct object to this object through the product_category cross reference table.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/Product.html"><abbr title="Thelia\Model\Product">Product</abbr></a></td> <td>$product</td> <td>The ChildProductCategory object to relate</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_clear"> <div class="location">at line 3326</div> <code> public <strong>clear</strong>()</code> </h3> <div class="details"> <p>Clears the current object and sets all attributes to their default values</p> <p> </p> <div class="tags"> </div> </div> <h3 id="method_clearAllReferences"> <div class="location">at line 3354</div> <code> public <strong>clearAllReferences</strong>(boolean $deep = false)</code> </h3> <div class="details"> <p>Resets all references to other model objects or collections of model objects.</p> <p>This method is a user-space workaround for PHP's inability to garbage collect objects with circular references (even in PHP 5.3). This is currently necessary when using Propel in certain daemon or large-volume/high-memory operations.</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>boolean</td> <td>$deep</td> <td>Whether to also clear the references on all referrer objects.</td> </tr> </table> </div> </div> <h3 id="method___toString"> <div class="location">at line 3412</div> <code> public string <strong>__toString</strong>()</code> </h3> <div class="details"> <p>Return the string representation of this object</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>string</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setLocale"> <div class="location">at line 3426</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>setLocale</strong>(string $locale = &#039;en_US&#039;)</code> </h3> <div class="details"> <p>Sets the locale for translations</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$locale</td> <td>Locale to use for the translation, e.g. 'fr_FR'</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_getLocale"> <div class="location">at line 3438</div> <code> public string <strong>getLocale</strong>()</code> </h3> <div class="details"> <p>Gets the locale for translations</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>string</td> <td>$locale Locale to use for the translation, e.g. 'fr_FR'</td> </tr> </table> </div> </div> <h3 id="method_getTranslation"> <div class="location">at line 3450</div> <code> public <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> <strong>getTranslation</strong>(string $locale = &#039;en_US&#039;, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Returns the current translation for a given locale</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$locale</td> <td>Locale to use for the translation, e.g. 'fr_FR'</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>an optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_removeTranslation"> <div class="location">at line 3485</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>removeTranslation</strong>(string $locale = &#039;en_US&#039;, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Remove the translation for a given locale</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$locale</td> <td>Locale to use for the translation, e.g. 'fr_FR'</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>an optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_getCurrentTranslation"> <div class="location">at line 3511</div> <code> public <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> <strong>getCurrentTranslation</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Returns the current translation</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>an optional connection object</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getTitle"> <div class="location">at line 3521</div> <code> public string <strong>getTitle</strong>()</code> </h3> <div class="details"> <p>Get the [title] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>string</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setTitle"> <div class="location">at line 3532</div> <code> public <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> <strong>setTitle</strong>(string $v)</code> </h3> <div class="details"> <p>Set the value of [title] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_getDescription"> <div class="location">at line 3543</div> <code> public string <strong>getDescription</strong>()</code> </h3> <div class="details"> <p>Get the [description] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>string</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setDescription"> <div class="location">at line 3554</div> <code> public <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> <strong>setDescription</strong>(string $v)</code> </h3> <div class="details"> <p>Set the value of [description] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_getChapo"> <div class="location">at line 3565</div> <code> public string <strong>getChapo</strong>()</code> </h3> <div class="details"> <p>Get the [chapo] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>string</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setChapo"> <div class="location">at line 3576</div> <code> public <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> <strong>setChapo</strong>(string $v)</code> </h3> <div class="details"> <p>Set the value of [chapo] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_getPostscriptum"> <div class="location">at line 3587</div> <code> public string <strong>getPostscriptum</strong>()</code> </h3> <div class="details"> <p>Get the [postscriptum] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>string</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setPostscriptum"> <div class="location">at line 3598</div> <code> public <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> <strong>setPostscriptum</strong>(string $v)</code> </h3> <div class="details"> <p>Set the value of [postscriptum] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_getMetaTitle"> <div class="location">at line 3609</div> <code> public string <strong>getMetaTitle</strong>()</code> </h3> <div class="details"> <p>Get the [meta_title] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>string</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setMetaTitle"> <div class="location">at line 3620</div> <code> public <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> <strong>setMetaTitle</strong>(string $v)</code> </h3> <div class="details"> <p>Set the value of [meta_title] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_getMetaDescription"> <div class="location">at line 3631</div> <code> public string <strong>getMetaDescription</strong>()</code> </h3> <div class="details"> <p>Get the [meta_description] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>string</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setMetaDescription"> <div class="location">at line 3642</div> <code> public <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> <strong>setMetaDescription</strong>(string $v)</code> </h3> <div class="details"> <p>Set the value of [meta_description] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_getMetaKeywords"> <div class="location">at line 3653</div> <code> public string <strong>getMetaKeywords</strong>()</code> </h3> <div class="details"> <p>Get the [meta_keywords] column value.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td>string</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_setMetaKeywords"> <div class="location">at line 3664</div> <code> public <a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a> <strong>setMetaKeywords</strong>(string $v)</code> </h3> <div class="details"> <p>Set the value of [meta_keywords] column.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$v</td> <td>new value</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryI18n.html"><abbr title="Thelia\Model\CategoryI18n">CategoryI18n</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_enforceVersioning"> <div class="location">at line 3677</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>enforceVersioning</strong>()</code> </h3> <div class="details"> <p>Enforce a new Version of this object upon next save.</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td> </td> </tr> </table> </div> </div> <h3 id="method_isVersioningNecessary"> <div class="location">at line 3689</div> <code> public boolean <strong>isVersioningNecessary</strong>($con = null)</code> </h3> <div class="details"> <p>Checks whether the current state must be recorded as a version</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_addVersion"> <div class="location">at line 3713</div> <code> public <a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a> <strong>addVersion</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Creates a version of the current object and saves it.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>the connection to use</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a></td> <td>A version object</td> </tr> </table> </div> </div> <h3 id="method_toVersion"> <div class="location">at line 3741</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>toVersion</strong>(integer $versionNumber, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Sets the properties of the current object to the value they had at a specific version</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>integer</td> <td>$versionNumber</td> <td>The version number to read</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>The connection to use</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_populateFromVersion"> <div class="location">at line 3761</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>populateFromVersion</strong>(<a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a> $version, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null, array $loadedObjects = array())</code> </h3> <div class="details"> <p>Sets the properties of the current object to the value they had at a specific version</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a></td> <td>$version</td> <td>The version object to use</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>the connection to use</td> </tr> <tr> <td>array</td> <td>$loadedObjects</td> <td>objects that been loaded in a chain of populateFromVersion calls on referrer or fk objects.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_getLastVersionNumber"> <div class="location">at line 3784</div> <code> public integer <strong>getLastVersionNumber</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Gets the latest persisted version number for the current object</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>the connection to use</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>integer</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_isLastVersion"> <div class="location">at line 3804</div> <code> public Boolean <strong>isLastVersion</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Checks whether the current object is the latest one</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>the connection to use</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>Boolean</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_getOneVersion"> <div class="location">at line 3817</div> <code> public <a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a> <strong>getOneVersion</strong>(integer $versionNumber, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Retrieves a version object for this entity and a version number</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>integer</td> <td>$versionNumber</td> <td>The version number to read</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>the connection to use</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/CategoryVersion.html"><abbr title="Thelia\Model\CategoryVersion">CategoryVersion</abbr></a></td> <td>A version object</td> </tr> </table> </div> </div> <h3 id="method_getAllVersions"> <div class="location">at line 3832</div> <code> public <abbr title="Propel\Runtime\Collection\ObjectCollection">ObjectCollection</abbr> <strong>getAllVersions</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Gets all the versions of this object, in incremental order</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>the connection to use</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><abbr title="Propel\Runtime\Collection\ObjectCollection">ObjectCollection</abbr></td> <td>A list of ChildCategoryVersion objects</td> </tr> </table> </div> </div> <h3 id="method_compareVersion"> <div class="location">at line 3857</div> <code> public array <strong>compareVersion</strong>(integer $versionNumber, string $keys = &#039;columns&#039;, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null, array $ignoredColumns = array())</code> </h3> <div class="details"> <p>Compares the current object with another of its version.</p> <p><code> print_r($book->compareVersion(1)); => array( '1' => array('Title' => 'Book title at version 1'), '2' => array('Title' => 'Book title at version 2') ); </code></p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>integer</td> <td>$versionNumber</td> <td> </td> </tr> <tr> <td>string</td> <td>$keys</td> <td>Main key used for the result diff (versions|columns)</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>the connection to use</td> </tr> <tr> <td>array</td> <td>$ignoredColumns</td> <td>The columns to exclude from the diff.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>array</td> <td>A list of differences</td> </tr> </table> </div> </div> <h3 id="method_compareVersions"> <div class="location">at line 3883</div> <code> public array <strong>compareVersions</strong>(integer $fromVersionNumber, integer $toVersionNumber, string $keys = &#039;columns&#039;, <abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null, array $ignoredColumns = array())</code> </h3> <div class="details"> <p>Compares two versions of the current object.</p> <p><code> print_r($book->compareVersions(1, 2)); => array( '1' => array('Title' => 'Book title at version 1'), '2' => array('Title' => 'Book title at version 2') ); </code></p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>integer</td> <td>$fromVersionNumber</td> <td> </td> </tr> <tr> <td>integer</td> <td>$toVersionNumber</td> <td> </td> </tr> <tr> <td>string</td> <td>$keys</td> <td>Main key used for the result diff (versions|columns)</td> </tr> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td>the connection to use</td> </tr> <tr> <td>array</td> <td>$ignoredColumns</td> <td>The columns to exclude from the diff.</td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>array</td> <td>A list of differences</td> </tr> </table> </div> </div> <h3 id="method_getLastVersions"> <div class="location">at line 3946</div> <code> public <abbr title="Thelia\Model\Base\PropelCollection">PropelCollection</abbr>|array <strong>getLastVersions</strong>($number = 10, $criteria = null, $con = null)</code> </h3> <div class="details"> <p>retrieve the last $number versions.</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td></td> <td>$number</td> <td> </td> </tr> <tr> <td></td> <td>$criteria</td> <td> </td> </tr> <tr> <td></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td><abbr title="Thelia\Model\Base\PropelCollection">PropelCollection</abbr>|array</td> <td>\Thelia\Model\CategoryVersion[] List of \Thelia\Model\CategoryVersion objects</td> </tr> </table> </div> </div> <h3 id="method_keepUpdateDateUnchanged"> <div class="location">at line 3961</div> <code> public <a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a> <strong>keepUpdateDateUnchanged</strong>()</code> </h3> <div class="details"> <p>Mark the current object so that the update date doesn't get updated during next save</p> <p> </p> <div class="tags"> <h4>Return Value</h4> <table> <tr> <td><a href="../../../Thelia/Model/Category.html"><abbr title="Thelia\Model\Category">Category</abbr></a></td> <td>The current object (for fluent API support)</td> </tr> </table> </div> </div> <h3 id="method_preSave"> <div class="location">at line 3973</div> <code> public boolean <strong>preSave</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Code to be run before persisting the object</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_postSave"> <div class="location">at line 3982</div> <code> public <strong>postSave</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Code to be run after persisting the object</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_preInsert"> <div class="location">at line 3992</div> <code> public boolean <strong>preInsert</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Code to be run before inserting to database</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_postInsert"> <div class="location">at line 4001</div> <code> public <strong>postInsert</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Code to be run after inserting to database</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_preUpdate"> <div class="location">at line 4011</div> <code> public boolean <strong>preUpdate</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Code to be run before updating the object in database</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_postUpdate"> <div class="location">at line 4020</div> <code> public <strong>postUpdate</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Code to be run after updating the object in database</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_preDelete"> <div class="location">at line 4030</div> <code> public boolean <strong>preDelete</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Code to be run before deleting the object in database</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>boolean</td> <td> </td> </tr> </table> </div> </div> <h3 id="method_postDelete"> <div class="location">at line 4039</div> <code> public <strong>postDelete</strong>(<abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr> $con = null)</code> </h3> <div class="details"> <p>Code to be run after deleting the object in database</p> <p> </p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td><abbr title="Propel\Runtime\Connection\ConnectionInterface">ConnectionInterface</abbr></td> <td>$con</td> <td> </td> </tr> </table> </div> </div> <h3 id="method___call"> <div class="location">at line 4056</div> <code> public array|string <strong>__call</strong>(string $name, mixed $params)</code> </h3> <div class="details"> <p>Derived method to catches calls to undefined methods.</p> <p>Provides magic import/export method support (fromXML()/toXML(), fromYAML()/toYAML(), etc.). Allows to define default __call() behavior if you overwrite __call()</p> <div class="tags"> <h4>Parameters</h4> <table> <tr> <td>string</td> <td>$name</td> <td> </td> </tr> <tr> <td>mixed</td> <td>$params</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table> <tr> <td>array|string</td> <td> </td> </tr> </table> </div> </div> </div> <div id="footer"> Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>. </div> </body> </html>
Mertiozys/thelia.github.io
api/2.0.0-RC1/Thelia/Model/Base/Category.html
HTML
mit
267,073
<!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>Function template load</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="../../property_tree/reference.html#header.boost.property_tree.ptree_serialization_hpp" title="Header &lt;boost/property_tree/ptree_serialization.hpp&gt;"> <link rel="prev" href="save_idp154187280.html" title="Function template save"> <link rel="next" href="serialize_idp98162352.html" title="Function template serialize"> </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="save_idp154187280.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../property_tree/reference.html#header.boost.property_tree.ptree_serialization_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="serialize_idp98162352.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.property_tree.load_idp205463792"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Function template load</span></h2> <p>boost::property_tree::load</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="../../property_tree/reference.html#header.boost.property_tree.ptree_serialization_hpp" title="Header &lt;boost/property_tree/ptree_serialization.hpp&gt;">boost/property_tree/ptree_serialization.hpp</a>&gt; </span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Archive<span class="special">,</span> <span class="keyword">typename</span> K<span class="special">,</span> <span class="keyword">typename</span> D<span class="special">,</span> <span class="keyword">typename</span> C<span class="special">&gt;</span> <span class="keyword">void</span> <span class="identifier">load</span><span class="special">(</span><span class="identifier">Archive</span> <span class="special">&amp;</span> ar<span class="special">,</span> <a class="link" href="basic_ptree.html" title="Class template basic_ptree">basic_ptree</a><span class="special">&lt;</span> <span class="identifier">K</span><span class="special">,</span> <span class="identifier">D</span><span class="special">,</span> <span class="identifier">C</span> <span class="special">&gt;</span> <span class="special">&amp;</span> t<span class="special">,</span> <span class="keyword">const</span> <span class="keyword">unsigned</span> <span class="keyword">int</span> file_version<span class="special">)</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp351274192"></a><h2>Description</h2> <p>De-serialize the property tree to the given archive. </p> <div class="note"><table border="0" summary="Note"> <tr> <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../doc/src/images/note.png"></td> <th align="left">Note</th> </tr> <tr><td align="left" valign="top"><p>In addition to de-serializing from regular archives, this supports loading from archives requiring name-value pairs, e.g. XML archives. The format should be that used by boost::property_tree::save. </p></td></tr> </table></div> <p> </p> <div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody> <tr> <td><p><span class="term">Parameters:</span></p></td> <td><div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody> <tr> <td><p><span class="term"><code class="computeroutput">ar</code></span></p></td> <td><p>The archive from which to load the serialized property tree. This archive should conform to the concept laid out by the Boost.Serialization library. </p></td> </tr> <tr> <td><p><span class="term"><code class="computeroutput">file_version</code></span></p></td> <td><p>file_version for the archive. </p></td> </tr> <tr> <td><p><span class="term"><code class="computeroutput">t</code></span></p></td> <td><p>The property tree to de-serialize. </p></td> </tr> </tbody> </table></div></td> </tr> <tr> <td><p><span class="term">Postconditions:</span></p></td> <td><p><code class="computeroutput">t</code> will contain the de-serialized data from <code class="computeroutput">ar</code>. </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; 2008-2010 Marcin Kalicinski<br>Copyright &#169; 2010-2013 Sebastian Redl<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="save_idp154187280.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../property_tree/reference.html#header.boost.property_tree.ptree_serialization_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="serialize_idp98162352.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
TyRoXx/cdm
original_sources/boost_1_59_0/doc/html/boost/property_tree/load_idp205463792.html
HTML
mit
6,758
<link rel="stylesheet" type="text/css" href="https://plus.google.com/_/scs/apps-static/_/ss/k=oz.sbw_bss.-1smgvanzin92w.L.W.O/rs=AItRSTNCcL4cfF-dTrM8Z7IVww5VRtSevA"/> <link rel="stylesheet" type="text/css" href="https://plus.google.com/_/scs/apps-static/_/ss/k=oz.recentposts.xax01ynfb4he.L.W.O/am=CA/rs=AItRSTOQ1PbwbApidfgypDGlhOTEigpOgA"/> <link rel="stylesheet" type="text/css" href="../chrome/style.css"/> <script type="text/javascript" src="../chrome/lib/jquery.min.js"></script> <script type="text/javascript" src="../chrome/lib/jquery-ui-1.10.3.custom.min.js"></script> <script type="text/javascript" src="../chrome/lib/eventTarget.js"></script> <script type="text/javascript" src="../chrome/lib/menuControl.js"></script> <meta charset="utf-8"> <div id="gttPopup" class="J-M jQjAxd open" style="right:0; width: 500px"> <div id="gttPopupSlider" class="ui-draggable"></div> <div class="inner"> <div class="hdr clearfix"> <div class="userinfo"> <a class="item" href="https://trello.com/tungnguyenson" target="_blank"> <img class="member-avatar" src="https://trello-avatars.s3.amazonaws.com/890b425b01eea6ec255438ab5c6385f8/30.png"> </a> <a class="item" href="https://trello.com/tungnguyenson" target="_blank">tungnguyenson</a> <span class="item">|</span> <a class="item signOutButton" href="javascript:void(0)">Logout?</a> </div> <span class="item">|</span> <a class="item" href="https://trello.com/b/CGU9BYgd/gmail-to-trello-development" target="_blank"> <img src="chrome-extension://fpmfeohlnanankfeefaffagnkbmgcldg/images/new_icon.gif">Features/Bugs</a> <a class="item" href="javascript:void(0)" id="close-button">[x] Close</a> </div> <div class="popupMsg" style="display: none;">Loading Trello data...</div> <div class="content menuInnerContainer hidden" style="display: block;"> <dl> <dt>Board.:</dt> <dd> <select id="gttBoard"> <option value="">Please select ...</option> <option value="5234e877fac59a0d540060cc">My Boards » Board has no Org</option> <option value="52e1397addf85d4751f99319">My Boards » Gmail To Trello Development</option> <option value="5152cba413c787aa1e00358c">My Boards » IT - Equipment Tool</option> <option value="5268ff76874be19a6e00528e">My Boards » My new board</option> <option value="515becd3e9d9a5cf4800837d">My Boards » Tiki - SEO</option> <option value="515c843d2b6946fb600005c5">My Boards » Tiki - System</option> <option value="527edf9f4fc854947300a9c0">My Boards » Tiki Roadmap 2014</option> <option value="51cc311df58462cf2c00091c">My Boards » Todo</option> <option value="516d6d133bdb27dc0f00089d">My Boards » Todo - 2013</option> <option value="516d6ecf519c2a04780000f6">My Boards » Todo - This month (April)</option> <option value="514321bd285483120c0013e2">My Boards » Todo - Today</option> <option value="4fe1a359700bbe3d205e2a28">My Boards » Welcome Board</option> <option value="_">-----</option> <option value="520b0d7d81aeaa6c0600004e">Tiki Mobile » Development</option> <option value="520b0d8ff11f77df150000dc">Tiki Mobile » Planning</option> <option value="523fe521ab45ca843d004a84">Tiki Mobile » [iOS] Developement</option> <option value="_">-----</option> <option value="522e7bfcee85598b19005456">Tiki.vn » Backend</option> <option value="52382201b71c250138001c8b">Tiki.vn » Backend Development</option> <option value="4f7aaae4884e41fa4b5ebe02">Tiki.vn » Bugs only!</option> <option value="5121b4c2a28e3a03470021cd">Tiki.vn » IT</option> <option value="5152cbc8e6c156d907003a6d">Tiki.vn » IT - Equipment Tool</option> <option value="4fed12bc2138223d613bc37d">Tiki.vn » Inbox</option> <option value="5104d1f2e002eb8d5600241c">Tiki.vn » Lab</option> <option value="50a44fbf0fdb1b383f00d48f">Tiki.vn » Launched 2012</option> <option value="50eb8b56801918b44c000c3f">Tiki.vn » Launched 2013</option> <option value="515bece9e147a75d4b00899e">Tiki.vn » Marketing</option> <option value="522ffbe0083b6cb547000106">Tiki.vn » New platform</option> <option value="518c4f2187092e331e0045be">Tiki.vn » OS Backlog</option> <option value="4fb4b2b68a035da13f59b392">Tiki.vn » Product Planning</option> <option value="4fed0d6b5ba1eb606b25ca19">Tiki.vn » Product Roadmap 2012</option> <option value="50e7f267ba2a89635c0016e3">Tiki.vn » Product Roadmap 2013</option> <option value="5177a2752f7344f71f003394">Tiki.vn » QA and Technical Support</option> <option value="4fed81f4841320c446047157">Tiki.vn » System &amp; Engineering</option> <option value="518a0f025912858b080022f8">Tiki.vn » TOS Development</option> <option value="52dc97229868f85f7aecdad2">Tiki.vn » Talaria Frontend</option> <option value="4e7962f143cecbc072fceeaf">Tiki.vn » Tiki Development</option> <option value="5188cc20ae1a983f51011b46">Tiki.vn » Tiki Mobile</option> <option value="527eee098a4abad21f0041af">Tiki.vn » Tiki Roadmap 2014</option> <option value="510770dba3c834f225008549">Tiki.vn » Tiki.vn upgrading Q1-2013</option> <option value="_">-----</option> <option value="4fe5b8ddc56570256a0ba8c1">Trenity » Treboard</option> <option value="515c8408cc0b92957d000789">Trenity » Welcome copy</option> </select> </dd> <dt>List:</dt> <dd class="clearfix listrow"> <span id="gttListMsg" style="display: none;">Loading...</span> <ul id="gttList" style="display: block;"> <li value="5234e877fac59a0d540060cd" class="active">To Do</li> <li value="5234e877fac59a0d540060ce">Doing</li> <li value="5234e877fac59a0d540060cf">Done</li> </ul> </dd> <dt>Title:</dt> <dd> <input type="text" id="gttTitle" style="width: 396px;"> </dd> <dt>Description:</dt> <dd> <textarea id="gttDesc" style="height: 180px; width: 396px;"></textarea> </dd> <dd> <input type="checkbox" checked="checked" id="chkBackLink"> <label for="chkBackLink">Link back to GMail</label> <input type="checkbox" checked="checked" id="chkSelfAssign" style="margin-left:30px"> <label for="chkSelfAssign">Assign me to this card</label> </dd> <dd> <input type="button" id="addTrelloCard" value="Add to Trello card"> </dd> </dl> </div> </div> </div> <script type="text/javascript"> var listControl = new MenuControl('#gttList li'); </script>
acoven/gmail-to-trello-extension
test/popup.html
HTML
mit
7,871
<ion-view> <ion-nav-title><mm-format-text watch="true">{{ title }}</mm-format-text></ion-nav-title> <ion-nav-buttons side="secondary"> <mm-context-menu> <mm-context-menu-item priority="900" ng-if="externalUrl" href="externalUrl" content="'mm.core.openinbrowser' | translate" icon-action="'ion-share'"></mm-context-menu-item> <mm-context-menu-item priority="800" ng-if="description" content="'mm.core.moduleintro' | translate" action="expandDescription()" icon-action="'ion-arrow-right-c'"></mm-context-menu-item> <mm-context-menu-item priority="700" content="'mm.core.refresh' | translate" action="doRefresh()" icon-action="refreshIcon" close-on-click="false" close-when-done="true"></mm-context-menu-item> </mm-context-menu> </ion-nav-buttons> <ion-content padding="true" mm-state-class> <ion-refresher pulling-text="{{ 'mm.core.pulltorefresh' | translate }}" on-refresh="doRefresh()" ng-if="loaded"></ion-refresher> <mm-loading hide-until="loaded"> <mm-course-mod-description description="description" component="{{component}}" component-id="{{componentId}}"></mm-course-mod-description> <article> <mm-format-text watch="true" component="{{ component }}" component-id="{{ componentId }}">{{ content }}</mm-format-text> </article> </mm-loading> </ion-content> </ion-view>
testvibid/imaritime
www/addons/mod/page/templates/index.html
HTML
apache-2.0
1,421
<!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>ZooKeeperListener xref</title> <link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" /> </head> <body> <div id="overview"><a href="../../../../../../apidocs/org/apache/hadoop/hbase/zookeeper/ZooKeeperListener.html">View Javadoc</a></div><pre> <a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_javadoccomment"> * Licensed to the Apache Software Foundation (ASF) under one</em> <a class="jxr_linenumber" name="4" href="#4">4</a> <em class="jxr_javadoccomment"> * or more contributor license agreements. See the NOTICE file</em> <a class="jxr_linenumber" name="5" href="#5">5</a> <em class="jxr_javadoccomment"> * distributed with this work for additional information</em> <a class="jxr_linenumber" name="6" href="#6">6</a> <em class="jxr_javadoccomment"> * regarding copyright ownership. The ASF licenses this file</em> <a class="jxr_linenumber" name="7" href="#7">7</a> <em class="jxr_javadoccomment"> * to you under the Apache License, Version 2.0 (the</em> <a class="jxr_linenumber" name="8" href="#8">8</a> <em class="jxr_javadoccomment"> * "License"); you may not use this file except in compliance</em> <a class="jxr_linenumber" name="9" href="#9">9</a> <em class="jxr_javadoccomment"> * with the License. You may obtain a copy of the License at</em> <a class="jxr_linenumber" name="10" href="#10">10</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="11" href="#11">11</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 class="jxr_linenumber" name="12" href="#12">12</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="13" href="#13">13</a> <em class="jxr_javadoccomment"> * Unless required by applicable law or agreed to in writing, software</em> <a class="jxr_linenumber" name="14" href="#14">14</a> <em class="jxr_javadoccomment"> * distributed under the License is distributed on an "AS IS" BASIS,</em> <a class="jxr_linenumber" name="15" href="#15">15</a> <em class="jxr_javadoccomment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em> <a class="jxr_linenumber" name="16" href="#16">16</a> <em class="jxr_javadoccomment"> * See the License for the specific language governing permissions and</em> <a class="jxr_linenumber" name="17" href="#17">17</a> <em class="jxr_javadoccomment"> * limitations under the License.</em> <a class="jxr_linenumber" name="18" href="#18">18</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="19" href="#19">19</a> <strong class="jxr_keyword">package</strong> org.apache.hadoop.hbase.zookeeper; <a class="jxr_linenumber" name="20" href="#20">20</a> <a class="jxr_linenumber" name="21" href="#21">21</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.classification.InterfaceAudience; <a class="jxr_linenumber" name="22" href="#22">22</a> <a class="jxr_linenumber" name="23" href="#23">23</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="24" href="#24">24</a> <em class="jxr_javadoccomment"> * Base class for internal listeners of ZooKeeper events.</em> <a class="jxr_linenumber" name="25" href="#25">25</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="26" href="#26">26</a> <em class="jxr_javadoccomment"> * The {@link ZooKeeperWatcher} for a process will execute the appropriate</em> <a class="jxr_linenumber" name="27" href="#27">27</a> <em class="jxr_javadoccomment"> * methods of implementations of this class. In order to receive events from</em> <a class="jxr_linenumber" name="28" href="#28">28</a> <em class="jxr_javadoccomment"> * the watcher, every listener must register itself via {@link ZooKeeperWatcher#registerListener}.</em> <a class="jxr_linenumber" name="29" href="#29">29</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="30" href="#30">30</a> <em class="jxr_javadoccomment"> * Subclasses need only override those methods in which they are interested.</em> <a class="jxr_linenumber" name="31" href="#31">31</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="32" href="#32">32</a> <em class="jxr_javadoccomment"> * Note that the watcher will be blocked when invoking methods in listeners so</em> <a class="jxr_linenumber" name="33" href="#33">33</a> <em class="jxr_javadoccomment"> * they must not be long-running.</em> <a class="jxr_linenumber" name="34" href="#34">34</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="35" href="#35">35</a> @InterfaceAudience.Private <a class="jxr_linenumber" name="36" href="#36">36</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/zookeeper/ZooKeeperListener.html">ZooKeeperListener</a> { <a class="jxr_linenumber" name="37" href="#37">37</a> <a class="jxr_linenumber" name="38" href="#38">38</a> <em class="jxr_comment">// Reference to the zk watcher which also contains configuration and constants</em> <a class="jxr_linenumber" name="39" href="#39">39</a> <strong class="jxr_keyword">protected</strong> <a href="../../../../../org/apache/hadoop/hbase/zookeeper/ZooKeeperWatcher.html">ZooKeeperWatcher</a> watcher; <a class="jxr_linenumber" name="40" href="#40">40</a> <a class="jxr_linenumber" name="41" href="#41">41</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="42" href="#42">42</a> <em class="jxr_javadoccomment"> * Construct a ZooKeeper event listener.</em> <a class="jxr_linenumber" name="43" href="#43">43</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="44" href="#44">44</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/hadoop/hbase/zookeeper/ZooKeeperListener.html">ZooKeeperListener</a>(<a href="../../../../../org/apache/hadoop/hbase/zookeeper/ZooKeeperWatcher.html">ZooKeeperWatcher</a> watcher) { <a class="jxr_linenumber" name="45" href="#45">45</a> <strong class="jxr_keyword">this</strong>.watcher = watcher; <a class="jxr_linenumber" name="46" href="#46">46</a> } <a class="jxr_linenumber" name="47" href="#47">47</a> <a class="jxr_linenumber" name="48" href="#48">48</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="49" href="#49">49</a> <em class="jxr_javadoccomment"> * Called when a new node has been created.</em> <a class="jxr_linenumber" name="50" href="#50">50</a> <em class="jxr_javadoccomment"> * @param path full path of the new node</em> <a class="jxr_linenumber" name="51" href="#51">51</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="52" href="#52">52</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> nodeCreated(String path) { <a class="jxr_linenumber" name="53" href="#53">53</a> <em class="jxr_comment">// no-op</em> <a class="jxr_linenumber" name="54" href="#54">54</a> } <a class="jxr_linenumber" name="55" href="#55">55</a> <a class="jxr_linenumber" name="56" href="#56">56</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="57" href="#57">57</a> <em class="jxr_javadoccomment"> * Called when a node has been deleted</em> <a class="jxr_linenumber" name="58" href="#58">58</a> <em class="jxr_javadoccomment"> * @param path full path of the deleted node</em> <a class="jxr_linenumber" name="59" href="#59">59</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="60" href="#60">60</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> nodeDeleted(String path) { <a class="jxr_linenumber" name="61" href="#61">61</a> <em class="jxr_comment">// no-op</em> <a class="jxr_linenumber" name="62" href="#62">62</a> } <a class="jxr_linenumber" name="63" href="#63">63</a> <a class="jxr_linenumber" name="64" href="#64">64</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="65" href="#65">65</a> <em class="jxr_javadoccomment"> * Called when an existing node has changed data.</em> <a class="jxr_linenumber" name="66" href="#66">66</a> <em class="jxr_javadoccomment"> * @param path full path of the updated node</em> <a class="jxr_linenumber" name="67" href="#67">67</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="68" href="#68">68</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> nodeDataChanged(String path) { <a class="jxr_linenumber" name="69" href="#69">69</a> <em class="jxr_comment">// no-op</em> <a class="jxr_linenumber" name="70" href="#70">70</a> } <a class="jxr_linenumber" name="71" href="#71">71</a> <a class="jxr_linenumber" name="72" href="#72">72</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="73" href="#73">73</a> <em class="jxr_javadoccomment"> * Called when an existing node has a child node added or removed.</em> <a class="jxr_linenumber" name="74" href="#74">74</a> <em class="jxr_javadoccomment"> * @param path full path of the node whose children have changed</em> <a class="jxr_linenumber" name="75" href="#75">75</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="76" href="#76">76</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> nodeChildrenChanged(String path) { <a class="jxr_linenumber" name="77" href="#77">77</a> <em class="jxr_comment">// no-op</em> <a class="jxr_linenumber" name="78" href="#78">78</a> } <a class="jxr_linenumber" name="79" href="#79">79</a> <a class="jxr_linenumber" name="80" href="#80">80</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="81" href="#81">81</a> <em class="jxr_javadoccomment"> * @return The watcher associated with this listener</em> <a class="jxr_linenumber" name="82" href="#82">82</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="83" href="#83">83</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/hadoop/hbase/zookeeper/ZooKeeperWatcher.html">ZooKeeperWatcher</a> getWatcher() { <a class="jxr_linenumber" name="84" href="#84">84</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>.watcher; <a class="jxr_linenumber" name="85" href="#85">85</a> } <a class="jxr_linenumber" name="86" href="#86">86</a> } </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
scalingdata/Impala
thirdparty/hbase-1.1.1.2.3.0.0-2557/docs/xref/org/apache/hadoop/hbase/zookeeper/ZooKeeperListener.html
HTML
apache-2.0
11,234
<!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_71) on Tue May 17 00:28:47 UTC 2016 --> <title>Uses of Package quarks.execution.services (Quarks v0.4.0)</title> <meta name="date" content="2016-05-17"> <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 Package quarks.execution.services (Quarks v0.4.0)"; } } 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>Class</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?quarks/execution/services/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.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"> <h1 title="Uses of Package quarks.execution.services" class="title">Uses of Package<br>quarks.execution.services</h1> </div> <div class="contentContainer"> <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="../../../quarks/execution/services/package-summary.html">quarks.execution.services</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="#quarks.apps.runtime">quarks.apps.runtime</a></td> <td class="colLast"> <div class="block">Applications which provide monitoring and failure recovery to other Quarks applications.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#quarks.execution">quarks.execution</a></td> <td class="colLast"> <div class="block">Execution of Quarks topologies and graphs.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#quarks.execution.services">quarks.execution.services</a></td> <td class="colLast"> <div class="block">Execution services.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#quarks.metrics">quarks.metrics</a></td> <td class="colLast"> <div class="block">Metric utility methods, oplets, and reporters which allow an application to expose metric values, for example via JMX.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#quarks.oplet">quarks.oplet</a></td> <td class="colLast"> <div class="block">Oplets API.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#quarks.providers.direct">quarks.providers.direct</a></td> <td class="colLast"> <div class="block">Direct execution of a streaming topology.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#quarks.providers.iot">quarks.providers.iot</a></td> <td class="colLast"> <div class="block">Iot provider that allows multiple applications to share an <code>IotDevice</code>.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#quarks.runtime.etiao">quarks.runtime.etiao</a></td> <td class="colLast"> <div class="block">A runtime for executing a Quarks streaming topology, designed as an embeddable library so that it can be executed in a simple Java application.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#quarks.runtime.etiao.graph">quarks.runtime.etiao.graph</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#quarks.runtime.jmxcontrol">quarks.runtime.jmxcontrol</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#quarks.runtime.jobregistry">quarks.runtime.jobregistry</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#quarks.runtime.jsoncontrol">quarks.runtime.jsoncontrol</a></td> <td class="colLast"> <div class="block">Control service that takes a Json message and invokes an operation on a control service MBean.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#quarks.topology">quarks.topology</a></td> <td class="colLast"> <div class="block">Functional api to build a streaming topology.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.apps.runtime"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/apps/runtime/package-summary.html">quarks.apps.runtime</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/ControlService.html#quarks.apps.runtime">ControlService</a> <div class="block">Service that provides a control mechanism.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.execution"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/execution/package-summary.html">quarks.execution</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/ServiceContainer.html#quarks.execution">ServiceContainer</a> <div class="block">Provides a container for services.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.execution.services"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/JobRegistryService.EventType.html#quarks.execution.services">JobRegistryService.EventType</a> <div class="block">Job event types.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.metrics"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/metrics/package-summary.html">quarks.metrics</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/ServiceContainer.html#quarks.metrics">ServiceContainer</a> <div class="block">Provides a container for services.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.oplet"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/oplet/package-summary.html">quarks.oplet</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/RuntimeServices.html#quarks.oplet">RuntimeServices</a> <div class="block">At runtime a container provides services to executing elements such as oplets and functions.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.providers.direct"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/providers/direct/package-summary.html">quarks.providers.direct</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/RuntimeServices.html#quarks.providers.direct">RuntimeServices</a> <div class="block">At runtime a container provides services to executing elements such as oplets and functions.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/ServiceContainer.html#quarks.providers.direct">ServiceContainer</a> <div class="block">Provides a container for services.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.providers.iot"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/providers/iot/package-summary.html">quarks.providers.iot</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/ServiceContainer.html#quarks.providers.iot">ServiceContainer</a> <div class="block">Provides a container for services.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.runtime.etiao"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/runtime/etiao/package-summary.html">quarks.runtime.etiao</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/RuntimeServices.html#quarks.runtime.etiao">RuntimeServices</a> <div class="block">At runtime a container provides services to executing elements such as oplets and functions.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/ServiceContainer.html#quarks.runtime.etiao">ServiceContainer</a> <div class="block">Provides a container for services.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.runtime.etiao.graph"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/runtime/etiao/graph/package-summary.html">quarks.runtime.etiao.graph</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/ServiceContainer.html#quarks.runtime.etiao.graph">ServiceContainer</a> <div class="block">Provides a container for services.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.runtime.jmxcontrol"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/runtime/jmxcontrol/package-summary.html">quarks.runtime.jmxcontrol</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/ControlService.html#quarks.runtime.jmxcontrol">ControlService</a> <div class="block">Service that provides a control mechanism.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.runtime.jobregistry"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/runtime/jobregistry/package-summary.html">quarks.runtime.jobregistry</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/JobRegistryService.html#quarks.runtime.jobregistry">JobRegistryService</a> <div class="block">Job registry service.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/JobRegistryService.EventType.html#quarks.runtime.jobregistry">JobRegistryService.EventType</a> <div class="block">Job event types.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/ServiceContainer.html#quarks.runtime.jobregistry">ServiceContainer</a> <div class="block">Provides a container for services.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.runtime.jsoncontrol"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/runtime/jsoncontrol/package-summary.html">quarks.runtime.jsoncontrol</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/ControlService.html#quarks.runtime.jsoncontrol">ControlService</a> <div class="block">Service that provides a control mechanism.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="quarks.topology"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../quarks/execution/services/package-summary.html">quarks.execution.services</a> used by <a href="../../../quarks/topology/package-summary.html">quarks.topology</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../quarks/execution/services/class-use/RuntimeServices.html#quarks.topology">RuntimeServices</a> <div class="block">At runtime a container provides services to executing elements such as oplets and functions.</div> </td> </tr> </tbody> </table> </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>Class</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 class="aboutLanguage"><a href="http://quarks.incubator.apache.org">Apache Quarks (incubating)</a></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?quarks/execution/services/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.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 &copy; 2016 The Apache Software Foundation. All Rights Reserved - d6cdfc6-20160517-0028</small></p> </body> </html>
queeniema/incubator-edgent-website
content/javadoc/lastest/quarks/execution/services/package-use.html
HTML
apache-2.0
19,058
<html> <body> This inspection detects usages of internally deprecated classes. <p><small>Internal inspection - has no effect outside of IntelliJ IDEA project.</small></p> </body> </html>
liveqmock/platform-tools-idea
resources-en/src/inspectionDescriptions/UndesirableClassUsage.html
HTML
apache-2.0
187
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>Xerces-C++: PSVIHandler Class Reference</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.5.6 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li class="current"><a href="classes.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="classes.html"><span>Alphabetical&nbsp;List</span></a></li> <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li> <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul> </div> </div> <div class="contents"> <h1>PSVIHandler Class Reference</h1><!-- doxytag: class="PSVIHandler" -->This abstract class provides the interface for the scanner to return PSVI information to the application. <a href="#_details">More...</a> <p> <div class="dynheader"> Inheritance diagram for PSVIHandler:</div> <div class="dynsection"> <p><center><img src="classPSVIHandler.png" usemap="#PSVIHandler_map" border="0" alt=""></center> <map name="PSVIHandler_map"> <area href="classAbstractDOMParser.html" alt="AbstractDOMParser" shape="rect" coords="0,56,127,80"> <area href="classXercesDOMParser.html" alt="XercesDOMParser" shape="rect" coords="0,112,127,136"> </map> </div> <p> <a href="classPSVIHandler-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0"> <tr><td></td></tr> <tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr> <tr><td colspan="2"><div class="groupHeader">Destructor</div></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">virtual&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classPSVIHandler.html#5e5e294b87d00e71da386936fbcc216b">~PSVIHandler</a> ()</td></tr> <tr><td colspan="2"><div class="groupHeader">The PSVI handler interface</div></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classPSVIHandler.html#46acb45860c9eaa73475bb7fda7f64a8">handleElementPSVI</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const localName, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const uri, <a class="el" href="classPSVIElement.html">PSVIElement</a> *elementInfo)=0</td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Receive notification of the PSVI properties of an element. <a href="#46acb45860c9eaa73475bb7fda7f64a8"></a><br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classPSVIHandler.html#cd004d71c09d8cdcdfe3f86a2c89c91a">handlePartialElementPSVI</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const localName, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const uri, <a class="el" href="classPSVIElement.html">PSVIElement</a> *elementInfo)</td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Receive notification of partial PSVI properties of an element. <a href="#cd004d71c09d8cdcdfe3f86a2c89c91a"></a><br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classPSVIHandler.html#0a29cbe9bd41efdb73af2bb180511b46">handleAttributesPSVI</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const localName, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const uri, <a class="el" href="classPSVIAttributeList.html">PSVIAttributeList</a> *psviAttributes)=0</td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Enables PSVI information about attributes to be passed back to the application. <a href="#0a29cbe9bd41efdb73af2bb180511b46"></a><br></td></tr> <tr><td colspan="2"><br><h2>Protected Member Functions</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classPSVIHandler.html#b00bdb43a6716922069b4716b52179d1">PSVIHandler</a> ()</td></tr> </table> <hr><a name="_details"></a><h2>Detailed Description</h2> This abstract class provides the interface for the scanner to return PSVI information to the application. <hr><h2>Constructor &amp; Destructor Documentation</h2> <a class="anchor" name="5e5e294b87d00e71da386936fbcc216b"></a><!-- doxytag: member="PSVIHandler::~PSVIHandler" ref="5e5e294b87d00e71da386936fbcc216b" args="()" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">virtual PSVIHandler::~PSVIHandler </td> <td>(</td> <td class="paramname"> </td> <td>&nbsp;)&nbsp;</td> <td><code> [virtual]</code></td> </tr> </table> </div> <div class="memdoc"> <p> </div> </div><p> <a class="anchor" name="b00bdb43a6716922069b4716b52179d1"></a><!-- doxytag: member="PSVIHandler::PSVIHandler" ref="b00bdb43a6716922069b4716b52179d1" args="()" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">PSVIHandler::PSVIHandler </td> <td>(</td> <td class="paramname"> </td> <td>&nbsp;)&nbsp;</td> <td><code> [protected]</code></td> </tr> </table> </div> <div class="memdoc"> <p> </div> </div><p> <hr><h2>Member Function Documentation</h2> <a class="anchor" name="46acb45860c9eaa73475bb7fda7f64a8"></a><!-- doxytag: member="PSVIHandler::handleElementPSVI" ref="46acb45860c9eaa73475bb7fda7f64a8" args="(const XMLCh *const localName, const XMLCh *const uri, PSVIElement *elementInfo)=0" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">virtual void PSVIHandler::handleElementPSVI </td> <td>(</td> <td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const &nbsp;</td> <td class="paramname"> <em>localName</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const &nbsp;</td> <td class="paramname"> <em>uri</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classPSVIElement.html">PSVIElement</a> *&nbsp;</td> <td class="paramname"> <em>elementInfo</em></td><td>&nbsp;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td><td><code> [pure virtual]</code></td> </tr> </table> </div> <div class="memdoc"> <p> Receive notification of the PSVI properties of an element. <p> The scanner will issue this call after the <a class="el" href="classXMLDocumentHandler.html" title="This abstract class provides the interface for the scanner to return XML document...">XMLDocumentHandler</a> endElement call. Since the scanner will issue the psviAttributes call immediately after reading the start tag of an element, all element content will be effectively bracketed by these two calls. <dl compact><dt><b>Parameters:</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"></td><td valign="top"><em>localName</em>&nbsp;</td><td>The name of the element whose end tag was just parsed. </td></tr> <tr><td valign="top"></td><td valign="top"><em>uri</em>&nbsp;</td><td>The namespace to which the element is bound </td></tr> <tr><td valign="top"></td><td valign="top"><em>elementInfo</em>&nbsp;</td><td>Object containing the element's PSVI properties </td></tr> </table> </dl> <p>Implemented in <a class="el" href="classAbstractDOMParser.html#5b72f41be81accff5fc53872f5550b8a">AbstractDOMParser</a>.</p> </div> </div><p> <a class="anchor" name="cd004d71c09d8cdcdfe3f86a2c89c91a"></a><!-- doxytag: member="PSVIHandler::handlePartialElementPSVI" ref="cd004d71c09d8cdcdfe3f86a2c89c91a" args="(const XMLCh *const localName, const XMLCh *const uri, PSVIElement *elementInfo)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void PSVIHandler::handlePartialElementPSVI </td> <td>(</td> <td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const&nbsp;</td> <td class="paramname"> <em>localName</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const&nbsp;</td> <td class="paramname"> <em>uri</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classPSVIElement.html">PSVIElement</a> *&nbsp;</td> <td class="paramname"> <em>elementInfo</em></td><td>&nbsp;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td><td><code> [virtual]</code></td> </tr> </table> </div> <div class="memdoc"> <p> Receive notification of partial PSVI properties of an element. <p> This callback is made right after the psviAttributes call for non-empty element.<p> The <a class="el" href="classPSVIElement.html">PSVIElement</a> passed in has all fields properly set and it can be safely accessed the same way as the one passed in handleElementPSVI. However, fields listed below always have default values.<p> getValidity() <a class="el" href="classPSVIItem.html#ad79438ff031861ec9bea82451327480de62be2d1c8ea2fb27f809b46ef7183f" title="Validity value indicating that validation has either not been performed or that a...">PSVIItem::VALIDITY_NOTKNOWN</a> getValidationAttemped() <a class="el" href="classPSVIItem.html#ea6ff50e0e6f9338259b2df990356e8a758f6de74ba0c929be00c756af0975bb" title="Validation status indicating that schema validation has been performed and the element...">PSVIItem::VALIDATION_NONE</a> getMemberTypeDefinition() 0 getSchemaNormalizedValue() 0 getCanonicalRepresentation() 0 getNotationDeclaration() 0<p> <dl compact><dt><b>Parameters:</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"></td><td valign="top"><em>localName</em>&nbsp;</td><td>The name of the element upon which start tag these attributes were encountered. </td></tr> <tr><td valign="top"></td><td valign="top"><em>uri</em>&nbsp;</td><td>The namespace to which the element is bound </td></tr> <tr><td valign="top"></td><td valign="top"><em>elementInfo</em>&nbsp;</td><td>Object containing the element's partial PSVI properties </td></tr> </table> </dl> <p>Reimplemented in <a class="el" href="classAbstractDOMParser.html#24a1f1e55a52f3a8b0cc6ac92079a296">AbstractDOMParser</a>.</p> </div> </div><p> <a class="anchor" name="0a29cbe9bd41efdb73af2bb180511b46"></a><!-- doxytag: member="PSVIHandler::handleAttributesPSVI" ref="0a29cbe9bd41efdb73af2bb180511b46" args="(const XMLCh *const localName, const XMLCh *const uri, PSVIAttributeList *psviAttributes)=0" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">virtual void PSVIHandler::handleAttributesPSVI </td> <td>(</td> <td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const &nbsp;</td> <td class="paramname"> <em>localName</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const &nbsp;</td> <td class="paramname"> <em>uri</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classPSVIAttributeList.html">PSVIAttributeList</a> *&nbsp;</td> <td class="paramname"> <em>psviAttributes</em></td><td>&nbsp;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td><td><code> [pure virtual]</code></td> </tr> </table> </div> <div class="memdoc"> <p> Enables PSVI information about attributes to be passed back to the application. <p> This callback will be made on *all* elements; on elements with no attributes, the final parameter will be null. <dl compact><dt><b>Parameters:</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"></td><td valign="top"><em>localName</em>&nbsp;</td><td>The name of the element upon which start tag these attributes were encountered. </td></tr> <tr><td valign="top"></td><td valign="top"><em>uri</em>&nbsp;</td><td>The namespace to which the element is bound </td></tr> <tr><td valign="top"></td><td valign="top"><em>psviAttributes</em>&nbsp;</td><td>Object containing the attributes' PSVI properties with information to identify them. </td></tr> </table> </dl> <p>Implemented in <a class="el" href="classAbstractDOMParser.html#d54e996c4c87e1bb5ae4d27cb82c9648">AbstractDOMParser</a>.</p> </div> </div><p> <hr>The documentation for this class was generated from the following file:<ul> <li><a class="el" href="PSVIHandler_8hpp-source.html">PSVIHandler.hpp</a></ul> </div> <hr size="1"><address style="text-align: right;"><small>Generated on Wed Apr 21 17:55:50 2010 for Xerces-C++ by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address> </body> </html>
Starlink/xerces
doc/html/apiDocs-3/classPSVIHandler.html
HTML
apache-2.0
14,854
<!-- JBoss, Home of Professional Open Source Copyright 2012, Red Hat, Inc. and/or its affiliates, and individual contributors by the @authors tag. See the copyright.txt in the distribution for a full listing of individual contributors. 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.sourceforge.net/"> <head> <title>wicket-war</title> </head> <body> <h1> <span wicket:id="welcomeMessage"></span> </h1> <table border="1" cellpadding="8"> <tr> <td width="200">Name</td> <td width="200">Email</td> <td width="200">&nbsp;</td> </tr> <tr wicket:id="contacts"> <td><span wicket:id="name">[name]</span></td> <td><span wicket:id="email">[email]</span></td> <td><a href="#" wicket:id="delete">[delete]</a></td> </tr> </table> <wicket:link><a href="InsertContact.html">Insert a new Contact</a></wicket:link> </body> </html>
ejlp12/quickstart
wicket-war/src/main/java/org/jboss/as/quickstarts/wicketWar/pages/ListContacts.html
HTML
apache-2.0
1,559
<html> <body> Splits <b>else</b> branch of the <b>if-else</b> statement. </body> </html>
leafclick/intellij-community
plugins/IntentionPowerPak/src/intentionDescriptions/SplitElseIfIntention/description.html
HTML
apache-2.0
89
<template name="topNavigation"> <div class="row border-bottom white-bg"> <nav class="navbar navbar-static-top" role="navigation"> <div class="navbar-header"> <button aria-controls="navbar" aria-expanded="false" data-target="#navbar" data-toggle="collapse" class="navbar-toggle collapsed" type="button"> <i class="fa fa-reorder"></i> </button> <a href="#" class="navbar-brand">Inspinia</a> </div> <div class="navbar-collapse collapse" id="navbar"> <ul class="nav navbar-nav"> <li class="active"> <a aria-expanded="false" role="button" href="{{pathFor route='layouts'}}"> Back to main Layout page</a> </li> <li class="dropdown"> <a aria-expanded="false" role="button" href="#" class="dropdown-toggle" data-toggle="dropdown"> Menu item <span class="caret"></span></a> <ul role="menu" class="dropdown-menu"> <li><a href="">Menu item</a></li> <li><a href="">Menu item</a></li> <li><a href="">Menu item</a></li> <li><a href="">Menu item</a></li> </ul> </li> <li class="dropdown"> <a aria-expanded="false" role="button" href="#" class="dropdown-toggle" data-toggle="dropdown"> Menu item <span class="caret"></span></a> <ul role="menu" class="dropdown-menu"> <li><a href="">Menu item</a></li> <li><a href="">Menu item</a></li> <li><a href="">Menu item</a></li> <li><a href="">Menu item</a></li> </ul> </li> <li class="dropdown"> <a aria-expanded="false" role="button" href="#" class="dropdown-toggle" data-toggle="dropdown"> Menu item <span class="caret"></span></a> <ul role="menu" class="dropdown-menu"> <li><a href="">Menu item</a></li> <li><a href="">Menu item</a></li> <li><a href="">Menu item</a></li> <li><a href="">Menu item</a></li> </ul> </li> <li class="dropdown"> <a aria-expanded="false" role="button" href="#" class="dropdown-toggle" data-toggle="dropdown"> Menu item <span class="caret"></span></a> <ul role="menu" class="dropdown-menu"> <li><a href="">Menu item</a></li> <li><a href="">Menu item</a></li> <li><a href="">Menu item</a></li> <li><a href="">Menu item</a></li> </ul> </li> </ul> <ul class="nav navbar-top-links navbar-right"> <li> <a href="{{pathFor route='login'}}"> <i class="fa fa-sign-out"></i> Log out </a> </li> </ul> </div> </nav> </div> </template>
Kheperos/ToDoList
inspiniaBootstrapTheme/Meteor_Seed_Project/client/views/common/top-navigation.html
HTML
bsd-3-clause
3,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.5.0_22) on Tue Sep 18 20:44:14 GMT+01:00 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> HttpParams (HttpComponents Core 4.2.2 API) </TITLE> <META NAME="keywords" CONTENT="org.apache.http.params.HttpParams interface"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="HttpParams (HttpComponents Core 4.2.2 API)"; } </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"> <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/HttpParams.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/http/params/HttpConnectionParams.html" title="class in org.apache.http.params"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/http/params/HttpParamsNames.html" title="interface in org.apache.http.params"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/apache/http/params/HttpParams.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="HttpParams.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;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&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.http.params</FONT> <BR> Interface HttpParams</H2> <DL> <DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../org/apache/http/params/AbstractHttpParams.html" title="class in org.apache.http.params">AbstractHttpParams</A>, <A HREF="../../../../org/apache/http/params/BasicHttpParams.html" title="class in org.apache.http.params">BasicHttpParams</A>, <A HREF="../../../../org/apache/http/params/DefaultedHttpParams.html" title="class in org.apache.http.params">DefaultedHttpParams</A>, <A HREF="../../../../org/apache/http/params/SyncBasicHttpParams.html" title="class in org.apache.http.params">SyncBasicHttpParams</A></DD> </DL> <HR> <DL> <DT><PRE>public interface <B>HttpParams</B></DL> </PRE> <P> HttpParams interface represents a collection of immutable values that define a runtime behavior of a component. HTTP parameters should be simple objects: integers, doubles, strings, collections and objects that remain immutable at runtime. HttpParams is expected to be used in 'write once - read many' mode. Once initialized, HTTP parameters are not expected to mutate in the course of HTTP message processing. <p> The purpose of this interface is to define a behavior of other components. Usually each complex component has its own HTTP parameter collection. <p> Instances of this interface can be linked together to form a hierarchy. In the simplest form one set of parameters can use content of another one to obtain default values of parameters not present in the local set. <P> <P> <DL> <DT><B>Since:</B></DT> <DD>4.0</DD> <DT><B>See Also:</B><DD><A HREF="../../../../org/apache/http/params/DefaultedHttpParams.html" title="class in org.apache.http.params"><CODE>DefaultedHttpParams</CODE></A></DL> <HR> <P> <!-- ========== 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;<A HREF="../../../../org/apache/http/params/HttpParams.html" title="interface in org.apache.http.params">HttpParams</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#copy()">copy</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>(4.1)</I></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#getBooleanParameter(java.lang.String, boolean)">getBooleanParameter</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, boolean&nbsp;defaultValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Boolean.html" title="class or interface in java.lang"><CODE>Boolean</CODE></A> parameter value with the given name.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;double</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#getDoubleParameter(java.lang.String, double)">getDoubleParameter</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, double&nbsp;defaultValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Double.html" title="class or interface in java.lang"><CODE>Double</CODE></A> parameter value with the given name.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#getIntParameter(java.lang.String, int)">getIntParameter</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, int&nbsp;defaultValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Integer.html" title="class or interface in java.lang"><CODE>Integer</CODE></A> parameter value with the given name.</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/http/params/HttpParams.html#getLongParameter(java.lang.String, long)">getLongParameter</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, long&nbsp;defaultValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Long.html" title="class or interface in java.lang"><CODE>Long</CODE></A> parameter value with the given name.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#getParameter(java.lang.String)">getParameter</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Obtains the value of the given parameter.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#isParameterFalse(java.lang.String)">isParameterFalse</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Checks if a boolean parameter is not set or <code>false</code>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#isParameterTrue(java.lang.String)">isParameterTrue</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Checks if a boolean parameter is set to <code>true</code>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#removeParameter(java.lang.String)">removeParameter</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Removes the parameter with the specified name.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../org/apache/http/params/HttpParams.html" title="interface in org.apache.http.params">HttpParams</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#setBooleanParameter(java.lang.String, boolean)">setBooleanParameter</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, boolean&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Assigns a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Boolean.html" title="class or interface in java.lang"><CODE>Boolean</CODE></A> to the parameter with the given name</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../org/apache/http/params/HttpParams.html" title="interface in org.apache.http.params">HttpParams</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#setDoubleParameter(java.lang.String, double)">setDoubleParameter</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, double&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Assigns a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Double.html" title="class or interface in java.lang"><CODE>Double</CODE></A> to the parameter with the given name</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../org/apache/http/params/HttpParams.html" title="interface in org.apache.http.params">HttpParams</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#setIntParameter(java.lang.String, int)">setIntParameter</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, int&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Assigns an <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Integer.html" title="class or interface in java.lang"><CODE>Integer</CODE></A> to the parameter with the given name</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../org/apache/http/params/HttpParams.html" title="interface in org.apache.http.params">HttpParams</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#setLongParameter(java.lang.String, long)">setLongParameter</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, long&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Assigns a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Long.html" title="class or interface in java.lang"><CODE>Long</CODE></A> to the parameter with the given name</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../org/apache/http/params/HttpParams.html" title="interface in org.apache.http.params">HttpParams</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/http/params/HttpParams.html#setParameter(java.lang.String, java.lang.Object)">setParameter</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A>&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Assigns the value to the parameter with the given name.</TD> </TR> </TABLE> &nbsp; <P> <!-- ============ 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="getParameter(java.lang.String)"><!-- --></A><H3> getParameter</H3> <PRE> <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A> <B>getParameter</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name)</PRE> <DL> <DD>Obtains the value of the given parameter. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - the parent name. <DT><B>Returns:</B><DD>an object that represents the value of the parameter, <code>null</code> if the parameter is not set or if it is explicitly set to <code>null</code><DT><B>See Also:</B><DD><A HREF="../../../../org/apache/http/params/HttpParams.html#setParameter(java.lang.String, java.lang.Object)"><CODE>setParameter(String, Object)</CODE></A></DL> </DD> </DL> <HR> <A NAME="setParameter(java.lang.String, java.lang.Object)"><!-- --></A><H3> setParameter</H3> <PRE> <A HREF="../../../../org/apache/http/params/HttpParams.html" title="interface in org.apache.http.params">HttpParams</A> <B>setParameter</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A>&nbsp;value)</PRE> <DL> <DD>Assigns the value to the parameter with the given name. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - parameter name<DD><CODE>value</CODE> - parameter value</DL> </DD> </DL> <HR> <A NAME="copy()"><!-- --></A><H3> copy</H3> <PRE> <FONT SIZE="-1"><A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Deprecated.html" title="class or interface in java.lang">@Deprecated</A> </FONT><A HREF="../../../../org/apache/http/params/HttpParams.html" title="interface in org.apache.http.params">HttpParams</A> <B>copy</B>()</PRE> <DL> <DD><B>Deprecated.</B>&nbsp;<I>(4.1)</I> <P> <DD>Creates a copy of these parameters. <P> <DD><DL> <DT><B>Returns:</B><DD>a new set of parameters holding the same values as this one</DL> </DD> </DL> <HR> <A NAME="removeParameter(java.lang.String)"><!-- --></A><H3> removeParameter</H3> <PRE> boolean <B>removeParameter</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name)</PRE> <DL> <DD>Removes the parameter with the specified name. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - parameter name <DT><B>Returns:</B><DD>true if the parameter existed and has been removed, false else.</DL> </DD> </DL> <HR> <A NAME="getLongParameter(java.lang.String, long)"><!-- --></A><H3> getLongParameter</H3> <PRE> long <B>getLongParameter</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, long&nbsp;defaultValue)</PRE> <DL> <DD>Returns a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Long.html" title="class or interface in java.lang"><CODE>Long</CODE></A> parameter value with the given name. If the parameter is not explicitly set, the default value is returned. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - the parent name.<DD><CODE>defaultValue</CODE> - the default value. <DT><B>Returns:</B><DD>a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Long.html" title="class or interface in java.lang"><CODE>Long</CODE></A> that represents the value of the parameter.<DT><B>See Also:</B><DD><A HREF="../../../../org/apache/http/params/HttpParams.html#setLongParameter(java.lang.String, long)"><CODE>setLongParameter(String, long)</CODE></A></DL> </DD> </DL> <HR> <A NAME="setLongParameter(java.lang.String, long)"><!-- --></A><H3> setLongParameter</H3> <PRE> <A HREF="../../../../org/apache/http/params/HttpParams.html" title="interface in org.apache.http.params">HttpParams</A> <B>setLongParameter</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, long&nbsp;value)</PRE> <DL> <DD>Assigns a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Long.html" title="class or interface in java.lang"><CODE>Long</CODE></A> to the parameter with the given name <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - parameter name<DD><CODE>value</CODE> - parameter value</DL> </DD> </DL> <HR> <A NAME="getIntParameter(java.lang.String, int)"><!-- --></A><H3> getIntParameter</H3> <PRE> int <B>getIntParameter</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, int&nbsp;defaultValue)</PRE> <DL> <DD>Returns an <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Integer.html" title="class or interface in java.lang"><CODE>Integer</CODE></A> parameter value with the given name. If the parameter is not explicitly set, the default value is returned. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - the parent name.<DD><CODE>defaultValue</CODE> - the default value. <DT><B>Returns:</B><DD>a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Integer.html" title="class or interface in java.lang"><CODE>Integer</CODE></A> that represents the value of the parameter.<DT><B>See Also:</B><DD><A HREF="../../../../org/apache/http/params/HttpParams.html#setIntParameter(java.lang.String, int)"><CODE>setIntParameter(String, int)</CODE></A></DL> </DD> </DL> <HR> <A NAME="setIntParameter(java.lang.String, int)"><!-- --></A><H3> setIntParameter</H3> <PRE> <A HREF="../../../../org/apache/http/params/HttpParams.html" title="interface in org.apache.http.params">HttpParams</A> <B>setIntParameter</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, int&nbsp;value)</PRE> <DL> <DD>Assigns an <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Integer.html" title="class or interface in java.lang"><CODE>Integer</CODE></A> to the parameter with the given name <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - parameter name<DD><CODE>value</CODE> - parameter value</DL> </DD> </DL> <HR> <A NAME="getDoubleParameter(java.lang.String, double)"><!-- --></A><H3> getDoubleParameter</H3> <PRE> double <B>getDoubleParameter</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, double&nbsp;defaultValue)</PRE> <DL> <DD>Returns a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Double.html" title="class or interface in java.lang"><CODE>Double</CODE></A> parameter value with the given name. If the parameter is not explicitly set, the default value is returned. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - the parent name.<DD><CODE>defaultValue</CODE> - the default value. <DT><B>Returns:</B><DD>a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Double.html" title="class or interface in java.lang"><CODE>Double</CODE></A> that represents the value of the parameter.<DT><B>See Also:</B><DD><A HREF="../../../../org/apache/http/params/HttpParams.html#setDoubleParameter(java.lang.String, double)"><CODE>setDoubleParameter(String, double)</CODE></A></DL> </DD> </DL> <HR> <A NAME="setDoubleParameter(java.lang.String, double)"><!-- --></A><H3> setDoubleParameter</H3> <PRE> <A HREF="../../../../org/apache/http/params/HttpParams.html" title="interface in org.apache.http.params">HttpParams</A> <B>setDoubleParameter</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, double&nbsp;value)</PRE> <DL> <DD>Assigns a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Double.html" title="class or interface in java.lang"><CODE>Double</CODE></A> to the parameter with the given name <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - parameter name<DD><CODE>value</CODE> - parameter value</DL> </DD> </DL> <HR> <A NAME="getBooleanParameter(java.lang.String, boolean)"><!-- --></A><H3> getBooleanParameter</H3> <PRE> boolean <B>getBooleanParameter</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, boolean&nbsp;defaultValue)</PRE> <DL> <DD>Returns a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Boolean.html" title="class or interface in java.lang"><CODE>Boolean</CODE></A> parameter value with the given name. If the parameter is not explicitly set, the default value is returned. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - the parent name.<DD><CODE>defaultValue</CODE> - the default value. <DT><B>Returns:</B><DD>a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Boolean.html" title="class or interface in java.lang"><CODE>Boolean</CODE></A> that represents the value of the parameter.<DT><B>See Also:</B><DD><A HREF="../../../../org/apache/http/params/HttpParams.html#setBooleanParameter(java.lang.String, boolean)"><CODE>setBooleanParameter(String, boolean)</CODE></A></DL> </DD> </DL> <HR> <A NAME="setBooleanParameter(java.lang.String, boolean)"><!-- --></A><H3> setBooleanParameter</H3> <PRE> <A HREF="../../../../org/apache/http/params/HttpParams.html" title="interface in org.apache.http.params">HttpParams</A> <B>setBooleanParameter</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name, boolean&nbsp;value)</PRE> <DL> <DD>Assigns a <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Boolean.html" title="class or interface in java.lang"><CODE>Boolean</CODE></A> to the parameter with the given name <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - parameter name<DD><CODE>value</CODE> - parameter value</DL> </DD> </DL> <HR> <A NAME="isParameterTrue(java.lang.String)"><!-- --></A><H3> isParameterTrue</H3> <PRE> boolean <B>isParameterTrue</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name)</PRE> <DL> <DD>Checks if a boolean parameter is set to <code>true</code>. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - parameter name <DT><B>Returns:</B><DD><tt>true</tt> if the parameter is set to value <tt>true</tt>, <tt>false</tt> if it is not set or set to <code>false</code></DL> </DD> </DL> <HR> <A NAME="isParameterFalse(java.lang.String)"><!-- --></A><H3> isParameterFalse</H3> <PRE> boolean <B>isParameterFalse</B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;name)</PRE> <DL> <DD>Checks if a boolean parameter is not set or <code>false</code>. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - parameter name <DT><B>Returns:</B><DD><tt>true</tt> if the parameter is either not set or set to value <tt>false</tt>, <tt>false</tt> if it is set to <code>true</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/HttpParams.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/http/params/HttpConnectionParams.html" title="class in org.apache.http.params"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/http/params/HttpParamsNames.html" title="interface in org.apache.http.params"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/apache/http/params/HttpParams.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="HttpParams.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;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2005-2012 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved. </BODY> </HTML>
espadrine/opera
chromium/src/third_party/httpcomponents-core/binary-distribution/javadoc/org/apache/http/params/HttpParams.html
HTML
bsd-3-clause
30,951
<!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/html; charset=utf-8" /> <title>nmrglue.process.proc_base.add &mdash; nmrglue v0.2 documentation</title> <link rel="stylesheet" href="../../_static/sphinxdoc.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', VERSION: '0.2', COLLAPSE_MODINDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="../../_static/jquery.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> <link rel="top" title="nmrglue v0.2 documentation" href="../../index.html" /> <link rel="up" title="nmrglue.proc_base" href="../proc_base.html" /> <link rel="next" title="nmrglue.process.proc_base.add_ri" href="nmrglue.process.proc_base.add_ri.html" /> <link rel="prev" title="nmrglue.process.proc_base.zf_auto" href="nmrglue.process.proc_base.zf_auto.html" /> </head> <body> <div class="related"> <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="../../modindex.html" title="Global Module Index" accesskey="M">modules</a> |</li> <li class="right" > <a href="nmrglue.process.proc_base.add_ri.html" title="nmrglue.process.proc_base.add_ri" accesskey="N">next</a> |</li> <li class="right" > <a href="nmrglue.process.proc_base.zf_auto.html" title="nmrglue.process.proc_base.zf_auto" accesskey="P">previous</a> |</li> <li><a href="../../index.html">nmrglue v0.2 documentation</a> &raquo;</li> <li><a href="../index.html" >Reference Guide</a> &raquo;</li> <li><a href="../proc_base.html" accesskey="U">nmrglue.proc_base</a> &raquo;</li> </ul> </div> <div class="sphinxsidebar"> <div class="sphinxsidebarwrapper"> <h4>Previous topic</h4> <p class="topless"><a href="nmrglue.process.proc_base.zf_auto.html" title="previous chapter">nmrglue.process.proc_base.zf_auto</a></p> <h4>Next topic</h4> <p class="topless"><a href="nmrglue.process.proc_base.add_ri.html" title="next chapter">nmrglue.process.proc_base.add_ri</a></p> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="../../_sources/reference/generated/nmrglue.process.proc_base.add.txt" rel="nofollow">Show Source</a></li> </ul> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> <p class="searchtip" style="font-size: 90%"> Enter search terms or a module, class or function name. </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> <div class="section" id="nmrglue-process-proc-base-add"> <h1>nmrglue.process.proc_base.add<a class="headerlink" href="#nmrglue-process-proc-base-add" title="Permalink to this headline">¶</a></h1> <dl class="function"> <dt id="nmrglue.process.proc_base.add"> <tt class="descclassname">nmrglue.process.proc_base.</tt><tt class="descname">add</tt><big>(</big><em>data</em>, <em>r=0.0</em>, <em>i=0.0</em>, <em>c=0.0</em><big>)</big><a class="headerlink" href="#nmrglue.process.proc_base.add" title="Permalink to this definition">¶</a></dt> <dd><p>Add Constant</p> <p>Parameters:</p> <ul class="simple"> <li>data Array of spectral data.</li> <li>r Constant to add to read channel.</li> <li>i Constant to add to imaginary channel.</li> <li>c Constant to add to both channels.</li> </ul> </dd></dl> </div> </div> </div> </div> <div class="clearer"></div> </div> <div class="related"> <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="../../modindex.html" title="Global Module Index" >modules</a> |</li> <li class="right" > <a href="nmrglue.process.proc_base.add_ri.html" title="nmrglue.process.proc_base.add_ri" >next</a> |</li> <li class="right" > <a href="nmrglue.process.proc_base.zf_auto.html" title="nmrglue.process.proc_base.zf_auto" >previous</a> |</li> <li><a href="../../index.html">nmrglue v0.2 documentation</a> &raquo;</li> <li><a href="../index.html" >Reference Guide</a> &raquo;</li> <li><a href="../proc_base.html" >nmrglue.proc_base</a> &raquo;</li> </ul> </div> <div class="footer"> &copy; Copyright 2010, Jonathan J. Helmus. Last updated on Apr 06, 2011. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.4. </div> </body> </html>
thegooglecodearchive/nmrglue
doc/_build/html/reference/generated/nmrglue.process.proc_base.add.html
HTML
bsd-3-clause
5,896
<!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 Sat Dec 28 11:08:51 MSK 2013 --> <TITLE> org.opencv.calib3d Class Hierarchy </TITLE> <META NAME="date" CONTENT="2013-12-28"> <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.opencv.calib3d Class Hierarchy"; } } </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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&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> OpenCV 2.4.8</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../org/opencv/android/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../org/opencv/core/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?org/opencv/calib3d/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.opencv.calib3d </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.opencv.calib3d.<A HREF="../../../org/opencv/calib3d/Calib3d.html" title="class in org.opencv.calib3d"><B>Calib3d</B></A><LI TYPE="circle">org.opencv.calib3d.<A HREF="../../../org/opencv/calib3d/StereoBM.html" title="class in org.opencv.calib3d"><B>StereoBM</B></A><LI TYPE="circle">org.opencv.calib3d.<A HREF="../../../org/opencv/calib3d/StereoSGBM.html" title="class in org.opencv.calib3d"><B>StereoSGBM</B></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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&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> <a href=http://docs.opencv.org>OpenCV 2.4.8 Documentation</a></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../org/opencv/android/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../org/opencv/core/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?org/opencv/calib3d/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> </BODY> </HTML>
jmptable/semanter
SemanterApp/semanter/libs/OpenCV/javadoc/org/opencv/calib3d/package-tree.html
HTML
mit
5,789
<blockquote cite="https://github.com/paypal/bootstrap-accessibility-plugin" title="paypal/bootstrap-accessibility-plugin"> <p class="jser-sitelink"> <strong>paypal/bootstrap-accessibility-plugin</strong><br /> <a href="https://github.com/paypal/bootstrap-accessibility-plugin" title="paypal/bootstrap-accessibility-plugin">https://github.com/paypal/bootstrap-accessibility-plugin</a> </p> </blockquote> <p>Bootstrap 3にWAI-ARIAの属性を加えるようにしてアクセシビリティ的に良くするプラグイン</p> <blockquote cite="https://github.com/lukehoban/ecmascript-asyncawait" title="lukehoban/ecmascript-asyncawait"> <p class="jser-sitelink"> <strong>lukehoban/ecmascript-asyncawait</strong><br /> <a href="https://github.com/lukehoban/ecmascript-asyncawait" title="lukehoban/ecmascript-asyncawait">https://github.com/lukehoban/ecmascript-asyncawait</a> </p> </blockquote> <p>sweet.jsでasyncとawaitの実装。<br /> 内部的にはgenerator、Promisesを使ってる</p> <blockquote cite="http://blog.getbootstrap.com/2014/01/30/bootstrap-3-1-0-released/" title="Bootstrap 3.1.0 released · Bootstrap Blog"> <p class="jser-sitelink"> <strong>Bootstrap 3.1.0 released · Bootstrap Blog</strong><br /> <a href="http://blog.getbootstrap.com/2014/01/30/bootstrap-3-1-0-released/" title="Bootstrap 3.1.0 released · Bootstrap Blog">http://blog.getbootstrap.com/2014/01/30/bootstrap-3-1-0-released/</a> </p> </blockquote> <p>Bootstrap 3.1.0リリース。<br /> ドキュメントサイトのリニューアル、公式のSassポート、Apache LicenseからMITへ、ビルドツールのアップデート</p> <blockquote cite="http://thlorenz.com/blog/live-editing-browserify" title="Live edit browserified code in chrome devtools | thlorenz.com"> <p class="jser-sitelink"> <strong>Live edit browserified code in chrome devtools | thlorenz.com</strong><br /> <a href="http://thlorenz.com/blog/live-editing-browserify" title="Live edit browserified code in chrome devtools | thlorenz.com">http://thlorenz.com/blog/live-editing-browserify</a> </p> </blockquote> <p>Chrome DevToolsのファイルマッピング機能を使うことで、browserifyの元ファイルもChrome DevToolsから編集出来る</p> <blockquote cite="http://nightwatchjs.org/" title="Nightwatch.js"> <p class="jser-sitelink"> <strong>Nightwatch.js</strong><br /> <a href="http://nightwatchjs.org/" title="Nightwatch.js">http://nightwatchjs.org/</a> </p> </blockquote> <p>Selenium WebDriver API を使ったE2Eテストを書けるテスティングフレームワーク。<br /> メソッドチェーンで動作とassertを書いてテストを書く</p> <blockquote cite="https://github.com/polygonplanet/WSHModule" title="polygonplanet/WSHModule"> <p class="jser-sitelink"> <strong>polygonplanet/WSHModule</strong><br /> <a href="https://github.com/polygonplanet/WSHModule" title="polygonplanet/WSHModule">https://github.com/polygonplanet/WSHModule</a> </p> </blockquote> <p>Nodeライクなモジュール、ES5標準に近い挙動をするようなJScript実行環境。<br /> WSH/JScriptが本来持つモノに加えてモダンな機能を加えた/修正したような感じ</p> <blockquote cite="https://github.com/scottcorgan/prominent" title="scottcorgan/prominent"> <p class="jser-sitelink"> <strong>scottcorgan/prominent</strong><br /> <a href="https://github.com/scottcorgan/prominent" title="scottcorgan/prominent">https://github.com/scottcorgan/prominent</a> </p> </blockquote> <p>DOM event listnersをpromises的に書けるようにするライブラリ。<br /> </p> <blockquote cite="https://github.com/chaijs/chai/releases/tag/1.9.0" title="Release 1.9.0 / 2014-01-29 · chaijs/chai"> <p class="jser-sitelink"> <strong>Release 1.9.0 / 2014-01-29 · chaijs/chai</strong><br /> <a href="https://github.com/chaijs/chai/releases/tag/1.9.0" title="Release 1.9.0 / 2014-01-29 · chaijs/chai">https://github.com/chaijs/chai/releases/tag/1.9.0</a> </p> </blockquote> <p>assertionライブラリのchai 1.9.0リリース。<br /> ` .throw()`のエラー表示改善</p> <blockquote cite="http://blog.chromium.org/2014/01/run-chrome-apps-on-mobile-using-apache.html" title="Chromium Blog: Run Chrome Apps on mobile using Apache Cordova"> <p class="jser-sitelink"> <strong>Chromium Blog: Run Chrome Apps on mobile using Apache Cordova</strong><br /> <a href="http://blog.chromium.org/2014/01/run-chrome-apps-on-mobile-using-apache.html" title="Chromium Blog: Run Chrome Apps on mobile using Apache Cordova">http://blog.chromium.org/2014/01/run-chrome-apps-on-mobile-using-apache.html</a> </p> </blockquote> <p> Chrome Apps をApache Cordovaをベースとしたモバイルアプリとして開発出来るtoolchainが公開された</p> <blockquote cite="http://phonegap.com/blog/2014/01/28/cordova-3_3-now-on-build/" title="PhoneGap | Cordova 3.3.0 Now on PhoneGap Build"> <p class="jser-sitelink"> <strong>PhoneGap | Cordova 3.3.0 Now on PhoneGap Build</strong><br /> <a href="http://phonegap.com/blog/2014/01/28/cordova-3_3-now-on-build/" title="PhoneGap | Cordova 3.3.0 Now on PhoneGap Build">http://phonegap.com/blog/2014/01/28/cordova-3_3-now-on-build/</a> </p> </blockquote> <p>Cordova(PhoneGap) 3.3.0リリース</p> <blockquote cite="http://coffeescript.org" title="CoffeeScript"> <p class="jser-sitelink"> <strong>CoffeeScript</strong><br /> <a href="http://coffeescript.org" title="CoffeeScript">http://coffeescript.org</a> </p> </blockquote> <p>CoffeeScript1.7.0リリース。<br /> 新たな演算子や構文が追加されてる。<br /> 配列を展開する `...`や`**`、`//`、 `%%`等。<br /> nodeのrequire.extensionsに対する対応を改善<br /> </p> <blockquote cite="http://hail2u.net/documents/bulletproof-icon-fonts.html" title="安全でアクセシブルなアイコン・フォント"> <p class="jser-sitelink"> <strong>安全でアクセシブルなアイコン・フォント</strong><br /> <a href="http://hail2u.net/documents/bulletproof-icon-fonts.html" title="安全でアクセシブルなアイコン・フォント">http://hail2u.net/documents/bulletproof-icon-fonts.html</a> </p> </blockquote> <p>アイコンフォントとfallbackについて。<br /> またスクリーン・リーダーでは擬似要素のcontentも読まれるためWAI-ARIAの属性を使ってアイコンを読まれないようにすることについても書かれてる</p> <blockquote cite="https://github.com/AriaMinaei/pretty-error" title="AriaMinaei/pretty-error"> <p class="jser-sitelink"> <strong>AriaMinaei/pretty-error</strong><br /> <a href="https://github.com/AriaMinaei/pretty-error" title="AriaMinaei/pretty-error">https://github.com/AriaMinaei/pretty-error</a> </p> </blockquote> <p>nodeのエラースタックトレースを読みやすい形に整形、色付けするモジュール</p> <blockquote cite="http://smalljs.org/package-managers/component-part-1/" title="Introduction to Component"> <p class="jser-sitelink"> <strong>Introduction to Component</strong><br /> <a href="http://smalljs.org/package-managers/component-part-1/" title="Introduction to Component">http://smalljs.org/package-managers/component-part-1/</a> </p> </blockquote> <p>JavaScriptのパッケージ管理ツールであるComponentの紹介</p> <blockquote cite="https://github.com/goodeggs/chai-webdriver" title="goodeggs/chai-webdriver"> <p class="jser-sitelink"> <strong>goodeggs/chai-webdriver</strong><br /> <a href="https://github.com/goodeggs/chai-webdriver" title="goodeggs/chai-webdriver">https://github.com/goodeggs/chai-webdriver</a> </p> </blockquote> <p>selenium-webdriverのassertionをchaiで書けるようにしたChai asertionライブラリ。</p> <blockquote cite="http://net.tutsplus.com/tutorials/javascript-ajax/testing-in-node-js/" title="Testing in Node.js | Nettuts+"> <p class="jser-sitelink"> <strong>Testing in Node.js | Nettuts+</strong><br /> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/testing-in-node-js/" title="Testing in Node.js | Nettuts+">http://net.tutsplus.com/tutorials/javascript-ajax/testing-in-node-js/</a> </p> </blockquote> <p>mocha+chaiを使いTDDな感じでmochaでのテストの書き方について学んでいくチュートリアル</p> <blockquote cite="http://html5index.org/" title="HTML 5 JavaScript API Index"> <p class="jser-sitelink"> <strong>HTML 5 JavaScript API Index</strong><br /> <a href="http://html5index.org/" title="HTML 5 JavaScript API Index">http://html5index.org/</a> </p> </blockquote> <p>HTML5関係のAPIのリファレンス<br /> https://github.com/stefanhaustein/html5index<br /> JavaDocっぽい感じ</p> <blockquote cite="http://saneyukis.hatenablog.com/entry/2014/01/25/213310" title="軽量オブザーバJSライブラリのrev.2をリリースした - snyk_s log"> <p class="jser-sitelink"> <strong>軽量オブザーバJSライブラリのrev.2をリリースした - snyk_s log</strong><br /> <a href="http://saneyukis.hatenablog.com/entry/2014/01/25/213310" title="軽量オブザーバJSライブラリのrev.2をリリースした - snyk_s log">http://saneyukis.hatenablog.com/entry/2014/01/25/213310</a> </p> </blockquote> <p>シンプルなObserverライブラリ。<br /> Observerは関数ではなくhandleMessageを持ったオブジェクトに限定されている。<br /> DOMのhandleEventのような感じ</p> <blockquote cite="http://benclinkinbeard.com/posts/angular-with-browserify-from-ng-conf-2014/" title="Angular with Browserify from ng-conf 2014"> <p class="jser-sitelink"> <strong>Angular with Browserify from ng-conf 2014</strong><br /> <a href="http://benclinkinbeard.com/posts/angular-with-browserify-from-ng-conf-2014/" title="Angular with Browserify from ng-conf 2014">http://benclinkinbeard.com/posts/angular-with-browserify-from-ng-conf-2014/</a> </p> </blockquote> <p>AngularとBroserifyについての発表動画とスライド。<br /> BroserifyについてWhat/Why、AngularJSとどう合わせるかのHowが書かれてる。</p> <blockquote cite="http://qiita.com/shuhei@github/items/4aaa550d1ad30d2fc3b5" title="Node.js - Gruntfile.js が長すぎてつらい人は gulp を使ってみよう - Qiita [キータ]"> <p class="jser-sitelink"> <strong>Node.js - Gruntfile.js が長すぎてつらい人は gulp を使ってみよう - Qiita [キータ]</strong><br /> <a href="http://qiita.com/shuhei@github/items/4aaa550d1ad30d2fc3b5" title="Node.js - Gruntfile.js が長すぎてつらい人は gulp を使ってみよう - Qiita [キータ]">http://qiita.com/shuhei@github/items/4aaa550d1ad30d2fc3b5</a> </p> </blockquote> <p>gulpチュートリアル<br /> 「Web デザイナーさん向け Grunt を使った コーディング作業の効率化、はじめの一歩」のgulp版</p> <blockquote cite="http://www.slideshare.net/cwdoh/kig29th-web-animations" title="Web Animations 1.0 Overview"> <p class="jser-sitelink"> <strong>Web Animations 1.0 Overview</strong><br /> <a href="http://www.slideshare.net/cwdoh/kig29th-web-animations" title="Web Animations 1.0 Overview">http://www.slideshare.net/cwdoh/kig29th-web-animations</a> </p> </blockquote> <p>Web Animationsについてのスライド。<br /> CSS/SVG/requestAnimationFrameの問題点、どのような仕組み/モデルを持ってるか、現在のブラウザのサポート状況などについて</p> <blockquote cite="http://www.html5rocks.com/en/tutorials/webperformance/usertiming/" title="User Timing API: Understanding your Web App - HTML5 Rocks"> <p class="jser-sitelink"> <strong>User Timing API: Understanding your Web App - HTML5 Rocks</strong><br /> <a href="http://www.html5rocks.com/en/tutorials/webperformance/usertiming/" title="User Timing API: Understanding your Web App - HTML5 Rocks">http://www.html5rocks.com/en/tutorials/webperformance/usertiming/</a> </p> </blockquote> <p>User Timing APIでのパフォーマンス測定APIについて。<br /> </p> <blockquote cite="http://www.slideshare.net/ryumatsukano/backbonemarionette" title="実践Backbone.Marionette 現場の悩みと解決まで"> <p class="jser-sitelink"> <strong>実践Backbone.Marionette 現場の悩みと解決まで</strong><br /> <a href="http://www.slideshare.net/ryumatsukano/backbonemarionette" title="実践Backbone.Marionette 現場の悩みと解決まで">http://www.slideshare.net/ryumatsukano/backbonemarionette</a> </p> </blockquote> <p>Marionette.jsについてのスライド。<br /> Railsと合わせてウェブサイトを作った事例 - サーバサイドのViewと合わせた使い方、ajaxとView、親子View。<br /> Backbone.jsでテストしやすいコードを書く事、テストダブルについて。</p> <blockquote cite="https://speakerdeck.com/koba04/marionette-dot-js-in-single-page-application" title="Marionette.js in Single Page Application // Speaker Deck"> <p class="jser-sitelink"> <strong>Marionette.js in Single Page Application // Speaker Deck</strong><br /> <a href="https://speakerdeck.com/koba04/marionette-dot-js-in-single-page-application" title="Marionette.js in Single Page Application // Speaker Deck">https://speakerdeck.com/koba04/marionette-dot-js-in-single-page-application</a> </p> </blockquote> <p>Backbone.jsをベースにしたMarionette.jsについて。<br /> Viewの階層構造、Events、テンプレートなど</p> <blockquote cite="http://gihyo.jp/dev/serial/01/underscorejs" title="Underscore.jsの入り口:連載|gihyo.jp … 技術評論社"> <p class="jser-sitelink"> <strong>Underscore.jsの入り口:連載|gihyo.jp … 技術評論社</strong><br /> <a href="http://gihyo.jp/dev/serial/01/underscorejs" title="Underscore.jsの入り口:連載|gihyo.jp … 技術評論社">http://gihyo.jp/dev/serial/01/underscorejs</a> </p> </blockquote> <p>Underscore.jsについての連載。<br /> 主要なメソッドの機能について紹介されてる</p> <blockquote cite="http://blog.jquery.com/2014/01/24/jquery-1-11-and-2-1-released/" title="jQuery 1.11 and 2.1 Released | Official jQuery Blog"> <p class="jser-sitelink"> <strong>jQuery 1.11 and 2.1 Released | Official jQuery Blog</strong><br /> <a href="http://blog.jquery.com/2014/01/24/jquery-1-11-and-2-1-released/" title="jQuery 1.11 and 2.1 Released | Official jQuery Blog">http://blog.jquery.com/2014/01/24/jquery-1-11-and-2-1-released/</a> </p> </blockquote> <p>jQuery 1.11 と 2.1リリース。<br /> それぞれのモジュールがAMDとなった、+ 遅延初期化が可能に、npm/Bowerから利用できるように、sourcemap URLがデフォルトから外れた</p> <blockquote cite="http://www.oreilly.co.jp/books/9784873116587/" title="O'Reilly Japan - Backbone.jsアプリケーション開発ガイド"> <p class="jser-sitelink"> <strong>O'Reilly Japan - Backbone.jsアプリケーション開発ガイド</strong><br /> <a href="http://www.oreilly.co.jp/books/9784873116587/" title="O'Reilly Japan - Backbone.jsアプリケーション開発ガイド">http://www.oreilly.co.jp/books/9784873116587/</a> </p> </blockquote> <p>2014年02月07日 発売<br /> Developing Backbone.js Applicationsの翻訳本。<br /> http://addyosmani.github.io/backbone-fundamentals/</p> <blockquote cite="http://blog.nodejs.org/2014/01/23/node-v0-10-25-stable/" title="Node v0.10.25 (Stable)"> <p class="jser-sitelink"> <strong>Node v0.10.25 (Stable)</strong><br /> <a href="http://blog.nodejs.org/2014/01/23/node-v0-10-25-stable/" title="Node v0.10.25 (Stable)">http://blog.nodejs.org/2014/01/23/node-v0-10-25-stable/</a> </p> </blockquote> <p>Node v0.10.25 リリース。<br /> </p> <blockquote cite="https://github.com/watilde/tvm" title="watilde/tvm"> <p class="jser-sitelink"> <strong>watilde/tvm</strong><br /> <a href="https://github.com/watilde/tvm" title="watilde/tvm">https://github.com/watilde/tvm</a> </p> </blockquote> <p>TypeScriptバージョン管理コマンドラインツール</p> <blockquote cite="http://remysharp.com/2014/01/20/nodemon-1-0/" title="nodemon 1.0"> <p class="jser-sitelink"> <strong>nodemon 1.0</strong><br /> <a href="http://remysharp.com/2014/01/20/nodemon-1-0/" title="nodemon 1.0">http://remysharp.com/2014/01/20/nodemon-1-0/</a> </p> </blockquote> <p>Nodeのアプリケーションコードの変更を監視して、自動的にサーバを再起動できるnodemon 1.0リリース</p> <blockquote cite="https://github.com/dunxrion/benchmartian" title="dunxrion/benchmartian · GitHub"> <p class="jser-sitelink"> <strong>dunxrion/benchmartian · GitHub</strong><br /> <a href="https://github.com/dunxrion/benchmartian" title="dunxrion/benchmartian · GitHub">https://github.com/dunxrion/benchmartian</a> </p> </blockquote> <p>benchmark.jsを使ったベンチマークを取るコマンドラインツール</p> <blockquote cite="http://custardbelly.com/blog/blog-posts/2014/01/08/bdd-in-js-cucumberjs/index.html" title="Todd Anderson - BDD in JavaScript: CucumberJS"> <p class="jser-sitelink"> <strong>Todd Anderson - BDD in JavaScript: CucumberJS</strong><br /> <a href="http://custardbelly.com/blog/blog-posts/2014/01/08/bdd-in-js-cucumberjs/index.html" title="Todd Anderson - BDD in JavaScript: CucumberJS">http://custardbelly.com/blog/blog-posts/2014/01/08/bdd-in-js-cucumberjs/index.html</a> </p> </blockquote> <p>CucumberJSについての紹介。<br /> シナリオの書き方</p> <blockquote cite="http://eslint.org/blog/2014/01/eslint-0.3.0-released/" title="ESLint 0.3.0 released - ESLint"> <p class="jser-sitelink"> <strong>ESLint 0.3.0 released - ESLint</strong><br /> <a href="http://eslint.org/blog/2014/01/eslint-0.3.0-released/" title="ESLint 0.3.0 released - ESLint">http://eslint.org/blog/2014/01/eslint-0.3.0-released/</a> </p> </blockquote> <p>ESLint 0.3.0 リリース。<br /> jsを設定ファイルとして使えなくなったけど、JSONにコメントが使えるように。<br /> .eslintignoreの追加、stylish format がデフォルトのレポーターに変更、ルールの追加や修正</p> <blockquote cite="http://blog.millermedeiros.com/callbacks-promises-signals-and-events/" title="Callbacks, Promises, Signals and Events | Blog | Miller Medeiros"> <p class="jser-sitelink"> <strong>Callbacks, Promises, Signals and Events | Blog | Miller Medeiros</strong><br /> <a href="http://blog.millermedeiros.com/callbacks-promises-signals-and-events/" title="Callbacks, Promises, Signals and Events | Blog | Miller Medeiros">http://blog.millermedeiros.com/callbacks-promises-signals-and-events/</a> </p> </blockquote> <p>コールバック、Promises、Signals、Eventsのそれぞれの特徴について簡単にまとめられてる。</p> <blockquote cite="http://efcl.info/2014/0120/res3605/" title="npmとbrowserifyを使ったクライアントサイドのウェブアプリ開発 | Web scratch"> <p class="jser-sitelink"> <strong>npmとbrowserifyを使ったクライアントサイドのウェブアプリ開発 | Web scratch</strong><br /> <a href="http://efcl.info/2014/0120/res3605/" title="npmとbrowserifyを使ったクライアントサイドのウェブアプリ開発 | Web scratch">http://efcl.info/2014/0120/res3605/</a> </p> </blockquote> <p>browserifyについての紹介と使ってみての所感。<br /> npmやbower経由でインストールしたライブラリの使い方、gulpやbeefyでのビルドのワークフロー、source mapを使ったデバッグ等</p> <blockquote cite="https://speakerdeck.com/shuhei/introduction-to-react" title="Introduction to React // Speaker Deck"> <p class="jser-sitelink"> <strong>Introduction to React // Speaker Deck</strong><br /> <a href="https://speakerdeck.com/shuhei/introduction-to-react" title="Introduction to React // Speaker Deck">https://speakerdeck.com/shuhei/introduction-to-react</a> </p> </blockquote> <p>Facebookによって開発されてるVirtual DOMライブラリのReactについてのスライド。<br /> </p> <blockquote cite="http://coding.smashingmagazine.com/2014/01/13/better-javascript-library-for-the-dom/" title="Writing A Better JavaScript Library For The DOM | Smashing Coding"> <p class="jser-sitelink"> <strong>Writing A Better JavaScript Library For The DOM | Smashing Coding</strong><br /> <a href="http://coding.smashingmagazine.com/2014/01/13/better-javascript-library-for-the-dom/" title="Writing A Better JavaScript Library For The DOM | Smashing Coding">http://coding.smashingmagazine.com/2014/01/13/better-javascript-library-for-the-dom/</a> </p> </blockquote> <p>better-domについての記事<br /> https://github.com/chemerisuk/better-dom<br /> ネイティブの機能を使いつつ、jQueryの罠っぽい機能を避けるような作り</p> <blockquote cite="http://blog.jquery.com/2014/01/16/jquery-1-11-0-rc1-and-2-1-0-rc1-released/" title="jQuery 1.11.0 RC1 and 2.1.0 RC1 Released | Official jQuery Blog"> <p class="jser-sitelink"> <strong>jQuery 1.11.0 RC1 and 2.1.0 RC1 Released | Official jQuery Blog</strong><br /> <a href="http://blog.jquery.com/2014/01/16/jquery-1-11-0-rc1-and-2-1-0-rc1-released/" title="jQuery 1.11.0 RC1 and 2.1.0 RC1 Released | Official jQuery Blog">http://blog.jquery.com/2014/01/16/jquery-1-11-0-rc1-and-2-1-0-rc1-released/</a> </p> </blockquote> <p>jQuery 1.11.0 RC1 と 2.1.0 RC1リリース</p> <blockquote cite="http://www.2ality.com/2014/01/tc39-march-november-2013.html" title="ECMAScript 6: TC39 meetings, March–November 2013"> <p class="jser-sitelink"> <strong>ECMAScript 6: TC39 meetings, March–November 2013</strong><br /> <a href="http://www.2ality.com/2014/01/tc39-march-november-2013.html" title="ECMAScript 6: TC39 meetings, March–November 2013">http://www.2ality.com/2014/01/tc39-march-november-2013.html</a> </p> </blockquote> <p>2013年にECMAScript標準の管理をしてるTC39のミーティングで話された内容をまとめたもの。 ES6で追加される機能や仕様等について書かれている</p> <blockquote cite="http://blog.jqueryui.com/2014/01/jquery-ui-1-10-4/" title="jQuery UI 1.10.4 | jQuery UI Blog"> <p class="jser-sitelink"> <strong>jQuery UI 1.10.4 | jQuery UI Blog</strong><br /> <a href="http://blog.jqueryui.com/2014/01/jquery-ui-1-10-4/" title="jQuery UI 1.10.4 | jQuery UI Blog">http://blog.jqueryui.com/2014/01/jquery-ui-1-10-4/</a> </p> </blockquote> <p>jQuery UI 1.10.4リリース。<br /> </p> <blockquote cite="https://github.com/blog/1756-optimizing-large-selector-sets" title="Optimizing large selector sets"> <p class="jser-sitelink"> <strong>Optimizing large selector sets</strong><br /> <a href="https://github.com/blog/1756-optimizing-large-selector-sets" title="Optimizing large selector sets">https://github.com/blog/1756-optimizing-large-selector-sets</a> </p> </blockquote> <p>CSS Selectorのマッチを、最初にindexを作っておいてO(1)で探索をできるようにするSelectorSetについて。<br /> jQueryと統合できるようになってて、`on`によるdelegate eventsを改善する。</p> <blockquote cite="http://blakeembrey.com/articles/introduction-to-browserify/" title="Introduction to Browserify • Blake Embrey"> <p class="jser-sitelink"> <strong>Introduction to Browserify • Blake Embrey</strong><br /> <a href="http://blakeembrey.com/articles/introduction-to-browserify/" title="Introduction to Browserify • Blake Embrey">http://blakeembrey.com/articles/introduction-to-browserify/</a> </p> </blockquote> <p>browserifyについての紹介。<br /> NodeのCoreモジュールやnpmモジュール、Transforms機能を使ってファイルのインライン化やビルド時の環境変数の埋め込み、browserifyのオプションについて</p> <blockquote cite="https://github.com/twbs/bootstrap-sass" title="twbs/bootstrap-sass"> <p class="jser-sitelink"> <strong>twbs/bootstrap-sass</strong><br /> <a href="https://github.com/twbs/bootstrap-sass" title="twbs/bootstrap-sass">https://github.com/twbs/bootstrap-sass</a> </p> </blockquote> <p>Twitter bootstrapの公式Sassポート</p> <blockquote cite="http://www.youtube.com/playlist?list=PLjKP9DUCzZorde6sLWHJ3GNd-6VrGrbqm" title="YUIConf 2013 - YouTube"> <p class="jser-sitelink"> <strong>YUIConf 2013 - YouTube</strong><br /> <a href="http://www.youtube.com/playlist?list=PLjKP9DUCzZorde6sLWHJ3GNd-6VrGrbqm" title="YUIConf 2013 - YouTube">http://www.youtube.com/playlist?list=PLjKP9DUCzZorde6sLWHJ3GNd-6VrGrbqm</a> </p> </blockquote> <p>YUI Conf 2013の動画が公開された</p> <blockquote cite="https://github.com/mdevils/node-jscs/" title="mdevils/node-jscs"> <p class="jser-sitelink"> <strong>mdevils/node-jscs</strong><br /> <a href="https://github.com/mdevils/node-jscs/" title="mdevils/node-jscs">https://github.com/mdevils/node-jscs/</a> </p> </blockquote> <p>JavaScriptのコーディングスタイルチェックツール.<br /> JSHIntと一緒に使うことを想定してる</p> <blockquote cite="http://www.youtube.com/user/ngconfvideos" title="ng-conf 2014 - YouTube"> <p class="jser-sitelink"> <strong>ng-conf 2014 - YouTube</strong><br /> <a href="http://www.youtube.com/user/ngconfvideos" title="ng-conf 2014 - YouTube">http://www.youtube.com/user/ngconfvideos</a> </p> </blockquote> <p>ng-conf.org 2014の動画</p> <blockquote cite="http://www.amazon.com/o/ASIN/1491950293/amazon0abac-22/ref=nosim" title="Programming JavaScript Applications: Robust Web Architecture with Node, HTML5, and Modern JS Libraries: Eric Elliott: 9781491950296: Amazon.com: Books"> <p class="jser-sitelink"> <strong>Programming JavaScript Applications: Robust Web Architecture with Node, HTML5, and Modern JS Libraries: Eric Elliott: 9781491950296: Amazon.com: Books</strong><br /> <a href="http://www.amazon.com/o/ASIN/1491950293/amazon0abac-22/ref=nosim" title="Programming JavaScript Applications: Robust Web Architecture with Node, HTML5, and Modern JS Libraries: Eric Elliott: 9781491950296: Amazon.com: Books">http://www.amazon.com/o/ASIN/1491950293/amazon0abac-22/ref=nosim</a> </p> </blockquote> <p>2014年8月25日発売</p> <blockquote cite="http://blog.jetbrains.com/webstorm/2014/01/webstorm-8-eap/" title="WebStorm 8 EAP Starts Now | JetBrains WebStorm Blog"> <p class="jser-sitelink"> <strong>WebStorm 8 EAP Starts Now | JetBrains WebStorm Blog</strong><br /> <a href="http://blog.jetbrains.com/webstorm/2014/01/webstorm-8-eap/" title="WebStorm 8 EAP Starts Now | JetBrains WebStorm Blog">http://blog.jetbrains.com/webstorm/2014/01/webstorm-8-eap/</a> </p> </blockquote> <p>WebStorm 8EAPの最初のリリース。<br /> AngularJSのサポート改善、JetBrainsが買収したSpy-jsを使ったトレースツールが入った。<br /> </p> <blockquote cite="http://blog.rodneyrehm.de/archives/33-libsass.js-An-Emscripten-Experiment.html" title="libsass.js - An Emscripten Experiment | Rodney Rehm"> <p class="jser-sitelink"> <strong>libsass.js - An Emscripten Experiment | Rodney Rehm</strong><br /> <a href="http://blog.rodneyrehm.de/archives/33-libsass.js-An-Emscripten-Experiment.html" title="libsass.js - An Emscripten Experiment | Rodney Rehm">http://blog.rodneyrehm.de/archives/33-libsass.js-An-Emscripten-Experiment.html</a> </p> </blockquote> <p>libsassをEmscriptenして、Sassをブラウザ上でコンパイル出来るようにする</p> <blockquote cite="http://perfectionkills.com/state-of-function-decompilation-in-javascript/" title="State of function decompilation in Javascript — Perfection Kills"> <p class="jser-sitelink"> <strong>State of function decompilation in Javascript — Perfection Kills</strong><br /> <a href="http://perfectionkills.com/state-of-function-decompilation-in-javascript/" title="State of function decompilation in Javascript — Perfection Kills">http://perfectionkills.com/state-of-function-decompilation-in-javascript/</a> </p> </blockquote> <p>実装依存となってるFunction.prototype.toStringの挙動について。<br /> 現在のブラウザの動作、ES6で追加された関数ではどうなるか、またユーザー定義、Proxy.createFunctionについて</p> <blockquote cite="http://www.sitepen.com/blog/2013/12/31/definitive-guide-to-typescript/" title="The Definitive TypeScript Guide | Blog | SitePen"> <p class="jser-sitelink"> <strong>The Definitive TypeScript Guide | Blog | SitePen</strong><br /> <a href="http://www.sitepen.com/blog/2013/12/31/definitive-guide-to-typescript/" title="The Definitive TypeScript Guide | Blog | SitePen">http://www.sitepen.com/blog/2013/12/31/definitive-guide-to-typescript/</a> </p> </blockquote> <p>TypeScriptチュートリアル</p> <blockquote cite="https://github.com/endangeredmassa/bond" title="EndangeredMassa/bond"> <p class="jser-sitelink"> <strong>EndangeredMassa/bond</strong><br /> <a href="https://github.com/endangeredmassa/bond" title="EndangeredMassa/bond">https://github.com/endangeredmassa/bond</a> </p> </blockquote> <p>シンプルなstubとspyの機能持ったライブラリ</p> <blockquote cite="http://blog.jquery.com/2014/01/13/the-state-of-jquery-2014/" title="The State of jQuery 2014 | Official jQuery Blog"> <p class="jser-sitelink"> <strong>The State of jQuery 2014 | Official jQuery Blog</strong><br /> <a href="http://blog.jquery.com/2014/01/13/the-state-of-jquery-2014/" title="The State of jQuery 2014 | Official jQuery Blog">http://blog.jquery.com/2014/01/13/the-state-of-jquery-2014/</a> </p> </blockquote> <p>jQueryの現在と今後について。<br /> jQuery CDNがhttpsに対応した</p> <blockquote cite="http://graspjs.com/blog/2014/01/07/refactoring-javascript-with-grasp/" title="Refactoring your JavaScript code with Grasp | Grasp - JavaScript structural search, replace, and refactor"> <p class="jser-sitelink"> <strong>Refactoring your JavaScript code with Grasp | Grasp - JavaScript structural search, replace, and refactor</strong><br /> <a href="http://graspjs.com/blog/2014/01/07/refactoring-javascript-with-grasp/" title="Refactoring your JavaScript code with Grasp | Grasp - JavaScript structural search, replace, and refactor">http://graspjs.com/blog/2014/01/07/refactoring-javascript-with-grasp/</a> </p> </blockquote> <p>JS ASTを元にしたgrep/sedのようなツールであるGraspのユースケース紹介。<br /> 実際にどのようにリファクタリングを行えるかが書かれてる</p> <blockquote cite="http://jxck.hatenablog.com/entry/2014-01-12/generator-screencaset" title="ジェネレータの解説と非同期への適用 - Block Rockin’ Codes"> <p class="jser-sitelink"> <strong>ジェネレータの解説と非同期への適用 - Block Rockin’ Codes</strong><br /> <a href="http://jxck.hatenablog.com/entry/2014-01-12/generator-screencaset" title="ジェネレータの解説と非同期への適用 - Block Rockin’ Codes">http://jxck.hatenablog.com/entry/2014-01-12/generator-screencaset</a> </p> </blockquote> <p>NodeでのGeneratorについてのスクリーンキャスト。<br /> generatorの使い方、next()でどこまで進むか、非同期処理の同期化、ユーザー側とライブラリ側を分けるための抽象化(coライクのものを作る)、throwでのエラー処理、thunkifyのやってる事<br /> </p> <blockquote cite="http://ympbyc.hatenablog.com/entry/2014/01/11/sweet_js%E3%81%A7shift/reset%3A_%E9%99%90%E5%AE%9A%E7%B6%99%E7%B6%9A%E3%82%92%E4%BD%BF%E3%81%A3%E3%81%A6%E3%82%B3%E3%83%BC%E3%83%AB%E3%83%90%E3%83%83%E3%82%AF%E5%9C%B0%E7%8D%84%E3%81%8B%E3%82%89%E6%8A%9C" title="sweet.jsでshift/reset: 限定継続を使ってコールバック地獄から抜け出す - 標高+1m"> <p class="jser-sitelink"> <strong>sweet.jsでshift/reset: 限定継続を使ってコールバック地獄から抜け出す - 標高+1m</strong><br /> <a href="http://ympbyc.hatenablog.com/entry/2014/01/11/sweet_js%E3%81%A7shift/reset%3A_%E9%99%90%E5%AE%9A%E7%B6%99%E7%B6%9A%E3%82%92%E4%BD%BF%E3%81%A3%E3%81%A6%E3%82%B3%E3%83%BC%E3%83%AB%E3%83%90%E3%83%83%E3%82%AF%E5%9C%B0%E7%8D%84%E3%81%8B%E3%82%89%E6%8A%9C" title="sweet.jsでshift/reset: 限定継続を使ってコールバック地獄から抜け出す - 標高+1m">http://ympbyc.hatenablog.com/entry/2014/01/11/sweet_js%E3%81%A7shift/reset%3A_%E9%99%90%E5%AE%9A%E7%B6%99%E7%B6%9A%E3%82%92%E4%BD%BF%E3%81%A3%E3%81%A6%E3%82%B3%E3%83%BC%E3%83%AB%E3%83%90%E3%83%83%E3%82%AF%E5%9C%B0%E7%8D%84%E3%81%8B%E3%82%89%E6%8A%9C</a> </p> </blockquote> <p>sweet.jsを使ったshift/resetのような実装</p> <blockquote cite="http://linemanjs.com/" title="Lineman | Build awesome web apps, easily."> <p class="jser-sitelink"> <strong>Lineman | Build awesome web apps, easily.</strong><br /> <a href="http://linemanjs.com/" title="Lineman | Build awesome web apps, easily.">http://linemanjs.com/</a> </p> </blockquote> <p>Yeomanのようなウェブアプリのワークフロー管理ツール。<br /> プロジェクトのテンプレート、ジェネレータやAPIのStubやProxy、Gruntのタスク管理等</p> <blockquote cite="https://github.com/groupon/testium" title="groupon/testium"> <p class="jser-sitelink"> <strong>groupon/testium</strong><br /> <a href="https://github.com/groupon/testium" title="groupon/testium">https://github.com/groupon/testium</a> </p> </blockquote> <p>WebDriverとmochaを使ったIntegration testを行えるツール。<br /> webdriver-http-syncをベースにしていて同期的にテストを書けるのが特徴</p> <blockquote cite="https://github.com/lo-th/Oimo.js" title="lo-th/Oimo.js"> <p class="jser-sitelink"> <strong>lo-th/Oimo.js</strong><br /> <a href="https://github.com/lo-th/Oimo.js" title="lo-th/Oimo.js">https://github.com/lo-th/Oimo.js</a> </p> </blockquote> <p>Three.jsを使った物理エンジンライブラリ。<br /> AS3のOimoPhysicsのJavaScriptポート。</p> <blockquote cite="http://jlongster.com/Stop-Writing-JavaScript-Compilers--Make-Macros-Instead" title="Stop Writing JavaScript Compilers! Make Macros Instead"> <p class="jser-sitelink"> <strong>Stop Writing JavaScript Compilers! Make Macros Instead</strong><br /> <a href="http://jlongster.com/Stop-Writing-JavaScript-Compilers--Make-Macros-Instead" title="Stop Writing JavaScript Compilers! Make Macros Instead">http://jlongster.com/Stop-Writing-JavaScript-Compilers--Make-Macros-Instead</a> </p> </blockquote> <p>JavaScriptのマクロを書けるsweet.jsの使い方とsweet.jsを使ってES6のsyntaxをいくつか実装したmacroについて</p> <blockquote cite="http://tavendo.com/blog/post/super-vector-graphics/" title="SVG - Super Vector Graphics"> <p class="jser-sitelink"> <strong>SVG - Super Vector Graphics</strong><br /> <a href="http://tavendo.com/blog/post/super-vector-graphics/" title="SVG - Super Vector Graphics">http://tavendo.com/blog/post/super-vector-graphics/</a> </p> </blockquote> <p>SVGについての連載。<br /> SVGの基本や利点や扱い方、クロスブラウザでの表示や最適化、fallbackについて書かれてる</p> <blockquote cite="http://promise-nuggets.github.io/" title="Promise nuggets"> <p class="jser-sitelink"> <strong>Promise nuggets</strong><br /> <a href="http://promise-nuggets.github.io/" title="Promise nuggets">http://promise-nuggets.github.io/</a> </p> </blockquote> <p>Promisesに関するチュートリアル。<br /> Promisesの使い方やパターンについて書かれている</p> <blockquote cite="http://www.amazon.com/o/ASIN/1430264810/amazon0abac-22/ref=nosim" title="Amazon: Dart for Absolute Beginners [Paperback]: David Kopec"> <p class="jser-sitelink"> <strong>Amazon: Dart for Absolute Beginners [Paperback]: David Kopec</strong><br /> <a href="http://www.amazon.com/o/ASIN/1430264810/amazon0abac-22/ref=nosim" title="Amazon: Dart for Absolute Beginners [Paperback]: David Kopec">http://www.amazon.com/o/ASIN/1430264810/amazon0abac-22/ref=nosim</a> </p> </blockquote> <p>2014年7月14日発売<br /> Dart初心者向けの書籍</p> <blockquote cite="http://www.frida.re/" title="Frida"> <p class="jser-sitelink"> <strong>Frida</strong><br /> <a href="http://www.frida.re/" title="Frida">http://www.frida.re/</a> </p> </blockquote> <p>プロセスのトレース、関数のhook等を出来るツール https://github.com/frida/frida-gum/ <br /> V8とPythonを使ったバインディングがあり、JavaScriptでスクリプトを書いてプロセスを監視したりデバッグに使える。</p> <blockquote cite="http://www.amazon.co.jp/o/ASIN/4048916580/amazon0abac-22/ref=nosim" title="Amazon: サードパーティJavaScript [大型本]: Ben Vinegar, Anton Kovalyov, 水野貴明"> <p class="jser-sitelink"> <strong>Amazon: サードパーティJavaScript [大型本]: Ben Vinegar, Anton Kovalyov, 水野貴明</strong><br /> <a href="http://www.amazon.co.jp/o/ASIN/4048916580/amazon0abac-22/ref=nosim" title="Amazon: サードパーティJavaScript [大型本]: Ben Vinegar, Anton Kovalyov, 水野貴明">http://www.amazon.co.jp/o/ASIN/4048916580/amazon0abac-22/ref=nosim</a> </p> </blockquote> <p>2014年2月1日発売<br /> Third-party JavaScriptの翻訳本<br /> http://thirdpartyjs.com/</p> <blockquote cite="https://github.com/andyearnshaw/Intl.js/releases/tag/v0.1.0" title="Release Now passing all relevant tests · andyearnshaw/Intl.js"> <p class="jser-sitelink"> <strong>Release Now passing all relevant tests · andyearnshaw/Intl.js</strong><br /> <a href="https://github.com/andyearnshaw/Intl.js/releases/tag/v0.1.0" title="Release Now passing all relevant tests · andyearnshaw/Intl.js">https://github.com/andyearnshaw/Intl.js/releases/tag/v0.1.0</a> </p> </blockquote> <p>ECMAScript Internationalization API (ECMA-402)の実装であるIntl.js 0.1.0がリリース。<br /> test262 suiteを全てパスした</p> <blockquote cite="https://github.com/mozilla/sweet.js/releases/tag/v0.4.0" title="Release Infix macros · mozilla/sweet.js"> <p class="jser-sitelink"> <strong>Release Infix macros · mozilla/sweet.js</strong><br /> <a href="https://github.com/mozilla/sweet.js/releases/tag/v0.4.0" title="Release Infix macros · mozilla/sweet.js">https://github.com/mozilla/sweet.js/releases/tag/v0.4.0</a> </p> </blockquote> <p>マクロを扱えるsweet.js 0.4.0リリース</p> <blockquote cite="https://github.com/tooling/book-of-modern-frontend-tooling" title="tooling/book-of-modern-frontend-tooling"> <p class="jser-sitelink"> <strong>tooling/book-of-modern-frontend-tooling</strong><br /> <a href="https://github.com/tooling/book-of-modern-frontend-tooling" title="tooling/book-of-modern-frontend-tooling">https://github.com/tooling/book-of-modern-frontend-tooling</a> </p> </blockquote> <p>モダンなフロントエンド向けツールについて書かれている書籍。<br /> Github上で書かれいるのでコントリビューションも出来る</p> <blockquote cite="http://www.frida.re/" title="Frida"> <p class="jser-sitelink"> <strong>Frida</strong><br /> <a href="http://www.frida.re/" title="Frida">http://www.frida.re/</a> </p> </blockquote> <p>プロセスのトレース、関数のhook等を出来るツール https://github.com/frida/frida-gum/ <br /> V8とPythonを使ったバインディングがあり、JavaScriptでスクリプトを書いてプロセスを監視したりデバッグに使える。</p> <blockquote cite="http://jrburke.com/2014/01/08/requirejs-2.1.10-released/" title="RequireJS 2.1.10 Released ~ James Burke"> <p class="jser-sitelink"> <strong>RequireJS 2.1.10 Released ~ James Burke</strong><br /> <a href="http://jrburke.com/2014/01/08/requirejs-2.1.10-released/" title="RequireJS 2.1.10 Released ~ James Burke">http://jrburke.com/2014/01/08/requirejs-2.1.10-released/</a> </p> </blockquote> <p>RequireJS 2.1.10リリース。<br /> nodeIdCompat、bundlesオプションの追加</p> <blockquote cite="http://spion.github.io/posts/why-i-am-switching-to-promises.html" title="Why I am switching to promises"> <p class="jser-sitelink"> <strong>Why I am switching to promises</strong><br /> <a href="http://spion.github.io/posts/why-i-am-switching-to-promises.html" title="Why I am switching to promises">http://spion.github.io/posts/why-i-am-switching-to-promises.html</a> </p> </blockquote> <p>Promiseの利点について。<br /> throw-safeなエラーハンドリング、パフォーマンスとメモリ消費、promise.nodeifyを使ったコールバックスタイルとの互換性、Promiseの書き方やユースケース等まとまってる</p> <blockquote cite="http://Ianfeather.github.com/ianfeatherV3/ten-reasons-we-switched-from-an-icon-font-to-svg/" title="Ten reasons we switched from an icon font to SVG - Ian Feather"> <p class="jser-sitelink"> <strong>Ten reasons we switched from an icon font to SVG - Ian Feather</strong><br /> <a href="http://Ianfeather.github.com/ianfeatherV3/ten-reasons-we-switched-from-an-icon-font-to-svg/" title="Ten reasons we switched from an icon font to SVG - Ian Feather">http://Ianfeather.github.com/ianfeatherV3/ten-reasons-we-switched-from-an-icon-font-to-svg/</a> </p> </blockquote> <p>アイコンフォントとSVGを比べた時にSVGのメリットについて。<br /> </p> <blockquote cite="http://www.amazon.co.jp/o/ASIN/4883379167/amazon0abac-22/ref=nosim" title="Amazon: HTML5 Web標準API バイブル [単行本]: 羽田野 太巳"> <p class="jser-sitelink"> <strong>Amazon: HTML5 Web標準API バイブル [単行本]: 羽田野 太巳</strong><br /> <a href="http://www.amazon.co.jp/o/ASIN/4883379167/amazon0abac-22/ref=nosim" title="Amazon: HTML5 Web標準API バイブル [単行本]: 羽田野 太巳">http://www.amazon.co.jp/o/ASIN/4883379167/amazon0abac-22/ref=nosim</a> </p> </blockquote> <p>2014年1月20日発売<br /> 様々なWebPlatform APIについてチュートリアル方式で解説した書籍</p> <blockquote cite="http://www.oreilly.co.jp/books/9784873116600/" title="O'Reilly Japan - JavaScriptで学ぶ関数型プログラミング"> <p class="jser-sitelink"> <strong>O'Reilly Japan - JavaScriptで学ぶ関数型プログラミング</strong><br /> <a href="http://www.oreilly.co.jp/books/9784873116600/" title="O'Reilly Japan - JavaScriptで学ぶ関数型プログラミング">http://www.oreilly.co.jp/books/9784873116600/</a> </p> </blockquote> <p>2014年01月18日発売<br /> Functional JavaScriptの翻訳本</p> <blockquote cite="http://krasimirtsonev.com/blog/article/Dependency-injection-in-JavaScript" title="Dependency injection in JavaScript"> <p class="jser-sitelink"> <strong>Dependency injection in JavaScript</strong><br /> <a href="http://krasimirtsonev.com/blog/article/Dependency-injection-in-JavaScript" title="Dependency injection in JavaScript">http://krasimirtsonev.com/blog/article/Dependency-injection-in-JavaScript</a> </p> </blockquote> <p>JavaScriptでDIを実装してみるチュートリアル。<br /> AMDライクな依存関係を示すモジュールの定義をするアプローチとAngularJSみたいなリフレクションで関数定義から依存関係を取得するアプローチについて書かれてる</p> <blockquote cite="http://net.tutsplus.com/tutorials/javascript-ajax/managing-the-asynchronous-nature-of-node-js/" title="Managing the Asynchronous Nature of Node.js | Nettuts+"> <p class="jser-sitelink"> <strong>Managing the Asynchronous Nature of Node.js | Nettuts+</strong><br /> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/managing-the-asynchronous-nature-of-node-js/" title="Managing the Asynchronous Nature of Node.js | Nettuts+">http://net.tutsplus.com/tutorials/javascript-ajax/managing-the-asynchronous-nature-of-node-js/</a> </p> </blockquote> <p>3種類の非同期なコードの構造の改善について。<br /> EvenetEmitterを使った方法、Q(Promises)を使った方法、stepを使った方法、それぞれの実装とメリット/でメッリについて書かれてる</p> <blockquote cite="http://www.kenpowers.net/blog/advanced-features-in-sinon/" title="Advanced Features in Sinon · Ken Powers"> <p class="jser-sitelink"> <strong>Advanced Features in Sinon · Ken Powers</strong><br /> <a href="http://www.kenpowers.net/blog/advanced-features-in-sinon/" title="Advanced Features in Sinon · Ken Powers">http://www.kenpowers.net/blog/advanced-features-in-sinon/</a> </p> </blockquote> <p>Sinon.jsのFake Timer、spy、Fake Serversを使ったテストについて。<br /> </p> <blockquote cite="http://blog.drewolson.org/blog/2014/01/04/node-streams-for-apis" title="Node Streams for APIs - collect {thoughts}"> <p class="jser-sitelink"> <strong>Node Streams for APIs - collect {thoughts}</strong><br /> <a href="http://blog.drewolson.org/blog/2014/01/04/node-streams-for-apis" title="Node Streams for APIs - collect {thoughts}">http://blog.drewolson.org/blog/2014/01/04/node-streams-for-apis</a> </p> </blockquote> <p>NodeのStreamを使ったAPIの実装について。<br /> テストの書き方、Streamの実装方法をAPIレンスポンスを返すものを書きながら見ていく話</p> <blockquote cite="https://leanpub.com/D3-Tips-and-Tricks" title="D3 Tips and Tricks by Malcolm Maclean [Leanpub PDF/iPad/Kindle]"> <p class="jser-sitelink"> <strong>D3 Tips and Tricks by Malcolm Maclean [Leanpub PDF/iPad/Kindle]</strong><br /> <a href="https://leanpub.com/D3-Tips-and-Tricks" title="D3 Tips and Tricks by Malcolm Maclean [Leanpub PDF/iPad/Kindle]">https://leanpub.com/D3-Tips-and-Tricks</a> </p> </blockquote> <p>D3.jsについての書籍<br /> $0から任意の値段購入できる</p> <blockquote cite="https://nicolas.perriault.net/code/2013/functional-javascript-for-crawling-the-web/" title="Functional JavaScript for crawling the Web | Code | Nicolas Perriault"> <p class="jser-sitelink"> <strong>Functional JavaScript for crawling the Web | Code | Nicolas Perriault</strong><br /> <a href="https://nicolas.perriault.net/code/2013/functional-javascript-for-crawling-the-web/" title="Functional JavaScript for crawling the Web | Code | Nicolas Perriault">https://nicolas.perriault.net/code/2013/functional-javascript-for-crawling-the-web/</a> </p> </blockquote> <p>FunctionalアプローチでDOMを走査する話。<br /> 関数呼出を重ねすぎると読みにくくなるので、関数合成的なsequence関数を作ったり、ES6の=>やRest Argumentsの利用などを使ってより小さく書くなどしてる。<br /> それぞれが関数であるのでテスト等も書きやすい。</p> <blockquote cite="http://teppeis.hatenablog.com/entry/2014/01/surrogate-pair-in-javascript" title="JavaScript Stringでサロゲートペアを扱う - teppeis blog"> <p class="jser-sitelink"> <strong>JavaScript Stringでサロゲートペアを扱う - teppeis blog</strong><br /> <a href="http://teppeis.hatenablog.com/entry/2014/01/surrogate-pair-in-javascript" title="JavaScript Stringでサロゲートペアを扱う - teppeis blog">http://teppeis.hatenablog.com/entry/2014/01/surrogate-pair-in-javascript</a> </p> </blockquote> <p>サロゲートペアを考慮した文字数カウント(正規表現、ES6 Iterator)<br /> コードポイントの取得/文字生成</p> <blockquote cite="https://medium.com/code-adventures/a3a046a04836" title="Koa 0.2.0 — Code adventures — Medium"> <p class="jser-sitelink"> <strong>Koa 0.2.0 — Code adventures — Medium</strong><br /> <a href="https://medium.com/code-adventures/a3a046a04836" title="Koa 0.2.0 — Code adventures — Medium">https://medium.com/code-adventures/a3a046a04836</a> </p> </blockquote> <p>NodeのウェブフレームワークKoa 0.2.0リリース。<br /> Socketのエラーハンドリング、Debug用のComposeモジュールの改善等</p> <blockquote cite="http://travismaynard.com/writing/getting-started-with-gulp" title="Getting Started With Gulp | Travis Maynard"> <p class="jser-sitelink"> <strong>Getting Started With Gulp | Travis Maynard</strong><br /> <a href="http://travismaynard.com/writing/getting-started-with-gulp" title="Getting Started With Gulp | Travis Maynard">http://travismaynard.com/writing/getting-started-with-gulp</a> </p> </blockquote> <p>タスク実行ツールのgulpについての導入方法や設定コードの書き方についてのチュートリアル</p> <blockquote cite="http://blog.jquerymobile.com/2013/12/23/jquery-mobile-1-4-0-released/" title="jQuery Mobile 1.4.0 Released | jQuery Mobile"> <p class="jser-sitelink"> <strong>jQuery Mobile 1.4.0 Released | jQuery Mobile</strong><br /> <a href="http://blog.jquerymobile.com/2013/12/23/jquery-mobile-1-4-0-released/" title="jQuery Mobile 1.4.0 Released | jQuery Mobile">http://blog.jquerymobile.com/2013/12/23/jquery-mobile-1-4-0-released/</a> </p> </blockquote> <p>jQuery Mobile 1.4.0リリース。</p> <blockquote cite="http://nodemanja.herokuapp.com/" title="YAND - Yet Another Node.js Documentation"> <p class="jser-sitelink"> <strong>YAND - Yet Another Node.js Documentation</strong><br /> <a href="http://nodemanja.herokuapp.com/" title="YAND - Yet Another Node.js Documentation">http://nodemanja.herokuapp.com/</a> </p> </blockquote> <p>Node.jsのドキュメントビューアサイト</p> <blockquote cite="http://www.jorisooms.be/testing-your-node-api-with-supertest/" title="Test-driving a Node.JS API"> <p class="jser-sitelink"> <strong>Test-driving a Node.JS API</strong><br /> <a href="http://www.jorisooms.be/testing-your-node-api-with-supertest/" title="Test-driving a Node.JS API">http://www.jorisooms.be/testing-your-node-api-with-supertest/</a> </p> </blockquote> <p>supertestを使ったNodeアプリのAPIをテスト駆動開発していくチュートリアル</p> <blockquote cite="https://github.com/nzakas/eslint/releases/tag/v0.2.0" title="Release v0.2.0: 0.2.0 · nzakas/eslint"> <p class="jser-sitelink"> <strong>Release v0.2.0: 0.2.0 · nzakas/eslint</strong><br /> <a href="https://github.com/nzakas/eslint/releases/tag/v0.2.0" title="Release v0.2.0: 0.2.0 · nzakas/eslint">https://github.com/nzakas/eslint/releases/tag/v0.2.0</a> </p> </blockquote> <p>eslint 0.2.0リリース。<br /> ルールの追加等</p> <blockquote cite="https://github.com/substack/faucet" title="substack/faucet"> <p class="jser-sitelink"> <strong>substack/faucet</strong><br /> <a href="https://github.com/substack/faucet" title="substack/faucet">https://github.com/substack/faucet</a> </p> </blockquote> <p>TAP系の出力を見やすく表示するCLI</p>
watilde/jser.info
data/2014/01/index.html
HTML
mit
50,366
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>One minute tutorial</title> <link rel="stylesheet" href="../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.Bimap"> <link rel="up" href="../index.html" title="Chapter&#160;1.&#160;Boost.Bimap"> <link rel="prev" href="introduction.html" title="Introduction"> <link rel="next" href="the_tutorial.html" title="The tutorial"> </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="introduction.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.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="the_tutorial.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="boost_bimap.one_minute_tutorial"></a><a class="link" href="one_minute_tutorial.html" title="One minute tutorial">One minute tutorial</a> </h2></div></div></div> <a name="boost_bimap.one_minute_tutorial.what_is_a_bimap_"></a><h4> <a name="id769586"></a> <a class="link" href="one_minute_tutorial.html#boost_bimap.one_minute_tutorial.what_is_a_bimap_">What is a bimap?</a> </h4> <p> A Bimap is a data structure that represents bidirectional relations between elements of two collections. The container is designed to work as two opposed STL maps. A bimap between a collection <code class="computeroutput"><span class="identifier">X</span></code> and a collection <code class="computeroutput"><span class="identifier">Y</span></code> can be viewed as a map from <code class="computeroutput"><span class="identifier">X</span></code> to <code class="computeroutput"><span class="identifier">Y</span></code> (this view will be called the <span class="emphasis"><em>left map view</em></span>) or as a map from <code class="computeroutput"><span class="identifier">Y</span></code> to <code class="computeroutput"><span class="identifier">X</span></code> (known as the <span class="emphasis"><em>right map view</em></span>). Additionally, the bimap can also be viewed as a set of relations between <code class="computeroutput"><span class="identifier">X</span></code> and <code class="computeroutput"><span class="identifier">Y</span></code> (named the <span class="emphasis"><em>collection of relations view</em></span>). </p> <p> The following code creates an empty bimap container: </p> <pre class="programlisting"><span class="keyword">typedef</span> <span class="identifier">bimap</span><span class="special">&lt;</span><span class="identifier">X</span><span class="special">,</span><span class="identifier">Y</span><span class="special">&gt;</span> <span class="identifier">bm_type</span><span class="special">;</span> <span class="identifier">bm_type</span> <span class="identifier">bm</span><span class="special">;</span> </pre> <p> Given this code, the following is the complete description of the resulting bimap. <sup>[<a name="id769748" href="#ftn.id769748" class="footnote">1</a>]</sup> </p> <div class="itemizedlist"><ul class="itemizedlist" type="disc"> <li class="listitem"> <code class="computeroutput"><span class="identifier">bm</span><span class="special">.</span><span class="identifier">left</span></code> is signature-compatible with <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">map</span><span class="special">&lt;</span><span class="identifier">X</span><span class="special">,</span><span class="identifier">Y</span><span class="special">&gt;</span></code> </li> <li class="listitem"> <code class="computeroutput"><span class="identifier">bm</span><span class="special">.</span><span class="identifier">right</span></code> is signature-compatible with <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">map</span><span class="special">&lt;</span><span class="identifier">Y</span><span class="special">,</span><span class="identifier">X</span><span class="special">&gt;</span></code> </li> <li class="listitem"> <code class="computeroutput"><span class="identifier">bm</span></code> is signature-compatible with <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">set</span><span class="special">&lt;</span> <span class="identifier">relation</span><span class="special">&lt;</span><span class="identifier">X</span><span class="special">,</span><span class="identifier">Y</span><span class="special">&gt;</span> <span class="special">&gt;</span></code> </li> </ul></div> <p> <span class="inlinemediaobject"><img src="../images/bimap/simple.bimap.png" alt="simple.bimap"></span> </p> <p> You can see how a bimap container offers three views over the same collection of bidirectional relations. </p> <p> If we have any generic function that work with maps </p> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span> <span class="keyword">class</span> <span class="identifier">MapType</span> <span class="special">&gt;</span> <span class="keyword">void</span> <span class="identifier">print_map</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">MapType</span> <span class="special">&amp;</span> <span class="identifier">m</span><span class="special">)</span> <span class="special">{</span> <span class="keyword">typedef</span> <span class="keyword">typename</span> <span class="identifier">MapType</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="identifier">const_iterator</span><span class="special">;</span> <span class="keyword">for</span><span class="special">(</span> <span class="identifier">const_iterator</span> <span class="identifier">iter</span> <span class="special">=</span> <span class="identifier">m</span><span class="special">.</span><span class="identifier">begin</span><span class="special">(),</span> <span class="identifier">iend</span> <span class="special">=</span> <span class="identifier">m</span><span class="special">.</span><span class="identifier">end</span><span class="special">();</span> <span class="identifier">iter</span> <span class="special">!=</span> <span class="identifier">iend</span><span class="special">;</span> <span class="special">++</span><span class="identifier">iter</span> <span class="special">)</span> <span class="special">{</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="identifier">iter</span><span class="special">-&gt;</span><span class="identifier">first</span> <span class="special">&lt;&lt;</span> <span class="string">"--&gt;"</span> <span class="special">&lt;&lt;</span> <span class="identifier">iter</span><span class="special">-&gt;</span><span class="identifier">second</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="special">}</span> <span class="special">}</span> </pre> <p> We can use the <span class="emphasis"><em>left map view</em></span> and the <span class="emphasis"><em>right map view</em></span> with it </p> <pre class="programlisting"><span class="identifier">bimap</span><span class="special">&lt;</span> <span class="keyword">int</span><span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">&gt;</span> <span class="identifier">bm</span><span class="special">;</span> <span class="special">...</span> <span class="identifier">print_map</span><span class="special">(</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">left</span> <span class="special">);</span> <span class="identifier">print_map</span><span class="special">(</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">right</span> <span class="special">);</span> </pre> <p> And the output will be </p> <pre class="programlisting"><code class="literal">1 --&gt; one</code> <code class="literal">2 --&gt; two</code> ... <code class="literal">one --&gt; 1</code> <code class="literal">two --&gt; 2</code> ... </pre> <a name="boost_bimap.one_minute_tutorial.layout_of_the_relation_and_the_pairs_of_a_bimap"></a><h4> <a name="id770430"></a> <a class="link" href="one_minute_tutorial.html#boost_bimap.one_minute_tutorial.layout_of_the_relation_and_the_pairs_of_a_bimap">Layout of the relation and the pairs of a bimap</a> </h4> <p> The <code class="computeroutput"><span class="identifier">relation</span></code> class represents two related elements. The two values are named left and right to express the symmetry of this type. The bimap pair classes are signature-compatible with <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">pairs</span></code>. </p> <p> <span class="inlinemediaobject"><img src="../images/bimap/relation.and.pair.png" alt="relation.and.pair"></span> </p> <a name="boost_bimap.one_minute_tutorial.step_by_step"></a><h4> <a name="id770497"></a> <a class="link" href="one_minute_tutorial.html#boost_bimap.one_minute_tutorial.step_by_step">Step by step</a> </h4> <p> A convinience header is avaiable in the boost directory: </p> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">bimap</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> </pre> <p> Lets define a bidirectional map between integers and strings: </p> <p> </p> <pre class="programlisting"><span class="keyword">typedef</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">bimap</span><span class="special">&lt;</span> <span class="keyword">int</span><span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">&gt;</span> <span class="identifier">bm_type</span><span class="special">;</span> <span class="identifier">bm_type</span> <span class="identifier">bm</span><span class="special">;</span> </pre> <p> </p> <a name="boost_bimap.one_minute_tutorial.the_collection_of_relations_view"></a><h4> <a name="id770643"></a> <a class="link" href="one_minute_tutorial.html#boost_bimap.one_minute_tutorial.the_collection_of_relations_view">The collection of relations view</a> </h4> <p> Remember that <code class="computeroutput"><span class="identifier">bm</span></code> alone can be used as a set of relations. We can insert elements or iterate over them using this view. </p> <p> </p> <pre class="programlisting"><span class="identifier">bm</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">value_type</span><span class="special">(</span><span class="number">1</span><span class="special">,</span> <span class="string">"one"</span> <span class="special">)</span> <span class="special">);</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">value_type</span><span class="special">(</span><span class="number">2</span><span class="special">,</span> <span class="string">"two"</span> <span class="special">)</span> <span class="special">);</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="string">"There are "</span> <span class="special">&lt;&lt;</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">size</span><span class="special">()</span> <span class="special">&lt;&lt;</span> <span class="string">"relations"</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="keyword">for</span><span class="special">(</span> <span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="identifier">iter</span> <span class="special">=</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">begin</span><span class="special">(),</span> <span class="identifier">iend</span> <span class="special">=</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">end</span><span class="special">();</span> <span class="identifier">iter</span> <span class="special">!=</span> <span class="identifier">iend</span><span class="special">;</span> <span class="special">++</span><span class="identifier">iter</span> <span class="special">)</span> <span class="special">{</span> <span class="comment">// iter-&gt;left : data : int </span> <span class="comment">// iter-&gt;right : data : std::string </span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="identifier">iter</span><span class="special">-&gt;</span><span class="identifier">left</span> <span class="special">&lt;&lt;</span> <span class="string">" &lt;--&gt; "</span> <span class="special">&lt;&lt;</span> <span class="identifier">iter</span><span class="special">-&gt;</span><span class="identifier">right</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="special">}</span> </pre> <p> </p> <a name="boost_bimap.one_minute_tutorial.the_left_map_view"></a><h4> <a name="id771089"></a> <a class="link" href="one_minute_tutorial.html#boost_bimap.one_minute_tutorial.the_left_map_view">The left map view</a> </h4> <p> <code class="computeroutput"><span class="identifier">bm</span><span class="special">.</span><span class="identifier">left</span></code> works like a <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">map</span><span class="special">&lt;</span> <span class="keyword">int</span><span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">&gt;</span></code>. We use it in the same way we will use a standard map. </p> <p> </p> <pre class="programlisting"><a class="co" name="boost_bimap0co" href="one_minute_tutorial.html#boost_bimap0"><img src="../../../../../doc/src/images/callouts/1.png" alt="1" border="0"></a><span class="keyword">typedef</span> <span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">left_map</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="identifier">left_const_iterator</span><span class="special">;</span> <span class="keyword">for</span><span class="special">(</span> <span class="identifier">left_const_iterator</span> <span class="identifier">left_iter</span> <span class="special">=</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">left</span><span class="special">.</span><span class="identifier">begin</span><span class="special">(),</span> <span class="identifier">iend</span> <span class="special">=</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">left</span><span class="special">.</span><span class="identifier">end</span><span class="special">();</span> <span class="identifier">left_iter</span> <span class="special">!=</span> <span class="identifier">iend</span><span class="special">;</span> <span class="special">++</span><span class="identifier">left_iter</span> <span class="special">)</span> <span class="special">{</span> <span class="comment">// left_iter-&gt;first : key : int </span> <span class="comment">// left_iter-&gt;second : data : std::string </span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="identifier">left_iter</span><span class="special">-&gt;</span><span class="identifier">first</span> <span class="special">&lt;&lt;</span> <span class="string">" --&gt; "</span> <span class="special">&lt;&lt;</span> <span class="identifier">left_iter</span><span class="special">-&gt;</span><span class="identifier">second</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="special">}</span> <a class="co" name="boost_bimap1co" href="one_minute_tutorial.html#boost_bimap1"><img src="../../../../../doc/src/images/callouts/2.png" alt="2" border="0"></a><span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">left_const_iterator</span> <span class="identifier">left_iter</span> <span class="special">=</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">left</span><span class="special">.</span><span class="identifier">find</span><span class="special">(</span><span class="number">2</span><span class="special">);</span> <span class="identifier">assert</span><span class="special">(</span> <span class="identifier">left_iter</span><span class="special">-&gt;</span><span class="identifier">second</span> <span class="special">==</span> <span class="string">"two"</span> <span class="special">);</span> <a class="co" name="boost_bimap2co" href="one_minute_tutorial.html#boost_bimap2"><img src="../../../../../doc/src/images/callouts/3.png" alt="3" border="0"></a><span class="identifier">bm</span><span class="special">.</span><span class="identifier">left</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">left_value_type</span><span class="special">(</span> <span class="number">3</span><span class="special">,</span> <span class="string">"three"</span> <span class="special">)</span> <span class="special">);</span> </pre> <p> </p> <div class="calloutlist"><table border="0" summary="Callout list"> <tr> <td width="5%" valign="top" align="left"><p><a name="boost_bimap0"></a><a href="#boost_bimap0co"><img src="../../../../../doc/src/images/callouts/1.png" alt="1" border="0"></a> </p></td> <td valign="top" align="left"><p> The type of <code class="computeroutput"><span class="identifier">bm</span><span class="special">.</span><span class="identifier">left</span></code> is <code class="computeroutput"><span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">left_map</span></code> and the type of <code class="computeroutput"><span class="identifier">bm</span><span class="special">.</span><span class="identifier">right</span></code> is <code class="computeroutput"><span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">right_map</span></code> </p></td> </tr> <tr> <td width="5%" valign="top" align="left"><p><a name="boost_bimap1"></a><a href="#boost_bimap1co"><img src="../../../../../doc/src/images/callouts/2.png" alt="2" border="0"></a> </p></td> <td valign="top" align="left"><p> <code class="computeroutput"><span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">left_</span></code>-type- can be used as a shortcut for the more verbose <code class="computeroutput"><span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">left_map</span><span class="special">::</span></code>-type- </p></td> </tr> <tr> <td width="5%" valign="top" align="left"><p><a name="boost_bimap2"></a><a href="#boost_bimap2co"><img src="../../../../../doc/src/images/callouts/3.png" alt="3" border="0"></a> </p></td> <td valign="top" align="left"><p> This line produces the same effect of <code class="computeroutput"><span class="identifier">bm</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">value_type</span><span class="special">(</span><span class="number">3</span><span class="special">,</span><span class="string">"three"</span><span class="special">)</span> <span class="special">);</span></code> </p></td> </tr> </table></div> <a name="boost_bimap.one_minute_tutorial.the_right_map_view"></a><h4> <a name="id771810"></a> <a class="link" href="one_minute_tutorial.html#boost_bimap.one_minute_tutorial.the_right_map_view">The right map view</a> </h4> <p> <code class="computeroutput"><span class="identifier">bm</span><span class="special">.</span><span class="identifier">right</span></code> works like a <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">map</span><span class="special">&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">,</span> <span class="keyword">int</span> <span class="special">&gt;</span></code>. It is important to note that the key is the first type and the data is the second one, exactly as with standard maps. </p> <p> </p> <pre class="programlisting"><span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">right_const_iterator</span> <span class="identifier">right_iter</span> <span class="special">=</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">right</span><span class="special">.</span><span class="identifier">find</span><span class="special">(</span><span class="string">"two"</span><span class="special">);</span> <span class="comment">// right_iter-&gt;first : key : std::string </span><span class="comment">// right_iter-&gt;second : data : int </span> <span class="identifier">assert</span><span class="special">(</span> <span class="identifier">right_iter</span><span class="special">-&gt;</span><span class="identifier">second</span> <span class="special">==</span> <span class="number">2</span> <span class="special">);</span> <span class="identifier">assert</span><span class="special">(</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">right</span><span class="special">.</span><span class="identifier">at</span><span class="special">(</span><span class="string">"one"</span><span class="special">)</span> <span class="special">==</span> <span class="number">1</span> <span class="special">);</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">right</span><span class="special">.</span><span class="identifier">erase</span><span class="special">(</span><span class="string">"two"</span><span class="special">);</span> <a class="co" name="boost_bimap3co" href="one_minute_tutorial.html#boost_bimap3"><img src="../../../../../doc/src/images/callouts/1.png" alt="1" border="0"></a><span class="identifier">bm</span><span class="special">.</span><span class="identifier">right</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">right_value_type</span><span class="special">(</span> <span class="string">"four"</span><span class="special">,</span> <span class="number">4</span> <span class="special">)</span> <span class="special">);</span> </pre> <p> </p> <div class="calloutlist"><table border="0" summary="Callout list"><tr> <td width="5%" valign="top" align="left"><p><a name="boost_bimap3"></a><a href="#boost_bimap3co"><img src="../../../../../doc/src/images/callouts/1.png" alt="1" border="0"></a> </p></td> <td valign="top" align="left"><p> This line produces the same effect of <code class="computeroutput"><span class="identifier">bm</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">value_type</span><span class="special">(</span><span class="number">4</span><span class="special">,</span><span class="string">"four"</span><span class="special">)</span> <span class="special">);</span></code> </p></td> </tr></table></div> <a name="boost_bimap.one_minute_tutorial.differences_with_std__map"></a><h4> <a name="id772245"></a> <a class="link" href="one_minute_tutorial.html#boost_bimap.one_minute_tutorial.differences_with_std__map">Differences with std::map</a> </h4> <p> The main difference between bimap views and their standard containers counterparts is that, because of the bidirectional nature of a bimap, the values stored in it can not be modified directly using iterators. For example, when a <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">map</span><span class="special">&lt;</span><span class="identifier">X</span><span class="special">,</span><span class="identifier">Y</span><span class="special">&gt;</span></code> iterator is dereferenced the return type is <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special">&lt;</span><span class="keyword">const</span> <span class="identifier">X</span><span class="special">,</span> <span class="identifier">Y</span><span class="special">&gt;</span></code>, so the following code is valid: <code class="computeroutput"><span class="identifier">m</span><span class="special">.</span><span class="identifier">begin</span><span class="special">()-&gt;</span><span class="identifier">second</span> <span class="special">=</span> <span class="identifier">new_value</span><span class="special">;</span></code>. However dereferencing a <code class="computeroutput"><span class="identifier">bimap</span><span class="special">&lt;</span><span class="identifier">X</span><span class="special">,</span><span class="identifier">Y</span><span class="special">&gt;::</span><span class="identifier">left_iterator</span></code> returns a type that is <span class="emphasis"><em>signature-compatible</em></span> with a <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special">&lt;</span><span class="keyword">const</span> <span class="identifier">X</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">Y</span><span class="special">&gt;</span></code> </p> <pre class="programlisting"><span class="identifier">bm</span><span class="special">.</span><span class="identifier">left</span><span class="special">.</span><span class="identifier">find</span><span class="special">(</span><span class="number">1</span><span class="special">)-&gt;</span><span class="identifier">second</span> <span class="special">=</span> <span class="string">"1"</span><span class="special">;</span> <span class="comment">// Compilation error </span></pre> <p> If you insert <code class="computeroutput"><span class="special">(</span><span class="number">1</span><span class="special">,</span><span class="string">"one"</span><span class="special">)</span></code> and <code class="computeroutput"><span class="special">(</span><span class="number">1</span><span class="special">,</span><span class="string">"1"</span><span class="special">)</span></code> in a <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">map</span><span class="special">&lt;</span><span class="keyword">int</span><span class="special">,</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&gt;</span></code> the second insertion will have no effect. In a <code class="computeroutput"><span class="identifier">bimap</span><span class="special">&lt;</span><span class="identifier">X</span><span class="special">,</span><span class="identifier">Y</span><span class="special">&gt;</span></code> both keys have to remain unique. The insertion may fail in other situtions too. Lets see an example </p> <pre class="programlisting"><span class="identifier">bm</span><span class="special">.</span><span class="identifier">clear</span><span class="special">();</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">value_type</span><span class="special">(</span> <span class="number">1</span><span class="special">,</span> <span class="string">"one"</span> <span class="special">)</span> <span class="special">);</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">value_type</span><span class="special">(</span> <span class="number">1</span><span class="special">,</span> <span class="string">"1"</span> <span class="special">)</span> <span class="special">);</span> <span class="comment">// No effect! </span><span class="identifier">bm</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">bm_type</span><span class="special">::</span><span class="identifier">value_type</span><span class="special">(</span> <span class="number">2</span><span class="special">,</span> <span class="string">"one"</span> <span class="special">)</span> <span class="special">);</span> <span class="comment">// No effect! </span> <span class="identifier">assert</span><span class="special">(</span> <span class="identifier">bm</span><span class="special">.</span><span class="identifier">size</span><span class="special">()</span> <span class="special">==</span> <span class="number">1</span> <span class="special">);</span> </pre> <a name="boost_bimap.one_minute_tutorial.a_simple_example"></a><h4> <a name="id772905"></a> <a class="link" href="one_minute_tutorial.html#boost_bimap.one_minute_tutorial.a_simple_example">A simple example</a> </h4> <p> Look how you can reuse code that is intend to be used with std::maps, like the print_map function in this example. </p> <p> <a href="../../../example/simple_bimap.cpp" target="_top">Go to source code</a> </p> <p> </p> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">string</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">iostream</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">bimap</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="keyword">template</span><span class="special">&lt;</span> <span class="keyword">class</span> <span class="identifier">MapType</span> <span class="special">&gt;</span> <span class="keyword">void</span> <span class="identifier">print_map</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">MapType</span> <span class="special">&amp;</span> <span class="identifier">map</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">&amp;</span> <span class="identifier">separator</span><span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">ostream</span> <span class="special">&amp;</span> <span class="identifier">os</span> <span class="special">)</span> <span class="special">{</span> <span class="keyword">typedef</span> <span class="keyword">typename</span> <span class="identifier">MapType</span><span class="special">::</span><span class="identifier">const_iterator</span> <span class="identifier">const_iterator</span><span class="special">;</span> <span class="keyword">for</span><span class="special">(</span> <span class="identifier">const_iterator</span> <span class="identifier">i</span> <span class="special">=</span> <span class="identifier">map</span><span class="special">.</span><span class="identifier">begin</span><span class="special">(),</span> <span class="identifier">iend</span> <span class="special">=</span> <span class="identifier">map</span><span class="special">.</span><span class="identifier">end</span><span class="special">();</span> <span class="identifier">i</span> <span class="special">!=</span> <span class="identifier">iend</span><span class="special">;</span> <span class="special">++</span><span class="identifier">i</span> <span class="special">)</span> <span class="special">{</span> <span class="identifier">os</span> <span class="special">&lt;&lt;</span> <span class="identifier">i</span><span class="special">-&gt;</span><span class="identifier">first</span> <span class="special">&lt;&lt;</span> <span class="identifier">separator</span> <span class="special">&lt;&lt;</span> <span class="identifier">i</span><span class="special">-&gt;</span><span class="identifier">second</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="special">}</span> <span class="special">}</span> <span class="keyword">int</span> <span class="identifier">main</span><span class="special">()</span> <span class="special">{</span> <span class="comment">// Soccer World cup </span> <span class="keyword">typedef</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">bimap</span><span class="special">&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">,</span> <span class="keyword">int</span> <span class="special">&gt;</span> <span class="identifier">results_bimap</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">results_bimap</span><span class="special">::</span><span class="identifier">value_type</span> <span class="identifier">position</span><span class="special">;</span> <span class="identifier">results_bimap</span> <span class="identifier">results</span><span class="special">;</span> <span class="identifier">results</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">position</span><span class="special">(</span><span class="string">"Argentina"</span> <span class="special">,</span><span class="number">1</span><span class="special">)</span> <span class="special">);</span> <span class="identifier">results</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">position</span><span class="special">(</span><span class="string">"Spain"</span> <span class="special">,</span><span class="number">2</span><span class="special">)</span> <span class="special">);</span> <span class="identifier">results</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">position</span><span class="special">(</span><span class="string">"Germany"</span> <span class="special">,</span><span class="number">3</span><span class="special">)</span> <span class="special">);</span> <span class="identifier">results</span><span class="special">.</span><span class="identifier">insert</span><span class="special">(</span> <span class="identifier">position</span><span class="special">(</span><span class="string">"France"</span> <span class="special">,</span><span class="number">4</span><span class="special">)</span> <span class="special">);</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="string">"The number of countries is "</span> <span class="special">&lt;&lt;</span> <span class="identifier">results</span><span class="special">.</span><span class="identifier">size</span><span class="special">()</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="string">"The winner is "</span> <span class="special">&lt;&lt;</span> <span class="identifier">results</span><span class="special">.</span><span class="identifier">right</span><span class="special">.</span><span class="identifier">at</span><span class="special">(</span><span class="number">1</span><span class="special">)</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="string">"Countries names ordered by their final position:"</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="comment">// results.right works like a std::map&lt; int, std::string &gt; </span> <span class="identifier">print_map</span><span class="special">(</span> <span class="identifier">results</span><span class="special">.</span><span class="identifier">right</span><span class="special">,</span> <span class="string">") "</span><span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">);</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span> <span class="special">&lt;&lt;</span> <span class="string">"Countries names ordered alphabetically along with"</span> <span class="string">"their final position:"</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="comment">// results.left works like a std::map&lt; std::string, int &gt; </span> <span class="identifier">print_map</span><span class="special">(</span> <span class="identifier">results</span><span class="special">.</span><span class="identifier">left</span><span class="special">,</span> <span class="string">" ends in position "</span><span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">);</span> <span class="keyword">return</span> <span class="number">0</span><span class="special">;</span> <span class="special">}</span> </pre> <p> </p> <p> The output of this program will be the following: </p> <pre class="programlisting"><code class="literal">The number of countries is 4</code> <code class="literal">The winner is Argentina</code> <code class="literal">Countries names ordered by their final position:</code> <code class="literal">1) Argentina</code> <code class="literal">2) Spain</code> <code class="literal">3) Germany</code> <code class="literal">4) France</code> <code class="literal">Countries names ordered alphabetically along with their final position:</code> <code class="literal">Argentina ends in position 1</code> <code class="literal">France ends in position 4</code> <code class="literal">Germany ends in position 3</code> <code class="literal">Spain ends in position 2</code> </pre> <a name="boost_bimap.one_minute_tutorial.continuing_the_journey"></a><h4> <a name="id774177"></a> <a class="link" href="one_minute_tutorial.html#boost_bimap.one_minute_tutorial.continuing_the_journey">Continuing the journey</a> </h4> <p> For information on function signatures, see any standard library documentation or read the <a class="link" href="reference.html" title="Reference">reference</a> section of this documentation. </p> <div class="caution"><table border="0" summary="Caution"> <tr> <td rowspan="2" align="center" valign="top" width="25"><img alt="[Caution]" src="../../../../../doc/src/images/caution.png"></td> <th align="left">Caution</th> </tr> <tr><td align="left" valign="top"><p> Be aware that a bidirectional map is only signature-compatible with standard containers. Some functions may give different results, such as in the case of inserting a pair into the left map where the second value conflicts with a stored relation in the container. The functions may be slower in a bimap because of the duplicated constraints. It is strongly recommended that you read <a class="link" href="the_tutorial.html" title="The tutorial">The full tutorial</a> if you intend to use a bimap in a serious project. </p></td></tr> </table></div> <div class="footnotes"> <br><hr width="100" align="left"> <div class="footnote"><p><sup>[<a id="ftn.id769748" href="#id769748" class="para">1</a>] </sup> A type is <span class="emphasis"><em>signature-compatible</em></span> with other type if it has the same signature for functions and metadata. Preconditions, postconditions and the order of operations need not be the same. </p></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; 2006 -2007 Matias Capeletto<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="introduction.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.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="the_tutorial.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
djsedulous/namecoind
libs/boost_1_50_0/libs/bimap/doc/html/boost_bimap/one_minute_tutorial.html
HTML
mit
45,884
<html> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Chapter&nbsp;4.&nbsp;Transfer Tool</title> <link href="../docbook.css" rel="stylesheet" type="text/css"> <meta content="DocBook XSL-NS Stylesheets V1.74.0" name="generator"> <meta name="keywords" content="Hsqldb, Transfer"> <meta name="keywords" content="HyperSQL, Hsqldb, Hypersonic, Database, JDBC, Java"> <link rel="home" href="index.html" title="HyperSQL Utilities Guide"> <link rel="up" href="index.html" title="HyperSQL Utilities Guide"> <link rel="prev" href="dbm-chapt.html" title="Chapter&nbsp;3.&nbsp;Database Manager"> <link rel="next" href="apa.html" title="Appendix&nbsp;A.&nbsp;HyperSQL File Links"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <div class="navheader"> <table summary="Navigation header" width="100%"> <tr> <td align="left" width="30%"><a accesskey="p" href="dbm-chapt.html"><img src="../images/db/prev.png" alt="Prev"></a>&nbsp;</td><td align="center" width="40%" style="font-weight:bold;">Chapter&nbsp;4.&nbsp;Transfer Tool</td><td align="right" width="30%">&nbsp;<a accesskey="n" href="apa.html"><img src="../images/db/next.png" alt="Next"></a></td> </tr> <tr> <td valign="top" align="left" width="30%">Chapter&nbsp;3.&nbsp;Database Manager&nbsp;</td><td align="center" width="40%"><a accesskey="h" href="index.html"><img src="../images/db/home.png" alt="Home"></a></td><td valign="top" align="right" width="30%">&nbsp;Appendix&nbsp;A.&nbsp;HyperSQL File Links</td> </tr> </table> </div> <HR> <div class="chapter" lang="en"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="transfer-tool-chapt"></a>Chapter&nbsp;4.&nbsp;Transfer Tool</h2> </div> <div> <div class="authorgroup"> <div class="author"> <h3 class="author"> <span class="firstname">Fred</span> <span class="surname">Toussi</span> </h3> <div class="affiliation"> <span class="orgname">The HSQL Development Group<br> </span> </div> </div> </div> </div> </div> </div> <div class="toc"> <p> <b>Table of Contents</b> </p> <dl> <dt> <span class="section"><a href="transfer-tool-chapt.html#trantool_intro-sect">Brief Introduction</a></span> </dt> </dl> </div> <div class="section" lang="en"> <div class="titlepage"> <div> <div> <h2 class="title" style="clear: both"> <a name="trantool_intro-sect"></a>Brief Introduction</h2> </div> </div> </div> <p>Transfer Tool is a GUI program for transferring SQL schema and data from one JDBC source to another. Source and destination can be different database engines or different databases on the same server.</p> <p>Transfer Tool works in two different modes. Direct transfer maintains a connection to both source and destination and performs the transfer. Dump and Restore mode is invoked once to transfer the data from the source to a text file (Dump), then again to transfer the data from the text file to the destination (Restore). With Dump and Restore, it is possible to make any changes to database object definitions and data prior to restoring it to the target.</p> <p>Dump and Restore modes can be set via the command line with -d (--dump) or -r (--restore) options. Alternatively the Transfer Tool can be started with any of the three modes from the Database Manager's Tools menu.</p> <p>The connection dialogue allows you to save the settings for the connection you are about to make. You can then access the connection in future sessions. These settings are shared with those from the Database Manager tool. See the appendix on Database Manager for details of the connection dialogue box.</p> <p>From version 1.8.0 Transfer Tool is no longer part of the <code class="filename">hsqldb.jar</code>. You can build the <code class="filename">hsqldbutil.jar</code> using the Ant command of the same name, to build a jar that includes Transfer Tool and the Database Manager.</p> <p>When collecting meta-data, Transfer Tool performs SELECT * FROM &lt;table&gt; queries on all the tables in the source database. This may take a long time with some database engines. When the source database is HSQLDB, this means memory should be available for the result sets returned from the queries. Therefore, the memory allocation of the java process in which Transfer Tool is executed may have to be high.</p> <p>The current version of Transfer is far from ideal, as it has not been actively developed for several years. The program also lacks the ability to create UNIQUE constraints and creates UNIQUE indexes instead. However, some bugs have been fixed in the latest version and the program can be used with most of the supported databases. The best way to use the program is the DUMP and RESTORE modes, which allow you to manually change the SQL statements in the dump file before restoring to a database. A useful idea is to dump and restore the database definition separately from the database data.</p> </div> </div> <HR xmlns:xi="http://www.w3.org/2001/XInclude"> <P xmlns:xi="http://www.w3.org/2001/XInclude" class="svnrev">$Revision: 3539 $</P> <div class="navfooter"> <hr> <table summary="Navigation footer" width="100%"> <tr> <td align="left" width="40%"><a accesskey="p" href="dbm-chapt.html"><img src="../images/db/prev.png" alt="Prev"></a>&nbsp;</td><td align="center" width="20%">&nbsp;</td><td align="right" width="40%">&nbsp;<a accesskey="n" href="apa.html"><img src="../images/db/next.png" alt="Next"></a></td> </tr> <tr> <td valign="top" align="left" width="40%">Chapter&nbsp;3.&nbsp;Database Manager&nbsp;</td><td align="center" width="20%"><a accesskey="h" href="index.html"><img src="../images/db/home.png" alt="Home"></a></td><td valign="top" align="right" width="40%">&nbsp;Appendix&nbsp;A.&nbsp;HyperSQL File Links</td> </tr> </table> </div> </body> </html>
virtix/mut4j
lib/hsqldb-2.0.0/hsqldb/doc/util-guide/transfer-tool-chapt.html
HTML
mit
5,954
<script> const ipcRenderer = require('electron').ipcRenderer; navigator.serviceWorker.register('service-worker.js', {scope: './'}).then(function() { if (navigator.serviceWorker.controller) { var xhr = new XMLHttpRequest(); xhr.open('GET', 'http://dummy/echo'); xhr.setRequestHeader('X-Mock-Response', 'yes'); xhr.addEventListener('load', function() { ipcRenderer.send('response', xhr.responseText); }); xhr.send(); } else { ipcRenderer.send('reload'); } }).catch(function(error) { ipcRenderer.send('error', `${error.message}\n${error.stack}`); }) </script>
the-ress/electron
spec/fixtures/pages/service-worker/index.html
HTML
mit
631
<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> <!-- 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. --> <!-- not a package-info.java, because we already defined this package in core/ --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> Codecs for testing (simulate old disk formats, wacky theoretical use cases, etc) </body> </html>
q474818917/solr-5.2.0
lucene/test-framework/src/java/org/apache/lucene/codecs/package.html
HTML
apache-2.0
1,124
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <head> <style> table {border-collapse:collapse} td {border: thin solid lime} </style> </head> <html > <body style="color:lime"> <table><tr><td>cell1</td><td>cell2</td></tr> <tr><td>cell3</td><td>cell4</td></tr></table> </body> </html>
sergecodd/FireFox-OS
B2G/gecko/layout/reftests/bugs/229591-1-ref.html
HTML
apache-2.0
381
<!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.4.2_11) on Mon Jul 12 21:36:57 CEST 2010 --> <TITLE> AFPBorderPainter (Apache FOP 1.0 API) </TITLE> <META NAME="keywords" CONTENT="org.apache.fop.afp.AFPBorderPainter class"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="AFPBorderPainter (Apache FOP 1.0 API)"; } </SCRIPT> </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=3 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/AFPBorderPainter.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.0</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../org/apache/fop/afp/AbstractAFPPainter.html" title="class in org.apache.fop.afp"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/fop/afp/AFPDataObjectFactory.html" title="class in org.apache.fop.afp"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="AFPBorderPainter.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_org.apache.fop.afp.AbstractAFPPainter">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.fop.afp</FONT> <BR> Class AFPBorderPainter</H2> <PRE> java.lang.Object <IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><A HREF="../../../../org/apache/fop/afp/AbstractAFPPainter.html" title="class in org.apache.fop.afp">org.apache.fop.afp.AbstractAFPPainter</A> <IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>org.apache.fop.afp.AFPBorderPainter</B> </PRE> <HR> <DL> <DT>public class <B>AFPBorderPainter</B><DT>extends <A HREF="../../../../org/apache/fop/afp/AbstractAFPPainter.html" title="class in org.apache.fop.afp">AbstractAFPPainter</A></DL> <P> Handles the drawing of borders/lines in AFP <P> <P> <HR> <P> <!-- ======== NESTED CLASS SUMMARY ======== --> <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Field Summary</B></FONT></TD> </TR> </TABLE> &nbsp;<A NAME="fields_inherited_from_class_org.apache.fop.afp.AbstractAFPPainter"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Fields inherited from class org.apache.fop.afp.<A HREF="../../../../org/apache/fop/afp/AbstractAFPPainter.html" title="class in org.apache.fop.afp">AbstractAFPPainter</A></B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../../../org/apache/fop/afp/AbstractAFPPainter.html#dataStream">dataStream</A>, <A HREF="../../../../org/apache/fop/afp/AbstractAFPPainter.html#log">log</A>, <A HREF="../../../../org/apache/fop/afp/AbstractAFPPainter.html#paintingState">paintingState</A></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"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/apache/fop/afp/AFPBorderPainter.html#AFPBorderPainter(org.apache.fop.afp.AFPPaintingState, org.apache.fop.afp.DataStream)">AFPBorderPainter</A></B>(<A HREF="../../../../org/apache/fop/afp/AFPPaintingState.html" title="class in org.apache.fop.afp">AFPPaintingState</A>&nbsp;paintingState, <A HREF="../../../../org/apache/fop/afp/DataStream.html" title="class in org.apache.fop.afp">DataStream</A>&nbsp;dataStream)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Main constructor</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"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Method Summary</B></FONT></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/afp/AFPBorderPainter.html#paint(org.apache.fop.afp.PaintingInfo)">paint</A></B>(<A HREF="../../../../org/apache/fop/afp/PaintingInfo.html" title="interface in org.apache.fop.afp">PaintingInfo</A>&nbsp;paintInfo)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Paints the painting item</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"> <TD><B>Methods inherited from class java.lang.Object</B></TD> </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> <!-- ============ FIELD DETAIL =========== --> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TD> </TR> </TABLE> <A NAME="AFPBorderPainter(org.apache.fop.afp.AFPPaintingState, org.apache.fop.afp.DataStream)"><!-- --></A><H3> AFPBorderPainter</H3> <PRE> public <B>AFPBorderPainter</B>(<A HREF="../../../../org/apache/fop/afp/AFPPaintingState.html" title="class in org.apache.fop.afp">AFPPaintingState</A>&nbsp;paintingState, <A HREF="../../../../org/apache/fop/afp/DataStream.html" title="class in org.apache.fop.afp">DataStream</A>&nbsp;dataStream)</PRE> <DL> <DD>Main constructor <P> <DT><B>Parameters:</B><DD><CODE>paintingState</CODE> - the AFP painting state converter<DD><CODE>dataStream</CODE> - the AFP datastream</DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Method Detail</B></FONT></TD> </TR> </TABLE> <A NAME="paint(org.apache.fop.afp.PaintingInfo)"><!-- --></A><H3> paint</H3> <PRE> public void <B>paint</B>(<A HREF="../../../../org/apache/fop/afp/PaintingInfo.html" title="interface in org.apache.fop.afp">PaintingInfo</A>&nbsp;paintInfo)</PRE> <DL> <DD>Paints the painting item <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/apache/fop/afp/AbstractAFPPainter.html#paint(org.apache.fop.afp.PaintingInfo)">paint</A></CODE> in class <CODE><A HREF="../../../../org/apache/fop/afp/AbstractAFPPainter.html" title="class in org.apache.fop.afp">AbstractAFPPainter</A></CODE></DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>paintInfo</CODE> - the painting information</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=3 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/AFPBorderPainter.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.0</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../org/apache/fop/afp/AbstractAFPPainter.html" title="class in org.apache.fop.afp"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/fop/afp/AFPDataObjectFactory.html" title="class in org.apache.fop.afp"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="AFPBorderPainter.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_org.apache.fop.afp.AbstractAFPPainter">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> Copyright 1999-2010 The Apache Software Foundation. All Rights Reserved. </BODY> </HTML>
lewismc/yax
lib/fop-1.0/javadocs/org/apache/fop/afp/AFPBorderPainter.html
HTML
apache-2.0
12,948
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example62-production</title> <link href="style.css" rel="stylesheet" type="text/css"> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.5/angular.min.js"></script> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.5/angular-animate.js"></script> </head> <body ng-app="ngAnimate"> <input id="setbtn" type="button" value="set" ng-click="myVar='my-class'"> <input id="clearbtn" type="button" value="clear" ng-click="myVar=''"> <br> <span class="base-class" ng-class="myVar">Sample Text</span> </body> </html>
AlexKomrakov/nndl
web/angular-1.3.0/docs/examples/example-example62/index-production.html
HTML
bsd-3-clause
648
<html> <body style="color: white" link="#1994FA"> <li>Configure Bluefruit LE using instructions found here: <a href="http://www.adafruit.com/bluefruitle">http://www.adafruit.com/bluefruitle</a></li> <br> <li>Tap the Scan button on the bottom toolbar to start/stop peripheral scanning.</li> <br> <li>Drag the table down and release to clear the list of found peripherals and begin scanning</li> <br> <li>Tap a row in the table to view a peripheral's advertisement data.</li> <br> <li>Each peripheral's Received Signal Strength (RSSI) is displayed to the left of its name.</li> <br> <li>Tap a row's connect button to connect the corresponding device in one of the available modes: </li> <br> <b>Info</b> - displays peripheral services & characteristics <br> <br> <b>UART</b> - basic terminal, send & receive data <br> <br> <b>Pin I/O</b> - uses Bluefruit's UART to control Arduino running BLEFirmata sketch: <a href="http://www.adafruit.com/bluefruitle">http://www.adafruit.com/bluefruitle</a> <br> <br> <b>Note</b> - If a peripheral does not offer the UART service, tapping Connect will automatically enter Info mode </body> </html>
MauricePeek513/MySneakerProject
app/src/main/assets/help/app_help.html
HTML
mit
1,140
<!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_22) on Mon Dec 20 13:46:30 EST 2010 --> <TITLE> org.apache.tools.ant.taskdefs.optional.jsp.compilers (Apache Ant API) </TITLE> <META NAME="keywords" CONTENT="org.apache.tools.ant.taskdefs.optional.jsp.compilers 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/tools/ant/taskdefs/optional/jsp/compilers/package-summary.html" target="classFrame">org.apache.tools.ant.taskdefs.optional.jsp.compilers</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="JspCompilerAdapter.html" title="interface in org.apache.tools.ant.taskdefs.optional.jsp.compilers" target="classFrame"><I>JspCompilerAdapter</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="DefaultJspCompilerAdapter.html" title="class in org.apache.tools.ant.taskdefs.optional.jsp.compilers" target="classFrame">DefaultJspCompilerAdapter</A> <BR> <A HREF="JasperC.html" title="class in org.apache.tools.ant.taskdefs.optional.jsp.compilers" target="classFrame">JasperC</A> <BR> <A HREF="JspCompilerAdapterFactory.html" title="class in org.apache.tools.ant.taskdefs.optional.jsp.compilers" target="classFrame">JspCompilerAdapterFactory</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
jeroendesloovere/PhotoSwipe
tools/apache-ant-1.8.2/docs/manual/api/org/apache/tools/ant/taskdefs/optional/jsp/compilers/package-frame.html
HTML
mit
1,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_03) on Fri Dec 18 17:26:35 EST 2009 --> <TITLE> com.sleepycat.persist.raw (Oracle - Berkeley DB Java API) </TITLE> <META NAME="date" CONTENT="2009-12-18"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../style.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="com.sleepycat.persist.raw (Oracle - Berkeley DB Java 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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.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> <b>Berkeley DB</b><br><font size="-1"> version 4.8.26</font></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../com/sleepycat/persist/model/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../../com/sleepycat/util/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?com/sleepycat/persist/raw/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.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> <H2> Package com.sleepycat.persist.raw </H2> Raw data access for general purpose tools and manual conversions. <P> <B>See:</B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="#package_description"><B>Description</B></A> <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Interface Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../com/sleepycat/persist/raw/RawField.html" title="interface in com.sleepycat.persist.raw">RawField</A></B></TD> <TD>The definition of a field in a <A HREF="../../../../com/sleepycat/persist/raw/RawType.html" title="interface in com.sleepycat.persist.raw"><CODE>RawType</CODE></A>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../com/sleepycat/persist/raw/RawType.html" title="interface in com.sleepycat.persist.raw">RawType</A></B></TD> <TD>The type definition for a simple or complex persistent type, or an array of persistent types.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../com/sleepycat/persist/raw/RawObject.html" title="class in com.sleepycat.persist.raw">RawObject</A></B></TD> <TD>A raw instance that can be used with a <A HREF="../../../../com/sleepycat/persist/raw/RawStore.html" title="class in com.sleepycat.persist.raw"><CODE>RawStore</CODE></A> or <A HREF="../../../../com/sleepycat/persist/evolve/Conversion.html" title="interface in com.sleepycat.persist.evolve"><CODE>Conversion</CODE></A>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../com/sleepycat/persist/raw/RawStore.html" title="class in com.sleepycat.persist.raw">RawStore</A></B></TD> <TD>Provides access to the raw data in a store for use by general purpose tools.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="package_description"><!-- --></A><H2> Package com.sleepycat.persist.raw Description </H2> <P> Raw data access for general purpose tools and manual conversions. <P> <P> <DL> </DL> <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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.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> <b>Berkeley DB</b><br><font size="-1"> version 4.8.26</font></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../com/sleepycat/persist/model/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../../com/sleepycat/util/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?com/sleepycat/persist/raw/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.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> <font size=1>Copyright (c) 1996-2009 Oracle. All rights reserved.</font> </BODY> </HTML>
egoitzro/poedit
deps/db/docs/java/com/sleepycat/persist/raw/package-summary.html
HTML
mit
8,364
<div> 当从节点通过JNLP启动后,节点会尝试与Jenkins指定的TCP端口连接,作为通讯通道。 但某些对安全敏感的网络可能会阻止该连接。 当Jenkins在一个负载均衡环境中运行时,也是有可能发生的,通过 <a href="http://www.serverwatch.com/tutorials/article.php/3290851">apache 反向代理</a> 到 <a href="http://en.wikipedia.org/wiki/Demilitarized_zone_(computing)">DMZ</a> 等等。 <p> 该通道选项,允许你指定其他的主机(或者端口),这对以上情况是很有用的。该字段的格式可以是"<tt>HOST:PORT</tt>", "<tt>:PORT</tt>", 或者"<tt>HOST:</tt>"。第一种格式下,JNLP 代理会连接指定的主机和端口,并且假设已经配置好了网络。 <p> 后面的两种格式,使用默认的主机名和端口号(主机名是Jenkins所运行的主机,TCP端口是Jenkins打开的端口)。在特殊情况下,<tt>HOST:</tt> format 这种格式是当Jenkins运行在反向代理环境下。 </div>
andresrc/jenkins
war/src/main/webapp/help/system-config/master-slave/jnlp-tunnel_zh_CN.html
HTML
mit
1,058
{% comment %}{% include navtabs.html %}{% endcomment %} <article class="page"> {% unless page.hide_title %} <div class="page-header"> <h1>{{ page.title }}</h1> </div> {% endunless %} {{ content }} {% if page.shares %} <p>{% include shares.html %}</p> {% endif %} {% if page.disqus %} {% include disqus.html %} {% endif %} </article>
Zhu8/zhu8.github.io
_includes/page.html
HTML
mit
354
<html><!-- Created using the cpp_pretty_printer from the dlib C++ library. See http://dlib.net for updates. --><head><title>dlib C++ Library - hashed_feature_image_abstract.h</title></head><body bgcolor='white'><pre> <font color='#009900'>// Copyright (C) 2011 Davis E. King ([email protected]) </font><font color='#009900'>// License: Boost Software License See LICENSE.txt for the full license. </font><font color='#0000FF'>#undef</font> DLIB_HASHED_IMAGE_FEATUrES_ABSTRACT_Hh_ <font color='#0000FF'>#ifdef</font> DLIB_HASHED_IMAGE_FEATUrES_ABSTRACT_Hh_ <font color='#0000FF'>#include</font> "<a style='text-decoration:none' href='../lsh/projection_hash_abstract.h.html'>../lsh/projection_hash_abstract.h</a>" <font color='#0000FF'>#include</font> <font color='#5555FF'>&lt;</font>vector<font color='#5555FF'>&gt;</font> <font color='#0000FF'>#include</font> "<a style='text-decoration:none' href='../matrix.h.html'>../matrix.h</a>" <font color='#0000FF'>#include</font> "<a style='text-decoration:none' href='../statistics.h.html'>../statistics.h</a>" <font color='#0000FF'>namespace</font> dlib <b>{</b> <font color='#009900'>// ---------------------------------------------------------------------------------------- </font> <font color='#0000FF'>template</font> <font color='#5555FF'>&lt;</font> <font color='#0000FF'>typename</font> feature_extractor, <font color='#0000FF'>typename</font> hash_function_type_ <font color='#5555FF'>=</font> projection_hash <font color='#5555FF'>&gt;</font> <font color='#0000FF'>class</font> <b><a name='hashed_feature_image'></a>hashed_feature_image</b> : noncopyable <b>{</b> <font color='#009900'>/*! REQUIREMENTS ON feature_extractor - must be an object with an interface compatible with dlib::hog_image REQUIREMENTS ON hash_function_type_ - must be an object with an interface compatible with projection_hash INITIAL VALUE - size() == 0 - uses_uniform_feature_weights() == false WHAT THIS OBJECT REPRESENTS This object is a tool for performing image feature extraction. In particular, it wraps another image feature extractor and converts the wrapped image feature vectors into sparse indicator vectors. It does this by hashing each feature vector into the range [0, get_num_dimensions()-1] and then returns a new vector which is zero everywhere except for the position determined by the hash. THREAD SAFETY Concurrent access to an instance of this object is not safe and should be protected by a mutex lock except for the case where you are copying the configuration (via copy_configuration()) of a hashed_feature_image object to many other threads. In this case, it is safe to copy the configuration of a shared object so long as no other operations are performed on it. NOTATION let BASE_FE denote the base feature_extractor object contained inside the hashed_feature_image. !*/</font> <font color='#0000FF'>public</font>: <font color='#0000FF'>typedef</font> feature_extractor feature_extractor_type; <font color='#0000FF'>typedef</font> hash_function_type_ hash_function_type; <font color='#0000FF'>typedef</font> std::vector<font color='#5555FF'>&lt;</font>std::pair<font color='#5555FF'>&lt;</font><font color='#0000FF'><u>unsigned</u></font> <font color='#0000FF'><u>int</u></font>,<font color='#0000FF'><u>double</u></font><font color='#5555FF'>&gt;</font> <font color='#5555FF'>&gt;</font> descriptor_type; <b><a name='hashed_feature_image'></a>hashed_feature_image</b> <font face='Lucida Console'>(</font> <font face='Lucida Console'>)</font>; <font color='#009900'>/*! ensures - this object is properly initialized !*/</font> <font color='#0000FF'><u>void</u></font> <b><a name='clear'></a>clear</b> <font face='Lucida Console'>(</font> <font face='Lucida Console'>)</font>; <font color='#009900'>/*! ensures - this object will have its initial value !*/</font> <font color='#0000FF'><u>void</u></font> <b><a name='set_hash'></a>set_hash</b> <font face='Lucida Console'>(</font> <font color='#0000FF'>const</font> hash_function_type<font color='#5555FF'>&amp;</font> hash <font face='Lucida Console'>)</font>; <font color='#009900'>/*! ensures - #get_hash() == hash !*/</font> <font color='#0000FF'>const</font> hash_function_type<font color='#5555FF'>&amp;</font> <b><a name='get_hash'></a>get_hash</b> <font face='Lucida Console'>(</font> <font face='Lucida Console'>)</font> <font color='#0000FF'>const</font>; <font color='#009900'>/*! ensures - returns the hash function used by this object to hash base feature vectors into integers. !*/</font> <font color='#0000FF'><u>void</u></font> <b><a name='copy_configuration'></a>copy_configuration</b> <font face='Lucida Console'>(</font> <font color='#0000FF'>const</font> feature_extractor<font color='#5555FF'>&amp;</font> item <font face='Lucida Console'>)</font>; <font color='#009900'>/*! ensures - performs BASE_FE.copy_configuration(item) !*/</font> <font color='#0000FF'><u>void</u></font> <b><a name='copy_configuration'></a>copy_configuration</b> <font face='Lucida Console'>(</font> <font color='#0000FF'>const</font> hashed_feature_image<font color='#5555FF'>&amp;</font> item <font face='Lucida Console'>)</font>; <font color='#009900'>/*! ensures - copies all the state information of item into *this, except for state information populated by load(). More precisely, given two hashed_feature_image objects H1 and H2, the following sequence of instructions should always result in both of them having the exact same state. H2.copy_configuration(H1); H1.load(img); H2.load(img); !*/</font> <font color='#0000FF'>template</font> <font color='#5555FF'>&lt;</font> <font color='#0000FF'>typename</font> image_type <font color='#5555FF'>&gt;</font> <font color='#0000FF'><u>void</u></font> <b><a name='load'></a>load</b> <font face='Lucida Console'>(</font> <font color='#0000FF'>const</font> image_type<font color='#5555FF'>&amp;</font> img <font face='Lucida Console'>)</font>; <font color='#009900'>/*! requires - image_type == any type that can be supplied to feature_extractor::load() ensures - performs BASE_FE.load(img) i.e. does feature extraction. The features can be accessed using operator() as defined below. !*/</font> <font color='#0000FF'><u>unsigned</u></font> <font color='#0000FF'><u>long</u></font> <b><a name='size'></a>size</b> <font face='Lucida Console'>(</font> <font face='Lucida Console'>)</font> <font color='#0000FF'>const</font>; <font color='#009900'>/*! ensures - returns BASE_FE.size() !*/</font> <font color='#0000FF'><u>long</u></font> <b><a name='nr'></a>nr</b> <font face='Lucida Console'>(</font> <font face='Lucida Console'>)</font> <font color='#0000FF'>const</font>; <font color='#009900'>/*! ensures - returns BASE_FE.nr() !*/</font> <font color='#0000FF'><u>long</u></font> <b><a name='nc'></a>nc</b> <font face='Lucida Console'>(</font> <font face='Lucida Console'>)</font> <font color='#0000FF'>const</font>; <font color='#009900'>/*! ensures - returns BASE_FE.nc() !*/</font> <font color='#0000FF'><u>long</u></font> <b><a name='get_num_dimensions'></a>get_num_dimensions</b> <font face='Lucida Console'>(</font> <font face='Lucida Console'>)</font> <font color='#0000FF'>const</font>; <font color='#009900'>/*! ensures - returns the dimensionality of the feature vectors returned by operator(). In this case, this is the number of hash bins. That is, get_hash().num_hash_bins() !*/</font> <font color='#0000FF'><u>void</u></font> <b><a name='use_relative_feature_weights'></a>use_relative_feature_weights</b> <font face='Lucida Console'>(</font> <font face='Lucida Console'>)</font>; <font color='#009900'>/*! ensures - #uses_uniform_feature_weights() == false !*/</font> <font color='#0000FF'><u>void</u></font> <b><a name='use_uniform_feature_weights'></a>use_uniform_feature_weights</b> <font face='Lucida Console'>(</font> <font face='Lucida Console'>)</font>; <font color='#009900'>/*! ensures - #uses_uniform_feature_weights() == true !*/</font> <font color='#0000FF'><u>bool</u></font> <b><a name='uses_uniform_feature_weights'></a>uses_uniform_feature_weights</b> <font face='Lucida Console'>(</font> <font face='Lucida Console'>)</font> <font color='#0000FF'>const</font>; <font color='#009900'>/*! ensures - returns true if this object weights each feature with a value of 1 and false if it uses a weighting of 1/N where N is the number of occurrences of the feature in an image (note that we normalize N so that it is invariant to the size of the image given to load()). !*/</font> <font color='#0000FF'>const</font> descriptor_type<font color='#5555FF'>&amp;</font> <b><a name='operator'></a>operator</b><font face='Lucida Console'>(</font><font face='Lucida Console'>)</font> <font face='Lucida Console'>(</font> <font color='#0000FF'><u>long</u></font> row, <font color='#0000FF'><u>long</u></font> col <font face='Lucida Console'>)</font> <font color='#0000FF'>const</font>; <font color='#009900'>/*! requires - 0 &lt;= row &lt; nr() - 0 &lt;= col &lt; nc() - It must be legal to evaluate expressions of the form: get_hash()(BASE_FE(row,col)) (e.g. the hash function must be properly configured to process the feature vectors produced by the base feature extractor) ensures - hashes BASE_FE(row,col) and returns the resulting indicator vector. - To be precise, this function returns a sparse vector V such that: - V.size() == 1 - V[0].first == get_hash()(BASE_FE(row,col)) - if (uses_uniform_feature_weights()) then - V[0].second == 1 - else - V[0].second == 1/N where N is the number of times a feature in hash bin V[0].first was observed in the image given to load(). Note that we scale all the counts so that they are invariant to the size of the image. !*/</font> <font color='#0000FF'>const</font> rectangle <b><a name='get_block_rect'></a>get_block_rect</b> <font face='Lucida Console'>(</font> <font color='#0000FF'><u>long</u></font> row, <font color='#0000FF'><u>long</u></font> col <font face='Lucida Console'>)</font> <font color='#0000FF'>const</font>; <font color='#009900'>/*! ensures - returns BASE_FE.get_block_rect(row,col) I.e. returns a rectangle that tells you what part of the original image is associated with a particular feature vector. !*/</font> <font color='#0000FF'>const</font> point <b><a name='image_to_feat_space'></a>image_to_feat_space</b> <font face='Lucida Console'>(</font> <font color='#0000FF'>const</font> point<font color='#5555FF'>&amp;</font> p <font face='Lucida Console'>)</font> <font color='#0000FF'>const</font>; <font color='#009900'>/*! ensures - returns BASE_FE.image_to_feat_space(p) I.e. Each local feature is extracted from a certain point in the input image. This function returns the identity of the local feature corresponding to the image location p. Or in other words, let P == image_to_feat_space(p), then (*this)(P.y(),P.x()) == the local feature closest to, or centered at, the point p in the input image. Note that some image points might not have corresponding feature locations. E.g. border points or points outside the image. In these cases the returned point will be outside get_rect(*this). !*/</font> <font color='#0000FF'>const</font> rectangle <b><a name='image_to_feat_space'></a>image_to_feat_space</b> <font face='Lucida Console'>(</font> <font color='#0000FF'>const</font> rectangle<font color='#5555FF'>&amp;</font> rect <font face='Lucida Console'>)</font> <font color='#0000FF'>const</font>; <font color='#009900'>/*! ensures - returns BASE_FE.image_to_feat_space(rect) I.e. returns rectangle(image_to_feat_space(rect.tl_corner()), image_to_feat_space(rect.br_corner())); (i.e. maps a rectangle from image space to feature space) !*/</font> <font color='#0000FF'>const</font> point <b><a name='feat_to_image_space'></a>feat_to_image_space</b> <font face='Lucida Console'>(</font> <font color='#0000FF'>const</font> point<font color='#5555FF'>&amp;</font> p <font face='Lucida Console'>)</font> <font color='#0000FF'>const</font>; <font color='#009900'>/*! ensures - returns BASE_FE.feat_to_image_space(p) I.e. returns the location in the input image space corresponding to the center of the local feature at point p. In other words, this function computes the inverse of image_to_feat_space(). Note that it may only do so approximately, since more than one image location might correspond to the same local feature. That is, image_to_feat_space() might not be invertible so this function gives the closest possible result. !*/</font> <font color='#0000FF'>const</font> rectangle <b><a name='feat_to_image_space'></a>feat_to_image_space</b> <font face='Lucida Console'>(</font> <font color='#0000FF'>const</font> rectangle<font color='#5555FF'>&amp;</font> rect <font face='Lucida Console'>)</font> <font color='#0000FF'>const</font>; <font color='#009900'>/*! ensures - returns BASE_FE.feat_to_image_space(rect) I.e. return rectangle(feat_to_image_space(rect.tl_corner()), feat_to_image_space(rect.br_corner())); (i.e. maps a rectangle from feature space to image space) !*/</font> <b>}</b>; <font color='#009900'>// ---------------------------------------------------------------------------------------- </font> <font color='#0000FF'>template</font> <font color='#5555FF'>&lt;</font> <font color='#0000FF'>typename</font> T, <font color='#0000FF'>typename</font> U <font color='#5555FF'>&gt;</font> <font color='#0000FF'><u>void</u></font> <b><a name='serialize'></a>serialize</b> <font face='Lucida Console'>(</font> <font color='#0000FF'>const</font> hashed_feature_image<font color='#5555FF'>&lt;</font>T,U<font color='#5555FF'>&gt;</font><font color='#5555FF'>&amp;</font> item, std::ostream<font color='#5555FF'>&amp;</font> out <font face='Lucida Console'>)</font>; <font color='#009900'>/*! provides serialization support !*/</font> <font color='#009900'>// ---------------------------------------------------------------------------------------- </font> <font color='#0000FF'>template</font> <font color='#5555FF'>&lt;</font> <font color='#0000FF'>typename</font> T, <font color='#0000FF'>typename</font> U <font color='#5555FF'>&gt;</font> <font color='#0000FF'><u>void</u></font> <b><a name='deserialize'></a>deserialize</b> <font face='Lucida Console'>(</font> hashed_feature_image<font color='#5555FF'>&lt;</font>T,U<font color='#5555FF'>&gt;</font><font color='#5555FF'>&amp;</font> item, std::istream<font color='#5555FF'>&amp;</font> in <font face='Lucida Console'>)</font>; <font color='#009900'>/*! provides deserialization support !*/</font> <font color='#009900'>// ---------------------------------------------------------------------------------------- </font> <b>}</b> <font color='#0000FF'>#endif</font> <font color='#009900'>// DLIB_HASHED_IMAGE_FEATUrES_ABSTRACT_Hh_ </font> </pre></body></html>
ruby-dlib/ruby-dlib
ext/dlib-19.4/docs/dlib/image_keypoint/hashed_feature_image_abstract.h.html
HTML
mit
17,634
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!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/html; charset=UTF-8" /> <title>db_env_set_func_free</title> <link rel="stylesheet" href="apiReference.css" type="text/css" /> <meta name="generator" content="DocBook XSL Stylesheets V1.73.2" /> <link rel="start" href="index.html" title="Berkeley DB C API Reference" /> <link rel="up" href="setfunc.html" title="Appendix 3.  Berkeley DB Application Space Static Functions" /> <link rel="prev" href="db_env_set_func_file_map.html" title="db_env_set_func_file_map" /> <link rel="next" href="db_env_set_func_fsync.html" title="db_env_set_func_fsync" /> </head> <body> <div class="navheader"> <table width="100%" summary="Navigation header"> <tr> <th colspan="3" align="center">db_env_set_func_free</th> </tr> <tr> <td width="20%" align="left"><a accesskey="p" href="db_env_set_func_file_map.html">Prev</a> </td> <th width="60%" align="center">Appendix 3.  Berkeley DB Application Space Static Functions </th> <td width="20%" align="right"> <a accesskey="n" href="db_env_set_func_fsync.html">Next</a></td> </tr> </table> <hr /> </div> <div class="sect1" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h2 class="title" style="clear: both"><a id="db_env_set_func_free"></a>db_env_set_func_free</h2> </div> </div> </div> <pre class="programlisting">#include &lt;db.h&gt; int db_env_set_func_free(void (*func_free)(void *ptr)); </pre> <p> Replace Berkeley DB calls to the ANSI C X3.159-1989 (ANSI C) standard <span class="bold"><strong>free</strong></span> function with <span class="bold"><strong>func_free</strong></span>, which must conform to the standard interface specification. </p> <p> The <code class="function">db_env_set_func_free()</code> function configures all operations performed by a process and all of its threads of control, not operations confined to a single database environment. </p> <p> Although the <code class="function">db_env_set_func_free()</code> function may be called at any time during the life of the application, it should normally be called before making calls to the <a class="xref" href="envcreate.html" title="db_env_create">db_env_create</a> or <a class="xref" href="dbcreate.html" title="db_create">db_create</a> methods. </p> <p> The <code class="function">db_env_set_func_free()</code> <span> function returns a non-zero error value on failure and 0 on success. </span> </p> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="id1718499"></a>Parameters</h3> </div> </div> </div> <div class="sect3" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h4 class="title"><a id="id1719168"></a>func_free</h4> </div> </div> </div> <p> The <span class="bold"><strong>func_free</strong></span> parameter is the replacement function. It must conform to the standard interface specification. </p> </div> </div> <div class="sect2" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h3 class="title"><a id="id1719343"></a>See Also</h3> </div> </div> </div> <p> <a href="../../programmer_reference/program_runtime.html" class="olink">Run-time configuration</a> </p> </div> </div> <div class="navfooter"> <hr /> <table width="100%" summary="Navigation footer"> <tr> <td width="40%" align="left"><a accesskey="p" href="db_env_set_func_file_map.html">Prev</a> </td> <td width="20%" align="center"> <a accesskey="u" href="setfunc.html">Up</a> </td> <td width="40%" align="right"> <a accesskey="n" href="db_env_set_func_fsync.html">Next</a></td> </tr> <tr> <td width="40%" align="left" valign="top">db_env_set_func_file_map </td> <td width="20%" align="center"> <a accesskey="h" href="index.html">Home</a> </td> <td width="40%" align="right" valign="top"> db_env_set_func_fsync</td> </tr> </table> </div> </body> </html>
egoitzro/poedit
deps/db/docs/api_reference/C/db_env_set_func_free.html
HTML
mit
4,989
<!DOCTYPE html> <html lang="en"> <head> <title>three.js webgl - lights - point lights</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <link type="text/css" rel="stylesheet" href="main.css"> </head> <body> <div id="info"> <a href="http://threejs.org" target="_blank" rel="noopener">three.js</a> - point lights WebGL demo.<br /> Walt Disney head by <a href="http://davidoreilly.com/post/18087489343/disneyhead" target="_blank" rel="noopener">David OReilly</a> </div> <script type="module"> import * as THREE from '../build/three.module.js'; import Stats from './jsm/libs/stats.module.js'; import { OBJLoader } from './jsm/loaders/OBJLoader.js'; var camera, scene, renderer, light1, light2, light3, light4, object, stats; var clock = new THREE.Clock(); init(); animate(); function init() { camera = new THREE.PerspectiveCamera( 50, window.innerWidth / window.innerHeight, 1, 1000 ); camera.position.z = 100; scene = new THREE.Scene(); //model var loader = new OBJLoader(); loader.load( 'models/obj/walt/WaltHead.obj', function ( obj ) { object = obj; object.scale.multiplyScalar( 0.8 ); object.position.y = - 30; scene.add( object ); } ); var sphere = new THREE.SphereBufferGeometry( 0.5, 16, 8 ); //lights light1 = new THREE.PointLight( 0xff0040, 2, 50 ); light1.add( new THREE.Mesh( sphere, new THREE.MeshBasicMaterial( { color: 0xff0040 } ) ) ); scene.add( light1 ); light2 = new THREE.PointLight( 0x0040ff, 2, 50 ); light2.add( new THREE.Mesh( sphere, new THREE.MeshBasicMaterial( { color: 0x0040ff } ) ) ); scene.add( light2 ); light3 = new THREE.PointLight( 0x80ff80, 2, 50 ); light3.add( new THREE.Mesh( sphere, new THREE.MeshBasicMaterial( { color: 0x80ff80 } ) ) ); scene.add( light3 ); light4 = new THREE.PointLight( 0xffaa00, 2, 50 ); light4.add( new THREE.Mesh( sphere, new THREE.MeshBasicMaterial( { color: 0xffaa00 } ) ) ); scene.add( light4 ); //renderer renderer = new THREE.WebGLRenderer( { antialias: true } ); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); document.body.appendChild( renderer.domElement ); //stats stats = new Stats(); document.body.appendChild( stats.dom ); window.addEventListener( 'resize', onWindowResize, false ); } function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); renderer.setSize( window.innerWidth, window.innerHeight ); } function animate() { requestAnimationFrame( animate ); render(); stats.update(); } function render() { var time = Date.now() * 0.0005; var delta = clock.getDelta(); if ( object ) object.rotation.y -= 0.5 * delta; light1.position.x = Math.sin( time * 0.7 ) * 30; light1.position.y = Math.cos( time * 0.5 ) * 40; light1.position.z = Math.cos( time * 0.3 ) * 30; light2.position.x = Math.cos( time * 0.3 ) * 30; light2.position.y = Math.sin( time * 0.5 ) * 40; light2.position.z = Math.sin( time * 0.7 ) * 30; light3.position.x = Math.sin( time * 0.7 ) * 30; light3.position.y = Math.cos( time * 0.3 ) * 40; light3.position.z = Math.sin( time * 0.5 ) * 30; light4.position.x = Math.sin( time * 0.3 ) * 30; light4.position.y = Math.cos( time * 0.7 ) * 40; light4.position.z = Math.sin( time * 0.5 ) * 30; renderer.render( scene, camera ); } </script> </body> </html>
billroy/jchart
public/js/three.js/examples/webgl_lights_pointlights.html
HTML
mit
3,701
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>ssl::context::set_options (2 of 2 overloads)</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="../../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../set_options.html" title="ssl::context::set_options"> <link rel="prev" href="overload1.html" title="ssl::context::set_options (1 of 2 overloads)"> <link rel="next" href="../set_password_callback.html" title="ssl::context::set_password_callback"> </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="overload1.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../set_options.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="../set_password_callback.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="boost_asio.reference.ssl__context.set_options.overload2"></a><a class="link" href="overload2.html" title="ssl::context::set_options (2 of 2 overloads)">ssl::context::set_options (2 of 2 overloads)</a> </h5></div></div></div> <p> Set options on the context. </p> <pre class="programlisting"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="identifier">set_options</span><span class="special">(</span> <span class="identifier">options</span> <span class="identifier">o</span><span class="special">,</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> </pre> <p> This function may be used to configure the SSL options used by the context. </p> <h6> <a name="boost_asio.reference.ssl__context.set_options.overload2.h0"></a> <span class="phrase"><a name="boost_asio.reference.ssl__context.set_options.overload2.parameters"></a></span><a class="link" href="overload2.html#boost_asio.reference.ssl__context.set_options.overload2.parameters">Parameters</a> </h6> <div class="variablelist"> <p class="title"><b></b></p> <dl class="variablelist"> <dt><span class="term">o</span></dt> <dd><p> A bitmask of options. The available option values are defined in the <a class="link" href="../../ssl__context_base.html" title="ssl::context_base"><code class="computeroutput"><span class="identifier">ssl</span><span class="special">::</span><span class="identifier">context_base</span></code></a> class. The options are bitwise-ored with any existing value for the options. </p></dd> <dt><span class="term">ec</span></dt> <dd><p> Set to indicate what error occurred, if any. </p></dd> </dl> </div> <h6> <a name="boost_asio.reference.ssl__context.set_options.overload2.h1"></a> <span class="phrase"><a name="boost_asio.reference.ssl__context.set_options.overload2.remarks"></a></span><a class="link" href="overload2.html#boost_asio.reference.ssl__context.set_options.overload2.remarks">Remarks</a> </h6> <p> Calls <code class="computeroutput"><span class="identifier">SSL_CTX_set_options</span></code>. </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; 2003-2013 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="overload1.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../set_options.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="../set_password_callback.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
NixaSoftware/CVis
venv/bin/doc/html/boost_asio/reference/ssl__context/set_options/overload2.html
HTML
apache-2.0
5,472
<!DOCTYPE html> <html lang="en" ng-app="jpm"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link href="/releases/4.1.0/css/style.css" rel="stylesheet" /> <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> <script src="/js/releases.js"></script> <!-- Begin Jekyll SEO tag v2.5.0 --> <title>-nouses BOOLEAN</title> <meta name="generator" content="Jekyll v3.7.4" /> <meta property="og:title" content="-nouses BOOLEAN" /> <meta property="og:locale" content="en_US" /> <meta name="description" content="/** * Add the uses clauses. This method iterates over the exports and cal * * @param exports * @param uses * @throws MojoExecutionException */ void doUses(Packages exports, Map&lt;PackageRef,List&lt;PackageRef&gt;&gt; uses, Packages imports) { if (isTrue(getProperty(NOUSES))) return;" /> <meta property="og:description" content="/** * Add the uses clauses. This method iterates over the exports and cal * * @param exports * @param uses * @throws MojoExecutionException */ void doUses(Packages exports, Map&lt;PackageRef,List&lt;PackageRef&gt;&gt; uses, Packages imports) { if (isTrue(getProperty(NOUSES))) return;" /> <meta property="og:type" content="article" /> <meta property="article:published_time" content="2019-10-12T20:06:21-04:00" /> <script type="application/ld+json"> {"headline":"-nouses BOOLEAN","dateModified":"2019-10-12T20:06:21-04:00","datePublished":"2019-10-12T20:06:21-04:00","@type":"BlogPosting","mainEntityOfPage":{"@type":"WebPage","@id":"/releases/4.1.0/instructions/nouses.html"},"url":"/releases/4.1.0/instructions/nouses.html","description":"/** * Add the uses clauses. This method iterates over the exports and cal * * @param exports * @param uses * @throws MojoExecutionException */ void doUses(Packages exports, Map&lt;PackageRef,List&lt;PackageRef&gt;&gt; uses, Packages imports) { if (isTrue(getProperty(NOUSES))) return;","@context":"http://schema.org"}</script> <!-- End Jekyll SEO tag --> </head> <body> <ul class="container12 menu-bar"> <li span=11><a class=menu-link href="/releases/4.1.0/"><img class=menu-logo src='/releases/4.1.0/img/bnd-80x40-white.png'></a> <a href="/releases/4.1.0/chapters/110-introduction.html">Intro </a><a href="/releases/4.1.0/chapters/800-headers.html">Headers </a><a href="/releases/4.1.0/chapters/825-instructions-ref.html">Instructions </a><a href="/releases/4.1.0/chapters/855-macros-ref.html">Macros </a><a href="/releases/4.1.0/chapters/860-commands.html">Commands </a><div class="releases"><button class="dropbtn">4.1.0</button><div class="dropdown-content"></div></div> <li class=menu-link span=1> <a href="https://github.com/bndtools/bnd" target="_"><img style="position:absolute;top:0;right:0;margin:0;padding:0;z-index:100" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a> </ul> <ul class=container12> <li span=3> <div> <ul class="side-nav"> <li><a href="/releases/4.1.0/chapters/110-introduction.html">Introduction</a> <li><a href="/releases/4.1.0/chapters/120-install.html">How to install bnd</a> <li><a href="/releases/4.1.0/chapters/123-tour-workspace.html">Guided Tour</a> <li><a href="/releases/4.1.0/chapters/125-tour-features.html">Guided Tour Workspace & Projects</a> <li><a href="/releases/4.1.0/chapters/130-concepts.html">Concepts</a> <li><a href="/releases/4.1.0/chapters/140-best-practices.html">Best practices</a> <li><a href="/releases/4.1.0/chapters/150-build.html">Build</a> <li><a href="/releases/4.1.0/chapters/160-jars.html">Generating JARs</a> <li><a href="/releases/4.1.0/chapters/170-versioning.html">Versioning</a> <li><a href="/releases/4.1.0/chapters/180-baselining.html">Baselining</a> <li><a href="/releases/4.1.0/chapters/200-components.html">Service Components</a> <li><a href="/releases/4.1.0/chapters/210-metatype.html">Metatype</a> <li><a href="/releases/4.1.0/chapters/220-contracts.html">Contracts</a> <li><a href="/releases/4.1.0/chapters/230-manifest-annotations.html">Manifest Annotations</a> <li><a href="/releases/4.1.0/chapters/250-resolving.html">Resolving Dependencies</a> <li><a href="/releases/4.1.0/chapters/300-launching.html">Launching</a> <li><a href="/releases/4.1.0/chapters/310-testing.html">Testing</a> <li><a href="/releases/4.1.0/chapters/320-packaging.html">Packaging Applications</a> <li><a href="/releases/4.1.0/chapters/390-wrapping.html">Wrapping Libraries to OSGi Bundles</a> <li><a href="/releases/4.1.0/chapters/400-commandline.html">From the command line</a> <li><a href="/releases/4.1.0/chapters/600-developer.html">For Developers</a> <li><a href="/releases/4.1.0/chapters/610-plugin.html">Plugins</a> <li><a href="/releases/4.1.0/chapters/700-tools.html">Tools bound to bnd</a> <li><a href="/releases/4.1.0/chapters/800-headers.html">Header Reference</a> <li><a href="/releases/4.1.0/chapters/820-instructions.html">Instruction</a> <li><a href="/releases/4.1.0/chapters/825-instructions-ref.html">Instruction Index</a> <li><a href="/releases/4.1.0/chapters/850-macros.html">Macro Reference</a> <li><a href="/releases/4.1.0/chapters/855-macros-ref.html">Macro Index</a> <li><a href="/releases/4.1.0/chapters/860-commands.html">Command Reference</a> <li><a href="/releases/4.1.0/chapters/870-plugins.html">Plugins Reference</a> <li><a href="/releases/4.1.0/chapters/880-settings.html">Settings</a> <li><a href="/releases/4.1.0/chapters/900-errors.html">Errors</a> <li><a href="/releases/4.1.0/chapters/910-warnings.html">Warnings</a> <li><a href="/releases/4.1.0/chapters/920-faq.html">Frequently Asked Questions</a> </ul> </div> <li span=9> <div class=notes-margin> <h1> -nouses BOOLEAN</h1> <div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>/** * Add the uses clauses. This method iterates over the exports and cal * * @param exports * @param uses * @throws MojoExecutionException */ void doUses(Packages exports, Map&lt;PackageRef,List&lt;PackageRef&gt;&gt; uses, Packages imports) { if (isTrue(getProperty(NOUSES))) return; for (Iterator&lt;PackageRef&gt; i = exports.keySet().iterator(); i.hasNext();) { PackageRef packageRef = i.next(); String packageName = packageRef.getFQN(); setProperty(CURRENT_PACKAGE, packageName); try { doUses(packageRef, exports, uses, imports); } finally { unsetProperty(CURRENT_PACKAGE); } } } </code></pre></div></div> </div> </ul> <nav class=next-prev> <a href='/releases/4.1.0/instructions/nomanifest.html'></a> <a href='/releases/4.1.0/instructions/output.html'></a> </nav> <footer class="container12" style="border-top: 1px solid black;padding:10px 0"> <ul span=12 row> <li span=3> <ul> <li><a href="/releases/4.1.0/contact.html">Contact</a> </ul> <li span=3> <ul> <li><a href="/releases/4.1.0/">Developers</a> </ul> <li span=3> <ul> <li><a href="/releases/4.1.0/">More</a> </ul> </ul> </footer> </body> </html>
psoreide/bnd
docs/releases/4.1.0/instructions/nouses.html
HTML
apache-2.0
7,592
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <!--basic styles--> <link href="asset/css/bootstrap.css" rel="stylesheet" /> <link rel="stylesheet" href="asset/css/dexter.min.css" /> <link rel="stylesheet" href="asset/css/font-awesome.min.css" /> <!--[if IE 7]> <link rel="stylesheet" href="asset/css/font-awesome-ie7.min.css"> <![endif]--> <link rel="stylesheet" href="asset/css/prettify.css" /> <script src="asset/js/jquery-2.0.3.min.js"></script> <!--[if IE]> <script src="asset/js/jquery.min.js"></script> <![endif]--> <script src="asset/js/prettify.js"></script> <script type="text/javascript"> $(function() { window.prettyPrint && prettyPrint(); $('#id-check-horizontal').removeAttr('checked').on('click', function(){ $('#dt-list-1').toggleClass('dl-horizontal').prev().html(this.checked ? '&lt;dl class="dl-horizontal"&gt;' : '&lt;dl&gt;'); }); }) </script> </head> <body> <div class="space-12"></div> <div class="table-grid-info table-grid-info-striped"> <div class="table-grid-row"> <div class="table-grid-label"> Checker Code</div> <div class="table-grid-value"><h5 class="header blue"><i class="fa fa-bug"></i>&nbsp; nonreentrantFunctionsgcvt</h5> </div> </div> <div class="table-grid-row"> <div class="table-grid-label"> Description </div> <div class="table-grid-value-highlight"><i class="fa fa-th"></i>&nbsp; Avoid usage of the function 'gcvt'. </div> </div> <div class="table-grid-row"> <div class="table-grid-label"> Severity </div> <div class="table-grid-value"> Critical </div> </div> <div class="table-grid-row"> <div class="table-grid-label"> Detector / Bug Pattern </div> <div class="table-grid-value"> Avoid usage of the function 'gcvt'. </div> </div> <div class="table-grid-row"> <div class="table-grid-label"> More Information </div> <div class="table-grid-value"> The function 'gcvt' is not reentrant. For thread safe applications it is recommended to use the reentrant replacement function 'gcvt_r'. </div> </div> <div class="table-grid-row"> <div class="table-grid-label"> Bad Code </div> <div class="table-grid-value"> <pre class="prettyprint linenums warning"> </pre> </div> </div> <div class="table-grid-row"> <div class="table-grid-label"> Good Code </div> <div class="table-grid-value"> <pre class="prettyprint linenums correct"> </pre> </div> </div> <div class="table-grid-row"> <div class="table-grid-label"> CWE ID </div> <div class="table-grid-value"> <a href="asset/CWE_ID.html" target="_blank">0 </a> </div> </div> <div class="table-grid-row"> <div class="table-grid-label"> Code Review Asset </div> <div class="table-grid-value"> N/A </div> </div> <div class="table-grid-row"> <div class="table-grid-label"> URLs </div> <div class="table-grid-value"> <i class="fa fa-link"></i>&nbsp; <a target="_blank" href="http://pubs.opengroup.org/onlinepubs/009695399/functions/ecvt.html"> http://pubs.opengroup.org/onlinepubs/009695399/functions/ecvt.html </a> </div> </div> </div> <div class="space-20"></div> </body> <html>
KarolAntczak/Dexter
project/dexter-server/public/tool/cppcheck/CPP/help/nonreentrantFunctionsgcvt.html
HTML
bsd-2-clause
3,340
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <title>Description of fevalArrays</title> <meta name="keywords" content="fevalArrays"> <meta name="description" content="Used to apply the same operation to a stack of array elements."> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="generator" content="m2html &copy; 2003 Guillaume Flandin"> <meta name="robots" content="index, follow"> <link type="text/css" rel="stylesheet" href="../m2html.css"> </head> <body> <a name="_top"></a> <!-- menu.html matlab --> <h1>fevalArrays </h1> <h2><a name="_name"></a>PURPOSE <a href="#_top"><img alt="^" border="0" src="../up.png"></a></h2> <div class="box"><strong>Used to apply the same operation to a stack of array elements.</strong></div> <h2><a name="_synopsis"></a>SYNOPSIS <a href="#_top"><img alt="^" border="0" src="../up.png"></a></h2> <div class="box"><strong>function B = fevalArrays( A, fHandle, varargin ) </strong></div> <h2><a name="_description"></a>DESCRIPTION <a href="#_top"><img alt="^" border="0" src="../up.png"></a></h2> <div class="fragment"><pre class="comment"> Used to apply the same operation to a stack of array elements. The only constraint on the function specified in fHandle is that given two differrent input arrays a1 and a2, if a1 and a2 have the same dimensions then the outputs b1 and b2 must have the same dimensions. For long operations shows progress information. A can have arbitrary dimension. Suppose A has size d1 x d2 ... x dn. Then for the purpose of this function A has dn elements, where A(:,:,...,i) is the ith element. This function then applies the operation in fHandle, with paramters given in varargin, to each element in A. The results are returned in the array B, of size f1 x f2 x ... x fk x dn. Each of the n element of B of the form B(:,:,...,i) is the the result of applying fHandle to A(:,:,...,i). A may also be a cell array, see the last example. A limitation of fevalArrays is that it does not pass state information to fHandle. For example, fHandle may want to know how many times it's been called. This can be overcome by saving state information inside fHandle using 'persistent' variables. For an example see imwrite2. USAGE B = fevalArrays( A, fHandle, varargin ) INPUTS A - input array fHandle - operation to apply to each 'element' of A params - [varargin] parameters for each operation specified by fHandle OUTPUTS B - output array EXAMPLE B = fevalArrays( A, @rgb2gray ); % where A is MxNx3xR B = fevalArrays( A, @imresize, .5 ); % where A is MxNxR B = fevalArrays( A, @imNormalize ); % where A has arbitrary dims B = fevalArrays( A, @(x) {imresize(x{1},.5)} ); % A is cell array See also <a href="fevalImages.html" class="code" title="function X = fevalImages( fHandle, prms, srcDir, name, ext,nStr, nEnd, nDigits )">FEVALIMAGES</a>, <a href="fevalMats.html" class="code" title="function X = fevalMats( fHandle, matCont, prm, srcDir, prefix )">FEVALMATS</a>, ARRAYFUN IMWRITE2, PERSISTENT, <a href="ticStatus.html" class="code" title="function id = ticStatus( msg, updateFreq, updateMinT, erasePrev )">TICSTATUS</a>, Piotr's Image&amp;Video Toolbox Version 2.0 Copyright 2012 Piotr Dollar. [pdollar-at-caltech.edu] Please email me if you find bugs, or have suggestions or questions! Licensed under the Simplified BSD License [see external/bsd.txt]</pre></div> <!-- Start of Google Analytics Code --> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> var pageTracker = _gat._getTracker("UA-4884268-1"); pageTracker._initData(); pageTracker._trackPageview(); </script> <!-- end of Google Analytics Code --> <hr><address>Generated by <strong><a href="http://www.artefact.tk/software/matlab/m2html/" target="_parent">m2html</a></strong> &copy; 2003</address> </body> </html>
s-gupta/utils
toolbox/doc/matlab/fevalArrays.html
HTML
bsd-2-clause
4,308
<!DOCTYPE html> <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!-- This testcase checks that we correctly handle the "overflow" property on a horizontal flex container. --> <html> <head> <title>CSS Test: Testing 'overflow' property on a horizontal flex container, with contents not overflowing</title> <link rel="author" title="Daniel Holbert" href="mailto:[email protected]"> <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-containers"> <link rel="match" href="flexbox-overflow-horiz-001-ref.html"> <style> .flexContainer { background: purple; display: flex; width: 70px; height: 70px; float: left; margin-right: 5px; } .bigItem { background: blue; height: 200px; flex: 3; } .smallItem { background: teal; margin-bottom: 10px; flex: 1; } .scroll { overflow: scroll } .auto { overflow: auto } .hidden { overflow: hidden } </style> </head> <body> <div class="flexContainer"><!-- (overflow un-set) --> <div class="bigItem"></div> <div class="smallItem"></div> </div> <div class="flexContainer hidden"> <div class="bigItem"></div> <div class="smallItem"></div> </div> <div class="flexContainer scroll"> <div class="bigItem"></div> <div class="smallItem"></div> </div> <div class="flexContainer auto"> <div class="bigItem"></div> <div class="smallItem"></div> </div> </body> </html>
axinging/chromium-crosswalk
third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-overflow-horiz-001.html
HTML
bsd-3-clause
1,553
<!-- Copyright (c) 2015 The Khronos Group Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and/or associated documentation files (the "Materials"), to deal in the Materials without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Materials, and to permit persons to whom the Materials are furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Materials. THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --> <!-- This file is auto-generated from py/tex_image_test_generator.py DO NOT EDIT! --> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="../../../resources/js-test-style.css"/> <script src="../../../js/js-test-pre.js"></script> <script src="../../../js/webgl-test-utils.js"></script> <script src="../../../js/tests/tex-image-and-sub-image-utils.js"></script> <script src="../../../js/tests/tex-image-and-sub-image-2d-with-image.js"></script> </head> <body> <canvas id="example" width="32" height="32"></canvas> <div id="description"></div> <div id="console"></div> <script> "use strict"; function testPrologue(gl) { return true; } generateTest("RGB565", "RGB", "UNSIGNED_SHORT_5_6_5", testPrologue, "../../../resources/", 2)(); </script> </body> </html>
endlessm/chromium-browser
third_party/webgl/src/conformance-suites/2.0.0/conformance2/textures/image/tex-2d-rgb565-rgb-unsigned_short_5_6_5.html
HTML
bsd-3-clause
1,885
<h1><code ng:non-bindable="">ngClassEven</code> <span class="hint">(directive in module <code ng:non-bindable="">ng</code> )</span> </h1> <div><a href="http://github.com/angular/angular.js/edit/master/src/ng/directive/ngClass.js" class="improve-docs btn btn-primary">Improve this doc</a><h2 id="Description">Description</h2> <div class="description"><p>The <code>ngClassOdd</code> and <code>ngClassEven</code> works exactly as <a href="api/ng.directive:ngClass"><code>ngClass</code></a>, except it works in conjunction with <code>ngRepeat</code> and takes affect only on odd (even) rows.</p> <p>This directive can be applied only within a scope of an <a href="api/ng.directive:ngRepeat"><code>ngRepeat</code></a>.</p></div> <h2 id="Usage">Usage</h2> <div class="usage">as attribute<pre class="prettyprint linenums">&lt;ANY ng-class-even="{expression}"&gt; ... &lt;/ANY&gt;</pre> as class<pre class="prettyprint linenums">&lt;ANY class="ng-class-even: {expression};"&gt; ... &lt;/ANY&gt;</pre> <h3 id="Parameters">Parameters</h3> <ul class="parameters"><li><code ng:non-bindable="">ngClassEven – {expression} – </code> <p><a href="guide/expression">Expression</a> to eval. The result of the evaluation can be a string representing space delimited class names or an array.</p></li> </ul> </div> <h2 id="Example">Example</h2> <div class="example"><h4>Source</h4> <div source-edit="" source-edit-deps="angular.js" source-edit-html="index.html-115" source-edit-css="style.css-116" source-edit-js="" source-edit-unit="" source-edit-scenario="scenario.js-117"></div> <div class="tabbable"><div class="tab-pane" title="index.html"> <pre class="prettyprint linenums" ng-set-text="index.html-115" ng-html-wrap=" angular.js"></pre> <script type="text/ng-template" id="index.html-115"> <ol ng-init="names=['John', 'Mary', 'Cate', 'Suz']"> <li ng-repeat="name in names"> <span ng-class-odd="'odd'" ng-class-even="'even'"> {{name}} &nbsp; &nbsp; &nbsp; </span> </li> </ol> </script> </div> <div class="tab-pane" title="style.css"> <pre class="prettyprint linenums" ng-set-text="style.css-116"></pre> <style type="text/css" id="style.css-116"> .odd { color: red; } .even { color: blue; } </style> </div> <div class="tab-pane" title="End to end test"> <pre class="prettyprint linenums" ng-set-text="scenario.js-117"></pre> <script type="text/ng-template" id="scenario.js-117"> it('should check ng-class-odd and ng-class-even', function() { expect(element('.doc-example-live li:first span').prop('className')). toMatch(/odd/); expect(element('.doc-example-live li:last span').prop('className')). toMatch(/even/); }); </script> </div> </div><h4>Demo</h4> <div class="well doc-example-live animator-container" ng-embed-app="" ng-set-html="index.html-115" ng-eval-javascript=""></div></div> </div>
Laimiux/mydeatree
staticfiles/js/angular-1.1.4/docs/partials/api/ng.directive:ngClassEven.html
HTML
bsd-3-clause
2,865
<!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.5"/> <title>Core Plot (iOS): 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="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); $(window).load(resizeHeight); </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="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> <!-- end header part --> <!-- Generated by Doxygen 1.8.5 --> <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>Animation&#160;&&#160;Constants</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><a href="functions.html"><span>Class&#160;Members</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('protocol_c_p_t_legend_delegate-p.html','');}); </script> <div id="doc-content"> <div class="header"> <div class="headertitle"> <div class="title">&lt;CPTLegendDelegate&gt; Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="protocol_c_p_t_legend_delegate-p.html">&lt;CPTLegendDelegate&gt;</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html#//apple_ref/occ/intfm/NSObject/description">description</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html">&lt;NSObject&gt;</a></td><td class="entry"></td></tr> <tr><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html#//apple_ref/occ/intfm/NSObject/hash">hash</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html">&lt;NSObject&gt;</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html#//apple_ref/occ/intfm/NSObject/isEqual:">isEqual:</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html">&lt;NSObject&gt;</a></td><td class="entry"></td></tr> <tr><td class="entry">-&#160;</td><td><a class="el" href="protocol_c_p_t_legend_delegate-p.html#ae75c7df3b7dbf3889177af8e7addf69e">legend:fillForEntryAtIndex:forPlot:</a></td><td class="entry"><a class="el" href="protocol_c_p_t_legend_delegate-p.html">&lt;CPTLegendDelegate&gt;</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="el" href="protocol_c_p_t_legend_delegate-p.html#a21bbe3ee715bd7ed34b45dc89448790b">legend:fillForSwatchAtIndex:forPlot:</a></td><td class="entry"><a class="el" href="protocol_c_p_t_legend_delegate-p.html">&lt;CPTLegendDelegate&gt;</a></td><td class="entry"></td></tr> <tr><td class="entry">-&#160;</td><td><a class="el" href="protocol_c_p_t_legend_delegate-p.html#a1bd5cab7fa59ba19f7668091a0bf5c0f">legend:legendEntryForPlot:wasSelectedAtIndex:</a></td><td class="entry"><a class="el" href="protocol_c_p_t_legend_delegate-p.html">&lt;CPTLegendDelegate&gt;</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="el" href="protocol_c_p_t_legend_delegate-p.html#a3e79f9a14ad1aa0c0096374489c8c0d5">legend:legendEntryForPlot:wasSelectedAtIndex:withEvent:</a></td><td class="entry"><a class="el" href="protocol_c_p_t_legend_delegate-p.html">&lt;CPTLegendDelegate&gt;</a></td><td class="entry"></td></tr> <tr><td class="entry">-&#160;</td><td><a class="el" href="protocol_c_p_t_legend_delegate-p.html#acaa2b88c7672381b6f9eb0942c71c7e9">legend:lineStyleForEntryAtIndex:forPlot:</a></td><td class="entry"><a class="el" href="protocol_c_p_t_legend_delegate-p.html">&lt;CPTLegendDelegate&gt;</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="el" href="protocol_c_p_t_legend_delegate-p.html#aa51f854442d81c444e9393229aee9711">legend:lineStyleForSwatchAtIndex:forPlot:</a></td><td class="entry"><a class="el" href="protocol_c_p_t_legend_delegate-p.html">&lt;CPTLegendDelegate&gt;</a></td><td class="entry"></td></tr> <tr><td class="entry">-&#160;</td><td><a class="el" href="protocol_c_p_t_legend_delegate-p.html#a5aeb5bb90d09dfbe1ae63b8ced1bba68">legend:shouldDrawSwatchAtIndex:forPlot:inRect:inContext:</a></td><td class="entry"><a class="el" href="protocol_c_p_t_legend_delegate-p.html">&lt;CPTLegendDelegate&gt;</a></td><td class="entry"></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.5 </li> </ul> </div> </body> </html>
LiDechao/core-plot
documentation/html/iOS/protocol_c_p_t_legend_delegate-p-members.html
HTML
bsd-3-clause
7,236
<html> <head> <script src="./resources/empty.js"></script> <script src="../editor/editor-test.js"></script> <script src="../../http/tests/inspector/inspector-test.js"></script> <script src="../../http/tests/inspector/debugger-test.js"></script> <script> function codeSnippet() { return document.getElementById("codeSnippet").textContent; } function test() { InspectorTest.showScriptSource("empty.js", onSourceFrame); var textEditor; function onSourceFrame(sourceFrame) { textEditor = sourceFrame.textEditor; textEditor.element.focus(); InspectorTest.runTestSuite(testSuite); } var testSuite = [ // This test has to be the first. It validates that autocompletion controller // will initialize as a key will be pressed. function testCompletionsShowUpOnKeyPress(next) { textEditor.setText("name1 name2 name3 name4\nna"); textEditor.setSelection(WebInspector.TextRange.createFromLocation(1, 2)); InspectorTest.addSniffer(WebInspector.TextEditorAutocompleteController.prototype, "_onSuggestionsShownForTest", onAutocompletionSuggestBox); InspectorTest.typeIn(textEditor, "m"); function onAutocompletionSuggestBox() { document.activeElement.dispatchEvent(InspectorTest.createKeyEvent("Enter")); dumpDictionary(next); } }, function testSetInitialText(next) { textEditor.setText("one two three3_\nfour five\na_b\nsix\n123foo\n132\nseven"); dumpDictionary(next); }, function testAlphaNumericWords(next) { textEditor.setText("2 2foo foo2 2foo4 foo3bar"); dumpDictionary(next); }, function testSetText(next) { textEditor.setText("dog cat 'mouse';dog bird"); dumpDictionary(next); }, function testSimpleEdit(next) { textEditor.setSelection(WebInspector.TextRange.createFromLocation(0, 3)); InspectorTest.typeIn(textEditor, "\b", dumpDictionary.bind(null, next)); }, function testDeleteOneDogAndOneCat(next) { textEditor.setSelection(WebInspector.TextRange.createFromLocation(0, 6)); InspectorTest.typeIn(textEditor, "\b\b\b\b\b\b", dumpDictionary.bind(null, next)); } ]; function dumpDictionary(next) { var wordsInDictionary = textEditor._autocompleteController._delegate._dictionary.wordsWithPrefix(""); InspectorTest.addResult("========= Text in editor ========="); InspectorTest.dumpTextWithSelection(textEditor); InspectorTest.addResult("======= Words in dictionary ======="); InspectorTest.addResult("[" + wordsInDictionary.sort().join(", ") + "]"); InspectorTest.addResult("============="); next(); } } </script> </head> <body onload="runTest();"> <p> This test checks how text editor updates autocompletion dictionary in a response to user input. </p> </body> </html>
smishenk/blink-crosswalk
LayoutTests/inspector/sources/autocomplete-general.html
HTML
bsd-3-clause
3,090
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="utf-8" /> <base href="../../../" /> <script src="list.js"></script> <script src="page.js"></script> <link type="text/css" rel="stylesheet" href="page.css" /> </head> <body> [page:Object3D] &rarr; [page:Light] &rarr; <h1>平行光([name])</h1> <p class="desc"> 平行光是沿着特定方向发射的光。这种光的表现像是无限远,从它发出的光线都是平行的。常常用平行光来模拟太阳光 的效果; 太阳足够远,因此我们可以认为太阳的位置是无限远,所以我们认为从太阳发出的光线也都是平行的。<br /><br /> 平行光可以投射阴影 - 跳转至 [page:DirectionalLightShadow] 查看更多细节。 </p> <h2>关于位置、目标和旋转说明</h2> <p> Three.js 的平行光常见的困惑是设置旋转没有效果。这是因为 three.js 的平行光类似与其他引擎的"目标平行光"。 <br /><br /> 这意味着它的方向是从一个平行光的位置 [page:Object3D.position position] 到 [page:.target target]的位置。 (而不是一个只有旋转分量的'自由平行光')。<br /><br /> 这样做的原因是为了让光线投射阴影。 - the [page:.shadow shadow] 摄像机需要一个位置来计算阴影。<br /><br /> 有关更新目标的详细信息,请参阅 [page:.target target] 下面的目标属性。 </p> <h2>示例</h2> <p> [example:canvas_morphtargets_horse morphtargets / horse ]<br /> [example:misc_controls_fly controls / fly ]<br /> [example:webvr_cubes cubes ]<br /> [example:webgl_effects_parallaxbarrier effects / parallaxbarrier ]<br /> [example:webgl_effects_stereo effects / stereo ]<br /> [example:webgl_geometry_extrude_splines geometry / extrude / splines ]<br /> [example:webgl_materials_bumpmap materials / bumpmap ]<br /> [example:webgl_materials_cubemap_balls_reflection materials / cubemap / balls / reflection ] </p> <code> // White directional light at half intensity shining from the top. var directionalLight = new THREE.DirectionalLight( 0xffffff, 0.5 ); scene.add( directionalLight ); </code> <h2>构造器</h2> <h3>[name]( [param:Integer color], [param:Float intensity] )</h3> <p> [page:Integer color] - (可选参数) 16进制表示光的颜色。 缺省值为 0xffffff (白色)。<br /> [page:Float intensity] - (可选参数) 光照的强度。缺省值为1。<br /><br /> 创建一个新的 [name]。 </p> <h2>属性</h2> 公共属性请查看基类 [page:Light Light]。 <h3>[property:Boolean castShadow]</h3> <p> 如果设置为 *true* 该平行光会产生动态阴影。 警告: 这样做的代价比较高而且需要一直调整到阴影看起来正确. 查看 [page:DirectionalLightShadow] 了解详细信息。该属性默认为 *false*。 </p> <h3>[property:Boolean isDirectionalLight]</h3> <p> 用来校验这个类或者派生类是不是平行光.默认是 *true*。<br /><br /> 不应该去改变这个变量,因为内部使用这个变量做了些优化的工作。 </p> <h3>[property:Vector3 position]</h3> <p> 假如这个值设置等于 [page:Object3D.DefaultUp] (0, 1, 0),那么光线将会从上往下照射。 </p> <h3>[property:DirectionalLightShadow shadow]</h3> <p> 这个 [page:DirectionalLightShadow] 对象用来计算该平行光产生的阴影。 </p> <h3>[property:Object3D target]</h3> <p> 平行光的方向是从它的位置到目标位置。默认的目标位置为原点 *(0,0,0)*。<br /> 注意: 对于目标的位置,要将其更改为除缺省值之外的任何位置,它必须被添加到 [page:Scene scene] 场景中去。 </p> <code> scene.add( light.target ); </code> <p> 这使得属性target中的 [page:Object3D.matrixWorld matrixWorld] 会每帧自动更新。 <br /><br /> 它也可以设置target为场景中的其他对象(任意拥有 [page:Object3D.position position] 属性的对象), 示例如下: </p> <code> var targetObject = new THREE.Object3D(); scene.add(targetObject); light.target = targetObject; </code> <p> 完成上述操作后,平行光现在就可以追踪到目标对像了。 </p> <h2>方法</h2> 公共方法请查看基类 [page:Light Light]。 <h3>[method:DirectionalLight copy]( [param:DirectionalLight source] )</h3> <p> 复制 source 的值到这个平行光源对象。 </p> <h2>源码</h2> [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] </body> </html>
hsimpson/three.js
docs/api/zh/lights/DirectionalLight.html
HTML
mit
4,626
<a href='https://github.com/angular/angular.js/edit/v1.3.x/docs/content/misc/contribute.ngdoc?message=docs(misc%2FDevelop)%3A%20describe%20your%20change...' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this Doc</a> <h1 id="building-and-testing-angularjs">Building and Testing AngularJS</h1> <p>This document describes how to set up your development environment to build and test AngularJS, and explains the basic mechanics of using <code>git</code>, <code>node</code>, <code>npm</code>, <code>grunt</code>, and <code>bower</code>.</p> <p>See the <a href="https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md">contributing guidelines</a> for how to contribute your own code to AngularJS.</p> <ol> <li><a href="misc/contribute#installing-dependencies">Installing Dependencies</a></li> <li><a href="misc/contribute#forking-angular-on-github">Forking Angular on Github</a></li> <li><a href="misc/contribute#building-angularjs">Building AngularJS</a></li> <li><a href="misc/contribute#running-a-local-development-web-server">Running a Local Development Web Server</a></li> <li><a href="misc/contribute#running-the-unit-test-suite">Running the Unit Test Suite</a></li> <li><a href="misc/contribute#running-the-end-to-end-test-suite">Running the End-to-end Test Suite</a></li> </ol> <h2 id="installing-dependencies">Installing Dependencies</h2> <p>Before you can build AngularJS, you must install and configure the following dependencies on your machine:</p> <ul> <li><p><a href="http://git-scm.com/">Git</a>: The <a href="https://help.github.com/articles/set-up-git">Github Guide to Installing Git</a> is a good source of information.</p> </li> <li><p><a href="http://nodejs.org">Node.js</a>: We use Node to generate the documentation, run a development web server, run tests, and generate distributable files. Depending on your system, you can install Node either from source or as a pre-packaged bundle.</p> </li> <li><p><a href="http://www.java.com">Java</a>: We minify JavaScript using our <a href="https://developers.google.com/closure/">Closure Tools</a> jar. Make sure you have Java (version 7 or higher) installed and included in your <a href="http://docs.oracle.com/javase/tutorial/essential/environment/paths.html">PATH</a> variable.</p> </li> <li><p><a href="http://gruntjs.com">Grunt</a>: We use Grunt as our build system. Install the grunt command-line tool globally with:</p> <pre><code class="lang-shell">npm install -g grunt-cli </code></pre> </li> <li><p><a href="http://bower.io/">Bower</a>: We use Bower to manage client-side packages for the docs. Install the <code>bower</code> command-line tool globally with:</p> <pre><code class="lang-shell">npm install -g bower </code></pre> </li> </ul> <p><strong>Note:</strong> You may need to use sudo (for OSX, *nix, BSD etc) or run your command shell as Administrator (for Windows) to install Grunt &amp; Bower globally.</p> <h2 id="forking-angular-on-github">Forking Angular on Github</h2> <p>To create a Github account, follow the instructions <a href="https://github.com/signup/free">here</a>. Afterwards, go ahead and <a href="http://help.github.com/forking">fork</a> the <a href="https://github.com/angular/angular.js">main AngularJS repository</a>.</p> <h2 id="building-angularjs">Building AngularJS</h2> <p>To build AngularJS, you clone the source code repository and use Grunt to generate the non-minified and minified AngularJS files:</p> <pre><code class="lang-shell"># Clone your Github repository: git clone &quot;[email protected]:&lt;github username&gt;/angular.js.git&quot; # Go to the AngularJS directory: cd angular.js # Add the main AngularJS repository as an upstream remote to your repository: git remote add upstream &quot;https://github.com/angular/angular.js.git&quot; # Install node.js dependencies: npm install # Install bower components: bower install # Build AngularJS: grunt package </code></pre> <div class="alert alert-warning"> <strong>Note:</strong> If you&#39;re using Windows, you must use an elevated command prompt (right click, run as Administrator). This is because <code>grunt package</code> creates some symbolic links. </div> <div class="alert alert-warning"> <strong>Note:</strong> If you&#39;re using Linux, and npm install fails with the message &#39;Please try running this command again as root/Administrator.&#39;, you may need to globally install grunt and bower: <ul> <li>sudo npm install -g grunt-cli</li> <li>sudo npm install -g bower</li> </ul> </div> <p>The build output can be located under the <code>build</code> directory. It consists of the following files and directories:</p> <ul> <li><p><code>angular-&lt;version&gt;.zip</code> — The complete zip file, containing all of the release build artifacts.</p> </li> <li><p><code>angular.js</code> — The non-minified <code>angular</code> script.</p> </li> <li><p><code>angular.min.js</code> — The minified <code>angular</code> script.</p> </li> <li><p><code>angular-scenario.js</code> — The <code>angular</code> End2End test runner.</p> </li> <li><p><code>docs/</code> — A directory that contains all of the files needed to run <code>docs.angularjs.org</code>.</p> </li> <li><p><code>docs/index.html</code> — The main page for the documentation.</p> </li> <li><p><code>docs/docs-scenario.html</code> — The End2End test runner for the documentation application.</p> </li> </ul> <h2 id="running-a-local-development-web-server">Running a Local Development Web Server</h2> <p>To debug code and run end-to-end tests, it is often useful to have a local HTTP server. For this purpose, we have made available a local web server based on Node.js.</p> <ol> <li><p>To start the web server, run:</p> <pre><code class="lang-shell">grunt webserver </code></pre> </li> <li><p>To access the local server, enter the following URL into your web browser:</p> <pre><code class="lang-text">http://localhost:8000/ </code></pre> <p>By default, it serves the contents of the AngularJS project directory.</p> </li> <li><p>To access the locally served docs, visit this URL:</p> <pre><code class="lang-text">http://localhost:8000/build/docs/ </code></pre> </li> </ol> <h2 id="running-the-unit-test-suite">Running the Unit Test Suite</h2> <p>We write unit and integration tests with Jasmine and execute them with Karma. To run all of the tests once on Chrome run:</p> <pre><code class="lang-shell">grunt test:unit </code></pre> <p>To run the tests on other browsers (Chrome, ChromeCanary, Firefox, Opera and Safari are pre-configured) use:</p> <pre><code class="lang-shell">grunt test:unit --browsers Opera,Firefox </code></pre> <p>Note there should be <em>no spaces between browsers</em>. <code>Opera, Firefox</code> is INVALID.</p> <p>During development, however, it&#39;s more productive to continuously run unit tests every time the source or test files change. To execute tests in this mode run:</p> <ol> <li><p>To start the Karma server, capture Chrome browser and run unit tests, run:</p> <pre><code class="lang-shell">grunt autotest </code></pre> </li> <li><p>To capture more browsers, open this URL in the desired browser (URL might be different if you have multiple instance of Karma running, read Karma&#39;s console output for the correct URL):</p> <pre><code class="lang-text">http://localhost:9876/ </code></pre> </li> <li><p>To re-run tests just change any source or test file.</p> </li> </ol> <p>To learn more about all of the preconfigured Grunt tasks run:</p> <pre><code class="lang-shell">grunt --help </code></pre> <h2 id="running-the-end-to-end-test-suite">Running the End-to-end Test Suite</h2> <p>Angular&#39;s end to end tests are run with Protractor. Simply run:</p> <pre><code class="lang-shell">grunt test:e2e </code></pre> <p>This will start the webserver and run the tests on Chrome.</p>
viral810/ngSimpleCMS
web/bundles/sunraangular/js/angular/angular-1.3.16/docs/partials/misc/contribute.html
HTML
mit
7,833
<!-- @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 --> <link rel="import" href="../../polymer/polymer.html"> <link rel="import" href="../../iron-flex-layout/iron-flex-layout.html"> <!-- app-drawer is a navigation drawer that can slide in from the left or right. Example: Align the drawer at the start, which is left in LTR layouts (default): ```html <app-drawer opened></app-drawer> ``` Align the drawer at the end: ```html <app-drawer align="end" opened></app-drawer> ``` To make the contents of the drawer scrollable, create a wrapper for the scroll content, and apply height and overflow styles to it. ```html <app-drawer> <div style="height: 100%; overflow: auto;"></div> </app-drawer> ``` ### Styling Custom property | Description | Default ---------------------------------|----------------------------------------|-------------------- `--app-drawer-width` | Width of the drawer | 256px `--app-drawer-content-container` | Mixin for the drawer content container | {} `--app-drawer-scrim-background` | Background for the scrim | rgba(0, 0, 0, 0.5) **NOTE:** If you use <app-drawer> with <app-drawer-layout> and specify a value for `--app-drawer-width`, that value must be accessible by both elements. This can be done by defining the value on the `:host` that contains <app-drawer-layout> (or `html` if outside a shadow root): ```css :host { --app-drawer-width: 300px; } ``` @group App Elements @element app-drawer @demo app-drawer/demo/left-drawer.html Simple Left Drawer @demo app-drawer/demo/right-drawer.html Right Drawer with Icons --> <dom-module id="app-drawer"> <template> <style> :host { position: fixed; top: -120px; right: 0; bottom: -120px; left: 0; visibility: hidden; transition-property: visibility; } :host([opened]) { visibility: visible; } :host([persistent]) { width: var(--app-drawer-width, 256px); } :host([persistent][position=left]) { right: auto; } :host([persistent][position=right]) { left: auto; } #contentContainer { position: absolute; top: 0; bottom: 0; left: 0; width: var(--app-drawer-width, 256px); padding: 120px 0; transition-property: -webkit-transform; transition-property: transform; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); background-color: #FFF; @apply --app-drawer-content-container; } #contentContainer[persistent] { width: 100%; } #contentContainer[position=right] { right: 0; left: auto; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } #contentContainer[swipe-open]::after { position: fixed; top: 0; bottom: 0; left: 100%; visibility: visible; width: 20px; content: ''; } #contentContainer[swipe-open][position=right]::after { right: 100%; left: auto; } #contentContainer[opened] { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } #scrim { position: absolute; top: 0; right: 0; bottom: 0; left: 0; transition-property: opacity; -webkit-transform: translateZ(0); transform: translateZ(0); opacity: 0; background: var(--app-drawer-scrim-background, rgba(0, 0, 0, 0.5)); } #scrim.visible { opacity: 1; } :host([no-transition]) #contentContainer { transition-property: none; } </style> <div id="scrim" on-click="close"></div> <!-- HACK(keanulee): Bind attributes here (in addition to :host) for styling to workaround Safari bug. https://bugs.webkit.org/show_bug.cgi?id=170762 --> <div id="contentContainer" opened$="[[opened]]" persistent$="[[persistent]]" position$="[[position]]" swipe-open$="[[swipeOpen]]"> <slot></slot> </div> </template> <script> Polymer({ is: 'app-drawer', properties: { /** * The opened state of the drawer. */ opened: { type: Boolean, value: false, notify: true, reflectToAttribute: true }, /** * The drawer does not have a scrim and cannot be swiped close. */ persistent: { type: Boolean, value: false, reflectToAttribute: true }, /** * The transition duration of the drawer in milliseconds. */ transitionDuration: { type: Number, value: 200 }, /** * The alignment of the drawer on the screen ('left', 'right', 'start' or 'end'). * 'start' computes to left and 'end' to right in LTR layout and vice versa in RTL * layout. */ align: { type: String, value: 'left' }, /** * The computed, read-only position of the drawer on the screen ('left' or 'right'). */ position: { type: String, readOnly: true, reflectToAttribute: true }, /** * Create an area at the edge of the screen to swipe open the drawer. */ swipeOpen: { type: Boolean, value: false, reflectToAttribute: true }, /** * Trap keyboard focus when the drawer is opened and not persistent. */ noFocusTrap: { type: Boolean, value: false }, /** * Disables swiping on the drawer. */ disableSwipe: { type: Boolean, value: false } }, observers: [ 'resetLayout(position, isAttached)', '_resetPosition(align, isAttached)', '_styleTransitionDuration(transitionDuration)', '_openedPersistentChanged(opened, persistent)' ], _translateOffset: 0, _trackDetails: null, _drawerState: 0, _boundEscKeydownHandler: null, _firstTabStop: null, _lastTabStop: null, attached: function() { Polymer.RenderStatus.afterNextRender(this, function() { this._boundEscKeydownHandler = this._escKeydownHandler.bind(this); this.addEventListener('keydown', this._tabKeydownHandler.bind(this)) // Only listen for horizontal track so you can vertically scroll inside the drawer. this.listen(this, 'track', '_track'); this.setScrollDirection('y'); }); this.fire('app-reset-layout'); }, detached: function() { document.removeEventListener('keydown', this._boundEscKeydownHandler); }, /** * Opens the drawer. */ open: function() { this.opened = true; }, /** * Closes the drawer. */ close: function() { this.opened = false; }, /** * Toggles the drawer open and close. */ toggle: function() { this.opened = !this.opened; }, /** * Gets the width of the drawer. * * @return {number} The width of the drawer in pixels. */ getWidth: function() { return this._savedWidth || this.$.contentContainer.offsetWidth; }, _isRTL: function() { return window.getComputedStyle(this).direction === 'rtl'; }, _resetPosition: function() { switch (this.align) { case 'start': this._setPosition(this._isRTL() ? 'right' : 'left'); return; case 'end': this._setPosition(this._isRTL() ? 'left' : 'right'); return; } this._setPosition(this.align); }, _escKeydownHandler: function(event) { var ESC_KEYCODE = 27; if (event.keyCode === ESC_KEYCODE) { // Prevent any side effects if app-drawer closes. event.preventDefault(); this.close(); } }, _track: function(event) { if (this.persistent || this.disableSwipe) { return; } // Disable user selection on desktop. event.preventDefault(); switch (event.detail.state) { case 'start': this._trackStart(event); break; case 'track': this._trackMove(event); break; case 'end': this._trackEnd(event); break; } }, _trackStart: function(event) { this._drawerState = this._DRAWER_STATE.TRACKING; var rect = this.$.contentContainer.getBoundingClientRect(); this._savedWidth = rect.width; if (this.position === 'left') { this._translateOffset = rect.left; } else { this._translateOffset = rect.right - window.innerWidth; } this._trackDetails = []; // Disable transitions since style attributes will reflect user track events. this._styleTransitionDuration(0); this.style.visibility = 'visible'; }, _trackMove: function(event) { this._translateDrawer(event.detail.dx + this._translateOffset); // Use Date.now() since event.timeStamp is inconsistent across browsers (e.g. most // browsers use milliseconds but FF 44 uses microseconds). this._trackDetails.push({ dx: event.detail.dx, timeStamp: Date.now() }); }, _trackEnd: function(event) { var x = event.detail.dx + this._translateOffset; var drawerWidth = this.getWidth(); var isPositionLeft = this.position === 'left'; var isInEndState = isPositionLeft ? (x >= 0 || x <= -drawerWidth) : (x <= 0 || x >= drawerWidth); if (!isInEndState) { // No longer need the track events after this method returns - allow them to be GC'd. var trackDetails = this._trackDetails; this._trackDetails = null; this._flingDrawer(event, trackDetails); if (this._drawerState === this._DRAWER_STATE.FLINGING) { return; } } // If the drawer is not flinging, toggle the opened state based on the position of // the drawer. var halfWidth = drawerWidth / 2; if (event.detail.dx < -halfWidth) { this.opened = this.position === 'right'; } else if (event.detail.dx > halfWidth) { this.opened = this.position === 'left'; } if (isInEndState) { this.debounce('_resetDrawerState', this._resetDrawerState); } else { this.debounce('_resetDrawerState', this._resetDrawerState, this.transitionDuration); } this._styleTransitionDuration(this.transitionDuration); this._resetDrawerTranslate(); this.style.visibility = ''; }, _calculateVelocity: function(event, trackDetails) { // Find the oldest track event that is within 100ms using binary search. var now = Date.now(); var timeLowerBound = now - 100; var trackDetail; var min = 0; var max = trackDetails.length - 1; while (min <= max) { // Floor of average of min and max. var mid = (min + max) >> 1; var d = trackDetails[mid]; if (d.timeStamp >= timeLowerBound) { trackDetail = d; max = mid - 1; } else { min = mid + 1; } } if (trackDetail) { var dx = event.detail.dx - trackDetail.dx; var dt = (now - trackDetail.timeStamp) || 1; return dx / dt; } return 0; }, _flingDrawer: function(event, trackDetails) { var velocity = this._calculateVelocity(event, trackDetails); // Do not fling if velocity is not above a threshold. if (Math.abs(velocity) < this._MIN_FLING_THRESHOLD) { return; } this._drawerState = this._DRAWER_STATE.FLINGING; var x = event.detail.dx + this._translateOffset; var drawerWidth = this.getWidth(); var isPositionLeft = this.position === 'left'; var isVelocityPositive = velocity > 0; var isClosingLeft = !isVelocityPositive && isPositionLeft; var isClosingRight = isVelocityPositive && !isPositionLeft; var dx; if (isClosingLeft) { dx = -(x + drawerWidth); } else if (isClosingRight) { dx = (drawerWidth - x); } else { dx = -x; } // Enforce a minimum transition velocity to make the drawer feel snappy. if (isVelocityPositive) { velocity = Math.max(velocity, this._MIN_TRANSITION_VELOCITY); this.opened = this.position === 'left'; } else { velocity = Math.min(velocity, -this._MIN_TRANSITION_VELOCITY); this.opened = this.position === 'right'; } // Calculate the amount of time needed to finish the transition based on the // initial slope of the timing function. var t = this._FLING_INITIAL_SLOPE * dx / velocity this._styleTransitionDuration(t); this._styleTransitionTimingFunction(this._FLING_TIMING_FUNCTION); this._resetDrawerTranslate(); this.debounce('_resetDrawerState', this._resetDrawerState, t); }, _styleTransitionDuration: function(duration) { this.style.transitionDuration = duration + 'ms'; this.$.contentContainer.style.transitionDuration = duration + 'ms'; this.$.scrim.style.transitionDuration = duration + 'ms'; }, _styleTransitionTimingFunction: function(timingFunction) { this.$.contentContainer.style.transitionTimingFunction = timingFunction; this.$.scrim.style.transitionTimingFunction = timingFunction; }, _translateDrawer: function(x) { var drawerWidth = this.getWidth(); if (this.position === 'left') { x = Math.max(-drawerWidth, Math.min(x, 0)); this.$.scrim.style.opacity = 1 + x / drawerWidth; } else { x = Math.max(0, Math.min(x, drawerWidth)); this.$.scrim.style.opacity = 1 - x / drawerWidth; } this.translate3d(x + 'px', '0', '0', this.$.contentContainer); }, _resetDrawerTranslate: function() { this.$.scrim.style.opacity = ''; this.transform('', this.$.contentContainer); }, _resetDrawerState: function() { var oldState = this._drawerState; // If the drawer was flinging, we need to reset the style attributes. if (oldState === this._DRAWER_STATE.FLINGING) { this._styleTransitionDuration(this.transitionDuration); this._styleTransitionTimingFunction(''); this.style.visibility = ''; } this._savedWidth = null; if (this.opened) { this._drawerState = this.persistent ? this._DRAWER_STATE.OPENED_PERSISTENT : this._DRAWER_STATE.OPENED; } else { this._drawerState = this._DRAWER_STATE.CLOSED; } if (oldState !== this._drawerState) { if (this._drawerState === this._DRAWER_STATE.OPENED) { this._setKeyboardFocusTrap(); document.addEventListener('keydown', this._boundEscKeydownHandler); document.body.style.overflow = 'hidden'; } else { document.removeEventListener('keydown', this._boundEscKeydownHandler); document.body.style.overflow = ''; } // Don't fire the event on initial load. if (oldState !== this._DRAWER_STATE.INIT) { this.fire('app-drawer-transitioned'); } } }, /** * Resets the layout. * * @method resetLayout */ resetLayout: function() { this.fire('app-reset-layout'); }, _setKeyboardFocusTrap: function() { if (this.noFocusTrap) { return; } // NOTE: Unless we use /deep/ (which we shouldn't since it's deprecated), this will // not select focusable elements inside shadow roots. var focusableElementsSelector = [ 'a[href]:not([tabindex="-1"])', 'area[href]:not([tabindex="-1"])', 'input:not([disabled]):not([tabindex="-1"])', 'select:not([disabled]):not([tabindex="-1"])', 'textarea:not([disabled]):not([tabindex="-1"])', 'button:not([disabled]):not([tabindex="-1"])', 'iframe:not([tabindex="-1"])', '[tabindex]:not([tabindex="-1"])', '[contentEditable=true]:not([tabindex="-1"])' ].join(','); var focusableElements = Polymer.dom(this).querySelectorAll(focusableElementsSelector); if (focusableElements.length > 0) { this._firstTabStop = focusableElements[0]; this._lastTabStop = focusableElements[focusableElements.length - 1]; } else { // Reset saved tab stops when there are no focusable elements in the drawer. this._firstTabStop = null; this._lastTabStop = null; } // Focus on app-drawer if it has non-zero tabindex. Otherwise, focus the first focusable // element in the drawer, if it exists. Use the tabindex attribute since the this.tabIndex // property in IE/Edge returns 0 (instead of -1) when the attribute is not set. var tabindex = this.getAttribute('tabindex'); if (tabindex && parseInt(tabindex, 10) > -1) { this.focus(); } else if (this._firstTabStop) { this._firstTabStop.focus(); } }, _tabKeydownHandler: function(event) { if (this.noFocusTrap) { return; } var TAB_KEYCODE = 9; if (this._drawerState === this._DRAWER_STATE.OPENED && event.keyCode === TAB_KEYCODE) { if (event.shiftKey) { if (this._firstTabStop && Polymer.dom(event).localTarget === this._firstTabStop) { event.preventDefault(); this._lastTabStop.focus(); } } else { if (this._lastTabStop && Polymer.dom(event).localTarget === this._lastTabStop) { event.preventDefault(); this._firstTabStop.focus(); } } } }, _openedPersistentChanged: function(opened, persistent) { this.toggleClass('visible', opened && !persistent, this.$.scrim); // Use a debounce timer instead of transitionend since transitionend won't fire when // app-drawer is display: none. this.debounce('_resetDrawerState', this._resetDrawerState, this.transitionDuration); }, _MIN_FLING_THRESHOLD: 0.2, _MIN_TRANSITION_VELOCITY: 1.2, _FLING_TIMING_FUNCTION: 'cubic-bezier(0.667, 1, 0.667, 1)', _FLING_INITIAL_SLOPE: 1.5, _DRAWER_STATE: { INIT: 0, OPENED: 1, OPENED_PERSISTENT: 2, CLOSED: 3, TRACKING: 4, FLINGING: 5 } /** * Fired when the layout of app-drawer has changed. * * @event app-reset-layout */ /** * Fired when app-drawer has finished transitioning. * * @event app-drawer-transitioned */ }); </script> </dom-module>
usc-isi-i2/mydig-webservice
frontend/static/bower_components/app-layout/app-drawer/app-drawer.html
HTML
mit
20,165
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Transform (Apache Commons Math 3.6.1 API)</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="Transform (Apache Commons Math 3.6.1 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="class-use/Transform.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" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/SubHyperplane.SplitSubHyperplane.html" title="class in org.apache.commons.math3.geometry.partitioning"><span class="strong">Prev Class</span></a></li> <li>Next Class</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/math3/geometry/partitioning/Transform.html" target="_top">Frames</a></li> <li><a href="Transform.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"> <div class="subTitle">org.apache.commons.math3.geometry.partitioning</div> <h2 title="Interface Transform" class="title">Interface Transform&lt;S extends <a href="../../../../../../org/apache/commons/math3/geometry/Space.html" title="interface in org.apache.commons.math3.geometry">Space</a>,T extends <a href="../../../../../../org/apache/commons/math3/geometry/Space.html" title="interface in org.apache.commons.math3.geometry">Space</a>&gt;</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>S</code> - Type of the embedding space.</dd><dd><code>T</code> - Type of the embedded sub-space.</dd></dl> <hr> <br> <pre>public interface <span class="strong">Transform&lt;S extends <a href="../../../../../../org/apache/commons/math3/geometry/Space.html" title="interface in org.apache.commons.math3.geometry">Space</a>,T extends <a href="../../../../../../org/apache/commons/math3/geometry/Space.html" title="interface in org.apache.commons.math3.geometry">Space</a>&gt;</span></pre> <div class="block">This interface represents an inversible affine transform in a space. <p>Inversible affine transform include for example scalings, translations, rotations.</p> <p>Transforms are dimension-specific. The consistency rules between the three <code>apply</code> methods are the following ones for a transformed defined for dimension D:</p> <ul> <li> the transform can be applied to a point in the D-dimension space using its <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html#apply(org.apache.commons.math3.geometry.Point)"><code>apply(Point)</code></a> method </li> <li> the transform can be applied to a (D-1)-dimension hyperplane in the D-dimension space using its <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html#apply(org.apache.commons.math3.geometry.partitioning.Hyperplane)"><code>apply(Hyperplane)</code></a> method </li> <li> the transform can be applied to a (D-2)-dimension sub-hyperplane in a (D-1)-dimension hyperplane using its <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html#apply(org.apache.commons.math3.geometry.partitioning.SubHyperplane,%20org.apache.commons.math3.geometry.partitioning.Hyperplane,%20org.apache.commons.math3.geometry.partitioning.Hyperplane)"><code>apply(SubHyperplane, Hyperplane, Hyperplane)</code></a> method </li> </ul></div> <dl><dt><span class="strong">Since:</span></dt> <dd>3.0</dd></dl> </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><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html#apply(org.apache.commons.math3.geometry.partitioning.Hyperplane)">apply</a></strong>(<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;hyperplane)</code> <div class="block">Transform an hyperplane of a space.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/commons/math3/geometry/Point.html" title="interface in org.apache.commons.math3.geometry">Point</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html#apply(org.apache.commons.math3.geometry.Point)">apply</a></strong>(<a href="../../../../../../org/apache/commons/math3/geometry/Point.html" title="interface in org.apache.commons.math3.geometry">Point</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;point)</code> <div class="block">Transform a point of a space.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/SubHyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">SubHyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">T</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html#apply(org.apache.commons.math3.geometry.partitioning.SubHyperplane,%20org.apache.commons.math3.geometry.partitioning.Hyperplane,%20org.apache.commons.math3.geometry.partitioning.Hyperplane)">apply</a></strong>(<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/SubHyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">SubHyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">T</a>&gt;&nbsp;sub, <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;original, <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;transformed)</code> <div class="block">Transform a sub-hyperplane embedded in an hyperplane.</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="apply(org.apache.commons.math3.geometry.Point)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>apply</h4> <pre><a href="../../../../../../org/apache/commons/math3/geometry/Point.html" title="interface in org.apache.commons.math3.geometry">Point</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;apply(<a href="../../../../../../org/apache/commons/math3/geometry/Point.html" title="interface in org.apache.commons.math3.geometry">Point</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;point)</pre> <div class="block">Transform a point of a space.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>point</code> - point to transform</dd> <dt><span class="strong">Returns:</span></dt><dd>a new object representing the transformed point</dd></dl> </li> </ul> <a name="apply(org.apache.commons.math3.geometry.partitioning.Hyperplane)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>apply</h4> <pre><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;apply(<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;hyperplane)</pre> <div class="block">Transform an hyperplane of a space.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>hyperplane</code> - hyperplane to transform</dd> <dt><span class="strong">Returns:</span></dt><dd>a new object representing the transformed hyperplane</dd></dl> </li> </ul> <a name="apply(org.apache.commons.math3.geometry.partitioning.SubHyperplane, org.apache.commons.math3.geometry.partitioning.Hyperplane, org.apache.commons.math3.geometry.partitioning.Hyperplane)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>apply</h4> <pre><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/SubHyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">SubHyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">T</a>&gt;&nbsp;apply(<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/SubHyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">SubHyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">T</a>&gt;&nbsp;sub, <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;original, <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;transformed)</pre> <div class="block">Transform a sub-hyperplane embedded in an hyperplane.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>sub</code> - sub-hyperplane to transform</dd><dd><code>original</code> - hyperplane in which the sub-hyperplane is defined (this is the original hyperplane, the transform has <em>not</em> been applied to it)</dd><dd><code>transformed</code> - hyperplane in which the sub-hyperplane is defined (this is the transformed hyperplane, the transform <em>has</em> been applied to it)</dd> <dt><span class="strong">Returns:</span></dt><dd>a new object representing the transformed sub-hyperplane</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="class-use/Transform.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" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/SubHyperplane.SplitSubHyperplane.html" title="class in org.apache.commons.math3.geometry.partitioning"><span class="strong">Prev Class</span></a></li> <li>Next Class</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/math3/geometry/partitioning/Transform.html" target="_top">Frames</a></li> <li><a href="Transform.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>Copyright &#169; 2003&#x2013;2016 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> </body> </html>
asampley/FactorioRatioAssistant
src/commons-math3-3.6.1/docs/apidocs/org/apache/commons/math3/geometry/partitioning/Transform.html
HTML
mit
17,114
<!-- ~ Copyright 2014 SeaClouds ~ Contact: SeaClouds ~ ~ 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. --> <!-- Single button --> <span><h2> <small>Please define the topology of <strong>{{applicationWizardData.name}}</strong></small> </h2></span> <topology-editor bind="applicationWizardData.topology"></topology-editor>
MicheleGuerriero/SeaCloudsPlatform
dashboard/src/main/resources/webapp/wizards/add-application/wizard-step-2.html
HTML
apache-2.0
902
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../includes/main.css" type="text/css"> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> <title>Apache CloudStack | The Power Behind Your Cloud</title> </head> <body> <div id="insidetopbg"> <div id="inside_wrapper"> <div class="uppermenu_panel"> <div class="uppermenu_box"></div> </div> <div id="main_master"> <div id="inside_header"> <div class="header_top"> <a class="cloud_logo" href="http://cloudstack.org"></a> <div class="mainemenu_panel"></div> </div> </div> <div id="main_content"> <div class="inside_apileftpanel"> <div class="inside_contentpanel" style="width:930px;"> <div class="api_titlebox"> <div class="api_titlebox_left"> <span> Apache CloudStack v4.6.0 Domain Admin API Reference </span> <p></p> <h1>deleteNetworkACLList</h1> <p>Deletes a network ACL</p> </div> <div class="api_titlebox_right"> <a class="api_backbutton" href="../TOC_Domain_Admin.html"></a> </div> </div> <div class="api_tablepanel"> <h2>Request parameters</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td> </tr> <tr> <td style="width:200px;"><strong>id</strong></td><td style="width:500px;"><strong>the ID of the network ACL</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> </table> </div> <div class="api_tablepanel"> <h2>Response Tags</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td> </tr> <tr> <td style="width:200px;"><strong>displaytext</strong></td><td style="width:500px;">any text associated with the success or failure</td> </tr> <tr> <td style="width:200px;"><strong>success</strong></td><td style="width:500px;">true if operation is executed successfully</td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> <div id="footer_mainmaster"> <p>Copyright &copy; 2015 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br> Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p> </div> </div> </div> </div> </body> </html>
pdion891/cloudstack-www
source/api/apidocs-4.6/domain_admin/deleteNetworkACLList.html
HTML
apache-2.0
2,645
<section id="ad" class="thin-content-section text-center"> <div class="ad-section"> <div class="container"> <!-- <p class="tiny-ad-font">Please help support actionhero</p> --> <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?zoneid=1673&serve=C6AILKT&placement=actionherojscom" id="_carbonads_js"></script> </div> </div> </section>
BoLaMN/actionhero
docs/_includes/ad.html
HTML
apache-2.0
402
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../includes/main.css" type="text/css"> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> <title>Apache CloudStack | The Power Behind Your Cloud</title> </head> <body> <div id="insidetopbg"> <div id="inside_wrapper"> <div class="uppermenu_panel"> <div class="uppermenu_box"></div> </div> <div id="main_master"> <div id="inside_header"> <div class="header_top"> <a class="cloud_logo" href="http://cloudstack.org"></a> <div class="mainemenu_panel"></div> </div> </div> <div id="main_content"> <div class="inside_apileftpanel"> <div class="inside_contentpanel" style="width:930px;"> <div class="api_titlebox"> <div class="api_titlebox_left"> <span> Apache CloudStack v4.6.0 Domain Admin API Reference </span> <p></p> <h1>deleteTemplate</h1> <p>Deletes a template from the system. All virtual machines using the deleted template will not be affected.</p> </div> <div class="api_titlebox_right"> <a class="api_backbutton" href="../TOC_Domain_Admin.html"></a> </div> </div> <div class="api_tablepanel"> <h2>Request parameters</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td> </tr> <tr> <td style="width:200px;"><strong>id</strong></td><td style="width:500px;"><strong>the ID of the template</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> <tr> <td style="width:200px;"><i>zoneid</i></td><td style="width:500px;"><i>the ID of zone of the template</i></td><td style="width:180px;"><i>false</i></td> </tr> </table> </div> <div class="api_tablepanel"> <h2>Response Tags</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td> </tr> <tr> <td style="width:200px;"><strong>displaytext</strong></td><td style="width:500px;">any text associated with the success or failure</td> </tr> <tr> <td style="width:200px;"><strong>success</strong></td><td style="width:500px;">true if operation is executed successfully</td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> <div id="footer_mainmaster"> <p>Copyright &copy; 2015 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br> Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p> </div> </div> </div> </div> </body> </html>
terbolous/cloudstack-www
source/api/apidocs-4.6/domain_admin/deleteTemplate.html
HTML
apache-2.0
2,884
<!DOCTYPE html> <title>form Overriding form-association on element</title> <p>Type "foobar" in the text input below. Press "Enter". You should be presented a web page saying "You typed: [foobar]".</p> <form id="f1" action="../res/fail.php"> <p><input id="i1" type="text" form="f2" name="test"/></p> </form> <form id="f2" action="../res/return_single_post.php" method="post"> </form>
frivoal/presto-testo
core/standards/wf1/interactive/form-owner-031.html
HTML
bsd-3-clause
389
<html> This page triggers two file downloads. <script> var count = 0; function triggerDownload() { var a = document.createElement('a'); a.download = "test-image" + count + ".png"; count++; a.href = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAABC0lEQVQYlTXPPUsCYQDA8b/e04tdQR5ZBpE3NAR6S0SDVDZKDQ2BY9TUy1foE0TQ1Edo6hOEkyUG0QuBRtQgl0hnenVdnZD5eLbU7xv8Avy5X16KhrQBg47EtpziXO6qBhAEeNEm0qr7VdBcLxt2mlnNbhVu0NMAgdj1wvjOoX2xdSt0L7MGgx2GGid8yLrJvJMUkbKfOF8N68bUIqcz2wQR7GUcYvJIr1dFQijvkh89xGV6BPPMwvMF/nQXJMgWiM+KLPX2tc0HNa/HUxDv2owpx7xV+023Hiwpdt7yhmcjj9/NdrIhn8LrPVmotctWVd01Nt27wH9T3YhHU5O+sT/6SuVZKa4cNGoAv/ZMas7pC/KaAAAAAElFTkSuQmCC"; a.click(); } triggerDownload(); triggerDownload(); </script> </html>
nwjs/chromium.src
content/test/data/android/auto_downloads_permissions.html
HTML
bsd-3-clause
749
<!-- An area must have an image maprent. It cannot own or be owned. --> <!DOCTYPE html> <html> <body> <img id="img" src="pipe.jpg" width="145" height="126" alt="pipe" usemap="#pipe"> <map name="pipe"> <area aria-owns="img" shape="rect" coords="0,0,145,50" alt="pipe1" href="fake.htm"> <area id="area2" shape="rect" coords="0,50,145,100" alt="pipe1" href="fake.htm"> </map> <p aria-owns="area2">Paragraph</p> </body> </html>
scheib/chromium
content/test/data/accessibility/html/area-with-aria-owns.html
HTML
bsd-3-clause
438
{% if consequence == 'missense_variant' %} ({{ annotation.HGVS }})<br/> &nbsp; &nbsp; &nbsp; Polyphen: {% set polyphen = annotation.PolyPhen.split('(')[0] %} {% set pp_label = "bg-success" if polyphen == 'benign' else ("bg-warning" if polyphen == 'possibly_damaging' else "bg-danger") %} {% set sift = annotation.SIFT.split('(')[0] %} {% set sift_label = "bg-success" if sift == 'tolerated' else "bg-danger" %} <span class={{ pp_label }}>{{ polyphen }}</span>; SIFT: <span class={{ sift_label }}>{{ sift }}</span> {% elif annotation.LoF != '' %} ({{ annotation.HGVS }})<br/> &nbsp; &nbsp; &nbsp; LoF: {% if annotation.LoF == 'HC' %} <span class="bg-success">High-confidence</span> {% else %} <span class="bg-danger" data-tooltip="Filtered by LOFTEE (see FAQ)">Low-confidence ({{ annotation.LoF_filter }})</span> {% endif %} {% if annotation.LoF_flags != '' %} <br/>&nbsp; &nbsp; &nbsp; Flag: <span class="bg-warning" data-tooltip="Flagged by LOFTEE (see FAQ)">{{ annotation.LoF_flags }}</span> {% endif %} {% endif %}
Withington/phenopolis
templates/variant_details.html
HTML
mit
1,101
<!DOCTYPE html > <html> <head> <title>LeafParameter - io.github.mandar2812.dynaml.models.statespace.LeafParameter</title> <meta name="description" content="LeafParameter - io.github.mandar2812.dynaml.models.statespace.LeafParameter" /> <meta name="keywords" content="LeafParameter io.github.mandar2812.dynaml.models.statespace.LeafParameter" /> <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.models.statespace.LeafParameter$'; 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="LeafParameter.html" title="See companion class"><img alt="Object/Class" src="../../../../../../lib/object_to_class_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.models">models</a>.<a href="package.html" class="extype" name="io.github.mandar2812.dynaml.models.statespace">statespace</a></p> <h1><a href="LeafParameter.html" title="See companion class">LeafParameter</a></h1><h3><span class="morelinks"><div> Related Docs: <a href="LeafParameter.html" title="See companion class">class LeafParameter</a> | <a href="package.html" class="extype" name="io.github.mandar2812.dynaml.models.statespace">package statespace</a> </div></span></h3><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$" 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">LeafParameter</span><span class="result"> extends <span class="extype" name="scala.Serializable">Serializable</span></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.Serializable">Serializable</span>, <span class="extype" name="java.io.Serializable">Serializable</span>, <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.models.statespace.LeafParameter"><span>LeafParameter</span></li><li class="in" name="scala.Serializable"><span>Serializable</span></li><li class="in" name="java.io.Serializable"><span>Serializable</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="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.models.statespace.LeafParameter$@!=(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.models.statespace.LeafParameter$@##():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.models.statespace.LeafParameter$@==(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="io.github.mandar2812.dynaml.models.statespace.LeafParameter#apply" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="apply():io.github.mandar2812.dynaml.models.statespace.LeafParameter"></a> <a id="apply():LeafParameter"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">apply</span><span class="params">()</span><span class="result">: <a href="LeafParameter.html" class="extype" name="io.github.mandar2812.dynaml.models.statespace.LeafParameter">LeafParameter</a></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@apply():io.github.mandar2812.dynaml.models.statespace.LeafParameter" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> </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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.models.statespace.LeafParameter$@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.Serializable"> <h3>Inherited from <span class="extype" name="scala.Serializable">Serializable</span></h3> </div><div class="parent" name="java.io.Serializable"> <h3>Inherited from <span class="extype" name="java.io.Serializable">Serializable</span></h3> </div><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.5/dynaml-core/io/github/mandar2812/dynaml/models/statespace/LeafParameter$.html
HTML
mit
28,082
{{try:}}{{=H2(title)}}{{except:}}{{pass}} <div id='rheader'> {{try:}} {{=XML(rheader)}} </div> <div id='component'> {{except:}} </div> <div> {{pass}} <div class='form-container'> {{try:}}{{=form}}{{except:}}{{pass}} </div> <div><br /></div> <div id='map'> {{try:}}{{=map}}{{except:}}{{pass}} </div> </div>
madhurauti/Map-Polygon
views/_map.html
HTML
mit
310
$r.render("sourceview") <!-- ======================================================== --> <!-- = Java Sourcecode to HTML automatically converted code = --> <!-- = Java2Html Converter 5.0 [2006-02-26] by Markus Gebhard [email protected] = --> <!-- = Further information: http://www.java2html.de = --> <div align="left" class="java"> <table border="0" cellpadding="3" cellspacing="0" bgcolor="#ffffff"> <tr> <!-- start source code --> <td nowrap="nowrap" valign="top" align="left"> <code> <font color="#ffffff">&nbsp;&nbsp;</font><font color="#7f0055"><b>public&nbsp;</b></font><font color="#000000">GuiDemoFlexiFormCustomlayout</font><font color="#000000">(</font><font color="#000000">UserRequest&nbsp;ureq,&nbsp;WindowControl&nbsp;wControl,&nbsp;GuiDemoFlexiFormPersonData&nbsp;data</font><font color="#000000">)&nbsp;{</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;this&nbsp;whole&nbsp;class&nbsp;is&nbsp;copy-pasted&nbsp;from&nbsp;the&nbsp;GuiDemoFlexiForm.java</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;but&nbsp;the&nbsp;super&nbsp;constructor&nbsp;is&nbsp;called&nbsp;with&nbsp;a&nbsp;velocity&nbsp;page&nbsp;which&nbsp;serves&nbsp;then</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;as&nbsp;layouting&nbsp;velocity&nbsp;page.</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;inside&nbsp;this&nbsp;page&nbsp;one&nbsp;can&nbsp;render&nbsp;all&nbsp;the&nbsp;form&nbsp;elements&nbsp;with&nbsp;the&nbsp;wellknown</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;$r.render(&#34;compName&#34;)&nbsp;paradigma.&nbsp;But&nbsp;with&nbsp;the&nbsp;form&nbsp;comes&nbsp;some&nbsp;naming&nbsp;convention</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;to&nbsp;render&nbsp;the&nbsp;label,&nbsp;error,&nbsp;example&nbsp;of&nbsp;a&nbsp;form&nbsp;element.</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;read&nbsp;the&nbsp;instructions&nbsp;in&nbsp;the&nbsp;customformlayout&nbsp;velocity&nbsp;page.</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>super</b></font><font color="#000000">(</font><font color="#000000">ureq,&nbsp;wControl,&nbsp;</font><font color="#2a00ff">&#34;customformlayout&#34;</font><font color="#000000">)</font><font color="#000000">;</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;first&nbsp;you&nbsp;may&nbsp;preprocess&nbsp;data&nbsp;to&nbsp;fit&nbsp;into&nbsp;the&nbsp;form&nbsp;items</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;if&nbsp;all&nbsp;preprocessing&nbsp;is&nbsp;done,&nbsp;create&nbsp;the&nbsp;form&nbsp;items</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;example&nbsp;for&nbsp;simple&nbsp;preprocessing&nbsp;-&nbsp;check&nbsp;for&nbsp;NULL</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>if</b></font><font color="#000000">(</font><font color="#000000">data&nbsp;!=&nbsp;</font><font color="#7f0055"><b>null</b></font><font color="#000000">){</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">personData&nbsp;=&nbsp;data;</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">}</font><font color="#7f0055"><b>else</b></font><font color="#000000">{</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">personData&nbsp;=&nbsp;</font><font color="#7f0055"><b>new&nbsp;</b></font><font color="#000000">GuiDemoFlexiFormPersonData</font><font color="#000000">()</font><font color="#000000">;</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">}</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;calls&nbsp;our&nbsp;initForm(formlayout,listener,ureq)&nbsp;with&nbsp;default&nbsp;values.</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">initForm</font><font color="#000000">(</font><font color="#000000">ureq</font><font color="#000000">)</font><font color="#000000">;</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;after&nbsp;initialisation&nbsp;you&nbsp;may&nbsp;need&nbsp;to&nbsp;do&nbsp;some&nbsp;stuff</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;but&nbsp;typically&nbsp;initForm(..)&nbsp;is&nbsp;the&nbsp;last&nbsp;call&nbsp;in&nbsp;the&nbsp;constructor.</font><br /> <font color="#ffffff">&nbsp;&nbsp;</font><font color="#000000">}</font></code> </td> <!-- end source code --> </tr> </table> </div> <!-- = END of automatically generated HTML code = --> <!-- ======================================================== -->
RLDevOps/Demo
target/classes/org/olat/test/guidemo/_content/guidemo_flexi_form_customlayout.html
HTML
apache-2.0
5,494
<style>@import "angular2_material/src/components/button/button.css";</style> <span class="md-button-wrapper"><ng-content></ng-content></span>
mwringe/angular
modules/angular2_material/src/components/button/button.html
HTML
apache-2.0
142
<!doctype html> <html> <title>npm</title> <meta http-equiv="content-type" value="text/html;utf-8"> <link rel="stylesheet" type="text/css" href="../../static/style.css"> <link rel="canonical" href="https://www.npmjs.org/doc/cli/npm.html"> <script async=true src="../../static/toc.js"></script> <body> <div id="wrapper"> <h1><a href="../cli/npm.html">npm</a></h1> <p>javascript package manager</p> <h2 id="synopsis">SYNOPSIS</h2> <pre><code>npm &lt;command&gt; [args] </code></pre><h2 id="version">VERSION</h2> <p>2.7.6</p> <h2 id="description">DESCRIPTION</h2> <p>npm is the package manager for the Node JavaScript platform. It puts modules in place so that node can find them, and manages dependency conflicts intelligently.</p> <p>It is extremely configurable to support a wide variety of use cases. Most commonly, it is used to publish, discover, install, and develop node programs.</p> <p>Run <code>npm help</code> to get a list of available commands.</p> <h2 id="introduction">INTRODUCTION</h2> <p>You probably got npm because you want to install stuff.</p> <p>Use <code>npm install blerg</code> to install the latest version of &quot;blerg&quot;. Check out <code><a href="../cli/npm-install.html"><a href="../cli/npm-install.html">npm-install(1)</a></a></code> for more info. It can do a lot of stuff.</p> <p>Use the <code>npm search</code> command to show everything that&#39;s available. Use <code>npm ls</code> to show everything you&#39;ve installed.</p> <h2 id="dependencies">DEPENDENCIES</h2> <p>If a package references to another package with a git URL, npm depends on a preinstalled git.</p> <p>If one of the packages npm tries to install is a native node module and requires compiling of C++ Code, npm will use <a href="https://github.com/TooTallNate/node-gyp">node-gyp</a> for that task. For a Unix system, <a href="https://github.com/TooTallNate/node-gyp">node-gyp</a> needs Python, make and a buildchain like GCC. On Windows, Python and Microsoft Visual Studio C++ is needed. Python 3 is not supported by <a href="https://github.com/TooTallNate/node-gyp">node-gyp</a>. For more information visit <a href="https://github.com/TooTallNate/node-gyp">the node-gyp repository</a> and the <a href="https://github.com/TooTallNate/node-gyp/wiki">node-gyp Wiki</a>.</p> <h2 id="directories">DIRECTORIES</h2> <p>See <code><a href="../files/npm-folders.html"><a href="../files/npm-folders.html">npm-folders(5)</a></a></code> to learn about where npm puts stuff.</p> <p>In particular, npm has two modes of operation:</p> <ul> <li>global mode:<br>npm installs packages into the install prefix at <code>prefix/lib/node_modules</code> and bins are installed in <code>prefix/bin</code>.</li> <li>local mode:<br>npm installs packages into the current project directory, which defaults to the current working directory. Packages are installed to <code>./node_modules</code>, and bins are installed to <code>./node_modules/.bin</code>.</li> </ul> <p>Local mode is the default. Use <code>--global</code> or <code>-g</code> on any command to operate in global mode instead.</p> <h2 id="developer-usage">DEVELOPER USAGE</h2> <p>If you&#39;re using npm to develop and publish your code, check out the following help topics:</p> <ul> <li>json: Make a package.json file. See <code><a href="../files/package.json.html"><a href="../files/package.json.html">package.json(5)</a></a></code>.</li> <li>link: For linking your current working code into Node&#39;s path, so that you don&#39;t have to reinstall every time you make a change. Use <code>npm link</code> to do this.</li> <li>install: It&#39;s a good idea to install things if you don&#39;t need the symbolic link. Especially, installing other peoples code from the registry is done via <code>npm install</code></li> <li>adduser: Create an account or log in. Credentials are stored in the user config file.</li> <li>publish: Use the <code>npm publish</code> command to upload your code to the registry.</li> </ul> <h2 id="configuration">CONFIGURATION</h2> <p>npm is extremely configurable. It reads its configuration options from 5 places.</p> <ul> <li>Command line switches:<br>Set a config with <code>--key val</code>. All keys take a value, even if they are booleans (the config parser doesn&#39;t know what the options are at the time of parsing.) If no value is provided, then the option is set to boolean <code>true</code>.</li> <li>Environment Variables:<br>Set any config by prefixing the name in an environment variable with <code>npm_config_</code>. For example, <code>export npm_config_key=val</code>.</li> <li>User Configs:<br>The file at $HOME/.npmrc is an ini-formatted list of configs. If present, it is parsed. If the <code>userconfig</code> option is set in the cli or env, then that will be used instead.</li> <li>Global Configs:<br>The file found at ../etc/npmrc (from the node executable, by default this resolves to /usr/local/etc/npmrc) will be parsed if it is found. If the <code>globalconfig</code> option is set in the cli, env, or user config, then that file is parsed instead.</li> <li>Defaults:<br>npm&#39;s default configuration options are defined in lib/utils/config-defs.js. These must not be changed.</li> </ul> <p>See <code><a href="../misc/npm-config.html"><a href="../misc/npm-config.html">npm-config(7)</a></a></code> for much much more information.</p> <h2 id="contributions">CONTRIBUTIONS</h2> <p>Patches welcome!</p> <ul> <li>code: Read through <code><a href="../misc/npm-coding-style.html"><a href="../misc/npm-coding-style.html">npm-coding-style(7)</a></a></code> if you plan to submit code. You don&#39;t have to agree with it, but you do have to follow it.</li> <li>docs: If you find an error in the documentation, edit the appropriate markdown file in the &quot;doc&quot; folder. (Don&#39;t worry about generating the man page.)</li> </ul> <p>Contributors are listed in npm&#39;s <code>package.json</code> file. You can view them easily by doing <code>npm view npm contributors</code>.</p> <p>If you would like to contribute, but don&#39;t know what to work on, check the issues list or ask on the mailing list.</p> <ul> <li><a href="http://github.com/npm/npm/issues">http://github.com/npm/npm/issues</a></li> <li><a href="&#109;&#97;&#x69;&#x6c;&#116;&#111;&#x3a;&#110;&#x70;&#109;&#x2d;&#64;&#x67;&#x6f;&#111;&#103;&#108;&#101;&#x67;&#114;&#x6f;&#117;&#112;&#x73;&#46;&#x63;&#111;&#x6d;">&#110;&#x70;&#109;&#x2d;&#64;&#x67;&#x6f;&#111;&#103;&#108;&#101;&#x67;&#114;&#x6f;&#117;&#112;&#x73;&#46;&#x63;&#111;&#x6d;</a></li> </ul> <h2 id="bugs">BUGS</h2> <p>When you find issues, please report them:</p> <ul> <li>web: <a href="http://github.com/npm/npm/issues">http://github.com/npm/npm/issues</a></li> <li>email: <a href="&#109;&#97;&#105;&#108;&#x74;&#x6f;&#58;&#x6e;&#112;&#x6d;&#x2d;&#64;&#103;&#x6f;&#x6f;&#x67;&#108;&#x65;&#x67;&#114;&#111;&#117;&#x70;&#115;&#x2e;&#99;&#x6f;&#109;">&#x6e;&#112;&#x6d;&#x2d;&#64;&#103;&#x6f;&#x6f;&#x67;&#108;&#x65;&#x67;&#114;&#111;&#117;&#x70;&#115;&#x2e;&#99;&#x6f;&#109;</a></li> </ul> <p>Be sure to include <em>all</em> of the output from the npm command that didn&#39;t work as expected. The <code>npm-debug.log</code> file is also helpful to provide.</p> <p>You can also look for isaacs in #node.js on irc://irc.freenode.net. He will no doubt tell you to put the output in a gist or email.</p> <h2 id="author">AUTHOR</h2> <p><a href="http://blog.izs.me/">Isaac Z. Schlueter</a> :: <a href="https://github.com/isaacs/">isaacs</a> :: <a href="http://twitter.com/izs">@izs</a> :: <a href="&#109;&#x61;&#105;&#108;&#116;&#x6f;&#58;&#x69;&#64;&#x69;&#122;&#115;&#x2e;&#109;&#x65;">&#x69;&#64;&#x69;&#122;&#115;&#x2e;&#109;&#x65;</a></p> <h2 id="see-also">SEE ALSO</h2> <ul> <li><a href="../cli/npm-help.html"><a href="../cli/npm-help.html">npm-help(1)</a></a></li> <li><a href="../misc/npm-faq.html"><a href="../misc/npm-faq.html">npm-faq(7)</a></a></li> <li><a href="../../doc/README.html"><a href="../../doc/README.html">README</a></a></li> <li><a href="../files/package.json.html"><a href="../files/package.json.html">package.json(5)</a></a></li> <li><a href="../cli/npm-install.html"><a href="../cli/npm-install.html">npm-install(1)</a></a></li> <li><a href="../cli/npm-config.html"><a href="../cli/npm-config.html">npm-config(1)</a></a></li> <li><a href="../misc/npm-config.html"><a href="../misc/npm-config.html">npm-config(7)</a></a></li> <li><a href="../files/npmrc.html"><a href="../files/npmrc.html">npmrc(5)</a></a></li> <li><a href="../misc/npm-index.html"><a href="../misc/npm-index.html">npm-index(7)</a></a></li> <li><a href="../api/npm.html"><a href="../api/npm.html">npm(3)</a></a></li> </ul> </div> <table border=0 cellspacing=0 cellpadding=0 id=npmlogo> <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr> <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr> <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr> <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr> <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr> </table> <p id="footer">npm &mdash; [email protected]</p>
vpistis/openshift-etherpad-lite
src/node_modules/npm/html/doc/cli/npm.html
HTML
apache-2.0
10,829
<html> <head> <title>facilities/identity.hpp</title> <link rel="stylesheet" type="text/css" href="../../styles.css"> </head> <body> <div style="margin-left: 0px;"> The <b>facilities/identity.hpp</b> header defines a utility macro to use with <b>BOOST_PP_IF</b> and <b>BOOST_PP_IIF</b>. </div> <h4>Usage</h4> <div class="code"> #include <b>&lt;boost/preprocessor/facilities/identity.hpp&gt;</b> </div> <h4>Contents</h4> <ul> <li><a href="../../ref/identity.html">BOOST_PP_IDENTITY</a></li> </ul> <hr size="1"> <div style="margin-left: 0px;"> <i>© Copyright <a href="http://www.housemarque.com" target="_top">Housemarque Oy</a> 2002</i> </br><i>© Copyright Paul Mensonides 2002</i> </div> <div style="margin-left: 0px;"> <p><small>Distributed under the Boost Software License, Version 1.0. (See accompanying file <a href="../../../../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy at <a href= "http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p> </div> </body> </html>
flingone/frameworks_base_cmds_remoted
libs/boost/libs/preprocessor/doc/headers/facilities/identity.html
HTML
apache-2.0
1,071
<!DOCTYPE html> <html> <head> <script src="../../../resources/js-test.js"></script> <script src="../resources/event-sender-util.js"></script> <script src="../resources/shadow-test-driver.js"></script> </head> <body> <div id="container"></div> <pre id="console"></div> <script> function createShadowDOM(shadowRoot, name) { var hostInShadowRoot = document.createElement('span'); var nestedShadowRoot = hostInShadowRoot.attachShadow({mode: 'open'}); var spanInShadow = createSpanWithText('SPAN IN NESTED IN SHADOW ' + name); nestedShadowRoot.appendChild(spanInShadow); var span1 = createSpanWithText('SPAN 1 IN' + name); var span2 = createSpanWithText('SPAN 2 IN' + name); var span3 = createSpanWithText('SPAN 3 IN' + name); shadowRoot.appendChild(span1); shadowRoot.appendChild(hostInShadowRoot); shadowRoot.appendChild(span2); shadowRoot.appendChild(document.createElement('shadow')); shadowRoot.appendChild(span3); return new Array(spanInShadow, span1, span2, span3); } var spanInContainer1 = createSpanWithText('CONTAINER1'); var spanInContainer2 = createSpanWithText('CONTAINER2'); var host = document.createElement('div'); var spanInHost = createSpanWithText('IN HOST'); host.appendChild(spanInHost); var olderShadowRoot = host.attachShadow({mode: 'open'}); var spans1 = createShadowDOM(olderShadowRoot, 'OLDER'); var container = document.getElementById('container'); container.appendChild(spanInContainer1); container.appendChild(host); container.appendChild(spanInContainer2); var allSpans = new Array(spanInContainer1, spanInContainer2, spanInHost); allSpans = allSpans.concat(spans1); // Do Layout container.offsetLeft; // Selects all combinations of spans. for (var i = 0; i < allSpans.length; ++i) { for (var j = 0; j < allSpans.length; ++j) { mouseMoveToElem(allSpans[i]); eventSender.mouseDown(); mouseMoveToElem(allSpans[j]); eventSender.mouseUp(); // Checks havings the same selection. debug(allSpans[i].textContent + ' --> ' + allSpans[j].textContent); shouldBe("internals.treeScopeRootNode(window.getSelection().anchorNode)", "internals.treeScopeRootNode(window.getSelection().focusNode)"); // clear seleciton. window.getSelection().removeAllRanges(); } } // Do double click for all spans. for (var i = 0; i < allSpans.length; ++i) { mouseMoveToElem(allSpans[i]); eventSender.mouseDown(); eventSender.mouseUp(); eventSender.mouseDown(); eventSender.mouseUp(); // Checks havings the same selection. debug(allSpans[i].textContent + ": double click"); shouldBe("internals.treeScopeRootNode(window.getSelection().anchorNode)", "internals.treeScopeRootNode(window.getSelection().focusNode)"); window.getSelection().removeAllRanges(); } // Removes while (container.firstChild) container.removeChild(container.firstChild); var successfullyParsed = true; </script> </body> </html>
scheib/chromium
third_party/blink/web_tests/fast/dom/shadow/selections-in-shadow.html
HTML
bsd-3-clause
3,014
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <html> <head> <script src="../../resources/js-test.js"></script> </head> <body> <p id="description"></p> <div id="console"></div> <script src="resources/ie-test-pre.js"></script> <script src="TestCases/15.2.3.12-3-6.js"></script> <script src="resources/ie-test-post.js"></script> </body> </html>
modulexcite/blink
LayoutTests/ietestcenter/Javascript/15.2.3.12-3-6.html
HTML
bsd-3-clause
343
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html> <head> <title>WebKit's adaptation of http://test.csswg.org/suites/css2.1/20110111/html4/content-021.htm</title> <link rel="originalAuthor" title="Microsoft" href="http://www.microsoft.com/"> <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content"> <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content"> <meta name="flags" content=""> <meta name="assert" content="The 'content' property properly handles counter autonesting when anonymous renderers intervene between the element and its :before descendant."> <style type="text/css"> #testView div:before { content: counters(test, "."); counter-reset: test; } #div1 { border: 2px solid black; } </style> <script src="../../../resources/js-test.js"></script> <script type="text/javascript"> if (window.testRunner) testRunner.dumpAsText(); function run() { if (!window.testRunner) return; shouldBe("internals.counterValue(document.getElementById('div1'))", "'0'"); shouldBe("internals.counterValue(document.getElementById('div2'))", "'0.0'"); debug(''); debug('TEST COMPLETE'); // Eliminate confusing messages (counter values won't be dumped by dumpAsText). var viewElement = document.getElementById("testView"); viewElement.parentNode.removeChild(viewElement); } </script> </head> <body onload="run();"> <p>This is the WebKit version of <a href="http://test.csswg.org/suites/css2.1/20110111/html4/content-021.htm">CSS Test: Content using a 'counters()' function with a string value</a>.</p> <div id="testView"> <p>Test passes if there are the numbers "0" and "0.0" in the box below.</p> <div id="div1"> <div id="div2"></div> </div> </div> <div id="console"></div> </body> </html>
chromium/chromium
third_party/blink/web_tests/fast/css/counters/content-021.html
HTML
bsd-3-clause
1,876
<!DOCTYPE html> <p>There should be a yellow/hotpink square 2x2 chessboard below.</p> <div style="columns:3; column-gap:0; width:60px; line-height:20px; orphans:1; widows:1;"> <div style="overflow: hidden;"> <div style="background:yellow;"><br></div> <table cellspacing="0" cellpadding="0" style="width:40px;"> <!-- The thead should be repeated at the top of each column that the table breaks into. --> <thead style="break-inside:avoid;"> <tr> <td style="background:hotpink;"><br></td> </tr> </thead> <tbody> <tr> <td><br></td> </tr> <tr> <td><br></td> </tr> <tr> <td><br></td> </tr> <tr> <td style="background:yellow;"><br></td> </tr> <tr> <td><br></td> </tr> <tr> <td><br></td> </tr> <tr> <td><br></td> </tr> </tbody> </table> <br> <br> <br> </div> </div>
scheib/chromium
third_party/blink/web_tests/fast/multicol/balance-repeating-table-headers.html
HTML
bsd-3-clause
1,158
<html> <head> <link rel="manifest" href="manifest.json"/> </head> </html>
ric2b/Vivaldi-browser
chromium/chrome/test/data/favicon/page_with_manifest.html
HTML
bsd-3-clause
74
<html> <body> <p> Internal parts of the remote facade API. </p> </body> </html>
samuelJost/ddd_example
src/main/java/se/citerus/dddsample/interfaces/booking/facade/internal/package.html
HTML
mit
84
{% extends "projects/base_project.html" %} {% load core_tags i18n highlight %} {% block title %}{% blocktrans with query=query|default:"" %}Search: {{ query }} {% endblocktrans %}{% endblock %} {% block extra_links %} {{ super }} <style> .navigable > ul > li { border-bottom: 0; } </style> {% endblock %} {% block content %} <div class="navigable"> <ul> <li class="{% if type == 'project' %}active{% endif %}"><a href="?{% url_replace request 'type' 'project' %}">Projects</a></li> <li class="{% if type == 'file' %}active{% endif %}"><a href="?{% url_replace request 'type' 'file' %}">Files</a></li> <hr> {% if type == 'project' %} {% if facets.language %} <h5> Language </h5> {% for name, count in facets.language.items %} <li class="{% if language == name %}active{% endif %}"> {% if language == name %} <a href="?{% url_replace request 'language' '' %}">{{ name }} {% else %} <a href="?{% url_replace request 'language' name %}">{{ name }} {% endif %} ({{ count }}) </a> </li> {% endfor %} {% endif %} {% endif %} {% if type == 'file' %} {% if facets.project %} <h5> Projects </h5> {% for name, count in facets.project.items %} <li class="{% if project == name %}active{% endif %}"> {% if project == name %} <a href="?{% url_replace request 'project' '' %}">{{ name }} {% else %} <a href="?{% url_replace request 'project' name %}">{{ name }} {% endif %} ({{ count }}) </a> </li> {% endfor %} {% endif %} {% if facets.version %} <h5>Version</h5> {% for name, count in facets.version.items %} <li class="{% if version == name %}active{% endif %}"> {% if version == name %} <a href="?{% url_replace request 'version' '' %}">{{ name }} {% else %} <a href="?{% url_replace request 'version' name %}">{{ name }} {% endif %} ({{ count }}) </a> </li> {% endfor %} {% endif %} {% if facets.taxonomy %} <h5>Taxonomy</h5> {% for name, count in facets.taxonomy.items %} <li class="{% if taxonomy == name %}active{% endif %}"> {% if taxonomy == name %} <a href="?{% url_replace request 'taxonomy' '' %}">{{ name }} {% else %} <a href="?{% url_replace request 'taxonomy' name %}">{{ name }} {% endif %} ({{ count }}) </a> </li> {% endfor %} {% endif %} {% endif %} <div class="search-sponsored"> Search is sponsored by <a href="https://www.elastic.co/">Elastic</a>, and hosted at <a href="http://found.no/">Found</a>. </div> </ul> <div> <h2>Search</h2> <!-- BEGIN search form --> <div class="wide-search-bar"> <div class="wide-search-bar-wrapper clearfix"> <form action="." method="GET"> <div class="text-input-wrapper"> <input type="text" name="q" value="{{ query|default_if_none:"" }}" id="id_elastic_project_search"> {% if type %} <input type="hidden" name="type" value="{{ type }}"> {% endif %} {% if project %} <input type="hidden" name="project" value="{{ project }}"> {% endif %} {% if taxonomy %} <input type="hidden" name="taxonomy" value="{{ taxonomy }}"> {% endif %} {% if version %} <input type="hidden" name="version" value="{{ version }}"> {% endif %} {% if language %} <input type="hidden" name="language" value="{{ language }}"> {% endif %} </div> <div class="submit-input-wrapper"> {% comment %}Translators: This is about starting a search{% endcomment %} <input type="submit" value="{% trans "Go crazy." %}"> </div> </form> </div> </div> <!-- END search form --> {% if query %} <!-- BEGIN search results --> <div class="module"> <div class="module-wrapper"> <div class="module-header"> <h3>{% blocktrans with query=query|default:"" %}Results for {{ query }}{% endblocktrans %}</h3> </div> <div class="module-list"> <div class="module-list-wrapper"> <ul> {% for result in results.hits.hits %} <li class="module-item"> <p class="module-item-title"> {% if result.fields.name %} {# Project #} <a href="{{ result.fields.url }}">{{ result.fields.name }}</a> {% for fragment in result.highlight.description|slice:":3" %} <p> ...{{ fragment|safe }}... </p> <br> {% endfor %} {# End Project #} {% elif result.fields.path %} {# File #} <a href="{% doc_url result.fields.project|get_project result.fields.version result.fields.path %}?highlight={{ query }}">{{ result.fields.project }} - {{ result.fields.title|safe }}</a> {% for fragment in result.highlight.content|slice:":3" %} <p> ...{{ fragment|safe }}... </p> {% endfor %} {# End File #} {% endif %} </p> </li> {% empty %} <li class="module-item"><span class="quiet">{% trans "No results found. Bummer." %}</span></li> {% endfor %} </ul> </div> </div> </div> </div> <!-- END search results --> {% if page.has_previous or page.has_next %} <!-- BEGIN search pagination --> <div class="pagination"> {% if page.has_previous %} <a href="?q={{ query }}&amp;page={{ page.previous_page_number }}">&laquo; {% trans "Previous" %}</a> {% else %} <span class="disabled">&laquo; {% trans "Previous" %}</span> {% endif %} {% if page.has_next %} <a class="next" href="?q={{ query }}&amp;page={{ page.next_page_number }}">{% trans "Next" %} &raquo;</a> {% else %} <span class="next disabled">{% trans "Next" %} &raquo;</span> {% endif %} </div> <!-- END search pagination --> {% endif %} {% else %} {# Show some example queries to run, maybe query syntax, something else? #} {% endif %} </div> </div> {% endblock %}
sid-kap/readthedocs.org
readthedocs/templates/search/elastic_search.html
HTML
mit
7,277
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../includes/main.css" type="text/css"> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> <title>Apache CloudStack | The Power Behind Your Cloud</title> </head> <body> <div id="insidetopbg"> <div id="inside_wrapper"> <div class="uppermenu_panel"> <div class="uppermenu_box"></div> </div> <div id="main_master"> <div id="inside_header"> <div class="header_top"> <a class="cloud_logo" href="http://cloudstack.org"></a> <div class="mainemenu_panel"></div> </div> </div> <div id="main_content"> <div class="inside_apileftpanel"> <div class="inside_contentpanel" style="width:930px;"> <div class="api_titlebox"> <div class="api_titlebox_left"> <span> Apache CloudStack 4.0.0-incubating Root Admin API Reference </span> <p></p> <h1>deletePod</h1> <p>Deletes a Pod.</p> </div> <div class="api_titlebox_right"> <a class="api_backbutton" href="../TOC_Root_Admin.html"></a> </div> </div> <div class="api_tablepanel"> <h2>Request parameters</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td> </tr> <tr> <td style="width:200px;"><strong>id</strong></td><td style="width:500px;"><strong>the ID of the Pod</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> </table> </div> <div class="api_tablepanel"> <h2>Response Tags</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td> </tr> <tr> <td style="width:200px;"><strong>displaytext</strong></td><td style="width:500px;">any text associated with the success or failure</td> </tr> <tr> <td style="width:200px;"><strong>success</strong></td><td style="width:500px;">true if operation is executed successfully</td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> <div id="footer_mainmaster"> <p>Copyright &copy; 2012 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br> Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p> </div> </div> </div> </div> </body> </html>
resmo/cloudstack-www
source/api/apidocs-4.0.0/root_admin/deletePod.html
HTML
apache-2.0
2,543
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../includes/main.css" type="text/css"> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> <title>Apache CloudStack | The Power Behind Your Cloud</title> </head> <body> <div id="insidetopbg"> <div id="inside_wrapper"> <div class="uppermenu_panel"> <div class="uppermenu_box"></div> </div> <div id="main_master"> <div id="inside_header"> <div class="header_top"> <a class="cloud_logo" href="http://cloudstack.org"></a> <div class="mainemenu_panel"></div> </div> </div> <div id="main_content"> <div class="inside_apileftpanel"> <div class="inside_contentpanel" style="width:930px;"> <div class="api_titlebox"> <div class="api_titlebox_left"> <span> Apache CloudStack v4.4.1 Domain Admin API Reference </span> <p></p> <h1>listEgressFirewallRules</h1> <p>Lists all egress firewall rules for network id.</p> </div> <div class="api_titlebox_right"> <a class="api_backbutton" href="../TOC_Domain_Admin.html"></a> </div> </div> <div class="api_tablepanel"> <h2>Request parameters</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td> </tr> <tr> <td style="width:200px;"><i>account</i></td><td style="width:500px;"><i>list resources by account. Must be used with the domainId parameter.</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>domainid</i></td><td style="width:500px;"><i>list only resources belonging to the domain specified</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>fordisplay</i></td><td style="width:500px;"><i>list resources by display flag; only ROOT admin is eligible to pass this parameter</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>id</i></td><td style="width:500px;"><i>Lists rule with the specified ID.</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>id</i></td><td style="width:500px;"><i>Lists rule with the specified ID.</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>ipaddressid</i></td><td style="width:500px;"><i>the id of IP address of the firwall services</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>isrecursive</i></td><td style="width:500px;"><i>defaults to false, but if true, lists all resources from the parent specified by the domainId till leaves.</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>keyword</i></td><td style="width:500px;"><i>List by keyword</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>listall</i></td><td style="width:500px;"><i>If set to false, list only resources belonging to the command's caller; if set to true - list resources that the caller is authorized to see. Default value is false</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>networkid</i></td><td style="width:500px;"><i>the id network network for the egress firwall services</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>networkid</i></td><td style="width:500px;"><i>list firewall rules for ceratin network</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>page</i></td><td style="width:500px;"><i></i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>pagesize</i></td><td style="width:500px;"><i></i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>projectid</i></td><td style="width:500px;"><i>list objects by project</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>tags</i></td><td style="width:500px;"><i>List resources by tags (key/value pairs)</i></td><td style="width:180px;"><i>false</i></td> </tr> </table> </div> <div class="api_tablepanel"> <h2>Response Tags</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td> </tr> <tr> <td style="width:200px;"><strong>id</strong></td><td style="width:500px;">the ID of the firewall rule</td> </tr> <tr> <td style="width:200px;"><strong>cidrlist</strong></td><td style="width:500px;">the cidr list to forward traffic from</td> </tr> <tr> <td style="width:200px;"><strong>endport</strong></td><td style="width:500px;">the ending port of firewall rule's port range</td> </tr> <tr> <td style="width:200px;"><strong>fordisplay</strong></td><td style="width:500px;">is rule for display to the regular user</td> </tr> <tr> <td style="width:200px;"><strong>icmpcode</strong></td><td style="width:500px;">error code for this icmp message</td> </tr> <tr> <td style="width:200px;"><strong>icmptype</strong></td><td style="width:500px;">type of the icmp message being sent</td> </tr> <tr> <td style="width:200px;"><strong>ipaddress</strong></td><td style="width:500px;">the public ip address for the firewall rule</td> </tr> <tr> <td style="width:200px;"><strong>ipaddressid</strong></td><td style="width:500px;">the public ip address id for the firewall rule</td> </tr> <tr> <td style="width:200px;"><strong>networkid</strong></td><td style="width:500px;">the network id of the firewall rule</td> </tr> <tr> <td style="width:200px;"><strong>protocol</strong></td><td style="width:500px;">the protocol of the firewall rule</td> </tr> <tr> <td style="width:200px;"><strong>startport</strong></td><td style="width:500px;">the starting port of firewall rule's port range</td> </tr> <tr> <td style="width:200px;"><strong>state</strong></td><td style="width:500px;">the state of the rule</td> </tr> <tr> <td style="width:200px;"><strong>tags(*)</strong></td><td style="width:500px;">the list of resource tags associated with the rule</td> <tr> <td style="width:180px; padding-left:25px;"><strong>account</strong></td><td style="width:500px;">the account associated with the tag</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>customer</strong></td><td style="width:500px;">customer associated with the tag</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>domain</strong></td><td style="width:500px;">the domain associated with the tag</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>domainid</strong></td><td style="width:500px;">the ID of the domain associated with the tag</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>key</strong></td><td style="width:500px;">tag key name</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>project</strong></td><td style="width:500px;">the project name where tag belongs to</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>projectid</strong></td><td style="width:500px;">the project id the tag belongs to</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>resourceid</strong></td><td style="width:500px;">id of the resource</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>resourcetype</strong></td><td style="width:500px;">resource type</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>value</strong></td><td style="width:500px;">tag value</td> </tr> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> <div id="footer_mainmaster"> <p>Copyright &copy; 2014 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br> Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p> </div> </div> </div> </div> </body> </html>
resmo/cloudstack-www
source/api/apidocs-4.4/domain_admin/listEgressFirewallRules.html
HTML
apache-2.0
8,157
<!doctype html> <html dir="$i18n{textdirection}" lang="$i18n{language}"> <head> <meta charset="utf-8"> <title>$i18n{title}</title> <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> <link rel="stylesheet" href="incognito_and_guest_tab.css"> </head> <body> <div class="content"> <h1>$i18n{guestTabHeading}</h1> <p>$i18n{guestTabDescription}</p> <a class="learn-more-button" href="$i18n{learnMoreLink}">$i18n{learnMore}</a> </div> </body> </html>
ric2b/Vivaldi-browser
chromium/chrome/browser/resources/ntp4/guest_tab.html
HTML
bsd-3-clause
475
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>TibiaAPI: E:/dev/misc/ta/tibiaapi/Packets/Incoming/RuleViolationCancelPacket.cs File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"> <link href="doxygen.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.5.9 --> <script type="text/javascript"> <!-- function changeDisplayState (e){ var num=this.id.replace(/[^[0-9]/g,''); var button=this.firstChild; var sectionDiv=document.getElementById('dynsection'+num); if (sectionDiv.style.display=='none'||sectionDiv.style.display==''){ sectionDiv.style.display='block'; button.src='open.gif'; }else{ sectionDiv.style.display='none'; button.src='closed.gif'; } } function initDynSections(){ var divs=document.getElementsByTagName('div'); var sectionCounter=1; for(var i=0;i<divs.length-1;i++){ if(divs[i].className=='dynheader'&&divs[i+1].className=='dynsection'){ var header=divs[i]; var section=divs[i+1]; var button=header.firstChild; if (button!='IMG'){ divs[i].insertBefore(document.createTextNode(' '),divs[i].firstChild); button=document.createElement('img'); divs[i].insertBefore(button,divs[i].firstChild); } header.style.cursor='pointer'; header.onclick=changeDisplayState; header.id='dynheader'+sectionCounter; button.src='closed.gif'; section.id='dynsection'+sectionCounter; section.style.display='none'; section.style.marginLeft='14px'; sectionCounter++; } } } window.onload = initDynSections; --> </script> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="namespaces.html"><span>Packages</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 class="tabs"> <ul> <li><a href="files.html"><span>File&nbsp;List</span></a></li> <li><a href="globals.html"><span>File&nbsp;Members</span></a></li> </ul> </div> </div> <div class="contents"> <h1>E:/dev/misc/ta/tibiaapi/Packets/Incoming/RuleViolationCancelPacket.cs File Reference</h1><table border="0" cellpadding="0" cellspacing="0"> <tr><td></td></tr> <tr><td colspan="2"><br><h2>Classes</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_tibia_1_1_packets_1_1_incoming_1_1_rule_violation_cancel_packet.html">Tibia.Packets.Incoming.RuleViolationCancelPacket</a></td></tr> <tr><td colspan="2"><br><h2>Packages</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">package &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_tibia_1_1_packets_1_1_incoming.html">Tibia.Packets.Incoming</a></td></tr> <tr><td colspan="2"><br><h2>Variables</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">using&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="_rule_violation_cancel_packet_8cs.html#81a223a02c34d82b47199f08308847f2">System</a></td></tr> </table> <hr><h2>Variable Documentation</h2> <a class="anchor" name="81a223a02c34d82b47199f08308847f2"></a><!-- doxytag: member="RuleViolationCancelPacket.cs::System" ref="81a223a02c34d82b47199f08308847f2" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">using <a class="el" href="_timer_8cs.html#81a223a02c34d82b47199f08308847f2">System</a> </td> </tr> </table> </div> <div class="memdoc"> <p> </div> </div><p> </div> <hr size="1"><address style="text-align: right;"><small>Generated on Tue Jul 7 18:50:08 2009 for TibiaAPI by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.9 </small></address> </body> </html>
HeavenIsLost/tibiaapi
documentation/_rule_violation_cancel_packet_8cs.html
HTML
mit
4,151
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Test Programmatic Dijit Layout</title> <meta name="viewport" content="width=570"> <style> @import "../../dijit/themes/claro/document.css"; @import "../../dijit/themes/claro/claro.css"; @import "../css/skins/claro.css"; html, body { padding: 0; margin: 0; width: 100%; height: 100%; } #bc { height: 100%; } .bcLeft { width: 300px; } .dijitDialog { width: 500px; } </style> <script src="../../dojo/dojo.js" data-dojo-config="async: true"></script> <script> // callbacks for button clicks function showProgContentDialog(){ dlgProgContent.show(); //dlgProgContent.content.startup(); //this is a workaround } require(["dgrid/OnDemandGrid", "dgrid/Selection", "dgrid/extensions/DijitRegistry", "dijit/Dialog", "dojo/_base/lang", "dojo/_base/declare", "dijit/layout/BorderContainer", "dijit/layout/TabContainer", "dijit/Toolbar", "dijit/form/Button", "dgrid/test/data/base", "dojo/domReady!" ], function(Grid, Selection, DijitRegistry, Dialog, lang, declare, BC, TC, Toolbar, Button, testStore){ var gridCols = window.gridCols = { col1: "Column 1", col2: {name: "Column 2", sortable: false}, col3: "Column 3", col4: "Column 4" }, CustomGrid = declare([Grid, Selection, DijitRegistry]), gridLeft = new CustomGrid({ id: "gridLeft", className: "bcLeft", store: testStore, columns: lang.clone(gridCols), selectionMode: "single", region: "left", splitter: true }), gridTab1 = new CustomGrid({ id: "gridTab1", store: testStore, columns: lang.clone(gridCols), selectionMode: "single", title: "Tab 1" }), gridTab2 = new CustomGrid({ id: "gridTab2", store: testStore, columns: lang.clone(gridCols), selectionMode: "single", title: "Tab 2" }); var bc = new BC({ design: "headline" }, "bc"); // Toolbar var tb = new Toolbar({ id: "tbTop", region: "top" }); tb.addChild(new Button ({ id: "btnDialog", label: "Programmatic dialog w/ dgrid", onClick: showProgContentDialog })); // TabContainer var tc = new TC({ id: "tab", "class": "bcCenter", region: "center" }); tc.addChild(gridTab1); tc.addChild(gridTab2); bc.addChild(tb); bc.addChild(gridLeft); bc.addChild(tc); bc.startup(); // test setting a dgrid as content of a dialog programmatically window.dlgProgContent = new Dialog({ content: new CustomGrid({ id: "gridDlgProgContent", store: testStore, columns: lang.clone(gridCols), selectionMode: "single" }) }); }); </script> </head> <body class="claro"> <div id="bc"></div> </body> </html>
algogr/Site
web/js/dojo/dgrid/test/dijit_layout_programmatic.html
HTML
mit
2,969
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>transformed</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../../index.html" title="Chapter&#160;1.&#160;Range 2.0"> <link rel="up" href="../reference.html" title="Reference"> <link rel="prev" href="tokenized.html" title="tokenized"> <link rel="next" href="uniqued.html" title="uniqued"> </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="tokenized.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../reference.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="uniqued.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section range_reference_adaptors_reference_transformed"> <div class="titlepage"><div><div><h5 class="title"> <a name="range.reference.adaptors.reference.transformed"></a><a class="link" href="transformed.html" title="transformed">transformed</a> </h5></div></div></div> <div class="toc"><dl><dt><span class="section"><a href="transformed.html#range.reference.adaptors.reference.transformed.transformed_example">transformed example</a></span></dt></dl></div> <div class="informaltable"><table class="table"> <colgroup> <col> <col> </colgroup> <thead><tr> <th> <p> Syntax </p> </th> <th> <p> Code </p> </th> </tr></thead> <tbody> <tr> <td> <p> Pipe </p> </td> <td> <p> <code class="computeroutput"><span class="identifier">rng</span> <span class="special">|</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">adaptors</span><span class="special">::</span><span class="identifier">transformed</span><span class="special">(</span><span class="identifier">fun</span><span class="special">)</span></code> </p> </td> </tr> <tr> <td> <p> Function </p> </td> <td> <p> <code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">adaptors</span><span class="special">::</span><span class="identifier">transform</span><span class="special">(</span><span class="identifier">rng</span><span class="special">,</span> <span class="identifier">fun</span><span class="special">)</span></code> </p> </td> </tr> </tbody> </table></div> <div class="itemizedlist"><ul class="itemizedlist" type="disc"> <li class="listitem"> <span class="bold"><strong>Precondition:</strong></span> The <code class="computeroutput"><span class="identifier">value_type</span></code> of the range is convertible to the argument type of <code class="computeroutput"><span class="identifier">fun</span></code>. </li> <li class="listitem"> <span class="bold"><strong>Postcondition:</strong></span> For all elements <code class="computeroutput"><span class="identifier">x</span></code> in the returned range, <code class="computeroutput"><span class="identifier">x</span></code> is the result of <code class="computeroutput"><span class="identifier">fun</span><span class="special">(</span><span class="identifier">y</span><span class="special">)</span></code> where <code class="computeroutput"><span class="identifier">y</span></code> is the corresponding element in the original range. </li> <li class="listitem"> <span class="bold"><strong>Throws:</strong></span> Whatever the copy-constructor of <code class="computeroutput"><span class="identifier">fun</span></code> might throw. </li> <li class="listitem"> <span class="bold"><strong>Range Category:</strong></span> <a class="link" href="../../../concepts/single_pass_range.html" title="Single Pass Range">Single Pass Range</a> </li> <li class="listitem"> <span class="bold"><strong>Range Return Type:</strong></span> <code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">transformed_range</span><span class="special">&lt;</span><span class="identifier">typeof</span><span class="special">(</span><span class="identifier">rng</span><span class="special">)&gt;</span></code> </li> <li class="listitem"> <span class="bold"><strong>Returned Range Category:</strong></span> The range category of <code class="computeroutput"><span class="identifier">rng</span></code>. </li> </ul></div> <div class="section range_reference_adaptors_reference_transformed_transformed_example"> <div class="titlepage"><div><div><h6 class="title"> <a name="range.reference.adaptors.reference.transformed.transformed_example"></a><a class="link" href="transformed.html#range.reference.adaptors.reference.transformed.transformed_example" title="transformed example">transformed example</a> </h6></div></div></div> <p> </p> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">range</span><span class="special">/</span><span class="identifier">adaptor</span><span class="special">/</span><span class="identifier">transformed</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">range</span><span class="special">/</span><span class="identifier">algorithm</span><span class="special">/</span><span class="identifier">copy</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">assign</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">iterator</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">iostream</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">vector</span><span class="special">&gt;</span> <span class="keyword">struct</span> <span class="identifier">double_int</span> <span class="special">{</span> <span class="keyword">typedef</span> <span class="keyword">int</span> <span class="identifier">result_type</span><span class="special">;</span> <span class="keyword">int</span> <span class="keyword">operator</span><span class="special">()(</span><span class="keyword">int</span> <span class="identifier">x</span><span class="special">)</span> <span class="keyword">const</span> <span class="special">{</span> <span class="keyword">return</span> <span class="identifier">x</span> <span class="special">*</span> <span class="number">2</span><span class="special">;</span> <span class="special">}</span> <span class="special">};</span> <span class="keyword">int</span> <span class="identifier">main</span><span class="special">(</span><span class="keyword">int</span> <span class="identifier">argc</span><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span><span class="special">*</span> <span class="identifier">argv</span><span class="special">[])</span> <span class="special">{</span> <span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">adaptors</span><span class="special">;</span> <span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">assign</span><span class="special">;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special">&lt;</span><span class="keyword">int</span><span class="special">&gt;</span> <span class="identifier">input</span><span class="special">;</span> <span class="identifier">input</span> <span class="special">+=</span> <span class="number">1</span><span class="special">,</span><span class="number">2</span><span class="special">,</span><span class="number">3</span><span class="special">,</span><span class="number">4</span><span class="special">,</span><span class="number">5</span><span class="special">,</span><span class="number">6</span><span class="special">,</span><span class="number">7</span><span class="special">,</span><span class="number">8</span><span class="special">,</span><span class="number">9</span><span class="special">,</span><span class="number">10</span><span class="special">;</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">copy</span><span class="special">(</span> <span class="identifier">input</span> <span class="special">|</span> <span class="identifier">transformed</span><span class="special">(</span><span class="identifier">double_int</span><span class="special">()),</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">ostream_iterator</span><span class="special">&lt;</span><span class="keyword">int</span><span class="special">&gt;(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span><span class="special">,</span> <span class="string">","</span><span class="special">));</span> <span class="keyword">return</span> <span class="number">0</span><span class="special">;</span> <span class="special">}</span> </pre> <p> </p> </div> <p> This would produce the output: </p> <pre class="programlisting"><span class="number">2</span><span class="special">,</span><span class="number">4</span><span class="special">,</span><span class="number">6</span><span class="special">,</span><span class="number">8</span><span class="special">,</span><span class="number">10</span><span class="special">,</span><span class="number">12</span><span class="special">,</span><span class="number">14</span><span class="special">,</span><span class="number">16</span><span class="special">,</span><span class="number">18</span><span class="special">,</span><span class="number">20</span><span class="special">,</span> </pre> <p> </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; 2003-2010 Thorsten Ottosen, Neil Groves<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="tokenized.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../reference.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="uniqued.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
NixaSoftware/CVis
venv/bin/libs/range/doc/html/range/reference/adaptors/reference/transformed.html
HTML
apache-2.0
13,256
<style is="custom-style"> :root { --cs-blue: { border : 8px solid blue; }; } </style> <dom-module id="x-client"> <template> <style> :host { display: inline-block; border : 4px solid red; @apply (--cs-blue); } </style> x-client </template> <script> Polymer({ is: 'x-client' }); </script> </dom-module>
mgiuffrida/polymer
test/unit/custom-style-async-import.html
HTML
bsd-3-clause
389
<html> <!-- auto-generated html - You should consider editing and adapting this to suit your requirements. No doctype used here to force quirks mode; see wiki for details: http://pyjs.org/wiki/csshellandhowtodealwithit/ --> <head> <link rel="stylesheet" href="Hello.css"> <title>Hello (Pyjamas Auto-Generated HTML file)</title> </head> <body style="background-color:white"> <pre> some text demonstrating static HTML here. </pre> </body> </html>
pombredanne/pyjs
examples/helloworldsplash/public/Hello2.html
HTML
apache-2.0
457
<header>Maxmimum days</header> This is the maxmimum number of days allowed between password changes. After this time has elapsed, the user will be propted to enter a new password at login. <hr>
rcuvgd/Webmin22.01.2016
useradmin/help/max.html
HTML
bsd-3-clause
196
<div id="cookie-bar-prompt" style="display:none"> <div id="cookie-bar-prompt-content"> <a rel='nofollow' id="cookie-bar-prompt-logo" href="http://cookie-bar.eu"><span>cookie bar</span></a> <a rel='nofollow' id="cookie-bar-prompt-close"><span>close</span></a> <div class="clear"></div> <p>This website makes use of cookies to enhance browsing experience and provide additional functionality. None of this data can or will be used to identify or contact you.<br> <i id='cookie-bar-thirdparty'> <br>This website makes use of third party cookies, see the details in the privacy policy.<br> </i> <i id='cookie-bar-tracking'> <br>This website makes use of tracking cookies, see the details in the privacy policy.<br> </i> <i id='cookie-bar-privacy-page'> <br>To learn more about how this website uses cookies or localStorage, please read our <a rel='nofollow' id='cookie-bar-privacy-link' href=''>PRIVACY POLICY</a>.<br><br></i> <br>By clicking <span>Allow cookies</span> you give your permission to this website to store small bits of data as on your device. <i id='cookie-bar-no-consent'> <br> <br>By clicking <span>Disallow cookies</span> you deny your consent to store any cookies and localStorage data for this website, eventually deleting already stored cookies (some parts of the site may stop working properly).</i><br> <br>To learn more about cookies and localStorage, visit <a rel='nofollow' target='_blank' href='http://ico.org.uk/for_organisations/privacy_and_electronic_communications/the_guide/cookies'>Information Commissioner's Office</a>. <hr> To disable all cookies through the browser, click on the corresponding icon and follow the instructions: <br> <br> <div id='cookie-bar-browsers'> <!-- Thanks Peequi for the icons http://ampeross.deviantart.com/art/Peequi-part-1-290622606 --> <a rel='nofollow' class='chrome' target='_blank' href='https://support.google.com/accounts/answer/61416?hl=en'><span>Chrome</span></a> <a rel='nofollow' class='firefox' target='_blank' href='https://support.mozilla.org/en-GB/kb/enable-and-disable-cookies-website-preferences'><span>Firefox</span></a> <a rel='nofollow' class='ie' target='_blank' href='http://windows.microsoft.com/en-gb/internet-explorer/delete-manage-cookies#ie=ie-11'><span>Internet Explorer</span></a> <a rel='nofollow' class='opera' target='_blank' href='http://help.opera.com/Windows/10.00/en/cookies.html'><span>Opera</span></a> <a rel='nofollow' class='safari' target='_blank' href='https://support.apple.com/kb/PH17191?viewlocale=en_GB'><span>Safari</span></a> </div> <br> </div> </div> <div id="cookie-bar" style="display:none"> <p>This website makes use of cookies to enhance browsing experience and provide additional functionality. <a rel='nofollow' id="cookie-bar-prompt-button" data-alt="Privacy policy">Details</a> </p> <a rel='nofollow' id="cookie-bar-button-no">Disallow cookies</a> <a rel='nofollow' id="cookie-bar-button">Allow cookies</a> </div>
vvo/jsdelivr
files/cookie-bar/1.5.11/lang/en.html
HTML
mit
3,345