path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
docs/_modules/LiSE/allegedb/query.html | LogicalDash/LiSE |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LiSE.allegedb.query — LiSE 0.9dev documentation</title>
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/alabaster.css" type="text/css" />
<script id="documentation_options" data-url_root="../../../" src="../../../_static/documentation_options.js"></script>
<script src="../../../_static/jquery.js"></script>
<script src="../../../_static/underscore.js"></script>
<script src="../../../_static/doctools.js"></script>
<link rel="index" title="Index" href="../../../genindex.html" />
<link rel="search" title="Search" href="../../../search.html" />
<link rel="stylesheet" href="../../../_static/custom.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
</head><body>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<h1>Source code for LiSE.allegedb.query</h1><div class="highlight"><pre>
<span></span><span class="c1"># This file is part of allegedb, an object relational mapper for graphs.</span>
<span class="c1"># Copyright (c) Zachary Spector. public@zacharyspector.com</span>
<span class="c1">#</span>
<span class="c1"># This program is free software: you can redistribute it and/or modify</span>
<span class="c1"># it under the terms of the GNU Affero General Public License as published by</span>
<span class="c1"># the Free Software Foundation, either version 3 of the License, or</span>
<span class="c1"># (at your option) any later version.</span>
<span class="c1">#</span>
<span class="c1"># This program is distributed in the hope that it will be useful,</span>
<span class="c1"># but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<span class="c1"># MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</span>
<span class="c1"># GNU Affero General Public License for more details.</span>
<span class="c1">#</span>
<span class="c1"># You should have received a copy of the GNU Affero General Public License</span>
<span class="c1"># along with this program. If not, see <https://www.gnu.org/licenses/>.</span>
<span class="sd">"""Wrapper to run SQL queries in a lightly abstracted way, such that</span>
<span class="sd">code that's more to do with the queries than with the data per se</span>
<span class="sd">doesn't pollute the other files so much.</span>
<span class="sd">"""</span>
<span class="kn">import</span> <span class="nn">os</span>
<span class="kn">from</span> <span class="nn">collections.abc</span> <span class="kn">import</span> <span class="n">MutableMapping</span>
<span class="kn">from</span> <span class="nn">sqlite3</span> <span class="kn">import</span> <span class="n">IntegrityError</span> <span class="k">as</span> <span class="n">sqliteIntegError</span>
<span class="k">try</span><span class="p">:</span>
<span class="c1"># python 2</span>
<span class="kn">import</span> <span class="nn">wrap</span>
<span class="k">except</span> <span class="ne">ImportError</span><span class="p">:</span>
<span class="c1"># python 3</span>
<span class="kn">from</span> <span class="nn">LiSE.allegedb</span> <span class="kn">import</span> <span class="n">wrap</span>
<span class="n">wrappath</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">dirname</span><span class="p">(</span><span class="n">wrap</span><span class="o">.</span><span class="vm">__file__</span><span class="p">)</span>
<span class="n">alchemyIntegError</span> <span class="o">=</span> <span class="kc">None</span>
<span class="k">try</span><span class="p">:</span>
<span class="kn">from</span> <span class="nn">sqlalchemy.exc</span> <span class="kn">import</span> <span class="n">IntegrityError</span> <span class="k">as</span> <span class="n">alchemyIntegError</span>
<span class="k">except</span> <span class="ne">ImportError</span><span class="p">:</span>
<span class="k">pass</span>
<span class="kn">from</span> <span class="nn">time</span> <span class="kn">import</span> <span class="n">monotonic</span>
<span class="n">IntegrityError</span> <span class="o">=</span> <span class="p">(</span>
<span class="n">alchemyIntegError</span><span class="p">,</span> <span class="n">sqliteIntegError</span>
<span class="p">)</span> <span class="k">if</span> <span class="n">alchemyIntegError</span> <span class="ow">is</span> <span class="ow">not</span> <span class="kc">None</span> <span class="k">else</span> <span class="n">sqliteIntegError</span>
<div class="viewcode-block" id="TimeError"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.TimeError">[docs]</a><span class="k">class</span> <span class="nc">TimeError</span><span class="p">(</span><span class="ne">ValueError</span><span class="p">):</span>
<span class="sd">"""Exception class for problems with the time model"""</span></div>
<div class="viewcode-block" id="GlobalKeyValueStore"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.GlobalKeyValueStore">[docs]</a><span class="k">class</span> <span class="nc">GlobalKeyValueStore</span><span class="p">(</span><span class="n">MutableMapping</span><span class="p">):</span>
<span class="sd">"""A dict-like object that keeps its contents in a table.</span>
<span class="sd"> Mostly this is for holding the current branch and revision.</span>
<span class="sd"> """</span>
<span class="k">def</span> <span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">qe</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">qe</span> <span class="o">=</span> <span class="n">qe</span>
<span class="k">def</span> <span class="fm">__iter__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">if</span> <span class="nb">hasattr</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="p">,</span> <span class="s1">'_global_cache'</span><span class="p">):</span>
<span class="k">yield from</span> <span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="o">.</span><span class="n">_global_cache</span>
<span class="k">return</span>
<span class="k">for</span> <span class="p">(</span><span class="n">k</span><span class="p">,</span> <span class="n">v</span><span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="o">.</span><span class="n">global_items</span><span class="p">():</span>
<span class="k">yield</span> <span class="n">k</span>
<span class="k">def</span> <span class="fm">__len__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">if</span> <span class="nb">hasattr</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="p">,</span> <span class="s1">'_global_cache'</span><span class="p">):</span>
<span class="k">return</span> <span class="nb">len</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="o">.</span><span class="n">_global_cache</span><span class="p">)</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="o">.</span><span class="n">ctglobal</span><span class="p">()</span>
<span class="k">def</span> <span class="fm">__getitem__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">k</span><span class="p">):</span>
<span class="k">if</span> <span class="nb">hasattr</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="p">,</span> <span class="s1">'_global_cache'</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="o">.</span><span class="n">_global_cache</span><span class="p">[</span><span class="n">k</span><span class="p">]</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="o">.</span><span class="n">global_get</span><span class="p">(</span><span class="n">k</span><span class="p">)</span>
<span class="k">def</span> <span class="fm">__setitem__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">k</span><span class="p">,</span> <span class="n">v</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="o">.</span><span class="n">global_set</span><span class="p">(</span><span class="n">k</span><span class="p">,</span> <span class="n">v</span><span class="p">)</span>
<span class="k">if</span> <span class="nb">hasattr</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="p">,</span> <span class="s1">'_global_cache'</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="o">.</span><span class="n">_global_cache</span><span class="p">[</span><span class="n">k</span><span class="p">]</span> <span class="o">=</span> <span class="n">v</span>
<span class="k">def</span> <span class="fm">__delitem__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">k</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="o">.</span><span class="n">global_del</span><span class="p">(</span><span class="n">k</span><span class="p">)</span>
<span class="k">if</span> <span class="nb">hasattr</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="p">,</span> <span class="s1">'_global_cache'</span><span class="p">):</span>
<span class="k">del</span> <span class="bp">self</span><span class="o">.</span><span class="n">qe</span><span class="o">.</span><span class="n">_global_cache</span><span class="p">[</span><span class="n">k</span><span class="p">]</span></div>
<div class="viewcode-block" id="QueryEngine"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine">[docs]</a><span class="k">class</span> <span class="nc">QueryEngine</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>
<span class="sd">"""Wrapper around either a DBAPI2.0 connection or an</span>
<span class="sd"> Alchemist. Provides methods to run queries using either.</span>
<span class="sd"> """</span>
<span class="n">path</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">dirname</span><span class="p">(</span><span class="vm">__file__</span><span class="p">)</span>
<span class="n">flush_edges_t</span> <span class="o">=</span> <span class="mi">0</span>
<span class="k">def</span> <span class="fm">__init__</span><span class="p">(</span>
<span class="bp">self</span><span class="p">,</span> <span class="n">dbstring</span><span class="p">,</span> <span class="n">connect_args</span><span class="p">,</span> <span class="n">alchemy</span><span class="p">,</span>
<span class="n">pack</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">unpack</span><span class="o">=</span><span class="kc">None</span>
<span class="p">):</span>
<span class="sd">"""If ``alchemy`` is True and ``dbstring`` is a legit database URI,</span>
<span class="sd"> instantiate an Alchemist and start a transaction with</span>
<span class="sd"> it. Otherwise use sqlite3.</span>
<span class="sd"> You may pass an already created sqlalchemy :class:`Engine`</span>
<span class="sd"> object in place of ``dbstring`` if you wish. I'll still create</span>
<span class="sd"> my own transaction though.</span>
<span class="sd"> """</span>
<span class="n">dbstring</span> <span class="o">=</span> <span class="n">dbstring</span> <span class="ow">or</span> <span class="s1">'sqlite:///:memory:'</span>
<span class="k">def</span> <span class="nf">alchem_init</span><span class="p">(</span><span class="n">dbstring</span><span class="p">,</span> <span class="n">connect_args</span><span class="p">):</span>
<span class="kn">from</span> <span class="nn">sqlalchemy</span> <span class="kn">import</span> <span class="n">create_engine</span>
<span class="kn">from</span> <span class="nn">sqlalchemy.engine.base</span> <span class="kn">import</span> <span class="n">Engine</span>
<span class="kn">from</span> <span class="nn">LiSE.allegedb.alchemy</span> <span class="kn">import</span> <span class="n">Alchemist</span>
<span class="k">if</span> <span class="nb">isinstance</span><span class="p">(</span><span class="n">dbstring</span><span class="p">,</span> <span class="n">Engine</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">engine</span> <span class="o">=</span> <span class="n">dbstring</span>
<span class="k">else</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">engine</span> <span class="o">=</span> <span class="n">create_engine</span><span class="p">(</span>
<span class="n">dbstring</span><span class="p">,</span>
<span class="n">connect_args</span><span class="o">=</span><span class="n">connect_args</span>
<span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">alchemist</span> <span class="o">=</span> <span class="n">Alchemist</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">engine</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">transaction</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">alchemist</span><span class="o">.</span><span class="n">conn</span><span class="o">.</span><span class="n">begin</span><span class="p">()</span>
<span class="k">def</span> <span class="nf">lite_init</span><span class="p">(</span><span class="n">dbstring</span><span class="p">,</span> <span class="n">connect_args</span><span class="p">):</span>
<span class="kn">from</span> <span class="nn">sqlite3</span> <span class="kn">import</span> <span class="n">connect</span><span class="p">,</span> <span class="n">Connection</span>
<span class="kn">from</span> <span class="nn">json</span> <span class="kn">import</span> <span class="n">load</span>
<span class="k">with</span> <span class="nb">open</span><span class="p">(</span><span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">path</span><span class="p">,</span> <span class="s1">'sqlite.json'</span><span class="p">))</span> <span class="k">as</span> <span class="n">strf</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">strings</span> <span class="o">=</span> <span class="n">load</span><span class="p">(</span><span class="n">strf</span><span class="p">)</span>
<span class="k">if</span> <span class="nb">isinstance</span><span class="p">(</span><span class="n">dbstring</span><span class="p">,</span> <span class="n">Connection</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">connection</span> <span class="o">=</span> <span class="n">dbstring</span>
<span class="k">else</span><span class="p">:</span>
<span class="k">if</span> <span class="n">dbstring</span><span class="o">.</span><span class="n">startswith</span><span class="p">(</span><span class="s1">'sqlite:'</span><span class="p">):</span>
<span class="n">slashidx</span> <span class="o">=</span> <span class="n">dbstring</span><span class="o">.</span><span class="n">rindex</span><span class="p">(</span><span class="s1">'/'</span><span class="p">)</span>
<span class="n">dbstring</span> <span class="o">=</span> <span class="n">dbstring</span><span class="p">[</span><span class="n">slashidx</span><span class="o">+</span><span class="mi">1</span><span class="p">:]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">connection</span> <span class="o">=</span> <span class="n">connect</span><span class="p">(</span><span class="n">dbstring</span><span class="p">)</span>
<span class="k">if</span> <span class="n">alchemy</span><span class="p">:</span>
<span class="k">try</span><span class="p">:</span>
<span class="n">alchem_init</span><span class="p">(</span><span class="n">dbstring</span><span class="p">,</span> <span class="n">connect_args</span><span class="p">)</span>
<span class="k">except</span> <span class="ne">ImportError</span><span class="p">:</span>
<span class="n">lite_init</span><span class="p">(</span><span class="n">dbstring</span><span class="p">,</span> <span class="n">connect_args</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">lite_init</span><span class="p">(</span><span class="n">dbstring</span><span class="p">,</span> <span class="n">connect_args</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">globl</span> <span class="o">=</span> <span class="n">GlobalKeyValueStore</span><span class="p">(</span><span class="bp">self</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_branches</span> <span class="o">=</span> <span class="p">{}</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_nodevals2set</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_edgevals2set</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_graphvals2set</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_nodes2set</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_edges2set</span> <span class="o">=</span> <span class="p">[]</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_btts</span> <span class="o">=</span> <span class="nb">set</span><span class="p">()</span>
<span class="k">if</span> <span class="n">unpack</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="kn">from</span> <span class="nn">ast</span> <span class="kn">import</span> <span class="n">literal_eval</span> <span class="k">as</span> <span class="n">unpack</span>
<span class="bp">self</span><span class="o">.</span><span class="n">pack</span> <span class="o">=</span> <span class="n">pack</span> <span class="ow">or</span> <span class="nb">repr</span>
<span class="bp">self</span><span class="o">.</span><span class="n">unpack</span> <span class="o">=</span> <span class="n">unpack</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_exist_edge_stuff</span> <span class="o">=</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">_edges2set</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_edge_val_set_stuff</span> <span class="o">=</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">_edgevals2set</span><span class="p">)</span>
<div class="viewcode-block" id="QueryEngine.sql"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.sql">[docs]</a> <span class="k">def</span> <span class="nf">sql</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">stringname</span><span class="p">,</span> <span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">):</span>
<span class="sd">"""Wrapper for the various prewritten or compiled SQL calls.</span>
<span class="sd"> First argument is the name of the query, either a key in</span>
<span class="sd"> ``sqlite.json`` or a method name in</span>
<span class="sd"> ``allegedb.alchemy.Alchemist``. The rest of the arguments are</span>
<span class="sd"> parameters to the query.</span>
<span class="sd"> """</span>
<span class="k">if</span> <span class="nb">hasattr</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="s1">'alchemist'</span><span class="p">):</span>
<span class="k">return</span> <span class="nb">getattr</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">alchemist</span><span class="p">,</span> <span class="n">stringname</span><span class="p">)(</span><span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">s</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">strings</span><span class="p">[</span><span class="n">stringname</span><span class="p">]</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">connection</span><span class="o">.</span><span class="n">cursor</span><span class="p">()</span><span class="o">.</span><span class="n">execute</span><span class="p">(</span>
<span class="n">s</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="o">**</span><span class="n">kwargs</span><span class="p">)</span> <span class="k">if</span> <span class="n">kwargs</span> <span class="k">else</span> <span class="n">s</span><span class="p">,</span> <span class="n">args</span>
<span class="p">)</span></div>
<div class="viewcode-block" id="QueryEngine.sqlmany"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.sqlmany">[docs]</a> <span class="k">def</span> <span class="nf">sqlmany</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">stringname</span><span class="p">,</span> <span class="o">*</span><span class="n">args</span><span class="p">):</span>
<span class="sd">"""Wrapper for executing many SQL calls on my connection.</span>
<span class="sd"> First arg is the name of a query, either a key in the</span>
<span class="sd"> precompiled JSON or a method name in</span>
<span class="sd"> ``allegedb.alchemy.Alchemist``. Remaining arguments should be</span>
<span class="sd"> tuples of argument sequences to be passed to the query.</span>
<span class="sd"> """</span>
<span class="k">if</span> <span class="nb">hasattr</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="s1">'alchemist'</span><span class="p">):</span>
<span class="k">return</span> <span class="nb">getattr</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">alchemist</span><span class="o">.</span><span class="n">many</span><span class="p">,</span> <span class="n">stringname</span><span class="p">)(</span><span class="o">*</span><span class="n">args</span><span class="p">)</span>
<span class="n">s</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">strings</span><span class="p">[</span><span class="n">stringname</span><span class="p">]</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">connection</span><span class="o">.</span><span class="n">cursor</span><span class="p">()</span><span class="o">.</span><span class="n">executemany</span><span class="p">(</span><span class="n">s</span><span class="p">,</span> <span class="n">args</span><span class="p">)</span></div>
<div class="viewcode-block" id="QueryEngine.have_graph"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.have_graph">[docs]</a> <span class="k">def</span> <span class="nf">have_graph</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">graph</span><span class="p">):</span>
<span class="sd">"""Return whether I have a graph by this name."""</span>
<span class="n">graph</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="n">graph</span><span class="p">)</span>
<span class="k">return</span> <span class="nb">bool</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'graphs_named'</span><span class="p">,</span> <span class="n">graph</span><span class="p">)</span><span class="o">.</span><span class="n">fetchone</span><span class="p">()[</span><span class="mi">0</span><span class="p">])</span></div>
<div class="viewcode-block" id="QueryEngine.new_graph"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.new_graph">[docs]</a> <span class="k">def</span> <span class="nf">new_graph</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">graph</span><span class="p">,</span> <span class="n">typ</span><span class="p">):</span>
<span class="sd">"""Declare a new graph by this name of this type."""</span>
<span class="n">graph</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="n">graph</span><span class="p">)</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'graphs_insert'</span><span class="p">,</span> <span class="n">graph</span><span class="p">,</span> <span class="n">typ</span><span class="p">)</span></div>
<span class="k">def</span> <span class="nf">keyframes_insert</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">graph</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">nodes</span><span class="p">,</span> <span class="n">edges</span><span class="p">,</span> <span class="n">graph_val</span><span class="p">):</span>
<span class="n">graph</span><span class="p">,</span> <span class="n">nodes</span><span class="p">,</span> <span class="n">edges</span><span class="p">,</span> <span class="n">graph_val</span> <span class="o">=</span> <span class="nb">map</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">,</span> <span class="p">(</span><span class="n">graph</span><span class="p">,</span> <span class="n">nodes</span><span class="p">,</span> <span class="n">edges</span><span class="p">,</span> <span class="n">graph_val</span><span class="p">))</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'keyframes_insert'</span><span class="p">,</span> <span class="n">graph</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">nodes</span><span class="p">,</span> <span class="n">edges</span><span class="p">,</span> <span class="n">graph_val</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">keyframes_dump</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="n">unpack</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">unpack</span>
<span class="k">for</span> <span class="p">(</span><span class="n">graph</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">nodes</span><span class="p">,</span> <span class="n">edges</span><span class="p">,</span> <span class="n">graph_val</span><span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'keyframes_dump'</span><span class="p">):</span>
<span class="k">yield</span> <span class="n">unpack</span><span class="p">(</span><span class="n">graph</span><span class="p">),</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">unpack</span><span class="p">(</span><span class="n">nodes</span><span class="p">),</span> <span class="n">unpack</span><span class="p">(</span><span class="n">edges</span><span class="p">),</span> <span class="n">unpack</span><span class="p">(</span><span class="n">graph_val</span><span class="p">)</span>
<div class="viewcode-block" id="QueryEngine.del_graph"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.del_graph">[docs]</a> <span class="k">def</span> <span class="nf">del_graph</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">graph</span><span class="p">):</span>
<span class="sd">"""Delete all records to do with the graph"""</span>
<span class="n">g</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="n">graph</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'del_edge_val_graph'</span><span class="p">,</span> <span class="n">g</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'del_node_val_graph'</span><span class="p">,</span> <span class="n">g</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'del_edge_val_graph'</span><span class="p">,</span> <span class="n">g</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'del_edges_graph'</span><span class="p">,</span> <span class="n">g</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'del_nodes_graph'</span><span class="p">,</span> <span class="n">g</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'del_graph'</span><span class="p">,</span> <span class="n">g</span><span class="p">)</span></div>
<div class="viewcode-block" id="QueryEngine.graph_type"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.graph_type">[docs]</a> <span class="k">def</span> <span class="nf">graph_type</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">graph</span><span class="p">):</span>
<span class="sd">"""What type of graph is this?"""</span>
<span class="n">graph</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="n">graph</span><span class="p">)</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'graph_type'</span><span class="p">,</span> <span class="n">graph</span><span class="p">)</span><span class="o">.</span><span class="n">fetchone</span><span class="p">()[</span><span class="mi">0</span><span class="p">]</span></div>
<div class="viewcode-block" id="QueryEngine.have_branch"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.have_branch">[docs]</a> <span class="k">def</span> <span class="nf">have_branch</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">branch</span><span class="p">):</span>
<span class="sd">"""Return whether the branch thus named exists in the database."""</span>
<span class="k">return</span> <span class="nb">bool</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'ctbranch'</span><span class="p">,</span> <span class="n">branch</span><span class="p">)</span><span class="o">.</span><span class="n">fetchone</span><span class="p">()[</span><span class="mi">0</span><span class="p">])</span></div>
<div class="viewcode-block" id="QueryEngine.all_branches"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.all_branches">[docs]</a> <span class="k">def</span> <span class="nf">all_branches</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""Return all the branch data in tuples of (branch, parent,</span>
<span class="sd"> parent_turn).</span>
<span class="sd"> """</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'branches_dump'</span><span class="p">)</span><span class="o">.</span><span class="n">fetchall</span><span class="p">()</span></div>
<div class="viewcode-block" id="QueryEngine.global_get"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.global_get">[docs]</a> <span class="k">def</span> <span class="nf">global_get</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">key</span><span class="p">):</span>
<span class="sd">"""Return the value for the given key in the ``globals`` table."""</span>
<span class="n">key</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="n">key</span><span class="p">)</span>
<span class="n">r</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'global_get'</span><span class="p">,</span> <span class="n">key</span><span class="p">)</span><span class="o">.</span><span class="n">fetchone</span><span class="p">()</span>
<span class="k">if</span> <span class="n">r</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">KeyError</span><span class="p">(</span><span class="s2">"Not set"</span><span class="p">)</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">unpack</span><span class="p">(</span><span class="n">r</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span></div>
<div class="viewcode-block" id="QueryEngine.global_items"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.global_items">[docs]</a> <span class="k">def</span> <span class="nf">global_items</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""Iterate over (key, value) pairs in the ``globals`` table."""</span>
<span class="n">unpack</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">unpack</span>
<span class="k">for</span> <span class="p">(</span><span class="n">k</span><span class="p">,</span> <span class="n">v</span><span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'global_dump'</span><span class="p">):</span>
<span class="k">yield</span> <span class="p">(</span><span class="n">unpack</span><span class="p">(</span><span class="n">k</span><span class="p">),</span> <span class="n">unpack</span><span class="p">(</span><span class="n">v</span><span class="p">))</span></div>
<span class="k">def</span> <span class="nf">get_branch</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="n">v</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'global_get'</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="s1">'branch'</span><span class="p">))</span><span class="o">.</span><span class="n">fetchone</span><span class="p">()</span>
<span class="k">if</span> <span class="n">v</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="k">return</span> <span class="s1">'trunk'</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">unpack</span><span class="p">(</span><span class="n">v</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span>
<span class="k">def</span> <span class="nf">get_turn</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="n">v</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'global_get'</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="s1">'turn'</span><span class="p">))</span><span class="o">.</span><span class="n">fetchone</span><span class="p">()</span>
<span class="k">if</span> <span class="n">v</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="k">return</span> <span class="mi">0</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">unpack</span><span class="p">(</span><span class="n">v</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span>
<span class="k">def</span> <span class="nf">get_tick</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="n">v</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'global_get'</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="s1">'tick'</span><span class="p">))</span><span class="o">.</span><span class="n">fetchone</span><span class="p">()</span>
<span class="k">if</span> <span class="n">v</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="k">return</span> <span class="mi">0</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">unpack</span><span class="p">(</span><span class="n">v</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span>
<div class="viewcode-block" id="QueryEngine.global_set"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.global_set">[docs]</a> <span class="k">def</span> <span class="nf">global_set</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">value</span><span class="p">):</span>
<span class="sd">"""Set ``key`` to ``value`` globally (not at any particular branch or</span>
<span class="sd"> revision)</span>
<span class="sd"> """</span>
<span class="p">(</span><span class="n">key</span><span class="p">,</span> <span class="n">value</span><span class="p">)</span> <span class="o">=</span> <span class="nb">map</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">,</span> <span class="p">(</span><span class="n">key</span><span class="p">,</span> <span class="n">value</span><span class="p">))</span>
<span class="k">try</span><span class="p">:</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'global_insert'</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">value</span><span class="p">)</span>
<span class="k">except</span> <span class="n">IntegrityError</span><span class="p">:</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'global_update'</span><span class="p">,</span> <span class="n">value</span><span class="p">,</span> <span class="n">key</span><span class="p">)</span></div>
<div class="viewcode-block" id="QueryEngine.global_del"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.global_del">[docs]</a> <span class="k">def</span> <span class="nf">global_del</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">key</span><span class="p">):</span>
<span class="sd">"""Delete the global record for the key."""</span>
<span class="n">key</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="n">key</span><span class="p">)</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'global_del'</span><span class="p">,</span> <span class="n">key</span><span class="p">)</span></div>
<div class="viewcode-block" id="QueryEngine.new_branch"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.new_branch">[docs]</a> <span class="k">def</span> <span class="nf">new_branch</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">parent</span><span class="p">,</span> <span class="n">parent_turn</span><span class="p">,</span> <span class="n">parent_tick</span><span class="p">):</span>
<span class="sd">"""Declare that the ``branch`` is descended from ``parent`` at</span>
<span class="sd"> ``parent_turn``, ``parent_tick``</span>
<span class="sd"> """</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'branches_insert'</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">parent</span><span class="p">,</span> <span class="n">parent_turn</span><span class="p">,</span> <span class="n">parent_tick</span><span class="p">,</span> <span class="n">parent_turn</span><span class="p">,</span> <span class="n">parent_tick</span><span class="p">)</span></div>
<span class="k">def</span> <span class="nf">update_branch</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">parent</span><span class="p">,</span> <span class="n">parent_turn</span><span class="p">,</span> <span class="n">parent_tick</span><span class="p">,</span> <span class="n">end_turn</span><span class="p">,</span> <span class="n">end_tick</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'update_branches'</span><span class="p">,</span> <span class="n">parent</span><span class="p">,</span> <span class="n">parent_turn</span><span class="p">,</span> <span class="n">parent_tick</span><span class="p">,</span> <span class="n">end_turn</span><span class="p">,</span> <span class="n">end_tick</span><span class="p">,</span> <span class="n">branch</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">set_branch</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">parent</span><span class="p">,</span> <span class="n">parent_turn</span><span class="p">,</span> <span class="n">parent_tick</span><span class="p">,</span> <span class="n">end_turn</span><span class="p">,</span> <span class="n">end_tick</span><span class="p">):</span>
<span class="k">try</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'branches_insert'</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">parent</span><span class="p">,</span> <span class="n">parent_turn</span><span class="p">,</span> <span class="n">parent_tick</span><span class="p">,</span> <span class="n">end_turn</span><span class="p">,</span> <span class="n">end_tick</span><span class="p">)</span>
<span class="k">except</span> <span class="n">IntegrityError</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">update_branch</span><span class="p">(</span><span class="n">branch</span><span class="p">,</span> <span class="n">parent</span><span class="p">,</span> <span class="n">parent_turn</span><span class="p">,</span> <span class="n">parent_tick</span><span class="p">,</span> <span class="n">end_turn</span><span class="p">,</span> <span class="n">end_tick</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">new_turn</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">end_tick</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span> <span class="n">plan_end_tick</span><span class="o">=</span><span class="mi">0</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'turns_insert'</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">end_tick</span><span class="p">,</span> <span class="n">plan_end_tick</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">update_turn</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">end_tick</span><span class="p">,</span> <span class="n">plan_end_tick</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'update_turns'</span><span class="p">,</span> <span class="n">end_tick</span><span class="p">,</span> <span class="n">plan_end_tick</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">set_turn</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">end_tick</span><span class="p">,</span> <span class="n">plan_end_tick</span><span class="p">):</span>
<span class="k">try</span><span class="p">:</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'turns_insert'</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">end_tick</span><span class="p">,</span> <span class="n">plan_end_tick</span><span class="p">)</span>
<span class="k">except</span> <span class="n">IntegrityError</span><span class="p">:</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'update_turns'</span><span class="p">,</span> <span class="n">end_tick</span><span class="p">,</span> <span class="n">plan_end_tick</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">turns_dump</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'turns_dump'</span><span class="p">)</span>
<div class="viewcode-block" id="QueryEngine.graph_val_dump"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.graph_val_dump">[docs]</a> <span class="k">def</span> <span class="nf">graph_val_dump</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""Yield the entire contents of the graph_val table."""</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_graph_val</span><span class="p">()</span>
<span class="n">unpack</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">unpack</span>
<span class="k">for</span> <span class="p">(</span><span class="n">graph</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">value</span><span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'graph_val_dump'</span><span class="p">):</span>
<span class="k">yield</span> <span class="p">(</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">graph</span><span class="p">),</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">key</span><span class="p">),</span>
<span class="n">branch</span><span class="p">,</span>
<span class="n">turn</span><span class="p">,</span>
<span class="n">tick</span><span class="p">,</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">value</span><span class="p">)</span>
<span class="p">)</span></div>
<span class="k">def</span> <span class="nf">_flush_graph_val</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""Send all new and changed graph values to the database."""</span>
<span class="k">if</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">_graphvals2set</span><span class="p">:</span>
<span class="k">return</span>
<span class="n">delafter</span> <span class="o">=</span> <span class="p">{}</span>
<span class="k">for</span> <span class="n">graph</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">value</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">_graphvals2set</span><span class="p">:</span>
<span class="k">if</span> <span class="p">(</span><span class="n">graph</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">)</span> <span class="ow">in</span> <span class="n">delafter</span><span class="p">:</span>
<span class="n">delafter</span><span class="p">[</span><span class="n">graph</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">]</span> <span class="o">=</span> <span class="nb">min</span><span class="p">((</span>
<span class="p">(</span><span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">),</span>
<span class="n">delafter</span><span class="p">[</span><span class="n">graph</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">]</span>
<span class="p">))</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">delafter</span><span class="p">[</span><span class="n">graph</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">]</span> <span class="o">=</span> <span class="p">(</span><span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sqlmany</span><span class="p">(</span>
<span class="s1">'del_graph_val_after'</span><span class="p">,</span>
<span class="o">*</span><span class="p">((</span><span class="n">graph</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span>
<span class="k">for</span> <span class="p">((</span><span class="n">graph</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">),</span> <span class="p">(</span><span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">))</span> <span class="ow">in</span> <span class="n">delafter</span><span class="o">.</span><span class="n">items</span><span class="p">())</span>
<span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sqlmany</span><span class="p">(</span><span class="s1">'graph_val_insert'</span><span class="p">,</span> <span class="o">*</span><span class="bp">self</span><span class="o">.</span><span class="n">_graphvals2set</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_graphvals2set</span> <span class="o">=</span> <span class="p">[]</span>
<span class="k">def</span> <span class="nf">graph_val_set</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">graph</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">value</span><span class="p">):</span>
<span class="k">if</span> <span class="p">(</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="p">:</span>
<span class="k">raise</span> <span class="n">TimeError</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="o">.</span><span class="n">add</span><span class="p">((</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">))</span>
<span class="n">graph</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">value</span> <span class="o">=</span> <span class="nb">map</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">,</span> <span class="p">(</span><span class="n">graph</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">value</span><span class="p">))</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_graphvals2set</span><span class="o">.</span><span class="n">append</span><span class="p">((</span><span class="n">graph</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">value</span><span class="p">))</span>
<span class="k">def</span> <span class="nf">graph_val_del_time</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_graph_val</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'graph_val_del_time'</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="o">.</span><span class="n">discard</span><span class="p">((</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">))</span>
<span class="k">def</span> <span class="nf">graphs_types</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">for</span> <span class="p">(</span><span class="n">graph</span><span class="p">,</span> <span class="n">typ</span><span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'graphs_types'</span><span class="p">):</span>
<span class="k">yield</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">unpack</span><span class="p">(</span><span class="n">graph</span><span class="p">),</span> <span class="n">typ</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">_flush_nodes</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">if</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">_nodes2set</span><span class="p">:</span>
<span class="k">return</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sqlmany</span><span class="p">(</span><span class="s1">'nodes_insert'</span><span class="p">,</span> <span class="o">*</span><span class="bp">self</span><span class="o">.</span><span class="n">_nodes2set</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_nodes2set</span> <span class="o">=</span> <span class="p">[]</span>
<div class="viewcode-block" id="QueryEngine.exist_node"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.exist_node">[docs]</a> <span class="k">def</span> <span class="nf">exist_node</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">graph</span><span class="p">,</span> <span class="n">node</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">extant</span><span class="p">):</span>
<span class="sd">"""Declare that the node exists or doesn't.</span>
<span class="sd"> Inserts a new record or updates an old one, as needed.</span>
<span class="sd"> """</span>
<span class="k">if</span> <span class="p">(</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="p">:</span>
<span class="k">raise</span> <span class="n">TimeError</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="o">.</span><span class="n">add</span><span class="p">((</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">))</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_nodes2set</span><span class="o">.</span><span class="n">append</span><span class="p">((</span><span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="n">graph</span><span class="p">),</span> <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="n">node</span><span class="p">),</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">extant</span><span class="p">))</span></div>
<span class="k">def</span> <span class="nf">nodes_del_time</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_nodes</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'nodes_del_time'</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="o">.</span><span class="n">discard</span><span class="p">((</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">))</span>
<div class="viewcode-block" id="QueryEngine.nodes_dump"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.nodes_dump">[docs]</a> <span class="k">def</span> <span class="nf">nodes_dump</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""Dump the entire contents of the nodes table."""</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_nodes</span><span class="p">()</span>
<span class="n">unpack</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">unpack</span>
<span class="k">for</span> <span class="p">(</span><span class="n">graph</span><span class="p">,</span> <span class="n">node</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span><span class="n">tick</span><span class="p">,</span> <span class="n">extant</span><span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'nodes_dump'</span><span class="p">):</span>
<span class="k">yield</span> <span class="p">(</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">graph</span><span class="p">),</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">node</span><span class="p">),</span>
<span class="n">branch</span><span class="p">,</span>
<span class="n">turn</span><span class="p">,</span>
<span class="n">tick</span><span class="p">,</span>
<span class="nb">bool</span><span class="p">(</span><span class="n">extant</span><span class="p">)</span>
<span class="p">)</span></div>
<div class="viewcode-block" id="QueryEngine.node_val_dump"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.node_val_dump">[docs]</a> <span class="k">def</span> <span class="nf">node_val_dump</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""Yield the entire contents of the node_val table."""</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_node_val</span><span class="p">()</span>
<span class="n">unpack</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">unpack</span>
<span class="k">for</span> <span class="p">(</span>
<span class="n">graph</span><span class="p">,</span> <span class="n">node</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">value</span>
<span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'node_val_dump'</span><span class="p">):</span>
<span class="k">yield</span> <span class="p">(</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">graph</span><span class="p">),</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">node</span><span class="p">),</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">key</span><span class="p">),</span>
<span class="n">branch</span><span class="p">,</span>
<span class="n">turn</span><span class="p">,</span>
<span class="n">tick</span><span class="p">,</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">value</span><span class="p">)</span>
<span class="p">)</span></div>
<span class="k">def</span> <span class="nf">_flush_node_val</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">if</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">_nodevals2set</span><span class="p">:</span>
<span class="k">return</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sqlmany</span><span class="p">(</span><span class="s1">'node_val_insert'</span><span class="p">,</span> <span class="o">*</span><span class="bp">self</span><span class="o">.</span><span class="n">_nodevals2set</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_nodevals2set</span> <span class="o">=</span> <span class="p">[]</span>
<div class="viewcode-block" id="QueryEngine.node_val_set"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.node_val_set">[docs]</a> <span class="k">def</span> <span class="nf">node_val_set</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">graph</span><span class="p">,</span> <span class="n">node</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">value</span><span class="p">):</span>
<span class="sd">"""Set a key-value pair on a node at a specific branch and revision"""</span>
<span class="k">if</span> <span class="p">(</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="p">:</span>
<span class="k">raise</span> <span class="n">TimeError</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="o">.</span><span class="n">add</span><span class="p">((</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">))</span>
<span class="n">graph</span><span class="p">,</span> <span class="n">node</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">value</span> <span class="o">=</span> <span class="nb">map</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">,</span> <span class="p">(</span><span class="n">graph</span><span class="p">,</span> <span class="n">node</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">value</span><span class="p">))</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_nodevals2set</span><span class="o">.</span><span class="n">append</span><span class="p">((</span><span class="n">graph</span><span class="p">,</span> <span class="n">node</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">value</span><span class="p">))</span></div>
<span class="k">def</span> <span class="nf">node_val_del_time</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_node_val</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'node_val_del_time'</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="o">.</span><span class="n">discard</span><span class="p">((</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">))</span>
<div class="viewcode-block" id="QueryEngine.edges_dump"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.edges_dump">[docs]</a> <span class="k">def</span> <span class="nf">edges_dump</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""Dump the entire contents of the edges table."""</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_edges</span><span class="p">()</span>
<span class="n">unpack</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">unpack</span>
<span class="k">for</span> <span class="p">(</span>
<span class="n">graph</span><span class="p">,</span> <span class="n">orig</span><span class="p">,</span> <span class="n">dest</span><span class="p">,</span> <span class="n">idx</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">extant</span>
<span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'edges_dump'</span><span class="p">):</span>
<span class="k">yield</span> <span class="p">(</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">graph</span><span class="p">),</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">orig</span><span class="p">),</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">dest</span><span class="p">),</span>
<span class="n">idx</span><span class="p">,</span>
<span class="n">branch</span><span class="p">,</span>
<span class="n">turn</span><span class="p">,</span>
<span class="n">tick</span><span class="p">,</span>
<span class="nb">bool</span><span class="p">(</span><span class="n">extant</span><span class="p">)</span>
<span class="p">)</span></div>
<span class="k">def</span> <span class="nf">_pack_edge2set</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">tup</span><span class="p">):</span>
<span class="n">graph</span><span class="p">,</span> <span class="n">orig</span><span class="p">,</span> <span class="n">dest</span><span class="p">,</span> <span class="n">idx</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">extant</span> <span class="o">=</span> <span class="n">tup</span>
<span class="n">pack</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">pack</span>
<span class="k">return</span> <span class="n">pack</span><span class="p">(</span><span class="n">graph</span><span class="p">),</span> <span class="n">pack</span><span class="p">(</span><span class="n">orig</span><span class="p">),</span> <span class="n">pack</span><span class="p">(</span><span class="n">dest</span><span class="p">),</span> <span class="n">idx</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">extant</span>
<span class="k">def</span> <span class="nf">_flush_edges</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="n">start</span> <span class="o">=</span> <span class="n">monotonic</span><span class="p">()</span>
<span class="k">if</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">_edges2set</span><span class="p">:</span>
<span class="k">return</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sqlmany</span><span class="p">(</span><span class="s1">'edges_insert'</span><span class="p">,</span> <span class="o">*</span><span class="nb">map</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_pack_edge2set</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">_edges2set</span><span class="p">))</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_edges2set</span> <span class="o">=</span> <span class="p">[]</span>
<span class="n">QueryEngine</span><span class="o">.</span><span class="n">flush_edges_t</span> <span class="o">+=</span> <span class="n">monotonic</span><span class="p">()</span> <span class="o">-</span> <span class="n">start</span>
<div class="viewcode-block" id="QueryEngine.exist_edge"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.exist_edge">[docs]</a> <span class="k">def</span> <span class="nf">exist_edge</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">graph</span><span class="p">,</span> <span class="n">orig</span><span class="p">,</span> <span class="n">dest</span><span class="p">,</span> <span class="n">idx</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">extant</span><span class="p">):</span>
<span class="sd">"""Declare whether or not this edge exists."""</span>
<span class="n">btts</span><span class="p">,</span> <span class="n">edges2set</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_exist_edge_stuff</span>
<span class="k">if</span> <span class="p">(</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span> <span class="ow">in</span> <span class="n">btts</span><span class="p">:</span>
<span class="k">raise</span> <span class="n">TimeError</span>
<span class="n">btts</span><span class="o">.</span><span class="n">add</span><span class="p">((</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">))</span>
<span class="n">edges2set</span><span class="o">.</span><span class="n">append</span><span class="p">((</span><span class="n">graph</span><span class="p">,</span> <span class="n">orig</span><span class="p">,</span> <span class="n">dest</span><span class="p">,</span> <span class="n">idx</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">extant</span><span class="p">))</span></div>
<span class="k">def</span> <span class="nf">edges_del_time</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_edges</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'edges_del_time'</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="o">.</span><span class="n">discard</span><span class="p">((</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">))</span>
<div class="viewcode-block" id="QueryEngine.edge_val_dump"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.edge_val_dump">[docs]</a> <span class="k">def</span> <span class="nf">edge_val_dump</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""Yield the entire contents of the edge_val table."""</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_edge_val</span><span class="p">()</span>
<span class="n">unpack</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">unpack</span>
<span class="k">for</span> <span class="p">(</span>
<span class="n">graph</span><span class="p">,</span> <span class="n">orig</span><span class="p">,</span> <span class="n">dest</span><span class="p">,</span> <span class="n">idx</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">value</span>
<span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'edge_val_dump'</span><span class="p">):</span>
<span class="k">yield</span> <span class="p">(</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">graph</span><span class="p">),</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">orig</span><span class="p">),</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">dest</span><span class="p">),</span>
<span class="n">idx</span><span class="p">,</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">key</span><span class="p">),</span>
<span class="n">branch</span><span class="p">,</span>
<span class="n">turn</span><span class="p">,</span>
<span class="n">tick</span><span class="p">,</span>
<span class="n">unpack</span><span class="p">(</span><span class="n">value</span><span class="p">)</span>
<span class="p">)</span></div>
<span class="k">def</span> <span class="nf">_pack_edgeval2set</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">tup</span><span class="p">):</span>
<span class="n">graph</span><span class="p">,</span> <span class="n">orig</span><span class="p">,</span> <span class="n">dest</span><span class="p">,</span> <span class="n">idx</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">value</span> <span class="o">=</span> <span class="n">tup</span>
<span class="n">pack</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">pack</span>
<span class="k">return</span> <span class="n">pack</span><span class="p">(</span><span class="n">graph</span><span class="p">),</span> <span class="n">pack</span><span class="p">(</span><span class="n">orig</span><span class="p">),</span> <span class="n">pack</span><span class="p">(</span><span class="n">dest</span><span class="p">),</span> <span class="n">idx</span><span class="p">,</span> <span class="n">pack</span><span class="p">(</span><span class="n">key</span><span class="p">),</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">pack</span><span class="p">(</span><span class="n">value</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">_flush_edge_val</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">if</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">_edgevals2set</span><span class="p">:</span>
<span class="k">return</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sqlmany</span><span class="p">(</span><span class="s1">'edge_val_insert'</span><span class="p">,</span> <span class="o">*</span><span class="nb">map</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_pack_edgeval2set</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">_edgevals2set</span><span class="p">))</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_edgevals2set</span> <span class="o">=</span> <span class="p">[]</span>
<div class="viewcode-block" id="QueryEngine.edge_val_set"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.edge_val_set">[docs]</a> <span class="k">def</span> <span class="nf">edge_val_set</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">graph</span><span class="p">,</span> <span class="n">orig</span><span class="p">,</span> <span class="n">dest</span><span class="p">,</span> <span class="n">idx</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">value</span><span class="p">):</span>
<span class="sd">"""Set this key of this edge to this value."""</span>
<span class="k">if</span> <span class="p">(</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="p">:</span>
<span class="k">raise</span> <span class="n">TimeError</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="o">.</span><span class="n">add</span><span class="p">((</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">))</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_edgevals2set</span><span class="o">.</span><span class="n">append</span><span class="p">(</span>
<span class="p">(</span><span class="n">graph</span><span class="p">,</span> <span class="n">orig</span><span class="p">,</span> <span class="n">dest</span><span class="p">,</span> <span class="n">idx</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">,</span> <span class="n">value</span><span class="p">)</span>
<span class="p">)</span></div>
<span class="k">def</span> <span class="nf">edge_val_del_time</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_edge_val</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'edge_val_del_time'</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_btts</span><span class="o">.</span><span class="n">discard</span><span class="p">((</span><span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">))</span>
<span class="k">def</span> <span class="nf">plans_dump</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'plans_dump'</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">plans_insert</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">plan_id</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'plans_insert'</span><span class="p">,</span> <span class="n">plan_id</span><span class="p">,</span> <span class="n">branch</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">plans_insert_many</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">many</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sqlmany</span><span class="p">(</span><span class="s1">'plans_insert'</span><span class="p">,</span> <span class="o">*</span><span class="n">many</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">plan_ticks_insert</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">plan_id</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'plan_ticks_insert'</span><span class="p">,</span> <span class="n">plan_id</span><span class="p">,</span> <span class="n">turn</span><span class="p">,</span> <span class="n">tick</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">plan_ticks_insert_many</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">many</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sqlmany</span><span class="p">(</span><span class="s1">'plan_ticks_insert'</span><span class="p">,</span> <span class="o">*</span><span class="n">many</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">plan_ticks_dump</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">sql</span><span class="p">(</span><span class="s1">'plan_ticks_dump'</span><span class="p">)</span>
<div class="viewcode-block" id="QueryEngine.initdb"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.initdb">[docs]</a> <span class="k">def</span> <span class="nf">initdb</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""Create tables and indices as needed."""</span>
<span class="k">if</span> <span class="nb">hasattr</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="s1">'alchemist'</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">alchemist</span><span class="o">.</span><span class="n">meta</span><span class="o">.</span><span class="n">create_all</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">engine</span><span class="p">)</span>
<span class="k">if</span> <span class="s1">'branch'</span> <span class="ow">not</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">globl</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">globl</span><span class="p">[</span><span class="s1">'branch'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'trunk'</span>
<span class="k">if</span> <span class="s1">'rev'</span> <span class="ow">not</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">globl</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">globl</span><span class="p">[</span><span class="s1">'rev'</span><span class="p">]</span> <span class="o">=</span> <span class="mi">0</span>
<span class="k">return</span>
<span class="kn">from</span> <span class="nn">sqlite3</span> <span class="kn">import</span> <span class="n">OperationalError</span>
<span class="n">cursor</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">connection</span><span class="o">.</span><span class="n">cursor</span><span class="p">()</span>
<span class="k">try</span><span class="p">:</span>
<span class="n">cursor</span><span class="o">.</span><span class="n">execute</span><span class="p">(</span><span class="s1">'SELECT * FROM global;'</span><span class="p">)</span>
<span class="k">except</span> <span class="n">OperationalError</span><span class="p">:</span>
<span class="n">cursor</span><span class="o">.</span><span class="n">execute</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">strings</span><span class="p">[</span><span class="s1">'create_global'</span><span class="p">])</span>
<span class="k">if</span> <span class="s1">'branch'</span> <span class="ow">not</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">globl</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">globl</span><span class="p">[</span><span class="s1">'branch'</span><span class="p">]</span> <span class="o">=</span> <span class="s1">'trunk'</span>
<span class="k">if</span> <span class="s1">'turn'</span> <span class="ow">not</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">globl</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">globl</span><span class="p">[</span><span class="s1">'turn'</span><span class="p">]</span> <span class="o">=</span> <span class="mi">0</span>
<span class="k">if</span> <span class="s1">'tick'</span> <span class="ow">not</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">globl</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">globl</span><span class="p">[</span><span class="s1">'tick'</span><span class="p">]</span> <span class="o">=</span> <span class="mi">0</span>
<span class="n">strings</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">strings</span>
<span class="k">for</span> <span class="n">table</span> <span class="ow">in</span> <span class="p">(</span>
<span class="s1">'branches'</span><span class="p">,</span>
<span class="s1">'turns'</span><span class="p">,</span>
<span class="s1">'graphs'</span><span class="p">,</span>
<span class="s1">'graph_val'</span><span class="p">,</span>
<span class="s1">'nodes'</span><span class="p">,</span>
<span class="s1">'node_val'</span><span class="p">,</span>
<span class="s1">'edges'</span><span class="p">,</span>
<span class="s1">'edge_val'</span><span class="p">,</span>
<span class="s1">'plans'</span><span class="p">,</span>
<span class="s1">'plan_ticks'</span><span class="p">,</span>
<span class="s1">'keyframes'</span>
<span class="p">):</span>
<span class="k">try</span><span class="p">:</span>
<span class="n">cursor</span><span class="o">.</span><span class="n">execute</span><span class="p">(</span><span class="s1">'SELECT * FROM '</span> <span class="o">+</span> <span class="n">table</span> <span class="o">+</span> <span class="s1">';'</span><span class="p">)</span>
<span class="k">except</span> <span class="n">OperationalError</span><span class="p">:</span>
<span class="n">cursor</span><span class="o">.</span><span class="n">execute</span><span class="p">(</span><span class="n">strings</span><span class="p">[</span><span class="s1">'create_'</span> <span class="o">+</span> <span class="n">table</span><span class="p">])</span></div>
<div class="viewcode-block" id="QueryEngine.flush"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.flush">[docs]</a> <span class="k">def</span> <span class="nf">flush</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""Put all pending changes into the SQL transaction."""</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_nodes</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_edges</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_graph_val</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_node_val</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_flush_edge_val</span><span class="p">()</span></div>
<div class="viewcode-block" id="QueryEngine.commit"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.commit">[docs]</a> <span class="k">def</span> <span class="nf">commit</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""Commit the transaction"""</span>
<span class="bp">self</span><span class="o">.</span><span class="n">flush</span><span class="p">()</span>
<span class="k">if</span> <span class="nb">hasattr</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="s1">'transaction'</span><span class="p">)</span> <span class="ow">and</span> <span class="bp">self</span><span class="o">.</span><span class="n">transaction</span><span class="o">.</span><span class="n">is_active</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">transaction</span><span class="o">.</span><span class="n">commit</span><span class="p">()</span>
<span class="k">elif</span> <span class="nb">hasattr</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="s1">'connection'</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">connection</span><span class="o">.</span><span class="n">commit</span><span class="p">()</span></div>
<div class="viewcode-block" id="QueryEngine.close"><a class="viewcode-back" href="../../../LiSE/index.html#LiSE.allegedb.QueryEngine.close">[docs]</a> <span class="k">def</span> <span class="nf">close</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="sd">"""Commit the transaction, then close the connection"""</span>
<span class="bp">self</span><span class="o">.</span><span class="n">commit</span><span class="p">()</span>
<span class="k">if</span> <span class="nb">hasattr</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="s1">'connection'</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">connection</span><span class="o">.</span><span class="n">close</span><span class="p">()</span></div></div>
</pre></div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="../../../index.html">LiSE</a></h1>
<h3>Navigation</h3>
<p class="caption"><span class="caption-text">Contents:</span></p>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../../manual.html">Introduction</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../LiSE/index.html">LiSE</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../../ELiDE/index.html">ELiDE</a></li>
</ul>
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="../../../index.html">Documentation overview</a><ul>
<li><a href="../../index.html">Module code</a><ul>
<li><a href="../allegedb.html">LiSE.allegedb</a><ul>
</ul></li>
</ul></li>
</ul></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3 id="searchlabel">Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="../../../search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" />
<input type="submit" value="Go" />
</form>
</div>
</div>
<script>$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
©Zachary Spector.
|
Powered by <a href="http://sphinx-doc.org/">Sphinx 3.4.3</a>
& <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.12</a>
</div>
</body>
</html> |
doc/app/classes/Country.html | sabcio/stizun | <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Class: Country</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
<script type="text/javascript">
// <![CDATA[
function popupCode( url ) {
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
}
function toggleCode( id ) {
if ( document.getElementById )
elem = document.getElementById( id );
else if ( document.all )
elem = eval( "document.all." + id );
else
return false;
elemStyle = elem.style;
if ( elemStyle.display != "block" ) {
elemStyle.display = "block"
} else {
elemStyle.display = "none"
}
return true;
}
// Make codeblocks hidden by default
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
// ]]>
</script>
</head>
<body>
<div id="classHeader">
<table class="header-table">
<tr class="top-aligned-row">
<td><strong>Class</strong></td>
<td class="class-name-in-header">Country</td>
</tr>
<tr class="top-aligned-row">
<td><strong>In:</strong></td>
<td>
<a href="../files/app/models/country_rb.html">
app/models/country.rb
</a>
<br />
</td>
</tr>
<tr class="top-aligned-row">
<td><strong>Parent:</strong></td>
<td>
ActiveRecord::Base
</td>
</tr>
</table>
</div>
<!-- banner header -->
<div id="bodyContent">
<div id="contextContent">
</div>
<div id="method-list">
<h3 class="section-bar">Methods</h3>
<div class="name-list">
<a href="#M000049">to_s</a>
</div>
</div>
</div>
<!-- if includes -->
<div id="section">
<!-- if method_list -->
<div id="methods">
<h3 class="section-bar">Public Instance methods</h3>
<div id="method-M000049" class="method-detail">
<a name="M000049"></a>
<div class="method-heading">
<a href="#M000049" class="method-signature">
<span class="method-name">to_s</span><span class="method-args">()</span>
</a>
</div>
<div class="method-description">
<p><a class="source-toggle" href="#"
onclick="toggleCode('M000049-source');return false;">[Source]</a></p>
<div class="method-source-code" id="M000049-source">
<pre>
<span class="ruby-comment cmt"># File app/models/country.rb, line 4</span>
4: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_s</span>
5: <span class="ruby-keyword kw">return</span> <span class="ruby-identifier">name</span>
6: <span class="ruby-keyword kw">end</span>
</pre>
</div>
</div>
</div>
</div>
</div>
<div id="validator-badges">
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
</div>
</body>
</html> |
public/app/category/category-input.component.html | gjuhasz86/expense-proto | <div class="card card-block">
<form class="form-inline">
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control form-control-sm" id="name" name="name"
[(ngModel)]="cat.shortName" (keyup.enter)="saveUpdate(cat)">
</div>
<div class="form-group">
<label for="parentId">Parent</label>
<input type="text" class="form-control form-control-sm" id="parentId" name="parentId"
[(ngModel)]="cat.parentId" (keyup.enter)="saveUpdate(cat)">
</div>
<div class="form-group">
<label> </label>
<button class="btn btn-primary btn-sm" type="button"
(click)="saveUpdate(cat)">{{cat._id==null?"Save":"Update"}}
</button>
<button class="btn btn-danger btn-sm" type="button"
(click)="reset()">Reset
</button>
</div>
</form>
</div>
|
docs/versions/0.46/com.metreeca.tray/javadocs/help-doc.html | metreeca/metreeca | <!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_121) on Thu Jan 25 12:48:25 CET 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>API Help (Metreeca Resource Sharing Framework 0.46 API)</title>
<meta name="date" content="2018-01-25">
<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="API Help (Metreeca Resource Sharing Framework 0.46 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="index-all.html">Index</a></li>
<li class="navBarCell1Rev">Help</li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?help-doc.html" target="_top">Frames</a></li>
<li><a href="help-doc.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">How This API Document Is Organized</h1>
<div class="subTitle">This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.</div>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<h2>Overview</h2>
<p>The <a href="overview-summary.html">Overview</a> page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.</p>
</li>
<li class="blockList">
<h2>Package</h2>
<p>Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:</p>
<ul>
<li>Interfaces (italic)</li>
<li>Classes</li>
<li>Enums</li>
<li>Exceptions</li>
<li>Errors</li>
<li>Annotation Types</li>
</ul>
</li>
<li class="blockList">
<h2>Class/Interface</h2>
<p>Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:</p>
<ul>
<li>Class inheritance diagram</li>
<li>Direct Subclasses</li>
<li>All Known Subinterfaces</li>
<li>All Known Implementing Classes</li>
<li>Class/interface declaration</li>
<li>Class/interface description</li>
</ul>
<ul>
<li>Nested Class Summary</li>
<li>Field Summary</li>
<li>Constructor Summary</li>
<li>Method Summary</li>
</ul>
<ul>
<li>Field Detail</li>
<li>Constructor Detail</li>
<li>Method Detail</li>
</ul>
<p>Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</p>
</li>
<li class="blockList">
<h2>Annotation Type</h2>
<p>Each annotation type has its own separate page with the following sections:</p>
<ul>
<li>Annotation Type declaration</li>
<li>Annotation Type description</li>
<li>Required Element Summary</li>
<li>Optional Element Summary</li>
<li>Element Detail</li>
</ul>
</li>
<li class="blockList">
<h2>Enum</h2>
<p>Each enum has its own separate page with the following sections:</p>
<ul>
<li>Enum declaration</li>
<li>Enum description</li>
<li>Enum Constant Summary</li>
<li>Enum Constant Detail</li>
</ul>
</li>
<li class="blockList">
<h2>Use</h2>
<p>Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.</p>
</li>
<li class="blockList">
<h2>Tree (Class Hierarchy)</h2>
<p>There is a <a href="overview-tree.html">Class Hierarchy</a> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.</p>
<ul>
<li>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.</li>
<li>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</li>
</ul>
</li>
<li class="blockList">
<h2>Deprecated API</h2>
<p>The <a href="deprecated-list.html">Deprecated API</a> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</p>
</li>
<li class="blockList">
<h2>Index</h2>
<p>The <a href="index-all.html">Index</a> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</p>
</li>
<li class="blockList">
<h2>Prev/Next</h2>
<p>These links take you to the next or previous class, interface, package, or related page.</p>
</li>
<li class="blockList">
<h2>Frames/No Frames</h2>
<p>These links show and hide the HTML frames. All pages are available with or without frames.</p>
</li>
<li class="blockList">
<h2>All Classes</h2>
<p>The <a href="allclasses-noframe.html">All Classes</a> link shows all classes and interfaces except non-static nested types.</p>
</li>
<li class="blockList">
<h2>Serialized Form</h2>
<p>Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.</p>
</li>
<li class="blockList">
<h2>Constant Field Values</h2>
<p>The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.</p>
</li>
</ul>
<span class="emphasizedPhrase">This help file applies to API documentation generated using the standard doclet.</span></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>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="index-all.html">Index</a></li>
<li class="navBarCell1Rev">Help</li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?help-doc.html" target="_top">Frames</a></li>
<li><a href="help-doc.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2013–2018 <a href="https://www.metreeca.com/">Metreeca</a>. All rights reserved.</small></p>
</body>
</html>
|
codefett/common/templates/common/base.html | Rulox/codefett | <!DOCTYPE html>
{% load staticfiles i18n %}
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeFett - {% block title %}{% endblock title %}</title>
<link rel="stylesheet" href="{% static 'css/main.css' %}" />
<link href='https://fonts.googleapis.com/css?family=Nunito:400,700,300' rel='stylesheet' type='text/css'>
<link rel="apple-touch-icon" sizes="57x57" href="{% static 'images/favicon' %}/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="{% static 'images/favicon' %}/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="{% static 'images/favicon' %}/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="{% static 'images/favicon' %}/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="{% static 'images/favicon' %}/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="{% static 'images/favicon' %}/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="{% static 'images/favicon' %}/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="{% static 'images/favicon' %}/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'images/favicon' %}/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="{% static 'images/favicon' %}/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'images/favicon' %}/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="{% static 'images/favicon' %}/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'images/favicon' %}/favicon-16x16.png">
<link rel="manifest" href="{% static 'images/favicon' %}/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
{% block extra_head %}{% endblock extra_head %}
</head>
<body>
<div class="cf-body">
{% block body %}
{% endblock body %}
</div>
<script type="text/javascript" src="{% static 'js/bundle.js' %}"></script>
{% block extra_body %}
{% endblock extra_body %}
</body>
</html>
|
docs/api_reference/STL/stldb_set_base_iteratordb_set_base_iterator.html | zheguang/BerkeleyDB | <?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_set_base_iterator</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++ Standard Template Library API Reference" />
<link rel="up" href="db_set_base_iterator.html" title="Chapter 18. Db_set_base_iterator" />
<link rel="prev" href="db_set_base_iterator.html" title="Chapter 18. Db_set_base_iterator" />
<link rel="next" href="stldb_set_base_iteratoroperator_incr.html" title="operator++" />
</head>
<body>
<div xmlns="" class="navheader">
<div class="libver">
<p>Library Version 12.1.6.1</p>
</div>
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">db_set_base_iterator</th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="db_set_base_iterator.html">Prev</a> </td>
<th width="60%" align="center">Chapter 18.
Db_set_base_iterator </th>
<td width="20%" align="right"> <a accesskey="n" href="stldb_set_base_iteratoroperator_incr.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="stldb_set_base_iteratordb_set_base_iterator"></a>db_set_base_iterator</h2>
</div>
</div>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="stldb_set_base_iteratordb_set_base_iterator_details"></a>Function Details</h3>
</div>
</div>
</div>
<pre class="programlisting">
db_set_base_iterator(db_container *powner, u_int32_t b_bulk_retrieval=0,
bool brmw=false, bool directdbget=true,
bool b_read_only=false)
</pre>
<p>Constructor. </p>
<div class="sect3" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h4 class="title"><a id="idp945664"></a>Parameters</h4>
</div>
</div>
</div>
<div class="sect4" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h5 class="title"><a id="idp947416"></a>b_bulk_retrieval</h5>
</div>
</div>
</div>
<p>The bulk read buffer size. 0 means bulk read disabled. </p>
</div>
<div class="sect4" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h5 class="title"><a id="idp949360"></a>brmw</h5>
</div>
</div>
</div>
<p>Whether set DB_RMW flag in underlying cursor. </p>
</div>
<div class="sect4" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h5 class="title"><a id="idp949680"></a>powner</h5>
</div>
</div>
</div>
<p>The container which creates this iterator. </p>
</div>
<div class="sect4" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h5 class="title"><a id="idp950000"></a>directdbget</h5>
</div>
</div>
</div>
<p>Whether do direct database get rather than using key/data values cached in the iterator whenever read. </p>
</div>
<div class="sect4" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h5 class="title"><a id="idp950432"></a>b_read_only</h5>
</div>
</div>
</div>
<p>Whether open a read only cursor. Only effective when using Berkeley DB Concurrent Data Store. </p>
</div>
</div>
<pre class="programlisting">
db_set_base_iterator()
</pre>
<p>Default constructor, dose not create the cursor for now. </p>
<pre class="programlisting">
db_set_base_iterator(const db_set_base_iterator &s)
</pre>
<p>Copy constructor. </p>
<div class="sect3" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h4 class="title"><a id="idp951176"></a>Parameters</h4>
</div>
</div>
</div>
<div class="sect4" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h5 class="title"><a id="idp951368"></a>s</h5>
</div>
</div>
</div>
<p>The other iterator of the same type to initialize this. </p>
</div>
</div>
<pre class="programlisting">
db_set_base_iterator(const base &bo)
</pre>
<p>Base copy constructor. </p>
<div class="sect3" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h4 class="title"><a id="idp944944"></a>Parameters</h4>
</div>
</div>
</div>
<div class="sect4" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h5 class="title"><a id="idp952336"></a>bo</h5>
</div>
</div>
</div>
<p>Initialize from a base class iterator. </p>
</div>
</div>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="idp919904"></a>Group: Constructors and destructor</h3>
</div>
</div>
</div>
<p>Do not use these constructors to create iterators, but call db_set::begin() const or db_multiset::begin() const to create valid iterators. </p>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="idp917056"></a>Class</h3>
</div>
</div>
</div>
<p>
<a class="link" href="db_set_base_iterator.html" title="Chapter 18. Db_set_base_iterator">db_set_base_iterator</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_set_base_iterator.html">Prev</a> </td>
<td width="20%" align="center">
<a accesskey="u" href="db_set_base_iterator.html">Up</a>
</td>
<td width="40%" align="right"> <a accesskey="n" href="stldb_set_base_iteratoroperator_incr.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">Chapter 18.
Db_set_base_iterator </td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> operator++</td>
</tr>
</table>
</div>
</body>
</html>
|
themes/courses.labster.com/lms/templates/instructor/instructor_dashboard_2/membership.html | Livit/Livit.Learn.EdX | <%namespace name='static' file='/static_content.html'/>
<%page args="section_data"/>
<%!
from django.utils.translation import ugettext as _
from courseware.courses import get_studio_url
from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_user_partition
%>
<script type="text/template" id="member-list-widget-template">
<div class="member-list-widget">
<div class="header">
<div class="title"> {{title}} </div>
</div>
<div class="info"> {{info}} </div>
<div class="bottom-bar">
<label>
<span class="label-text sr">{{add_placeholder}}</span>
<input type="text" id="add-field" name="add-field" class="add-field" placeholder="{{add_placeholder}}">
</label>
<input type="button" name="add" class="add" value="{{add_btn_label}}">
</div>
<div class="member-list">
<table>
<thead>
<tr>
{{#labels}}
<th class="label" scope="column">{{.}}</th>
{{/labels}}
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="bottom-bar">
<label>
<span class="label-text sr">{{add_placeholder}}</span>
<input type="text" id="add-field" name="add-field" class="add-field" placeholder="{{add_placeholder}}">
</label>
<input type="button" name="add" class="add" value="{{add_btn_label}}">
</div>
</div>
</script>
<fieldset class="batch-enrollment membership-section">
<legend id="heading-batch-enrollment" class="hd hd-3">${_("Batch Enrollment")}</legend>
<label>
${_("Enter email addresses and/or usernames separated by new lines or commas.")}
${_("You will not get notification for emails that bounce, so please double-check spelling.")}
<textarea rows="6" name="student-ids" placeholder="${_("Email Addresses/Usernames")}" spellcheck="false"></textarea>
</label>
<input type="hidden" id="is_course_white_label" value="${section_data['is_white_label']}">
% if section_data['is_white_label']:
<label>
${_("Enter the reason why the students are to be manually enrolled or unenrolled.")}
${_("This cannot be left blank and will be recorded and presented in Enrollment Reports.")}
${_("Therefore, please give enough detail to account for this action.")}
<textarea rows="2" id="reason-field-id" name="reason-field" placeholder="${_('Reason')}" spellcheck="false"></textarea>
</label>
%endif
<div class="enroll-option">
<label class="has-hint">
<input type="checkbox" name="auto-enroll" id="auto-enroll" value="Auto-Enroll" checked="yes" aria-describedby="heading-batch-enrollment">
<span class="label-text">${_("Auto Enroll")}</span>
<div class="hint auto-enroll-hint">
<span class="hint-caret"></span>
<p id="auto-enroll-tip">
${_("If this option is <em>checked</em>, users who have not yet registered for {platform_name} will be automatically enrolled.").format(platform_name=settings.PLATFORM_NAME)}
${_("If this option is left <em>unchecked</em>, users who have not yet registered for {platform_name} will not be enrolled, but will be allowed to enroll once they make an account.").format(platform_name=settings.PLATFORM_NAME)}
<br /><br />
${_("Checking this box has no effect if 'Unenroll' is selected.")}
</p>
</div>
</label>
</div>
<div class="enroll-option">
<label class="has-hint">
<input type="checkbox" name="email-students" id="email-students" value="Notify-students-by-email" checked="yes" aria-describedby="heading-batch-enrollment">
<span class="label-text">${_("Notify users by email")}</span>
<div class="hint email-students-hint">
<span class="hint-caret"></span>
<p id="email-students-tip">
${_("If this option is <em>checked</em>, users will receive an email notification.")}
</p>
</div>
</label>
</div>
<div>
<input type="button" name="enrollment-button" class="enrollment-button" value="${_("Enroll")}" data-endpoint="${ section_data['enroll_button_url'] }" data-action="enroll" >
<input type="button" name="enrollment-button" class="enrollment-button" value="${_("Unenroll")}" data-endpoint="${ section_data['unenroll_button_url'] }" data-action="unenroll" >
</div>
<div class="request-response"></div>
<div class="request-response-error"></div>
</fieldset>
%if static.get_value('ALLOW_AUTOMATED_SIGNUPS', settings.FEATURES.get('ALLOW_AUTOMATED_SIGNUPS', False)):
<hr class="divider" />
<div class="auto_enroll auto_enroll_csv">
<h3 class="hd hd-3">${_("Register/Enroll Students")}</h3>
<p>${_("To register and enroll a list of users in this course, choose a CSV file that contains the following columns in this exact order: email, username, name, and country. Please include one student per row and do not include any headers, footers, or blank lines.")}</p>
<form id="student-auto-enroll-form" method="post" action="${ section_data['upload_student_csv_button_url'] }" enctype="multipart/form-data">
<div class="customBrowseBtn">
<label for="browseFile" class="sr">${_("Upload a CSV for bulk enrollment")}</label>
<input disabled="disabled" id="browseFile" placeholder="choose file" />
<div class="file-browse btn btn-primary">
<span class="browse"> Browse </span>
<label for="browseBtn" class="sr">${_("Upload a CSV for bulk enrollment")}</label>
<input class="file_field" id="browseBtn" name="students_list" type="file" accept=".csv"/>
</div>
</div>
<button type="submit" name="enrollment_signup_button">${_("Upload CSV")}</button>
<input type="hidden" name="csrfmiddlewaretoken" value="${ csrf_token }">
</form>
<div class="results"></div>
</div>
%endif
<hr class="divider" />
%if section_data['access']['instructor']:
<fieldset class="batch-beta-testers membership-section">
<legend id="heading-batch-beta-testers" class="hd hd-3">${_("Batch Beta Tester Addition")}</legend>
<label>
${_("Enter email addresses and/or usernames separated by new lines or commas.")}<br/>
${_("Note: Users must have an activated {platform_name} account before they can be enrolled as beta testers.").format(platform_name=settings.PLATFORM_NAME)}
<textarea rows="6" cols="50" name="student-ids-for-beta" placeholder="${_("Email Addresses/Usernames")}" spellcheck="false"></textarea>
</label>
<div class="enroll-option">
<label class="has-hint">
<input type="checkbox" name="auto-enroll-beta" id="auto-enroll-beta" value="Auto-Enroll" checked="yes" aria-describedby="heading-batch-beta-testers">
<span class="label-text">${_("Auto Enroll")}</span>
<div class="hint auto-enroll-beta-hint">
<span class="hint-caret"></span>
<p id="auto-enroll-beta-tip">
${_("If this option is <em>checked</em>, users who have not enrolled in your course will be automatically enrolled.")}
<br /><br />
${_("Checking this box has no effect if 'Remove beta testers' is selected.")}
</p>
</div>
</label>
</div>
<div class="enroll-option">
<label class="has-hint">
<input type="checkbox" name="email-students-beta" id="email-students-beta" value="Notify-students-by-email" checked="yes" aria-describedby="heading-batch-beta-testers">
<span class="label-text">${_("Notify users by email")}</span>
<div class="hint email-students-beta-hint">
<span class="hint-caret"></span>
<p id="email-students-beta-tip">
${_("If this option is <em>checked</em>, users will receive an email notification.")}
</p>
</div>
</label>
</div>
<div>
<input type="button" name="beta-testers" class="enrollment-button" value="${_("Add beta testers")}" data-endpoint="${ section_data['modify_beta_testers_button_url'] }" data-action="add" >
<input type="button" name="beta-testers" class="enrollment-button" value="${_("Remove beta testers")}" data-endpoint="${ section_data['modify_beta_testers_button_url'] }" data-action="remove" >
</div>
<div class="request-response"></div>
<div class="request-response-error"></div>
</fieldset>
<hr class="divider" />
%endif
<div class="member-lists-management membership-section" aria-live="polite">
## Translators: an "Administration List" is a list, such as Course Staff, that users can be added to.
<h3 class="hd hd-3">${_("Course Team Management")}</h3>
<div class="request-response-error"></div>
<div class="wrapper-member-select">
## Translators: an "Administrator Group" is a group, such as Course Staff, that users can be added to.
<label>${_("Select a course team role:")}
<select id="member-lists-selector" class="member-lists-selector">
<option> ${_("Getting available lists...")} </option>
</select>
</label>
</div>
%if not section_data['access']['instructor']:
<p>
${_("Staff cannot modify these lists. To manage course team membership, "
"a course Admin must give you the Admin role to add Staff or Beta Testers, "
"or the Discussion Admin role to add discussion moderators and TAs.")}
</p>
%endif
%if section_data['access']['instructor']:
<div class="auth-list-container"
data-rolename="staff"
data-display-name="${_("Staff")}"
data-info-text="
${_("Course team members with the Staff role help you manage your course. "
"Staff can enroll and unenroll learners, as well as modify their grades and "
"access all course data. Staff also have access to your course in Studio and "
"Insights. You can only give course team roles to enrolled users.")}"
data-list-endpoint="${ section_data['list_course_role_members_url'] }"
data-modify-endpoint="${ section_data['modify_access_url'] }"
data-add-button-label="${_("Add Staff")}"
></div>
## Note that "Admin" is identified as "Instructor" in the Django admin panel.
<div class="auth-list-container"
data-rolename="instructor"
data-display-name="${_("Admin")}"
data-info-text="
${_("Course team members with the Admin role help you manage your course. "
"They can do all of the tasks that Staff can do, and can also add and "
"remove the Staff and Admin roles, discussion moderation roles, and the "
"beta tester role to manage course team membership. You can only give "
"course team roles to enrolled users.")}"
data-list-endpoint="${ section_data['list_course_role_members_url'] }"
data-modify-endpoint="${ section_data['modify_access_url'] }"
data-add-button-label="${_("Add Admin")}"
>
</div>
<div class="auth-list-container"
data-rolename="beta"
data-display-name="${_("Beta Testers")}"
data-info-text="
${_("Beta Testers can see course content before other learners. "
"They can make sure that the content works, but have no additional "
"privileges. You can only give course team roles to enrolled users.")}"
data-list-endpoint="${ section_data['list_course_role_members_url'] }"
data-modify-endpoint="${ section_data['modify_access_url'] }"
data-add-button-label="${_("Add Beta Tester")}"
></div>
<div class="auth-list-container"
data-rolename="Administrator"
data-display-name="${_("Discussion Admins")}"
data-info-text="
${_("Discussion Admins can edit or delete any post, clear misuse flags, close "
"and re-open threads, endorse responses, and see posts from all cohorts. "
"Their posts are marked as 'staff'. They can also add and remove the "
"discussion moderation roles to manage course team membership. You can "
"only give course team roles to enrolled users.")}"
data-list-endpoint="${ section_data['list_forum_members_url'] }"
data-modify-endpoint="${ section_data['update_forum_role_membership_url'] }"
data-add-button-label="${_("Add Discussion Admin")}"
></div>
%endif
%if section_data['access']['instructor'] or section_data['access']['forum_admin']:
<div class="auth-list-container"
data-rolename="Moderator"
data-display-name="${_("Discussion Moderators")}"
data-info-text="
${_("Discussion Moderators can edit or delete any post, clear misuse flags, close "
"and re-open threads, endorse responses, and see posts from all cohorts. "
"Their posts are marked as 'staff'. They cannot manage course team membership by "
"adding or removing discussion moderation roles. You can only give course team "
"roles to enrolled users.")}"
data-list-endpoint="${ section_data['list_forum_members_url'] }"
data-modify-endpoint="${ section_data['update_forum_role_membership_url'] }"
data-add-button-label="${_("Add Moderator")}"
></div>
<div class="auth-list-container"
data-rolename="Community TA"
data-display-name="${_("Discussion Community TAs")}"
data-info-text="
${_("Community TA's are members of the community whom you deem particularly "
"helpful on the discussion boards. They can edit or delete any post, clear "
"misuse flags, close and re-open threads, endorse responses, and see posts from "
"all cohorts. Their posts are marked as 'Community TA'. You can only give course "
"team roles to enrolled users.")}"
data-list-endpoint="${ section_data['list_forum_members_url'] }"
data-modify-endpoint="${ section_data['update_forum_role_membership_url'] }"
data-add-button-label="${_("Add Community TA")}"
></div>
%endif
%if section_data['access']['instructor'] and section_data['ccx_is_enabled']:
<div class="auth-list-container"
data-rolename="ccx_coach"
data-display-name="${_("CCX Coaches")}"
data-info-text="
${_("CCX Coaches are able to create their own Custom Courses "
"based on this course, which they can use to provide personalized "
"instruction to their own students based in this course material.")}"
data-list-endpoint="${section_data['list_course_role_members_url']}"
data-modify-endpoint="${section_data['modify_access_url']}"
data-add-button-label="${_("Add CCX Coach")}"
></div>
%endif
</div>
|
report/html/com/rapidminer/operator/learner/functions/kernel/RVMModel.html | cm-is-dog/rapidminer-studio-core | <!DOCTYPE html>
<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"/>
<link rel="SHORTCUT ICON" href="../../../../../../img/clover.ico" />
<link rel="stylesheet" href="../../../../../../aui/css/aui.min.css" media="all"/>
<link rel="stylesheet" href="../../../../../../aui/css/aui-experimental.min.css" media="all"/>
<!--[if IE 9]><link rel="stylesheet" href="../../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]-->
<style type="text/css" media="all">
@import url('../../../../../../style.css');
@import url('../../../../../../tree.css');
</style>
<script src="../../../../../../jquery-1.8.3.min.js" type="text/javascript"></script>
<script src="../../../../../../aui/js/aui.min.js" type="text/javascript"></script>
<script src="../../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script>
<script src="../../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script>
<script src="../../../../../../package-nodes-tree.js" type="text/javascript"></script>
<script src="../../../../../../clover-tree.js" type="text/javascript"></script>
<script src="../../../../../../clover.js" type="text/javascript"></script>
<script src="../../../../../../clover-descriptions.js" type="text/javascript"></script>
<script src="../../../../../../cloud.js" type="text/javascript"></script>
<title>rapidminer-studio-core 转换结果 </title>
</head>
<body onload="onLoad('rapidminer-studio-core 转换结果 : com.rapidminer.operator.learner.functions.kernel.RVMModel.java')">
<div id="page">
<header id="header" role="banner">
<nav class="aui-header aui-dropdown2-trigger-group" role="navigation">
<div class="aui-header-inner">
<div class="aui-header-primary">
<h1 id="logo" class="aui-header-logo aui-header-logo-clover">
<a href="http://www.atlassian.com/clover" title="Open Atlassian Clover home page"><span class="aui-header-logo-device">Clover</span></a>
</h1>
</div>
<div class="aui-header-secondary">
<ul class="aui-nav">
<li id="system-help-menu">
<a class="aui-nav-link" title="Open online Clover documentation" target="_blank"
href="https://confluence.atlassian.com/display/CLOVER/Clover+Documentation+Home">
<span class="aui-icon aui-icon-small aui-iconfont-help"> Help</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="aui-page-panel">
<div class="aui-page-panel-inner">
<div class="aui-page-panel-nav aui-page-panel-nav-clover">
<div class="aui-page-header-inner" style="margin-bottom: 20px;">
<div class="aui-page-header-image">
<div class="aui-avatar aui-avatar-large aui-avatar-project">
<div class="aui-avatar-inner">
<img src="../../../../../../img/clover_logo_large.png" alt="Clover icon"/>
</div>
</div>
</div>
<div class="aui-page-header-main" >
<h1>
rapidminer-studio-core 转换结果
</h1>
</div>
</div>
<nav class="aui-navgroup aui-navgroup-vertical">
<div class="aui-navgroup-inner">
<ul class="aui-nav">
<li class="">
<a href="../../../../../../dashboard.html">Project overview</a>
</li>
</ul>
<div class="aui-nav-heading packages-nav-heading">
<strong>Packages</strong>
</div>
<div class="aui-nav project-packages">
<form method="get" action="#" class="aui package-filter-container">
<input type="text" autocomplete="off" class="package-filter text"
placeholder="Type to filter packages..." name="package-filter" id="package-filter"
title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/>
</form>
<p class="package-filter-no-results-message hidden">
<small>No results found.</small>
</p>
<div class="packages-tree-wrapper" data-root-relative="../../../../../../" data-package-name="com.rapidminer.operator.learner.functions.kernel">
<div class="packages-tree-container"></div>
<div class="clover-packages-lozenges"></div>
</div>
</div>
</div>
</nav> </div>
<section class="aui-page-panel-content">
<div class="aui-page-panel-content-clover">
<ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../../dashboard.html">Project Clover database 星期二 九月 5 2017 16:40:29 CST</a></li>
<li><a href="pkg-summary.html"> Package com.rapidminer.operator.learner.functions.kernel</a></li>
</ol>
<h1 class="aui-h2-clover">
File RVMModel.java
</h1>
<div class="aui-message aui-message-warning">
<p class="title">
<strong>Evaluation License</strong>
</p>
<p>
This report was generated with an evaluation server license. <a href="http://www.atlassian.com/software/clover">Purchase Clover</a> or <a href="http://confluence.atlassian.com/x/JAgQCQ">configure your license.</a>
</p>
</div>
<div class="aui-tabs horizontal-tabs" id="tabs-file">
<div class="tabs-pane aui-tabs-pane-100-pcnt active-pane" id="tabs-file-source">
<div> </div>
<div style="display: table; width: 100%">
<div style="display: table-cell; ">
<div class="dashboard-widget">
<header class="dashboard-widget-header">
<h3>Code metrics</h3>
</header>
<div class="dashboard-widget-content">
<div id="td-header-stats" class="aui-item" style="display: ">
<div style="display: table">
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of branches in this file">Branches:</label></div>
<div class="stats-box-value">0</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of statements in this file">Statements:</label></div>
<div class="stats-box-value">0</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of methods in this file">Methods:</label></div>
<div class="stats-box-value">0</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of classes in this file">Classes:</label></div>
<div class="stats-box-value">1</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of lines of code in this file">LOC:</label></div>
<div class="stats-box-value">147</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of non-comment lines of code in this file">NCLOC:</label></div>
<div class="stats-box-value">101</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Cyclomatic complexity is the number of paths in this file">Total complexity:</label></div>
<div class="stats-box-value">0</div>
</div>
<div class="stats-box">
<div class="stats-box-label">
<label title="Complexity density is the complexity divided by the number of statements in this file">Complexity density:</label>
</div>
<div class="stats-box-value">-</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Number of statements per method.">Statements/Method:</label></div>
<div class="stats-box-value">-</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Number of methods per class.">Methods/Class:</label></div>
<div class="stats-box-value">0</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Complexity divided by the number of methods in this file">Average method complexity:</label></div>
<div class="stats-box-value">-</div>
</div>
</div>
<div class="subtle">
<small><strong>100%</strong> of code in this file is excluded from these metrics.</small>
<label class="aui-button aui-button-subtle" onclick="toggleStats('td-header-stats', 'td-filtered-header-stats');"
title="Include or exclude filtered elements from these statistics.">Remove Filter</label>
</div>
</div>
<div id="td-filtered-header-stats" class="aui-item" style="display: none">
<div style="display: table">
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of branches in this file">Branches:</label></div>
<div class="stats-box-value">10</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of statements in this file">Statements:</label></div>
<div class="stats-box-value">37</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of methods in this file">Methods:</label></div>
<div class="stats-box-value">14</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of classes in this file">Classes:</label></div>
<div class="stats-box-value">1</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of lines of code in this file">LOC:</label></div>
<div class="stats-box-value">147</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of non-comment lines of code in this file">NCLOC:</label></div>
<div class="stats-box-value">101</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Cyclomatic complexity is the number of paths in this file">Total complexity:</label></div>
<div class="stats-box-value">22</div>
</div>
<div class="stats-box">
<div class="stats-box-label">
<label title="Complexity density is the complexity divided by the number of statements in this file">Complexity density:</label>
</div>
<div class="stats-box-value">0.59</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Number of statements per method.">Statements/Method:</label></div>
<div class="stats-box-value">2.64</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Number of methods per class.">Methods/Class:</label></div>
<div class="stats-box-value">14</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Complexity divided by the number of methods in this file">Average method complexity:</label></div>
<div class="stats-box-value">1.57</div>
</div>
</div>
<div class="subtle">
<small>These metrics include <strong class='bold'>100%</strong> of code marked as filtered.</small>
<label class="aui-button aui-button-subtle" onclick="toggleStats('td-filtered-header-stats', 'td-header-stats');"
title="Include or exclude filtered elements from these statistics.">Apply Filter</label>
</div>
</div> </div>
</div>
</div>
</div>
<h2>Classes</h2>
<table class="aui aui-table-sortable">
<thead>
<tr> <th>Class</th>
<th>Line #</th>
<th class="">
<label title="The total number of statements.">Total Statements</label>
</th>
<th class="">
<label title="Cyclomatic complexity is a measure of the number of paths in your code.">Complexity</label>
</th>
<th class="">
<label title="The amount of code that was hit at least once during testing.">TOTAL Coverage</label>
</th>
<th>Actions</th>
</tr> </thead>
<tbody>
<tr> <td id="RVMModel">
<span><a href="#36" title="RVMModel" onclick="closeDialogAndScrollTo('dialog-RVMModel', '36');">RVMModel</a></span>
</td>
<td>36<a name="sl-36"></a></td>
<td class="">0</td>
<td class="">0</td>
<td class=""><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
<td><button data-dialog-id="dialog-RVMModel" class="aui-button aui-button-link dialog-show-button">Show methods</button></td>
</tr> </tbody>
</table>
<section role="dialog" id="dialog-RVMModel" class="aui-layer aui-dialog2 aui-dialog2-xlarge" aria-hidden="true">
<header class="aui-dialog2-header">
<h1 class="aui-dialog2-header-main">Class RVMModel</h1>
<div class="aui-dialog2-header-secondary">
<input id="dialog-RVMModel-method-filter" class="test-filter text" type="text" name="method-filter"
placeholder="Type to filter methods..." autocomplete="off"
onkeyup="filterMethods('dialog-RVMModel-methods-body', 'dialog-RVMModel-method-filter');"/>
</div>
</header>
<div class="aui-dialog2-content">
<table class="aui aui-table-sortable">
<thead>
<tr> <th id="RVMModel">
Class<br/> <span><a href="#36" title="RVMModel" onclick="closeDialogAndScrollTo('dialog-RVMModel', '36');">RVMModel</a></span>
</th>
<th>Line #<br/>36<a name="sl-36"></a></th>
<th class=""><label title="The total number of statements.">Total Statements</label><br/>0</th>
<th class=""><label title="Cyclomatic complexity is a measure of the number of paths in your code.">Complexity</label><br/>0</th>
<th class=""><label title="The amount of code that was hit at least once during testing.">TOTAL Coverage</label><br/><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></th>
</tr> </thead>
<tbody id="dialog-RVMModel-methods-body">
<tr id="RVMModel-1">
<td id="summary-44-2">
<span class="sortValue">RVMModel(ExampleSet,com.rapidminer.operator.learner.functions.kernel.rvm.Model)</span>
  <a href="?line=29#44" title="RVMModel(ExampleSet,com.rapidminer.operator.learner.functions.kernel.rvm.Model)" name="sl-44" onclick="closeDialogAndScrollTo('dialog-RVMModel', '44');">RVMModel(ExampleSet,com.rapidminer.operator.learner.functions.kernel.rvm.Model)</a>
</td>
<td align="right"><span class="sortValue">44</span>44</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-2">
<td id="summary-50-2">
<span class="sortValue">isClassificationModel() : boolean</span>
  <a href="?line=29#50" title="isClassificationModel() : boolean" name="sl-50" onclick="closeDialogAndScrollTo('dialog-RVMModel', '50');">isClassificationModel() : boolean</a>
</td>
<td align="right"><span class="sortValue">50</span>50</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-3">
<td id="summary-55-2">
<span class="sortValue">getAlpha(int) : double</span>
  <a href="?line=29#55" title="getAlpha(int) : double" name="sl-55" onclick="closeDialogAndScrollTo('dialog-RVMModel', '55');">getAlpha(int) : double</a>
</td>
<td align="right"><span class="sortValue">55</span>55</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-4">
<td id="summary-60-2">
<span class="sortValue">getBias() : double</span>
  <a href="?line=29#60" title="getBias() : double" name="sl-60" onclick="closeDialogAndScrollTo('dialog-RVMModel', '60');">getBias() : double</a>
</td>
<td align="right"><span class="sortValue">60</span>60</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-5">
<td id="summary-65-2">
<span class="sortValue">getSupportVector(int) : SupportVector</span>
  <a href="?line=29#65" title="getSupportVector(int) : SupportVector" name="sl-65" onclick="closeDialogAndScrollTo('dialog-RVMModel', '65');">getSupportVector(int) : SupportVector</a>
</td>
<td align="right"><span class="sortValue">65</span>65</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-6">
<td id="summary-70-2">
<span class="sortValue">getId(int) : String</span>
  <a href="?line=29#70" title="getId(int) : String" name="sl-70" onclick="closeDialogAndScrollTo('dialog-RVMModel', '70');">getId(int) : String</a>
</td>
<td align="right"><span class="sortValue">70</span>70</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-7">
<td id="summary-75-2">
<span class="sortValue">getNumberOfSupportVectors() : int</span>
  <a href="?line=29#75" title="getNumberOfSupportVectors() : int" name="sl-75" onclick="closeDialogAndScrollTo('dialog-RVMModel', '75');">getNumberOfSupportVectors() : int</a>
</td>
<td align="right"><span class="sortValue">75</span>75</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-8">
<td id="summary-80-2">
<span class="sortValue">getNumberOfAttributes() : int</span>
  <a href="?line=29#80" title="getNumberOfAttributes() : int" name="sl-80" onclick="closeDialogAndScrollTo('dialog-RVMModel', '80');">getNumberOfAttributes() : int</a>
</td>
<td align="right"><span class="sortValue">80</span>80</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-9">
<td id="summary-85-2">
<span class="sortValue">getAttributeValue(int,int) : double</span>
  <a href="?line=29#85" title="getAttributeValue(int,int) : double" name="sl-85" onclick="closeDialogAndScrollTo('dialog-RVMModel', '85');">getAttributeValue(int,int) : double</a>
</td>
<td align="right"><span class="sortValue">85</span>85</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-10">
<td id="summary-90-2">
<span class="sortValue">getClassificationLabel(int) : String</span>
  <a href="?line=29#90" title="getClassificationLabel(int) : String" name="sl-90" onclick="closeDialogAndScrollTo('dialog-RVMModel', '90');">getClassificationLabel(int) : String</a>
</td>
<td align="right"><span class="sortValue">90</span>90</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-11">
<td id="summary-95-2">
<span class="sortValue">getRegressionLabel(int) : double</span>
  <a href="?line=29#95" title="getRegressionLabel(int) : double" name="sl-95" onclick="closeDialogAndScrollTo('dialog-RVMModel', '95');">getRegressionLabel(int) : double</a>
</td>
<td align="right"><span class="sortValue">95</span>95</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-12">
<td id="summary-100-2">
<span class="sortValue">getFunctionValue(int) : double</span>
  <a href="?line=29#100" title="getFunctionValue(int) : double" name="sl-100" onclick="closeDialogAndScrollTo('dialog-RVMModel', '100');">getFunctionValue(int) : double</a>
</td>
<td align="right"><span class="sortValue">100</span>100</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-13">
<td id="summary-106-2">
<span class="sortValue">makeInputVector(Example) : double[]</span>
  <a href="?line=29#106" title="makeInputVector(Example) : double[]" name="sl-106" onclick="closeDialogAndScrollTo('dialog-RVMModel', '106');">makeInputVector(Example) : double[]</a>
</td>
<td align="right"><span class="sortValue">106</span>106</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> <tr id="RVMModel-14">
<td id="summary-115-2">
<span class="sortValue">performPrediction(ExampleSet,Attribute) : ExampleSet</span>
  <a href="?line=29#115" title="performPrediction(ExampleSet,Attribute) : ExampleSet" name="sl-115" onclick="closeDialogAndScrollTo('dialog-RVMModel', '115');">performPrediction(ExampleSet,Attribute) : ExampleSet</a>
</td>
<td align="right"><span class="sortValue">115</span>115</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> </tbody>
</table>
<div> </div>
</div>
<footer class="aui-dialog2-footer">
<div class="aui-dialog2-footer-actions">
<button class="aui-button aui-button-primary dialog-close-button"
data-dialog-id="dialog-RVMModel">Close</button>
</div>
<div class="aui-dialog2-footer-hint">Click on a class or a method name to jump to source.</div>
</footer>
</section>
<div> </div>
<h2>Contributing tests</h2>
<div class="aui-message">
<p>No tests hitting this source file were found.</p>
</div>
<h2>Source view</h2>
<div style="display: table; width: 100%;">
<div style="display: table-cell">
<button class="aui-button aui-button-link"
title="Toggles all methods in the source to be either expanded or collapsed."
onclick="toggleAllInlineMethods(this); return false;" id="method-expander">
Collapse all methods
</button>
</div>
<div style="display: table-cell">
<div style="text-align: right; margin-bottom: 10px">
<button class="aui-button aui-button-subtle" id="popupHelp">
<span class="aui-icon aui-icon-small aui-iconfont-help"></span> Show legend
</button>
<script>
AJS.InlineDialog(AJS.$("#popupHelp"), "helpDialog",
function(content, trigger, showPopup) {
content.css({"padding":"20px"}).html(SRC_FILE_LEGEND_TEXT);
showPopup();
return false;
},
{
width: 700, hideDelay: 60000
}
);
</script> </div>
</div>
</div>
<table cellspacing="0" cellpadding="0" class="srcView" width="100%">
<tbody> <tr id="l1">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=1#src-1">1</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-1" class="srcLine"><span class="comment">/**</span></span></td>
</tr>
<tr id="l2">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=2#src-2">2</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-2" class="srcLine"><span class="comment"> * Copyright (C) 2001-2017 by RapidMiner and the contributors</span></span></td>
</tr>
<tr id="l3">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=3#src-3">3</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-3" class="srcLine"><span class="comment"> * </span></span></td>
</tr>
<tr id="l4">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=4#src-4">4</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-4" class="srcLine"><span class="comment"> * Complete list of developers available at our web site:</span></span></td>
</tr>
<tr id="l5">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=5#src-5">5</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-5" class="srcLine"><span class="comment"> * </span></span></td>
</tr>
<tr id="l6">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=6#src-6">6</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-6" class="srcLine"><span class="comment"> * http://rapidminer.com</span></span></td>
</tr>
<tr id="l7">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=7#src-7">7</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-7" class="srcLine"><span class="comment"> * </span></span></td>
</tr>
<tr id="l8">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=8#src-8">8</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-8" class="srcLine"><span class="comment"> * This program is free software: you can redistribute it and/or modify it under the terms of the</span></span></td>
</tr>
<tr id="l9">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=9#src-9">9</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-9" class="srcLine"><span class="comment"> * GNU Affero General Public License as published by the Free Software Foundation, either version 3</span></span></td>
</tr>
<tr id="l10">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=10#src-10">10</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-10" class="srcLine"><span class="comment"> * of the License, or (at your option) any later version.</span></span></td>
</tr>
<tr id="l11">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=11#src-11">11</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-11" class="srcLine"><span class="comment"> * </span></span></td>
</tr>
<tr id="l12">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=12#src-12">12</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-12" class="srcLine"><span class="comment"> * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without</span></span></td>
</tr>
<tr id="l13">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=13#src-13">13</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-13" class="srcLine"><span class="comment"> * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span></span></td>
</tr>
<tr id="l14">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=14#src-14">14</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-14" class="srcLine"><span class="comment"> * Affero General Public License for more details.</span></span></td>
</tr>
<tr id="l15">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=15#src-15">15</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-15" class="srcLine"><span class="comment"> * </span></span></td>
</tr>
<tr id="l16">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=16#src-16">16</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-16" class="srcLine"><span class="comment"> * You should have received a copy of the GNU Affero General Public License along with this program.</span></span></td>
</tr>
<tr id="l17">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=17#src-17">17</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-17" class="srcLine"><span class="comment"> * If not, see http://www.gnu.org/licenses/.</span></span></td>
</tr>
<tr id="l18">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=18#src-18">18</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-18" class="srcLine"><span class="comment">*/</span></span></td>
</tr>
<tr id="l19">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=19#src-19">19</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-19" class="srcLine"><span class="keyword">package</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../operator/pkg-summary.html">operator</a>.<a href="../../../learner/pkg-summary.html">learner</a>.<a href="../../functions/pkg-summary.html">functions</a>.<a href="../kernel/pkg-summary.html">kernel</a>;</span></td>
</tr>
<tr id="l20">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=20#src-20">20</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-20" class="srcLine"></span></td>
</tr>
<tr id="l21">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=21#src-21">21</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-21" class="srcLine"><span class="keyword">import</span> java.util.Iterator;</span></td>
</tr>
<tr id="l22">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=22#src-22">22</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-22" class="srcLine"></span></td>
</tr>
<tr id="l23">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=23#src-23">23</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-23" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../example/pkg-summary.html">example</a>.<a href="../../../../../../com/rapidminer/example/Attribute.html#Attribute">Attribute</a>;</span></td>
</tr>
<tr id="l24">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=24#src-24">24</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-24" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../example/pkg-summary.html">example</a>.<a href="../../../../../../com/rapidminer/example/Example.html#Example">Example</a>;</span></td>
</tr>
<tr id="l25">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=25#src-25">25</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-25" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../example/pkg-summary.html">example</a>.<a href="../../../../../../com/rapidminer/example/ExampleSet.html#ExampleSet">ExampleSet</a>;</span></td>
</tr>
<tr id="l26">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=26#src-26">26</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-26" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../example/pkg-summary.html">example</a>.<a href="../../../../example/set/pkg-summary.html">set</a>.<a href="../../../../../../com/rapidminer/example/set/ExampleSetUtilities.html#ExampleSetUtilities">ExampleSetUtilities</a>;</span></td>
</tr>
<tr id="l27">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=27#src-27">27</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-27" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../operator/pkg-summary.html">operator</a>.<a href="../../../../../../com/rapidminer/operator/OperatorProgress.html#OperatorProgress">OperatorProgress</a>;</span></td>
</tr>
<tr id="l28">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=28#src-28">28</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-28" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../operator/pkg-summary.html">operator</a>.<a href="../../../../../../com/rapidminer/operator/ProcessStoppedException.html#ProcessStoppedException">ProcessStoppedException</a>;</span></td>
</tr>
<tr id="l29">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=29#src-29">29</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-29" class="srcLine"></span></td>
</tr>
<tr id="l30">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=30#src-30">30</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-30" class="srcLine"></span></td>
</tr>
<tr id="l31">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=31#src-31">31</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-31" class="srcLine"><span class="comment">/**</span></span></td>
</tr>
<tr id="l32">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=32#src-32">32</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-32" class="srcLine"><span class="comment"> * A model generated by the RVMLearner.</span></span></td>
</tr>
<tr id="l33">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=33#src-33">33</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-33" class="srcLine"><span class="comment"> *</span></span></td>
</tr>
<tr id="l34">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=34#src-34">34</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-34" class="srcLine"><span class="comment"> * </span><span class="javadoc">@author</span><span class="comment"> Piotr Kasprzak, Ingo Mierswa</span></span></td>
</tr>
<tr id="l35">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=35#src-35">35</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-35" class="srcLine"><span class="comment"> */</span></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="36" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-36' onclick="toggleInlineStats(this, 'inlinestats-36');"/>
<td align="center" valign="middle">
<table id="inlinestats-36" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-36'), 'inlinestats-36');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 0</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l36">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=36#src-36">36</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" id="id-36"><span class="spacer"></span><span id="src-36" class="srcLine"><span class="keyword">public</span> <span class="keyword">class</span> <a href="../../../../../../com/rapidminer/operator/learner/functions/kernel/RVMModel.html#RVMModel">RVMModel</a> <span class="keyword">extends</span> <a href="../../../../../../com/rapidminer/operator/learner/functions/kernel/KernelModel.html#KernelModel">KernelModel</a> {</span></td>
</tr>
<tr id="l37">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=37#src-37">37</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-37" class="srcLine"></span></td>
</tr>
<tr id="l38">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=38#src-38">38</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-38" class="srcLine"> <span class="keyword">private</span> <span class="keyword">static</span> <span class="keyword">final</span> <span class="keyword">long</span> serialVersionUID = -26935964796619097L;</span></td>
</tr>
<tr id="l39">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=39#src-39">39</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-39" class="srcLine"></span></td>
</tr>
<tr id="l40">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=40#src-40">40</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-40" class="srcLine"> <span class="keyword">private</span> <span class="keyword">static</span> <span class="keyword">final</span> <span class="keyword">int</span> OPERATOR_PROGRESS_STEPS = 5000;</span></td>
</tr>
<tr id="l41">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=41#src-41">41</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-41" class="srcLine"></span></td>
</tr>
<tr id="l42">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=42#src-42">42</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-42" class="srcLine"> <span class="keyword">private</span> com.rapidminer.operator.learner.functions.kernel.rvm.Model model = <span class="keyword">null</span>;</span></td>
</tr>
<tr id="l43">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=43#src-43">43</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-43" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="44" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-44' onclick="toggleInlineStats(this, 'inlinestats-44');"/>
<td align="center" valign="middle">
<table id="inlinestats-44" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-44'), 'inlinestats-44');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l44">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=44#src-44">44</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-44"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 44,48);" id="img-44" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-44" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor"> <span class="keyword">public</span> <a href="../../../../../../com/rapidminer/operator/learner/functions/kernel/RVMModel.html#RVMModel">RVMModel</a>(<a href="../../../../../../com/rapidminer/example/ExampleSet.html#ExampleSet">ExampleSet</a> exampleSet, com.rapidminer.operator.learner.functions.kernel.rvm.Model model) {</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-44'), 44,48);" id="e44" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l45">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=45#src-45">45</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-45" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor"> <span class="keyword">super</span>(exampleSet, <a href="../../../../../../com/rapidminer/example/set/ExampleSetUtilities.html#ExampleSetUtilities">ExampleSetUtilities</a>.SetsCompareOption.ALLOW_SUPERSET,</span></span></td>
</tr>
<tr id="l46">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=46#src-46">46</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-46" class="srcLine"> <a href="../../../../../../com/rapidminer/example/set/ExampleSetUtilities.html#ExampleSetUtilities">ExampleSetUtilities</a>.TypesCompareOption.ALLOW_SAME_PARENTS);</span></td>
</tr>
<tr id="l47">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=47#src-47">47</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-47" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor"> <span class="keyword">this</span>.model = model;</span></span></td>
</tr>
<tr id="l48">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=48#src-48">48</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-48" class="srcLine"> }</span></td>
</tr>
<tr id="l49">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=49#src-49">49</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-49" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="50" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-50' onclick="toggleInlineStats(this, 'inlinestats-50');"/>
<td align="center" valign="middle">
<table id="inlinestats-50" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-50'), 'inlinestats-50');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l50">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=50#src-50">50</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-50"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 50,53);" id="img-50" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-50" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, property"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-50'), 50,53);" id="e50" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l51">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=51#src-51">51</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-51" class="srcLine"> <span class="keyword">public</span> <span class="keyword">boolean</span> isClassificationModel() {</span></td>
</tr>
<tr id="l52">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=52#src-52">52</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-52" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, property"> <span class="keyword">return</span> getLabel().isNominal();</span></span></td>
</tr>
<tr id="l53">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=53#src-53">53</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-53" class="srcLine"> }</span></td>
</tr>
<tr id="l54">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=54#src-54">54</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-54" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="55" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-55' onclick="toggleInlineStats(this, 'inlinestats-55');"/>
<td align="center" valign="middle">
<table id="inlinestats-55" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-55'), 'inlinestats-55');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l55">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=55#src-55">55</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-55"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 55,58);" id="img-55" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-55" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-55'), 55,58);" id="e55" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l56">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=56#src-56">56</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-56" class="srcLine"> <span class="keyword">public</span> <span class="keyword">double</span> getAlpha(<span class="keyword">int</span> index) {</span></td>
</tr>
<tr id="l57">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=57#src-57">57</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-57" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">return</span> model.getWeight(index);</span></span></td>
</tr>
<tr id="l58">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=58#src-58">58</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-58" class="srcLine"> }</span></td>
</tr>
<tr id="l59">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=59#src-59">59</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-59" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="60" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-60' onclick="toggleInlineStats(this, 'inlinestats-60');"/>
<td align="center" valign="middle">
<table id="inlinestats-60" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-60'), 'inlinestats-60');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l60">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=60#src-60">60</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-60"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 60,63);" id="img-60" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-60" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, property"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-60'), 60,63);" id="e60" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l61">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=61#src-61">61</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-61" class="srcLine"> <span class="keyword">public</span> <span class="keyword">double</span> getBias() {</span></td>
</tr>
<tr id="l62">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=62#src-62">62</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-62" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, property"> <span class="keyword">return</span> 0;</span></span></td>
</tr>
<tr id="l63">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=63#src-63">63</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-63" class="srcLine"> }</span></td>
</tr>
<tr id="l64">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=64#src-64">64</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-64" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="65" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-65' onclick="toggleInlineStats(this, 'inlinestats-65');"/>
<td align="center" valign="middle">
<table id="inlinestats-65" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-65'), 'inlinestats-65');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l65">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=65#src-65">65</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-65"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 65,68);" id="img-65" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-65" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-65'), 65,68);" id="e65" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l66">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=66#src-66">66</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-66" class="srcLine"> <span class="keyword">public</span> <a href="../../../../../../com/rapidminer/operator/learner/functions/kernel/SupportVector.html#SupportVector">SupportVector</a> getSupportVector(<span class="keyword">int</span> index) {</span></td>
</tr>
<tr id="l67">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=67#src-67">67</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-67" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">return</span> <span class="keyword">null</span>;</span></span></td>
</tr>
<tr id="l68">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=68#src-68">68</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-68" class="srcLine"> }</span></td>
</tr>
<tr id="l69">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=69#src-69">69</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-69" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="70" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-70' onclick="toggleInlineStats(this, 'inlinestats-70');"/>
<td align="center" valign="middle">
<table id="inlinestats-70" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-70'), 'inlinestats-70');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l70">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=70#src-70">70</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-70"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 70,73);" id="img-70" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-70" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-70'), 70,73);" id="e70" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l71">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=71#src-71">71</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-71" class="srcLine"> <span class="keyword">public</span> String getId(<span class="keyword">int</span> index) {</span></td>
</tr>
<tr id="l72">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=72#src-72">72</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-72" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">return</span> <span class="keyword">null</span>;</span></span></td>
</tr>
<tr id="l73">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=73#src-73">73</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-73" class="srcLine"> }</span></td>
</tr>
<tr id="l74">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=74#src-74">74</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-74" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="75" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-75' onclick="toggleInlineStats(this, 'inlinestats-75');"/>
<td align="center" valign="middle">
<table id="inlinestats-75" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-75'), 'inlinestats-75');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l75">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=75#src-75">75</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-75"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 75,78);" id="img-75" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-75" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, property"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-75'), 75,78);" id="e75" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l76">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=76#src-76">76</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-76" class="srcLine"> <span class="keyword">public</span> <span class="keyword">int</span> getNumberOfSupportVectors() {</span></td>
</tr>
<tr id="l77">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=77#src-77">77</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-77" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, property"> <span class="keyword">return</span> model.getNumberOfRelevanceVectors();</span></span></td>
</tr>
<tr id="l78">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=78#src-78">78</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-78" class="srcLine"> }</span></td>
</tr>
<tr id="l79">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=79#src-79">79</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-79" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="80" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-80' onclick="toggleInlineStats(this, 'inlinestats-80');"/>
<td align="center" valign="middle">
<table id="inlinestats-80" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-80'), 'inlinestats-80');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l80">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=80#src-80">80</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-80"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 80,83);" id="img-80" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-80" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, property"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-80'), 80,83);" id="e80" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l81">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=81#src-81">81</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-81" class="srcLine"> <span class="keyword">public</span> <span class="keyword">int</span> getNumberOfAttributes() {</span></td>
</tr>
<tr id="l82">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=82#src-82">82</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-82" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, property"> <span class="keyword">return</span> 0;</span></span></td>
</tr>
<tr id="l83">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=83#src-83">83</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-83" class="srcLine"> }</span></td>
</tr>
<tr id="l84">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=84#src-84">84</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-84" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="85" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-85' onclick="toggleInlineStats(this, 'inlinestats-85');"/>
<td align="center" valign="middle">
<table id="inlinestats-85" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-85'), 'inlinestats-85');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l85">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=85#src-85">85</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-85"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 85,88);" id="img-85" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-85" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-85'), 85,88);" id="e85" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l86">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=86#src-86">86</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-86" class="srcLine"> <span class="keyword">public</span> <span class="keyword">double</span> getAttributeValue(<span class="keyword">int</span> exampleIndex, <span class="keyword">int</span> attributeIndex) {</span></td>
</tr>
<tr id="l87">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=87#src-87">87</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-87" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">return</span> Double.NaN;</span></span></td>
</tr>
<tr id="l88">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=88#src-88">88</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-88" class="srcLine"> }</span></td>
</tr>
<tr id="l89">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=89#src-89">89</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-89" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="90" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-90' onclick="toggleInlineStats(this, 'inlinestats-90');"/>
<td align="center" valign="middle">
<table id="inlinestats-90" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-90'), 'inlinestats-90');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l90">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=90#src-90">90</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-90"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 90,93);" id="img-90" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-90" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-90'), 90,93);" id="e90" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l91">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=91#src-91">91</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-91" class="srcLine"> <span class="keyword">public</span> String getClassificationLabel(<span class="keyword">int</span> index) {</span></td>
</tr>
<tr id="l92">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=92#src-92">92</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-92" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">return</span> <span class="string">"?"</span>;</span></span></td>
</tr>
<tr id="l93">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=93#src-93">93</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-93" class="srcLine"> }</span></td>
</tr>
<tr id="l94">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=94#src-94">94</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-94" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="95" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-95' onclick="toggleInlineStats(this, 'inlinestats-95');"/>
<td align="center" valign="middle">
<table id="inlinestats-95" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-95'), 'inlinestats-95');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l95">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=95#src-95">95</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-95"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 95,98);" id="img-95" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-95" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-95'), 95,98);" id="e95" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l96">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=96#src-96">96</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-96" class="srcLine"> <span class="keyword">public</span> <span class="keyword">double</span> getRegressionLabel(<span class="keyword">int</span> index) {</span></td>
</tr>
<tr id="l97">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=97#src-97">97</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-97" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">return</span> Double.NaN;</span></span></td>
</tr>
<tr id="l98">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=98#src-98">98</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-98" class="srcLine"> }</span></td>
</tr>
<tr id="l99">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=99#src-99">99</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-99" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="100" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-100' onclick="toggleInlineStats(this, 'inlinestats-100');"/>
<td align="center" valign="middle">
<table id="inlinestats-100" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-100'), 'inlinestats-100');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l100">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=100#src-100">100</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-100"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 100,103);" id="img-100" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-100" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-100'), 100,103);" id="e100" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l101">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=101#src-101">101</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-101" class="srcLine"> <span class="keyword">public</span> <span class="keyword">double</span> getFunctionValue(<span class="keyword">int</span> index) {</span></td>
</tr>
<tr id="l102">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=102#src-102">102</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-102" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">return</span> Double.NaN;</span></span></td>
</tr>
<tr id="l103">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=103#src-103">103</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-103" class="srcLine"> }</span></td>
</tr>
<tr id="l104">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=104#src-104">104</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-104" class="srcLine"></span></td>
</tr>
<tr id="l105">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=105#src-105">105</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-105" class="srcLine"> <span class="comment">/** Create an input vector from an example */</span></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="106" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-106' onclick="toggleInlineStats(this, 'inlinestats-106');"/>
<td align="center" valign="middle">
<table id="inlinestats-106" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-106'), 'inlinestats-106');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l106">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=106#src-106">106</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-106"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 106,113);" id="img-106" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-106" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">double</span>[] makeInputVector(<a href="../../../../../../com/rapidminer/example/Example.html#Example">Example</a> e) {</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-106'), 106,113);" id="e106" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l107">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=107#src-107">107</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-107" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">double</span>[] vector = <span class="keyword">new</span> <span class="keyword">double</span>[e.getAttributes().size()];</span></span></td>
</tr>
<tr id="l108">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=108#src-108">108</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-108" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">int</span> i = 0;</span></span></td>
</tr>
<tr id="l109">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=109#src-109">109</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-109" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, for"> <span class="keyword">for</span> (<a href="../../../../../../com/rapidminer/example/Attribute.html#Attribute">Attribute</a> attribute : e.getAttributes()) {</span></span></td>
</tr>
<tr id="l110">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=110#src-110">110</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-110" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, for"> vector[i++] = e.getValue(attribute);</span></span></td>
</tr>
<tr id="l111">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=111#src-111">111</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-111" class="srcLine"> }</span></td>
</tr>
<tr id="l112">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=112#src-112">112</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-112" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">return</span> vector;</span></span></td>
</tr>
<tr id="l113">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=113#src-113">113</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-113" class="srcLine"> }</span></td>
</tr>
<tr id="l114">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=114#src-114">114</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-114" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="115" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-115' onclick="toggleInlineStats(this, 'inlinestats-115');"/>
<td align="center" valign="middle">
<table id="inlinestats-115" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-115'), 'inlinestats-115');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l115">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=115#src-115">115</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-115"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 115,146);" id="img-115" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-115" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-115'), 115,146);" id="e115" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l116">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=116#src-116">116</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-116" class="srcLine"> <span class="keyword">public</span> <a href="../../../../../../com/rapidminer/example/ExampleSet.html#ExampleSet">ExampleSet</a> performPrediction(<a href="../../../../../../com/rapidminer/example/ExampleSet.html#ExampleSet">ExampleSet</a> exampleSet, <a href="../../../../../../com/rapidminer/example/Attribute.html#Attribute">Attribute</a> predictedLabel) <span class="keyword">throws</span> <a href="../../../../../../com/rapidminer/operator/ProcessStoppedException.html#ProcessStoppedException">ProcessStoppedException</a> {</span></td>
</tr>
<tr id="l117">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=117#src-117">117</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-117" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> Iterator<<a href="../../../../../../com/rapidminer/example/Example.html#Example">Example</a>> i = exampleSet.iterator();</span></span></td>
</tr>
<tr id="l118">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=118#src-118">118</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-118" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <a href="../../../../../../com/rapidminer/operator/OperatorProgress.html#OperatorProgress">OperatorProgress</a> progress = <span class="keyword">null</span>;</span></span></td>
</tr>
<tr id="l119">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=119#src-119">119</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-119" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, if"> <span class="keyword">if</span> (getShowProgress() && getOperator() != <span class="keyword">null</span> && getOperator().getProgress() != <span class="keyword">null</span>) {</span></span></td>
</tr>
<tr id="l120">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=120#src-120">120</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-120" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, if"> progress = getOperator().getProgress();</span></span></td>
</tr>
<tr id="l121">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=121#src-121">121</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-121" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, if"> progress.setTotal(exampleSet.size());</span></span></td>
</tr>
<tr id="l122">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=122#src-122">122</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-122" class="srcLine"> }</span></td>
</tr>
<tr id="l123">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=123#src-123">123</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-123" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">int</span> progressCounter = 0;</span></span></td>
</tr>
<tr id="l124">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=124#src-124">124</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-124" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, while"> <span class="keyword">while</span> (i.hasNext()) {</span></span></td>
</tr>
<tr id="l125">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=125#src-125">125</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-125" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, while"> <a href="../../../../../../com/rapidminer/example/Example.html#Example">Example</a> e = i.next();</span></span></td>
</tr>
<tr id="l126">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=126#src-126">126</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-126" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, while"> <span class="keyword">double</span> functionValue = model.applyToVector(makeInputVector(e));</span></span></td>
</tr>
<tr id="l127">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=127#src-127">127</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-127" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, while, else"> <span class="keyword">if</span> (getLabel().isNominal()) {</span></span></td>
</tr>
<tr id="l128">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=128#src-128">128</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-128" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, while, if, else"> <span class="keyword">if</span> (functionValue > 0) {</span></span></td>
</tr>
<tr id="l129">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=129#src-129">129</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-129" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, while, if"> e.setValue(predictedLabel, getLabel().getMapping().getPositiveIndex());</span></span></td>
</tr>
<tr id="l130">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=130#src-130">130</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-130" class="srcLine"> } <span class="keyword">else</span> {</span></td>
</tr>
<tr id="l131">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=131#src-131">131</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-131" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, while, if, else"> e.setValue(predictedLabel, getLabel().getMapping().getNegativeIndex());</span></span></td>
</tr>
<tr id="l132">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=132#src-132">132</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-132" class="srcLine"> }</span></td>
</tr>
<tr id="l133">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=133#src-133">133</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-133" class="srcLine"> <span class="comment">// set confidence to numerical prediction, such that can be scaled later</span></span></td>
</tr>
<tr id="l134">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=134#src-134">134</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-134" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, while, if"> e.setConfidence(predictedLabel.getMapping().getPositiveString(),</span></span></td>
</tr>
<tr id="l135">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=135#src-135">135</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-135" class="srcLine"> 1.0d / (1.0d + java.lang.Math.exp(-functionValue)));</span></td>
</tr>
<tr id="l136">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=136#src-136">136</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-136" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, while, if"> e.setConfidence(predictedLabel.getMapping().getNegativeString(),</span></span></td>
</tr>
<tr id="l137">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=137#src-137">137</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-137" class="srcLine"> 1.0d / (1.0d + java.lang.Math.exp(functionValue)));</span></td>
</tr>
<tr id="l138">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=138#src-138">138</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-138" class="srcLine"> } <span class="keyword">else</span> {</span></td>
</tr>
<tr id="l139">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=139#src-139">139</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-139" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, while, else"> e.setValue(predictedLabel, functionValue);</span></span></td>
</tr>
<tr id="l140">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=140#src-140">140</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-140" class="srcLine"> }</span></td>
</tr>
<tr id="l141">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=141#src-141">141</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-141" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, while, if"> <span class="keyword">if</span> (progress != <span class="keyword">null</span> && ++progressCounter % OPERATOR_PROGRESS_STEPS == 0) {</span></span></td>
</tr>
<tr id="l142">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=142#src-142">142</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-142" class="srcLineFiltered"><span class="nolink" title="Filtered by: method, while, if"> progress.setCompleted(progressCounter);</span></span></td>
</tr>
<tr id="l143">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=143#src-143">143</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-143" class="srcLine"> }</span></td>
</tr>
<tr id="l144">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=144#src-144">144</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-144" class="srcLine"> }</span></td>
</tr>
<tr id="l145">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=145#src-145">145</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-145" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">return</span> exampleSet;</span></span></td>
</tr>
<tr id="l146">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=146#src-146">146</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-146" class="srcLine"> }</span></td>
</tr>
<tr id="l147">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=147#src-147">147</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-147" class="srcLine">}</span></td>
</tr>
</tbody></table> </div>
</div><!-- .aui-tabs -->
<script type="text/javascript">
var ol_bgclass = "overBG";
var ol_fgclass = "overFG";
var ol_cgclass = "overCaption";
var ol_captionfontclass= "overCaption";
var ol_closefontclass = "closeFont";
var ol_closeclick = 1;
var ol_close = 'X';
var ol_wrap = 1;
var rootRelPath = '../../../../../../';
var testsPerFile = -1;
</script>
<script src="RVMModel.js" type="text/javascript"></script>
</div> <!-- class="aui-page-panel-content-clover" -->
<footer id="footer" role="contentinfo">
<section class="footer-body">
<ul>
<li>
Report generated by <a target="_new" href="http://www.atlassian.com/software/clover">Atlassian Clover</a> v 4.1.2
on 星期二 九月 5 2017 17:24:16 CST using coverage data from 星期四 一月 1 1970 08:00:00 CST.
</li>
</ul>
<ul>
<li>Clover Evaluation License registered to Clover Plugin. You have 29 day(s) before your license expires.</li>
</ul>
<div id="footer-logo">
<a target="_blank" href="http://www.atlassian.com/">
Atlassian
</a>
</div>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> |
grass_trunk/sites/s.out.ascii/s.out.ascii.html | AsherBond/MondocosmOS | <h2>DESCRIPTION</h2>
<em>s.out.ascii</em> converts an existing site list file
(<b>input=</b><em>name</em>) into an ASCII listing of site
locations and (optionally) their category labels, in a
format suitable for input to other program).
<p>
Each line of output consists of the easting, northing, and
category label for a site listed in the named <b>vector points</b> (sites)
file. The <b>fs=</b><em>name</em> option (where
<em>name</em> is either a character, a space, or a tab) can
be used to place a particular field separator between these
three output fields. This is useful when output is to be
manipulated by other programs, like <em>awk</em> or
<em>sed</em>.
<p>
The GRASS program <em>s.in.ascii</em> can be used to
perform the reverse function, converting a UNIX file
containing eastings, northings, and category labels
associated with site locations into GRASS site list file
format.
<h2>OPTIONS</h2>
<H3>Flags:</H3>
<dl>
<dt><b>-a</b>
<dd>Output all sites found in the named <b>vector points</b>
file, rather than limiting output to sites falling within
the current geographic region.
<dt><b>-d</b>
<dd>Include site descriptions (category labels) in the output.
<dt><b>-i</b>
<dd>Include site attribute identifiers in the output
</dl>
<H3>Parameters:</H3>
<dl>
<dt><b>input=</b><em>name</em>
<dd>Name of an existing site list file.
<dt><b>fs=</b>character|space|tab
<dd>The field separator to be placed between the easting,
northing, and (optionally) category label on each line of
output. The field separator can be a character, a space,
or a tab.
<br>
Default: space
</dl>
<em>s.out.ascii</em> can be run either non-interactively or
interactively. The program will be run non-interactively
if the user specifies the name of an existing site list
file and (optionally) a value for <b>fs</b>, using the form
<p>
<dl>
<dd>
<b>s.out.ascii</b>
[<b>-adi</b>]
<b>input=</b><em>name</em>
[<b>fs=</b>character|space|tab]
</dl>
where <em>name</em> is the name of an existing site list
file to be converted to a brief ASCII listing, and
<b>fs</b> is the field separator to be placed between
output fields. The user can also the <b>-a</b> and
<b>-d</b> options to use all sites in the named
<b>sites</b> file and to include site descriptions in the
output.
<p>
Alternately, the user can simply type <b>s.out.ascii</b> on
the command line, without program arguments. In this case,
the user will be prompted for parameter values using the
standard GRASS
<a href="parser.html">parser</A>
interface.
<h2>NOTES</h2>
To output GRASS data in x,y,z ASCII style, the s.out.ascii may be used:
<p>
<dl>
<dd>
<b>s.out.ascii -d input=</b>sitesmap
</dl>
Resulting to:
<pre>
3566393.75 5773293.75 168.3
3566818.75 5773293.75 158.8
3568843.75 5773293.75 114.3
3568981.25 5773293.75 117.5
[...]
</pre>
To export raster maps into this x,y,z format, the raster map can be
converted to sites format using <em>r.to.sites</em> and <em>s.out.ascii</em>
subsequently as described above.
<p>
The output from <em>s.out.ascii</em> may be placed into a
file by using the UNIX redirection mechanism; e.g.:
<p>
<dl>
<dd>
<b>s.out.ascii input=</b>archsites > out.file
</dl>
<em>s.out.ascii</em> output may also be redirected into
other programs; e.g.:
<p>
<dl>
<dd>
<b>s.out.ascii input=</b>archsites | d.points <b>color=</b>red <b>size=</b>10 <b>type=</b>diamond
</dl>
<h2>SEE ALSO</h2>
<em><a href="d.points.html">d.points</A></em><br>
<em><a href="d.vect.html">d.vect</A></em><br>
<em><a href="s.in.ascii.html">s.in.ascii</A></em><br>
<em><a href="r.to.vect.html">r.to.vect</A></em>
<h2>AUTHOR</h2>
Michael Shapiro,
U.S. Army Construction Engineering
Research Laboratory
<p><i>Last changed: $Date: 2011-09-29 12:48:00 -0700 (Thu, 29 Sep 2011) $</i>
|
api/confidential.html | ThibautGery/api.gouv.fr | ---
layout: default
additional_css: catalog
id: confidential
---
<section id="list" class="ui container">
{% assign category = site.api_category | where:"id", page.id | first %}
<h2 class="ui divider horizontal">Toutes les API de l'administration : {{ category.name }}</h2>
<div class="ui two stackable cards">
{% for api in site.api %}
{% if api.category == page.id %}
{% include api-card.html description=api %}
{% endif %}
{% endfor %}
</div>
</section>
<div class="ui container">
<a id="apiButton" class="ui right floated big orange button" href="{{ site.baseurl }}/api/">Explorez toutes les API ➤</a>
</div>
|
Ephesoft_Community_Release_4.0.2.0/javadocs/com/ephesoft/gxt/uploadbatch/client/class-use/UploadBatch.html | ungerik/ephesoft | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_71) on Fri Jul 10 16:43:16 IST 2015 -->
<title>Uses of Class com.ephesoft.gxt.uploadbatch.client.UploadBatch</title>
<meta name="date" content="2015-07-10">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.ephesoft.gxt.uploadbatch.client.UploadBatch";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/ephesoft/gxt/uploadbatch/client/UploadBatch.html" title="class in com.ephesoft.gxt.uploadbatch.client">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/ephesoft/gxt/uploadbatch/client/class-use/UploadBatch.html" target="_top">Frames</a></li>
<li><a href="UploadBatch.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class com.ephesoft.gxt.uploadbatch.client.UploadBatch" class="title">Uses of Class<br>com.ephesoft.gxt.uploadbatch.client.UploadBatch</h2>
</div>
<div class="classUseContainer">No usage of com.ephesoft.gxt.uploadbatch.client.UploadBatch</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/ephesoft/gxt/uploadbatch/client/UploadBatch.html" title="class in com.ephesoft.gxt.uploadbatch.client">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/ephesoft/gxt/uploadbatch/client/class-use/UploadBatch.html" target="_top">Frames</a></li>
<li><a href="UploadBatch.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
report/html/com/rapidminer/gui/tools/ExtendedJSlider.html | cm-is-dog/rapidminer-studio-core | <!DOCTYPE html>
<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"/>
<link rel="SHORTCUT ICON" href="../../../../img/clover.ico" />
<link rel="stylesheet" href="../../../../aui/css/aui.min.css" media="all"/>
<link rel="stylesheet" href="../../../../aui/css/aui-experimental.min.css" media="all"/>
<!--[if IE 9]><link rel="stylesheet" href="../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]-->
<style type="text/css" media="all">
@import url('../../../../style.css');
@import url('../../../../tree.css');
</style>
<script src="../../../../jquery-1.8.3.min.js" type="text/javascript"></script>
<script src="../../../../aui/js/aui.min.js" type="text/javascript"></script>
<script src="../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script>
<script src="../../../../aui/js/aui-soy.min.js" type="text/javascript"></script>
<script src="../../../../package-nodes-tree.js" type="text/javascript"></script>
<script src="../../../../clover-tree.js" type="text/javascript"></script>
<script src="../../../../clover.js" type="text/javascript"></script>
<script src="../../../../clover-descriptions.js" type="text/javascript"></script>
<script src="../../../../cloud.js" type="text/javascript"></script>
<title>rapidminer-studio-core 转换结果 </title>
</head>
<body onload="onLoad('rapidminer-studio-core 转换结果 : com.rapidminer.gui.tools.ExtendedJSlider.java')">
<div id="page">
<header id="header" role="banner">
<nav class="aui-header aui-dropdown2-trigger-group" role="navigation">
<div class="aui-header-inner">
<div class="aui-header-primary">
<h1 id="logo" class="aui-header-logo aui-header-logo-clover">
<a href="http://www.atlassian.com/clover" title="Open Atlassian Clover home page"><span class="aui-header-logo-device">Clover</span></a>
</h1>
</div>
<div class="aui-header-secondary">
<ul class="aui-nav">
<li id="system-help-menu">
<a class="aui-nav-link" title="Open online Clover documentation" target="_blank"
href="https://confluence.atlassian.com/display/CLOVER/Clover+Documentation+Home">
<span class="aui-icon aui-icon-small aui-iconfont-help"> Help</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="aui-page-panel">
<div class="aui-page-panel-inner">
<div class="aui-page-panel-nav aui-page-panel-nav-clover">
<div class="aui-page-header-inner" style="margin-bottom: 20px;">
<div class="aui-page-header-image">
<div class="aui-avatar aui-avatar-large aui-avatar-project">
<div class="aui-avatar-inner">
<img src="../../../../img/clover_logo_large.png" alt="Clover icon"/>
</div>
</div>
</div>
<div class="aui-page-header-main" >
<h1>
rapidminer-studio-core 转换结果
</h1>
</div>
</div>
<nav class="aui-navgroup aui-navgroup-vertical">
<div class="aui-navgroup-inner">
<ul class="aui-nav">
<li class="">
<a href="../../../../dashboard.html">Project overview</a>
</li>
</ul>
<div class="aui-nav-heading packages-nav-heading">
<strong>Packages</strong>
</div>
<div class="aui-nav project-packages">
<form method="get" action="#" class="aui package-filter-container">
<input type="text" autocomplete="off" class="package-filter text"
placeholder="Type to filter packages..." name="package-filter" id="package-filter"
title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/>
</form>
<p class="package-filter-no-results-message hidden">
<small>No results found.</small>
</p>
<div class="packages-tree-wrapper" data-root-relative="../../../../" data-package-name="com.rapidminer.gui.tools">
<div class="packages-tree-container"></div>
<div class="clover-packages-lozenges"></div>
</div>
</div>
</div>
</nav> </div>
<section class="aui-page-panel-content">
<div class="aui-page-panel-content-clover">
<ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../dashboard.html">Project Clover database 星期二 九月 5 2017 16:40:29 CST</a></li>
<li><a href="pkg-summary.html"> Package com.rapidminer.gui.tools</a></li>
</ol>
<h1 class="aui-h2-clover">
File ExtendedJSlider.java
</h1>
<div class="aui-message aui-message-warning">
<p class="title">
<strong>Evaluation License</strong>
</p>
<p>
This report was generated with an evaluation server license. <a href="http://www.atlassian.com/software/clover">Purchase Clover</a> or <a href="http://confluence.atlassian.com/x/JAgQCQ">configure your license.</a>
</p>
</div>
<div class="aui-tabs horizontal-tabs" id="tabs-file">
<div class="tabs-pane aui-tabs-pane-100-pcnt active-pane" id="tabs-file-source">
<div> </div>
<div style="display: table; width: 100%">
<div style="display: table-cell; ">
<div class="dashboard-widget">
<header class="dashboard-widget-header">
<h3>Code metrics</h3>
</header>
<div class="dashboard-widget-content">
<div id="td-header-stats" class="aui-item" style="display: ">
<div style="display: table">
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of branches in this file">Branches:</label></div>
<div class="stats-box-value">0</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of statements in this file">Statements:</label></div>
<div class="stats-box-value">0</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of methods in this file">Methods:</label></div>
<div class="stats-box-value">0</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of classes in this file">Classes:</label></div>
<div class="stats-box-value">1</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of lines of code in this file">LOC:</label></div>
<div class="stats-box-value">40</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of non-comment lines of code in this file">NCLOC:</label></div>
<div class="stats-box-value">11</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Cyclomatic complexity is the number of paths in this file">Total complexity:</label></div>
<div class="stats-box-value">0</div>
</div>
<div class="stats-box">
<div class="stats-box-label">
<label title="Complexity density is the complexity divided by the number of statements in this file">Complexity density:</label>
</div>
<div class="stats-box-value">-</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Number of statements per method.">Statements/Method:</label></div>
<div class="stats-box-value">-</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Number of methods per class.">Methods/Class:</label></div>
<div class="stats-box-value">0</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Complexity divided by the number of methods in this file">Average method complexity:</label></div>
<div class="stats-box-value">-</div>
</div>
</div>
<div class="subtle">
<small><strong>100%</strong> of code in this file is excluded from these metrics.</small>
<label class="aui-button aui-button-subtle" onclick="toggleStats('td-header-stats', 'td-filtered-header-stats');"
title="Include or exclude filtered elements from these statistics.">Remove Filter</label>
</div>
</div>
<div id="td-filtered-header-stats" class="aui-item" style="display: none">
<div style="display: table">
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of branches in this file">Branches:</label></div>
<div class="stats-box-value">2</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of statements in this file">Statements:</label></div>
<div class="stats-box-value">3</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of methods in this file">Methods:</label></div>
<div class="stats-box-value">1</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of classes in this file">Classes:</label></div>
<div class="stats-box-value">1</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of lines of code in this file">LOC:</label></div>
<div class="stats-box-value">40</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Total number of non-comment lines of code in this file">NCLOC:</label></div>
<div class="stats-box-value">11</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Cyclomatic complexity is the number of paths in this file">Total complexity:</label></div>
<div class="stats-box-value">2</div>
</div>
<div class="stats-box">
<div class="stats-box-label">
<label title="Complexity density is the complexity divided by the number of statements in this file">Complexity density:</label>
</div>
<div class="stats-box-value">0.67</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Number of statements per method.">Statements/Method:</label></div>
<div class="stats-box-value">3</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Number of methods per class.">Methods/Class:</label></div>
<div class="stats-box-value">1</div>
</div>
<div class="stats-box">
<div class="stats-box-label"><label title="Complexity divided by the number of methods in this file">Average method complexity:</label></div>
<div class="stats-box-value">2</div>
</div>
</div>
<div class="subtle">
<small>These metrics include <strong class='bold'>100%</strong> of code marked as filtered.</small>
<label class="aui-button aui-button-subtle" onclick="toggleStats('td-filtered-header-stats', 'td-header-stats');"
title="Include or exclude filtered elements from these statistics.">Apply Filter</label>
</div>
</div> </div>
</div>
</div>
</div>
<h2>Classes</h2>
<table class="aui aui-table-sortable">
<thead>
<tr> <th>Class</th>
<th>Line #</th>
<th class="">
<label title="The total number of statements.">Total Statements</label>
</th>
<th class="">
<label title="Cyclomatic complexity is a measure of the number of paths in your code.">Complexity</label>
</th>
<th class="">
<label title="The amount of code that was hit at least once during testing.">TOTAL Coverage</label>
</th>
<th>Actions</th>
</tr> </thead>
<tbody>
<tr> <td id="ExtendedJSlider">
<span><a href="#29" title="ExtendedJSlider" onclick="closeDialogAndScrollTo('dialog-ExtendedJSlider', '29');">ExtendedJSlider</a></span>
</td>
<td>29<a name="sl-29"></a></td>
<td class="">0</td>
<td class="">0</td>
<td class=""><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
<td><button data-dialog-id="dialog-ExtendedJSlider" class="aui-button aui-button-link dialog-show-button">Show methods</button></td>
</tr> </tbody>
</table>
<section role="dialog" id="dialog-ExtendedJSlider" class="aui-layer aui-dialog2 aui-dialog2-xlarge" aria-hidden="true">
<header class="aui-dialog2-header">
<h1 class="aui-dialog2-header-main">Class ExtendedJSlider</h1>
<div class="aui-dialog2-header-secondary">
<input id="dialog-ExtendedJSlider-method-filter" class="test-filter text" type="text" name="method-filter"
placeholder="Type to filter methods..." autocomplete="off"
onkeyup="filterMethods('dialog-ExtendedJSlider-methods-body', 'dialog-ExtendedJSlider-method-filter');"/>
</div>
</header>
<div class="aui-dialog2-content">
<table class="aui aui-table-sortable">
<thead>
<tr> <th id="ExtendedJSlider">
Class<br/> <span><a href="#29" title="ExtendedJSlider" onclick="closeDialogAndScrollTo('dialog-ExtendedJSlider', '29');">ExtendedJSlider</a></span>
</th>
<th>Line #<br/>29<a name="sl-29"></a></th>
<th class=""><label title="The total number of statements.">Total Statements</label><br/>0</th>
<th class=""><label title="Cyclomatic complexity is a measure of the number of paths in your code.">Complexity</label><br/>0</th>
<th class=""><label title="The amount of code that was hit at least once during testing.">TOTAL Coverage</label><br/><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></th>
</tr> </thead>
<tbody id="dialog-ExtendedJSlider-methods-body">
<tr id="ExtendedJSlider-1">
<td id="summary-33-2">
<span class="sortValue">ExtendedJSlider(int,int,int,int,boolean)</span>
  <a href="?line=29#33" title="ExtendedJSlider(int,int,int,int,boolean)" name="sl-33" onclick="closeDialogAndScrollTo('dialog-ExtendedJSlider', '33');">ExtendedJSlider(int,int,int,int,boolean)</a>
</td>
<td align="right"><span class="sortValue">33</span>33</td>
<td class="" align="right"><span class="sortValue">0.0</span>0</td>
<td class="" align="right"><span class="sortValue">1.0</span>1</td>
<td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%">
<div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell">
<div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td>
</tr> </tbody>
</table>
<div> </div>
</div>
<footer class="aui-dialog2-footer">
<div class="aui-dialog2-footer-actions">
<button class="aui-button aui-button-primary dialog-close-button"
data-dialog-id="dialog-ExtendedJSlider">Close</button>
</div>
<div class="aui-dialog2-footer-hint">Click on a class or a method name to jump to source.</div>
</footer>
</section>
<div> </div>
<h2>Contributing tests</h2>
<div class="aui-message">
<p>No tests hitting this source file were found.</p>
</div>
<h2>Source view</h2>
<div style="display: table; width: 100%;">
<div style="display: table-cell">
<button class="aui-button aui-button-link"
title="Toggles all methods in the source to be either expanded or collapsed."
onclick="toggleAllInlineMethods(this); return false;" id="method-expander">
Collapse all methods
</button>
</div>
<div style="display: table-cell">
<div style="text-align: right; margin-bottom: 10px">
<button class="aui-button aui-button-subtle" id="popupHelp">
<span class="aui-icon aui-icon-small aui-iconfont-help"></span> Show legend
</button>
<script>
AJS.InlineDialog(AJS.$("#popupHelp"), "helpDialog",
function(content, trigger, showPopup) {
content.css({"padding":"20px"}).html(SRC_FILE_LEGEND_TEXT);
showPopup();
return false;
},
{
width: 700, hideDelay: 60000
}
);
</script> </div>
</div>
</div>
<table cellspacing="0" cellpadding="0" class="srcView" width="100%">
<tbody> <tr id="l1">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=1#src-1">1</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-1" class="srcLine"><span class="comment">/**</span></span></td>
</tr>
<tr id="l2">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=2#src-2">2</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-2" class="srcLine"><span class="comment"> * Copyright (C) 2001-2017 by RapidMiner and the contributors</span></span></td>
</tr>
<tr id="l3">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=3#src-3">3</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-3" class="srcLine"><span class="comment"> * </span></span></td>
</tr>
<tr id="l4">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=4#src-4">4</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-4" class="srcLine"><span class="comment"> * Complete list of developers available at our web site:</span></span></td>
</tr>
<tr id="l5">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=5#src-5">5</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-5" class="srcLine"><span class="comment"> * </span></span></td>
</tr>
<tr id="l6">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=6#src-6">6</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-6" class="srcLine"><span class="comment"> * http://rapidminer.com</span></span></td>
</tr>
<tr id="l7">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=7#src-7">7</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-7" class="srcLine"><span class="comment"> * </span></span></td>
</tr>
<tr id="l8">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=8#src-8">8</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-8" class="srcLine"><span class="comment"> * This program is free software: you can redistribute it and/or modify it under the terms of the</span></span></td>
</tr>
<tr id="l9">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=9#src-9">9</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-9" class="srcLine"><span class="comment"> * GNU Affero General Public License as published by the Free Software Foundation, either version 3</span></span></td>
</tr>
<tr id="l10">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=10#src-10">10</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-10" class="srcLine"><span class="comment"> * of the License, or (at your option) any later version.</span></span></td>
</tr>
<tr id="l11">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=11#src-11">11</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-11" class="srcLine"><span class="comment"> * </span></span></td>
</tr>
<tr id="l12">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=12#src-12">12</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-12" class="srcLine"><span class="comment"> * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without</span></span></td>
</tr>
<tr id="l13">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=13#src-13">13</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-13" class="srcLine"><span class="comment"> * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span></span></td>
</tr>
<tr id="l14">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=14#src-14">14</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-14" class="srcLine"><span class="comment"> * Affero General Public License for more details.</span></span></td>
</tr>
<tr id="l15">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=15#src-15">15</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-15" class="srcLine"><span class="comment"> * </span></span></td>
</tr>
<tr id="l16">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=16#src-16">16</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-16" class="srcLine"><span class="comment"> * You should have received a copy of the GNU Affero General Public License along with this program.</span></span></td>
</tr>
<tr id="l17">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=17#src-17">17</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-17" class="srcLine"><span class="comment"> * If not, see http://www.gnu.org/licenses/.</span></span></td>
</tr>
<tr id="l18">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=18#src-18">18</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-18" class="srcLine"><span class="comment">*/</span></span></td>
</tr>
<tr id="l19">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=19#src-19">19</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-19" class="srcLine"><span class="keyword">package</span> com.<a href="../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../gui/pkg-summary.html">gui</a>.<a href="../tools/pkg-summary.html">tools</a>;</span></td>
</tr>
<tr id="l20">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=20#src-20">20</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-20" class="srcLine"></span></td>
</tr>
<tr id="l21">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=21#src-21">21</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-21" class="srcLine"><span class="keyword">import</span> javax.swing.JSlider;</span></td>
</tr>
<tr id="l22">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=22#src-22">22</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-22" class="srcLine"></span></td>
</tr>
<tr id="l23">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=23#src-23">23</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-23" class="srcLine"></span></td>
</tr>
<tr id="l24">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=24#src-24">24</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-24" class="srcLine"><span class="comment">/**</span></span></td>
</tr>
<tr id="l25">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=25#src-25">25</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-25" class="srcLine"><span class="comment"> * This extended version of the JSlider shows the currently selected value as tool tip.</span></span></td>
</tr>
<tr id="l26">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=26#src-26">26</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-26" class="srcLine"><span class="comment"> * </span></span></td>
</tr>
<tr id="l27">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=27#src-27">27</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-27" class="srcLine"><span class="comment"> * </span><span class="javadoc">@author</span><span class="comment"> Ingo Mierswa</span></span></td>
</tr>
<tr id="l28">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=28#src-28">28</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-28" class="srcLine"><span class="comment"> */</span></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="29" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-29' onclick="toggleInlineStats(this, 'inlinestats-29');"/>
<td align="center" valign="middle">
<table id="inlinestats-29" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-29'), 'inlinestats-29');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 0</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l29">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=29#src-29">29</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" id="id-29"><span class="spacer"></span><span id="src-29" class="srcLine"><span class="keyword">public</span> <span class="keyword">class</span> <a href="../../../../com/rapidminer/gui/tools/ExtendedJSlider.html#ExtendedJSlider">ExtendedJSlider</a> <span class="keyword">extends</span> JSlider {</span></td>
</tr>
<tr id="l30">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=30#src-30">30</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-30" class="srcLine"></span></td>
</tr>
<tr id="l31">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=31#src-31">31</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-31" class="srcLine"> <span class="keyword">private</span> <span class="keyword">static</span> <span class="keyword">final</span> <span class="keyword">long</span> serialVersionUID = -3411054850324165365L;</span></td>
</tr>
<tr id="l32">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=32#src-32">32</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-32" class="srcLine"></span></td>
</tr>
<tr class="inlineStatsRow" align="right" valign="middle">
<td class="coverageCount"><a name="33" class="nolink"> </a></td>
<td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-33' onclick="toggleInlineStats(this, 'inlinestats-33');"/>
<td align="center" valign="middle">
<table id="inlinestats-33" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px">
<tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-33'), 'inlinestats-33');return true;">
<td><div>
<div title="Empty" class="barEmpty" style="min-width:40px;"></div>
</div></td><td> - </td>
<td class="inlineStat">Uncovered Elements: 0 (0)</td>
<td class="inlineStat">Complexity: 1</td>
<td class="inlineStat">Complexity Density: -</td>
</tr>
</table>
</td>
</tr>
<tr id="l33">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=33#src-33">33</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" methodStart srcCell" id="id-33"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 33,39);" id="img-33" src="../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-33" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor"> <span class="keyword">public</span> <a href="../../../../com/rapidminer/gui/tools/ExtendedJSlider.html#ExtendedJSlider">ExtendedJSlider</a>(<span class="keyword">int</span> orientation, <span class="keyword">int</span> min, <span class="keyword">int</span> max, <span class="keyword">int</span> value, <span class="keyword">boolean</span> showValueAsToolTip) {</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-33'), 33,39);" id="e33" style="display:none;border:none;">...</span></span></td>
</tr>
<tr id="l34">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=34#src-34">34</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-34" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor"> <span class="keyword">super</span>(orientation, min, max, value);</span></span></td>
</tr>
<tr id="l35">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=35#src-35">35</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-35" class="srcLine"></span></td>
</tr>
<tr id="l36">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=36#src-36">36</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-36" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor, if"> <span class="keyword">if</span> (showValueAsToolTip) {</span></span></td>
</tr>
<tr id="l37">
<td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=37#src-37">37</a></td>
<td align="right" class="coverageCount Filtered missedByTest" >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-37" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor, if"> <a href="../../../../com/rapidminer/gui/tools/ExtendedJSliderToolTips.html#ExtendedJSliderToolTips">ExtendedJSliderToolTips</a>.enableSliderToolTips(<span class="keyword">this</span>);</span></span></td>
</tr>
<tr id="l38">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=38#src-38">38</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-38" class="srcLine"> }</span></td>
</tr>
<tr id="l39">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=39#src-39">39</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-39" class="srcLine"> }</span></td>
</tr>
<tr id="l40">
<td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=40#src-40">40</a></td>
<td align="right" class="coverageCount NoHilight " >  </td>
<td class=" srcCell" ><span class="spacer"></span><span id="src-40" class="srcLine">}</span></td>
</tr>
</tbody></table> </div>
</div><!-- .aui-tabs -->
<script type="text/javascript">
var ol_bgclass = "overBG";
var ol_fgclass = "overFG";
var ol_cgclass = "overCaption";
var ol_captionfontclass= "overCaption";
var ol_closefontclass = "closeFont";
var ol_closeclick = 1;
var ol_close = 'X';
var ol_wrap = 1;
var rootRelPath = '../../../../';
var testsPerFile = -1;
</script>
<script src="ExtendedJSlider.js" type="text/javascript"></script>
</div> <!-- class="aui-page-panel-content-clover" -->
<footer id="footer" role="contentinfo">
<section class="footer-body">
<ul>
<li>
Report generated by <a target="_new" href="http://www.atlassian.com/software/clover">Atlassian Clover</a> v 4.1.2
on 星期二 九月 5 2017 17:24:16 CST using coverage data from 星期四 一月 1 1970 08:00:00 CST.
</li>
</ul>
<ul>
<li>Clover Evaluation License registered to Clover Plugin. You have 29 day(s) before your license expires.</li>
</ul>
<div id="footer-logo">
<a target="_blank" href="http://www.atlassian.com/">
Atlassian
</a>
</div>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> |
src/client/index.html | lzrski/blob-upload | <!DOCTYPE html>
<html>
<head>
<title>Blob uploading tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/mocha/mocha.css" />
</head>
<body>
<div style='margin: 120px 60px'>
<a href="host.html">See interactive demo</a>
</div>
<div id="mocha"></div>
<div id='form' style='margin: 0 60px'>
<form action="/" id="sample-form">
<h3>Example form (read only)</h3>
<p><input readonly type="number" name="weight" value=6></p>
<p><input readonly type="text" name='name' value='Scoobie'></p>
</form>
</div>
<!--
Let's pretend there is an embeded application here.
It could be hosted at some different domain.
-->
<div style='margin: 0 60px'>
<h3>iFrame</h3>
<iframe
src="/application.html"
id='appframe'
style="width: 100%">
</iframe>
</div>
<!-- And a ribbon! -->
<a href="https://github.com/lzrski/blob-upload">
<img
style="position: absolute; top: 0; left: 0; border: 0;"
src="https://camo.githubusercontent.com/8b6b8ccc6da3aa5722903da7b58eb5ab1081adee/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f6f72616e67655f6666373630302e706e67"
alt="Fork me on GitHub"
data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_left_orange_ff7600.png">
</a>
<!-- Polyfills -->
<!--
A blob polyfill is needed for some mobile browsers and older IEs.
The one from https://github.com/eligrey/Blob.js sees to work.
TODO: Android native browser still doesn't pass tests.
-->
<script src="/blob/Blob.js"></script>
<!-- Vendor scripts -->
<script src="/mocha/mocha.js"></script>
<script src="/jQuery/dist/jquery.min.js"></script>
<script src="/chai/chai.js"></script>
<script src="/lodash/lodash.min.js"></script>
<script>
mocha.setup('bdd')
</script>
<!-- Tests -->
<script src="tests.js"></script>
<!-- Run! -->
<script>
$(function() {mocha.run();})
</script>
</body>
</html>
|
organization/templates/organization/capabilities/ban.html | jardiacaj/finem_imperii | {% for member in capability.applying_to.character_members.all %}
<form class="" role="form" method="post" action="{% url 'organization:banning_capability' capability.id %}">
{% csrf_token %}
<input type="hidden" name="character_to_ban_id" value="{{ member.id }}">
<span class="form-group form-inline">
{{ member }}
<button type="submit" class="btn btn-danger btn-sm" onclick="return confirm('Are you sure?')">Ban</button>
</span>
</form>
{% empty %}
<p>No members</p>
{% endfor %}
|
desktop/src/main/java/bisq/desktop/bisq.css | bisq-network/exchange | @font-face {
src: url("/fonts/IBMPlexSans-Regular.ttf");
}
@font-face {
src: url("/fonts/IBMPlexSans-Bold.ttf");
}
@font-face {
src: url("/fonts/IBMPlexSans-Medium.ttf");
}
@font-face {
src: url("/fonts/IBMPlexSans-Light.ttf");
}
@font-face {
src: url("/fonts/IBMPlexMono-Regular.ttf");
}
.root {
-fx-font-size: 13;
}
.root:dir(ltr){
-fx-font-family: "IBM Plex Sans";
}
/********************************************************************************************************************
* *
* General *
* *
********************************************************************************************************************/
/* Text */
.error-text {
-fx-text-fill: -bs-rd-error-red;
}
.error {
-fx-accent: -bs-rd-error-red;
}
.success-text {
-fx-text-fill: -bs-color-primary;
}
.highlight, .highlight-static {
-fx-text-fill: -fx-accent;
-fx-fill: -fx-accent;
}
.highlight:hover {
-fx-text-fill: -bs-text-color;
-fx-fill: -bs-text-color;
}
.info {
-fx-text-fill: -bs-color-primary;
-fx-fill: -bs-color-primary;
}
.info:hover {
-fx-text-fill: -bs-color-gray-6;
-fx-fill: -bs-color-gray-6;
}
.sub-info {
-fx-text-fill: -bs-color-gray-4;
-fx-fill: -bs-color-gray-4;
}
.headline-label {
-fx-font-weight: bold;
-fx-font-size: 1.692em;
}
.warning-box {
-fx-background-color: -bs-yellow-light;
-fx-spacing: 6;
-fx-alignment: center;
}
.warning {
-fx-text-fill: -bs-yellow;
-fx-fill: -bs-yellow;
}
.warning:hover {
-fx-text-fill: -bs-color-gray-6;
-fx-fill: -bs-color-gray-6;
}
.zero-decimals {
-fx-text-fill: -bs-color-gray-3;
}
.confirmation-label {
-fx-font-size: 1.077em;
-fx-text-fill: -bs-rd-font-confirmation-label;
}
.confirmation-value {
-fx-font-size: 1.077em;
-fx-font-family: "IBM Plex Mono";
-fx-text-fill: -bs-rd-font-dark-gray;
}
.confirmation-text-field-as-label:readonly {
-fx-background-color: transparent !important;
-fx-font-size: 1.077em;
-fx-font-family: "IBM Plex Mono";
-fx-padding: 0 !important;
}
/* Other UI Elements */
.separator *.line {
-fx-border-style: solid;
-fx-border-width: 0 0 1 0;
-fx-border-color: -bs-rd-separator-dark;
}
.separator:vertical *.line {
-fx-border-width: 0 1 0 0;
}
.jfx-progress-bar > .bar,
.jfx-progress-bar:indeterminate > .bar {
-fx-background-color: -bs-color-primary;
}
.jfx-progress-bar.error > .bar,
.jfx-progress-bar:indeterminate.error > .bar {
-fx-background-color: -bs-rd-error-red;
}
.jfx-progress-bar > .track {
-fx-background-color: -bs-progress-bar-track;
}
.jfx-spinner {
-jfx-radius: 10;
}
.jfx-spinner:indeterminate .arc,
.jfx-spinner:determinate .arc {
-fx-stroke: -bs-color-primary;
}
.busyanimation .text.percentage {
-fx-fill: null;
}
.jfx-button, .action-button {
-fx-background-color: -bs-color-gray-bbb;
-fx-text-fill: -bs-rd-font-dark-gray;
-fx-font-size: 0.923em;
-fx-font-weight: normal;
-fx-background-radius: 2px;
-fx-pref-height: 32;
-fx-min-height: -fx-pref-height;
-fx-padding: 0 40 0 40;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent, 2, 0, 0, 0, 1);
-fx-cursor: hand;
}
.jfx-button:hover, .jfx-button:focused {
-fx-background-color: derive(-bs-color-gray-2, -10%);
}
.action-button:hover, .action-button:focused {
-fx-background-color: derive(-bs-color-primary-dark, -10%);
}
.action-button {
-fx-background-color: -bs-color-primary-dark;
-fx-text-fill: -bs-background-color;
}
.compact-button, .table-cell .jfx-button, .action-button.compact-button {
-fx-padding: 0 10 0 10;
}
.tiny-button,
.action-button.tiny-button {
-fx-font-size: 0.769em;
-fx-pref-height: 20;
-fx-padding: 3 8 3 8;
-fx-border-radius: 5;
}
.text-button {
-fx-background-color: transparent;
-fx-underline: true;
-fx-padding: 0 10 0 10;
-fx-pref-height: 28;
-fx-min-height: -fx-pref-height;
}
.text-button:hover {
-fx-text-fill: -bs-text-color;
-fx-background-color: transparent;
-fx-underline: false;
}
.jfx-checkbox {
-jfx-checked-color: -bs-color-primary;
-fx-font-size: 0.692em;
}
.jfx-check-box .box,
.jfx-check-box:indeterminate .box,
.jfx-check-box:indeterminate:selected .box {
-fx-border-radius: 0;
-fx-border-width: 1;
-fx-pref-width: 12;
-fx-pref-height: 12;
}
.jfx-check-box .mark,
.jfx-check-box .indeterminate-mark {
-fx-border-radius: 0;
-fx-border-width: 1;
}
.jfx-combo-box {
-jfx-focus-color: -bs-color-primary;
-jfx-unfocus-color: -bs-color-gray-line;
-fx-background-color: -bs-background-color;
}
.jfx-combo-box > .list-cell {
-fx-text-fill: -bs-text-color;
-fx-font-family: "IBM Plex Sans Medium";
}
.jfx-combo-box > .arrow-button > .arrow {
-fx-background-color: null;
-fx-border-color: -jfx-unfocus-color;
-fx-shape: "M 0 0 l 3.5 4 l 3.5 -4";
}
.combo-box-popup > .list-view > .virtual-flow > .clipped-container > .sheet > .list-cell:filled:selected {
-fx-background: -fx-selection-bar;
-fx-background-color: -fx-selection-bar;
}
.combo-box-popup > .list-view > .virtual-flow > .clipped-container > .sheet > .list-cell:filled:hover,
.combo-box-popup > .list-view > .virtual-flow > .clipped-container > .sheet > .list-cell:filled:selected:hover {
-fx-background: -fx-accent;
-fx-background-color: -fx-selection-bar;
}
/* list view */
.list-view .list-cell {
-fx-background-color: -bs-background-color;
}
.list-view .list-cell:odd {
-fx-background-color: derive(-bs-background-color, -5%);
}
.list-view .list-cell:even {
-fx-background-color: derive(-bs-background-color, 5%);
}
.list-view .list-cell:hover,
.list-view .list-cell:selected,
.table-view .table-cell:hover,
.table-view .table-cell:selected {
-fx-background: -fx-accent;
-fx-background-color: -fx-selection-bar;
-fx-border-color: -fx-selection-bar;
}
.number-column.table-cell {
-fx-background-color: -bs-background-color;
}
.list-view:focused,
.tree-view:focused,
.table-view:focused,
.tree-table-view:focused,
.table-view:focused,
tree-table-view:focused {
-fx-background-insets: 0;
}
.list-view:focused {
-fx-background-color: -bs-color-primary;
-fx-background-insets: 0;
}
/* Selected rows */
.list-view:focused > .virtual-flow > .clipped-container > .sheet > .list-cell:filled:selected,
.tree-view:focused > .virtual-flow > .clipped-container > .sheet > .tree-cell:filled:selected,
.table-view:focused > .virtual-flow > .clipped-container > .sheet > .table-row-cell:filled:selected,
.tree-table-view:focused > .virtual-flow > .clipped-container > .sheet > .tree-table-row-cell:filled:selected,
.table-view:focused > .virtual-flow > .clipped-container > .sheet > .table-row-cell .table-cell:selected,
.tree-table-view:focused > .virtual-flow > .clipped-container > .sheet > .tree-table-row-cell .tree-table-cell:selected {
-fx-background-insets: 0;
}
/* Selected when control is not focused */
.list-cell:filled:selected,
.tree-cell:filled:selected,
.table-row-cell:filled:selected,
.tree-table-row-cell:filled:selected,
.table-row-cell:filled > .table-cell:selected,
.tree-table-row-cell:filled > .tree-table-cell:selected {
-fx-background-insets: 0;
}
.jfx-text-field {
-jfx-focus-color: -bs-color-primary;
-fx-background-color: -bs-background-color;
-fx-background-radius: 3 3 0 0;
-fx-padding: 0.333333em 0.333333em 0.333333em 0.333333em;
}
.jfx-text-field > .input-line {
-fx-translate-x: -0.333333em;
}
.jfx-text-field > .input-focused-line {
-fx-translate-x: -0.333333em;
}
.jfx-text-field-top-label {
-fx-text-fill: -bs-color-gray-dim;
}
.jfx-text-field:readonly, .hyperlink-with-icon {
-fx-background-color: -bs-color-gray-1;
-fx-padding: 0.333333em 0.333333em 0.333333em 0.333333em;
}
.jfx-text-field:readonly > .input-line {
-fx-background-color: transparent;
}
.jfx-text-field:readonly > .input-focused-line {
-fx-background-color: transparent;
}
.jfx-text-field:disabled > .input-line {
-fx-background-color: transparent;
-fx-border-width: 0;
}
.jfx-text-field:disabled > .input-focused-line {
-fx-background-color: transparent;
-fx-border-width: 0;
}
#info-field {
-fx-prompt-text-fill: -bs-text-color;
}
.jfx-password-field {
-fx-background-color: -bs-background-color;
-fx-background-radius: 3 3 0 0;
-jfx-focus-color: -bs-color-primary;
-fx-padding: 0.333333em 0.333333em 0.333333em 0.333333em;
}
.jfx-password-field > .input-line {
-fx-translate-x: -0.333333em;
}
.jfx-password-field > .input-focused-line {
-fx-translate-x: -0.333333em;
}
.jfx-text-field:error, .jfx-password-field:error, .jfx-text-area:error {
-jfx-focus-color: -bs-rd-error-red;
-jfx-unfocus-color: -bs-rd-error-red;
}
.jfx-text-field .error-label, .jfx-password-field .error-label, .jfx-text-area .error-label {
-fx-text-fill: -bs-rd-error-red;
-fx-font-size: 0.692em;
-fx-padding: -0.5em 0 0 0;
}
.jfx-text-field .error-icon, .jfx-password-field .error-icon, .jfx-text-area .error-icon {
-fx-text-fill: -bs-rd-error-red;
-fx-font-size: 1em;
}
.input-with-border {
-fx-background-color: -bs-background-color;
-fx-border-width: 1;
-fx-border-color: -bs-background-gray;
-fx-border-radius: 3;
-fx-pref-height: 43;
-fx-pref-width: 310;
-fx-effect: innershadow(gaussian, -bs-text-color-transparent, 3, 0, 0, 1);
}
.input-with-border .text-field {
-fx-alignment: center-right;
-fx-pref-height: 43;
-fx-font-size: 1.385em;
}
.input-with-border > .input-label {
-fx-font-size: 0.692em;
-fx-min-width: 60;
-fx-padding: 16;
-fx-alignment: center;
}
.input-with-border .icon {
-fx-padding: 10;
}
.input-with-border-readonly {
-fx-background-color: -bs-color-gray-1;
-fx-border-width: 0;
-fx-pref-width: 300;
}
.input-with-border-readonly .text-field {
-fx-alignment: center-right;
-fx-font-size: 1em;
-fx-background-color: -bs-color-gray-1;
}
.input-with-border-readonly .text-field > .input-line {
-fx-background-color: transparent;
}
.input-with-border-readonly > .input-label {
-fx-font-size: 0.692em;
-fx-min-width: 30;
-fx-padding: 8;
-fx-alignment: center;
}
.input-with-border-readonly .icon {
-fx-padding: 2;
}
.jfx-badge .badge-pane {
-fx-background-color: -bs-red;
-fx-background-radius: 15;
-fx-pref-width: 15;
-fx-pref-height: 15;
}
.jfx-badge.new .badge-pane {
-fx-pref-width: 30;
}
.jfx-badge.auto-conf .badge-pane {
-fx-background-color: -xmr-orange;
-fx-pref-width: -1;
-fx-padding: -1 10 0 10;
}
.jfx-badge .badge-pane .label {
-fx-font-weight: bold;
-fx-font-size: 0.692em;
-fx-text-fill: -bs-background-color;
}
.jfx-badge {
-fx-padding: -3 0 0 0;
}
.jfx-toggle-button,
.jfx-toggle-button:armed,
.jfx-toggle-button:hover,
.jfx-toggle-button:focused,
.jfx-toggle-button:selected,
.jfx-toggle-button:focused:selected {
-jfx-toggle-color: -bs-color-primary-dark;
-jfx-size: 8;
}
.jfx-text-area {
-jfx-focus-color: -bs-color-primary;
-jfx-unfocus-color: -bs-color-gray-line;
-fx-background-color: -bs-background-color;
-fx-padding: 0.333333em 0.333333em 0.333333em 0.333333em;
}
.jfx-text-area:readonly {
-fx-background-color: transparent;
}
.jfx-text-area > .input-line {
-fx-translate-x: -0.333333em;
}
.jfx-text-area > .input-focused-line {
-fx-translate-x: -0.333333em;
}
.wallet-seed-words {
-fx-font-family: "IBM Plex Mono";
}
.wallet-seed-words .content,
.wallet-seed-words:focused .content {
-fx-padding: 12 12 0 12;
}
.jfx-date-picker {
-jfx-default-color: -bs-color-primary;
}
.jfx-date-picker .jfx-text-field {
-fx-padding: 0.333333em 0em 0.333333em 0em;
}
.jfx-date-picker .jfx-text-field > .input-line {
-fx-translate-x: 0em;
}
.jfx-date-picker .jfx-text-field > .input-focused-line {
-fx-translate-x: 0em;
}
.jfx-date-picker > .arrow-button > .arrow {
-fx-shape: "M320 384h128v128h-128zM512 384h128v128h-128zM704 384h128v128h-128zM128 768h128v128h-128zM320 768h128v128h-128zM512 768h128v128h-128zM320 576h128v128h-128zM512 576h128v128h-128zM704 576h128v128h-128zM128 576h128v128h-128zM832 0v64h-128v-64h-448v64h-128v-64h-128v1024h960v-1024h-128zM896 960h-832v-704h832v704z";
-fx-background-color: -jfx-default-color;
-fx-background-insets: 0;
-fx-padding: 10;
}
.jfx-date-picker > .arrow-button > .jfx-svg-glyph {
-fx-background-color: -jfx-default-color;
}
.date-picker-popup .month-year-pane {
-fx-background-color: -bs-color-primary-dark;
}
.scroll-bar {
-fx-background-color: -bs-background-color;
-fx-background-radius: 0;
}
.scroll-bar:horizontal .track,
.scroll-bar:vertical .track {
-fx-background-color: -bs-background-color;
-fx-border-color: -bs-background-color;
-fx-background-radius: 0;
}
.scroll-bar:vertical .track-background,
.scroll-bar:horizontal .track-background {
-fx-background-color: -bs-background-color;
-fx-background-insets: 0;
-fx-background-radius: 0;
}
.scroll-bar:horizontal .thumb {
-fx-background-color: -bs-color-gray-2;
-fx-background-insets: 2 0 2 0;
-fx-background-radius: 3;
}
.scroll-bar:vertical .thumb {
-fx-background-color: -bs-color-gray-2;
-fx-background-insets: 0 2 0 2;
-fx-background-radius: 3;
}
.scroll-bar:horizontal .thumb:hover,
.scroll-bar:vertical .thumb:hover {
-fx-background-color: -bs-color-gray-ccc;
}
.scroll-bar:horizontal .thumb:pressed,
.scroll-bar:vertical .thumb:pressed {
-fx-background-color: -bs-color-gray-ddd;
}
.scroll-bar:vertical .increment-button,
.scroll-bar:vertical .decrement-button,
.scroll-bar:horizontal .increment-button,
.scroll-bar:horizontal .decrement-button {
-fx-background-color: -bs-background-color;
-fx-padding: 1;
}
.scroll-bar:horizontal .increment-arrow,
.scroll-bar:vertical .increment-arrow,
.scroll-bar:horizontal .decrement-arrow,
.scroll-bar:vertical .decrement-arrow {
-fx-shape: null;
-fx-background-color: -bs-background-color;
}
.scroll-bar:vertical:focused,
.scroll-bar:horizontal:focused {
-fx-background-color: -bs-background-color, -bs-color-gray-ccc, -bs-color-gray-ddd;
}
/* Behavior */
.show-hand {
-fx-cursor: hand;
}
.hide-focus {
-fx-focus-color: transparent;
}
/* Font */
.very-small-text {
-fx-font-size: 0.692em;
}
.small-text {
-fx-font-size: 0.769em;
}
.normal-text {
-fx-font-size: 0.923em;
}
.default-text {
-fx-font-size: 13;
}
.bold-text,
.bold-text .text {
-fx-font-weight: bold;
}
/* Splash */
#splash {
-fx-background-color: -bs-background-color;
}
/* Main UI */
#base-content-container {
-fx-background-color: -bs-background-gray;
}
.content-pane {
-fx-background-color: linear-gradient(-bs-content-pane-bg-top 0%, -bs-content-pane-bg-bottom 100%);
}
#footer-pane {
-fx-background-color: -bs-footer-pane-background;
-fx-font-size: 0.923em;
-fx-text-fill: -bs-footer-pane-text;
}
#footer-pane-line {
-fx-background: -bs-footer-pane-line;
}
#headline-label {
-fx-font-weight: bold;
-fx-font-size: 1.385em;
}
/* Main navigation */
.top-navigation {
-fx-background-color: -bs-rd-nav-background;
-fx-border-width: 0 0 1 0;
-fx-border-color: -bs-rd-nav-primary-border;
-fx-pref-height: 57;
-fx-padding: 0 11 0 0;
}
.top-navigation .separator:vertical .line {
-fx-border-color: transparent transparent transparent transparent;
-fx-border-width: 1;
-fx-border-insets: 0 0 0 1;
}
.nav-primary {
-fx-background-color: -bs-rd-nav-primary-background;
-fx-padding: 0 11 0 11;
-fx-border-width: 0 1 0 0;
-fx-border-color: -bs-rd-nav-primary-border;
-fx-min-width: 410;
}
.nav-secondary {
-fx-padding: 0 11 0 11;
-fx-min-width: 296;
}
.nav-price-balance {
-fx-background-color: -bs-color-gray-background;
-fx-background-radius: 3;
-fx-effect: innershadow(gaussian, -bs-text-color-transparent, 3, 0, 0, 1);
-fx-pref-height: 41;
-fx-padding: 0 10 0 0;
}
.nav-price-balance .separator:vertical .line {
-fx-border-color: transparent transparent transparent -bs-rd-separator-dark;
-fx-border-width: 1;
-fx-border-insets: 0 0 0 1;
}
.nav-price-balance .jfx-combo-box > .input-line {
-fx-pref-height: 0px;
}
.jfx-badge > .nav-button {
-fx-translate-y: 1;
}
.nav-button {
-fx-cursor: hand;
-fx-background-color: transparent;
-fx-padding: 11;
}
.nav-button .text {
-fx-font-size: 0.769em;
-fx-font-weight: bold;
-fx-fill: -bs-rd-nav-deselected;
}
.nav-button-japanese .text {
-fx-font-size: 1em;
}
.nav-button:selected {
-fx-background-color: -bs-background-color;
-fx-border-radius: 4;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent, 4, 0, 0, 0, 2);
}
.nav-button:selected .text {
-fx-fill: -bs-rd-nav-selected;
}
.nav-balance-display {
-fx-alignment: center-left;
-fx-text-fill: -bs-rd-font-balance;
}
.nav-balance-label {
-fx-font-size: 0.769em;
-fx-alignment: center-left;
-fx-text-fill: -bs-rd-font-balance-label;
}
#nav-alert-label {
-fx-font-weight: bold;
-fx-alignment: center;
-fx-font-size: 0.846em;
-fx-text-fill: -bs-background-color;
}
.text-field {
-fx-prompt-text-fill: derive(-bs-prompt-text, -30%);
}
.text-area {
-fx-prompt-text-fill: derive(-bs-prompt-text, -30%);
}
#label-url {
-fx-cursor: hand;
-fx-text-fill: -bs-color-blue-0;
-fx-underline: true;
}
/** Confirmation Indicator */
.progress-indicator > .determinate-indicator > .indicator {
-fx-background-color: -fx-control-inner-background;
-fx-border-color: -fx-box-border;
-fx-border-width: 1;
-fx-padding: 0.166667em; /* 2px */
}
/*******************************************************************************
* *
* Icons *
* *
******************************************************************************/
.icon, .icon:hover {
-fx-cursor: hand;
}
.hidden-icon-button {
-fx-background-color: transparent;
-fx-padding: 0;
-fx-cursor: hand;
}
#icon-button {
-fx-cursor: hand;
-fx-background-color: transparent;
}
.copy-icon-disputes {
-fx-text-fill: -bs-background-color;
}
.copy-icon:hover {
-fx-text-fill: -bs-text-color;
}
.received-funds-icon {
-fx-text-fill: -bs-green-soft;
}
.sent-funds-icon {
-fx-text-fill: -bs-red-soft;
}
.version {
-fx-text-fill: -bs-text-color;
-fx-underline: false;
-fx-cursor: null;
}
.version-new {
-fx-text-fill: -bs-rd-error-red;
-fx-underline: true;
-fx-cursor: hand;
}
.alert {
-fx-text-fill: -bs-rd-error-red;
}
.opaque-icon {
-fx-fill: -bs-color-gray-bbb;
-fx-opacity: 1;
}
.opaque-icon-character {
-fx-font-size: 3em;
-fx-text-fill: -bs-color-gray-bbb;
-fx-padding: 24 2 0 2;
}
.opaque-icon-character.small {
-fx-font-size: 1em;
-fx-padding: 27 2 0 2;
}
.alert-icon {
-fx-fill: -bs-rd-error-red;
-fx-cursor: hand;
}
.close-icon {
-fx-fill: -bs-text-color;
}
.close-icon:hover {
-fx-fill: -fx-accent;
}
.tooltip-icon {
-fx-fill: -bs-text-color;
}
/*******************************************************************************
* *
* Tooltip *
* *
******************************************************************************/
.tooltip {
-fx-background: -bs-background-color;
-fx-text-fill: -bs-text-color;
-fx-background-color: -bs-background-color;
-fx-background-radius: 6px;
-fx-background-insets: 0;
-fx-padding: 0.667em 0.75em 0.667em 0.75em; /* 10px */
-fx-effect: dropshadow(three-pass-box, -bs-text-color-transparent, 10, 0, 0, 3);
-fx-font-size: 0.85em;
}
/* Same style like non editable textfield. But textfield spans a whole column in a grid, so we use generally
textfield */
#label-with-background {
-fx-background-color: -bs-color-gray-fafa;
-fx-border-radius: 4;
-fx-padding: 4 4 4 4;
}
#funds-confidence {
-fx-progress-color: -bs-color-gray-dim;
-fx-max-width: 20;
-fx-max-height: 20;
}
#xmr-confidence {
-fx-progress-color: -xmr-orange;
-fx-max-width: 20;
-fx-max-height: 20;
}
.hyperlink,
.hyperlink.force-underline .text,
.hyperlink:hover,
.hyperlink:visited,
.hyperlink:hover:visited,
.hyperlink:focused {
-fx-border-style: none;
-fx-border-width: 0px;
-fx-underline: true;
-fx-text-fill: -bs-rd-font-dark;
-fx-fill: -bs-rd-font-dark;
}
.hyperlink.no-underline {
-fx-underline: false;
}
.hyperlink:hover {
-fx-text-fill: -bs-text-color;
-fx-fill: -bs-text-color;
}
.hyperlink:hover,
.hyperlink:visited,
.hyperlink:hover:visited {
-fx-underline: false;
}
.hyperlink.highlight,
.hyperlink.highlight .text.hyperlink.no-underline {
-fx-text-fill: -fx-accent;
-fx-fill: -fx-accent;
}
.hyperlink.error {
-fx-text-fill: -bs-rd-error-red;
-fx-fill: -bs-rd-error-red;
}
/*******************************************************************************
* *
* Table *
* *
******************************************************************************/
.table-view .table-row-cell:even .table-cell {
-fx-background-color: derive(-bs-background-color, 5%);
-fx-border-color: derive(-bs-background-color,5%);
}
.table-view .table-row-cell:odd .table-cell {
-fx-background-color: derive(-bs-background-color,-5%);
-fx-border-color: derive(-bs-background-color,-5%);
}
.table-view .table-row-cell:hover .table-cell,
.table-view .table-row-cell:selected .table-cell {
-fx-background: -fx-accent;
-fx-background-color: -fx-selection-bar;
-fx-border-color: -fx-selection-bar;
}
.table-row-cell {
-fx-border-color: -bs-background-color;
}
.table-row-cell:empty, .table-row-cell:empty:even, .table-row-cell:empty:odd {
-fx-background-color: -bs-background-color;
-fx-min-height: 36;
}
.offer-table .table-row-cell {
-fx-background: -fx-accent;
-fx-background-color: -bs-color-gray-6;
}
.table-view .table-cell {
-fx-alignment: center-left;
-fx-padding: 2 0 2 0;
/*-fx-padding: 3 0 2 0;*/
}
.table-view .table-cell.last-column {
-fx-alignment: center-right;
-fx-padding: 2 10 2 0;
}
.table-view .table-cell.last-column.avatar-column {
-fx-alignment: center;
-fx-padding: 2 0 2 0;
}
.table-view .column-header.last-column {
-fx-padding: 0 10 0 0;
}
.table-view .column-header.last-column .label {
-fx-alignment: center-right;
}
.table-view .column-header.last-column.avatar-column {
-fx-padding: 0;
}
.table-view .column-header.last-column.avatar-column .label {
-fx-alignment: center;
}
.table-view .table-cell.first-column {
-fx-padding: 2 0 2 10;
}
.table-view .column-header.first-column {
-fx-padding: 0 0 0 10;
}
.number-column.table-cell {
-fx-font-size: 1em;
-fx-padding: 0 0 0 0;
}
.table-view .filler {
-fx-background-color: -bs-color-gray-0;
}
.table-view {
-fx-control-inner-background-alt: -fx-control-inner-background;
}
.table-view .column-header .label {
-fx-alignment: center-left;
-fx-font-weight: normal;
-fx-font-size: 0.923em;
-fx-padding: 0;
}
.table-view .column-header {
-fx-background-color: -bs-color-gray-0;
-fx-padding: 0;
}
.table-view .focus {
-fx-alignment: center-left;
}
.table-view .text {
-fx-fill: -bs-text-color;
}
/* horizontal scrollbars are never needed and are flickering at scaling so lets turn them off */
.table-view > .scroll-bar:horizontal {
-fx-opacity: 0;
}
.table-view:focused {
-fx-background-color: -fx-box-border, -fx-control-inner-background;
-fx-background-insets: 0, 1;
-fx-padding: 1;
}
.table-view:focused .table-row-cell:focused {
-fx-background-color: -fx-table-cell-border-color, -fx-background;
-fx-background-insets: 0, 0 0 1 0;
}
.offer-table .table-row-cell {
-fx-border-color: -bs-background-color;
-fx-table-cell-border-color: -bs-background-color;
}
.table-row-cell {
-fx-border-width: 0 0 1 0;
-fx-border-color: -bs-color-gray-0;
-fx-table-cell-border-color: -bs-background-color;
}
.table-row-cell:selected {
-fx-border-width: 0 0 1 0;
-fx-table-cell-border-color: transparent;
}
.table-row-cell:empty {
-fx-border-width: 0;
-fx-background-color: -bs-background-color;
-fx-table-cell-border-color: transparent;
}
.table-view .table-row-cell:selected .table-row-cell:row-selection .table-row-cell:cell-selection .text {
-fx-fill: -bs-text-color;
}
.table-view .table-row-cell:selected .button .text {
-fx-fill: -bs-text-color;
}
.table-view .table-row-cell .copy-icon .text,
.table-view .table-row-cell .copy-icon .text:hover {
-fx-fill: -fx-accent;
}
.table-view .table-row-cell:selected .copy-icon .text {
-fx-fill: -bs-text-color;
}
.table-view .table-row-cell:selected .copy-icon .text:hover {
-fx-fill: -bs-text-color;
}
.table-view .table-row-cell:selected .hyperlink .text {
-fx-fill: -bs-text-color;
-fx-border-style: none;
-fx-border-width: 0px;
}
.table-view .table-row-cell .hyperlink .text {
-fx-fill: -bs-rd-font-dark;
-fx-border-style: none;
-fx-border-width: 0px;
}
.table-view .table-row-cell .hyperlink .text:hover,
.table-view .table-row-cell:selected .hyperlink .text:hover {
-fx-fill: -bs-text-color;
-fx-border-style: none;
-fx-border-width: 0px;
}
.table-view .table-row-cell .hyperlink:hover,
.table-view .table-row-cell .hyperlink:visited,
.table-view .table-row-cell .hyperlink:hover:visited {
-fx-underline: false;
-fx-border-style: none;
-fx-border-width: 0px;
}
.table-view .table-row-cell .hyperlink:focused {
-fx-border-style: none;
-fx-border-width: 0px;
}
.table-view.large-rows .table-row-cell {
-fx-cell-size: 47px;
}
/*******************************************************************************
* *
* Icons *
* *
******************************************************************************/
#non-clickable-icon {
-fx-text-fill: -bs-color-gray-4;
}
.delete-icon {
-fx-fill: -bs-red;
}
.delete {
-fx-text-fill: -bs-rd-error-red;
-fx-fill: -bs-rd-error-red;
}
.delete:hover {
-fx-text-fill: -bs-text-color;
-fx-fill: -bs-text-color;
}
.warn-icon {
-fx-text-fill: -bs-yellow;
-fx-fill: -bs-yellow;
}
.warn-icon:hover {
-fx-text-fill: -bs-yellow;
-fx-fill: -bs-yellow;
}
.error-icon {
-fx-text-fill: -bs-rd-error-red;
-fx-fill: -bs-rd-error-red;
}
.error-icon:hover {
-fx-text-fill: -bs-rd-error-red;
-fx-fill: -bs-rd-error-red;
}
/*******************************************************************************
* *
* Images *
* *
******************************************************************************/
.qr-code {
-fx-cursor: hand;
}
/*******************************************************************************
* *
* Textarea *
* *
******************************************************************************/
.text-area {
-fx-border-color: -bs-background-gray;
}
/*******************************************************************************
* *
* Tab pane *
* *
******************************************************************************/
.jfx-tab-pane {
-fx-padding: 0;
-jfx-disable-animation: true;
}
.jfx-tab-pane .headers-region .tab .tab-container .tab-close-button {
-fx-background-color: transparent;
-fx-pref-width: 20;
-fx-pref-height: 20;
-fx-min-width: -fx-pref-width;
-fx-max-width: -fx-pref-width;
-fx-min-height: -fx-pref-height;
-fx-max-height: -fx-pref-height;
}
.jfx-tab-pane .headers-region .tab .tab-container .tab-close-button .jfx-rippler {
-jfx-rippler-fill: -fx-accent;
}
.jfx-tab-pane .headers-region .tab .tab-container .tab-close-button > .jfx-svg-glyph {
-fx-shape: "M810 274l-238 238 238 238-60 60-238-238-238 238-60-60 238-238-238-238 60-60 238 238 238-238z";
-jfx-size: 9;
-fx-background-color: -bs-rd-font-light;
}
.jfx-tab-pane .headers-region .tab .tab-container .tab-close-button {
-fx-padding: 0 0 2 0;
}
.jfx-tab-pane .headers-region .tab:selected .tab-container .tab-close-button > .jfx-svg-glyph {
-fx-background-color: -fx-accent;
}
.jfx-tab-pane .tab-header-background {
-fx-background-color: -bs-color-gray-background;
-fx-border-width: 0 0 1 0;
-fx-border-color: -bs-rd-tab-border;
}
.jfx-tab-pane .headers-region .tab-selected-line {
-fx-background-color: -fx-accent;
-fx-pref-height: 1;
}
.jfx-tab-pane .headers-region .tab .tab-container .tab-label {
-fx-text-fill: -bs-rd-font-light;
-fx-padding: 14;
-fx-font-size: 0.769em;
-fx-font-weight: normal;
}
.jfx-tab-pane .depth-container {
-fx-effect: none;
}
.jfx-tab-pane .headers-region .tab:selected .tab-container .tab-label {
-fx-text-fill: -fx-accent;
}
.jfx-tab-pane .headers-region > .tab > .jfx-rippler {
-jfx-rippler-fill: -fx-accent;
}
.jfx-tab-pane .headers-region .tab:closable {
-fx-border-color: transparent;
-fx-border-width: 0;
-fx-border-style: none;
-fx-border-insets: 0;
-fx-padding: 9;
}
.jfx-tab-pane .headers-region .tab:closable .tab-container .tab-label {
-fx-padding: 5;
}
#form-header-text {
-fx-font-weight: bold;
-fx-font-size: 1.077em;
}
#form-title {
-fx-font-weight: bold;
}
/* scroll-pane */
.scroll-pane {
-fx-background-insets: 0;
-fx-padding: 0;
}
.scroll-pane:focused {
-fx-background-insets: 0;
}
.scroll-pane .corner {
-fx-background-insets: 0;
}
/* validation */
.validation-error {
-fx-text-fill: -bs-red;
}
/* Account */
#content-pane-top {
-fx-background-color: -bs-color-gray-2,
linear-gradient(-bs-color-gray-2 0%, -bs-color-gray-3 100%),
linear-gradient(-bs-color-gray-2 0%, -bs-background-gray 100%);
-fx-background-insets: 0 0 0 0, 0, 1;
}
#info-icon-label {
-fx-font-size: 1.231em;
-fx-text-fill: -bs-color-gray-13;
}
/* OfferPayload book */
#num-offers {
-fx-font-size: 0.923em;
}
/* Create offer */
#direction-icon-label {
-fx-font-weight: bold;
-fx-font-size: 1.231em;
-fx-text-fill: -bs-color-gray-6;
}
#input-description-label {
-fx-font-size: 0.846em;
-fx-alignment: center-left;
}
#create-offer-calc-label {
-fx-font-weight: bold;
-fx-font-size: 1.538em;
-fx-padding: 15 5 0 5;
}
#toggle-price-left {
-fx-border-radius: 4 0 0 4;
-fx-padding: 4 4 4 4;
-fx-border-color: -bs-color-gray-4;
-fx-border-style: solid none solid solid;
-fx-border-insets: 0 -2 0 0;
-fx-background-insets: 0 -2 0 0;
-fx-background-radius: 4 0 0 4;
}
#toggle-price-right {
-fx-border-radius: 0 4 4 0;
-fx-padding: 4 4 4 4;
-fx-border-color: -bs-color-gray-4;
-fx-border-style: solid solid solid none;
-fx-border-insets: 0 0 0 -2;
-fx-background-insets: 0 0 0 -2;
-fx-background-radius: 0 4 4 0;
}
#totals-separator {
-fx-background: -bs-color-gray-4;
}
#payment-info {
-fx-background-color: -bs-content-background-gray;
}
.toggle-button-active {
-fx-background-color: -bs-blue-transparent;
}
.toggle-button-inactive {
-fx-background-color: -bs-color-gray-1;
}
#trade-fee-textfield {
-fx-font-size: 0.9em;
-fx-alignment: center-right;
}
/* Open Offer */
.offer-disabled .label {
-fx-text-fill: -bs-color-gray-3;
}
/* OfferBook */
.table-title {
-fx-font-size: 1.077em;
-fx-font-family: "IBM Plex Sans Medium";
-fx-alignment: center-left;
}
.combo-box-editor-bold {
-fx-font-weight: bold;
-fx-padding: 5 8 5 8 !important;
-fx-text-fill: -bs-text-color;
-fx-font-family: "IBM Plex Sans Medium";
}
.currency-label-small {
-fx-font-size: 0.692em;
-fx-text-fill: -bs-rd-font-lighter;
-fx-alignment: center;
-fx-pref-height: 35px;
-fx-pref-width: 45px;
}
.offer-label-small {
-fx-font-size: 0.692em;
-fx-alignment: center-right;
-fx-text-fill: -bs-text-color;
}
.currency-label-selected {
-fx-text-fill: -bs-text-color;
-fx-font-family: "IBM Plex Sans Medium";
}
.currency-label {
-fx-font-size: 1.077em;
-fx-text-fill: -bs-rd-font-dark-gray;
-fx-alignment: center-left;
-fx-pref-height: 35px;
}
/* Offer */
.percentage-label {
-fx-alignment: center;
}
.offer-separator {
-fx-background: -bs-color-gray-6;
}
#address-text-field {
-fx-cursor: hand;
-fx-text-fill: -fx-accent;
-fx-prompt-text-fill: -bs-text-color;
}
#address-text-field:hover {
-fx-text-fill: -bs-text-color;
}
#address-text-field-error {
-fx-cursor: hand;
-fx-text-fill: -bs-rd-error-red;
-fx-prompt-text-fill: -bs-text-color;
}
/* Account setup */
#wizard-item-background-deactivated {
-fx-body-color: linear-gradient(to bottom, -bs-content-background-gray, -bs-color-gray-aaa);
-fx-outer-border: linear-gradient(to bottom, -bs-background-gray, -bs-color-gray-3);
-fx-background-color: -fx-shadow-highlight-color,
-fx-outer-border,
-fx-inner-border,
-fx-body-color;
-fx-background-insets: 0 0 -1 0, 0, 1, 2;
-fx-background-radius: 3px, 3px, 2px, 1px;
}
#wizard-item-background-active {
-fx-body-color: linear-gradient(to bottom, -bs-bg-gray-5, -bs-color-gray-6);
-fx-outer-border: linear-gradient(to bottom, -bs-color-blue-1, -bs-color-blue-2);
-fx-background-color: -fx-shadow-highlight-color,
-fx-outer-border,
-fx-inner-border,
-fx-body-color;
-fx-background-insets: 0 0 -1 0, 0, 1, 2;
-fx-background-radius: 3px, 3px, 2px, 1px;
}
#wizard-item-background-completed {
-fx-body-color: linear-gradient(to bottom, -bs-content-background-gray, -bs-color-gray-aaa);
-fx-outer-border: linear-gradient(to bottom, -bs-bg-green, -bs-color-green-2);
-fx-background-color: -fx-shadow-highlight-color,
-fx-outer-border,
-fx-inner-border,
-fx-body-color;
-fx-background-insets: 0 0 -1 0, 0, 1, 2;
-fx-background-radius: 3px, 3px, 2px, 1px;
}
/* Account settings */
#account-settings-item-background-disabled {
-fx-body-color: linear-gradient(to bottom, -bs-content-background-gray, -bs-color-gray-1);
-fx-outer-border: linear-gradient(to bottom, -bs-background-gray, -bs-color-gray-3);
-fx-background-color: -fx-shadow-highlight-color,
-fx-outer-border,
-fx-inner-border,
-fx-body-color;
-fx-background-insets: 0 0 -1 0, 0, 1, 2;
-fx-background-radius: 3px, 3px, 2px, 1px;
}
#account-settings-item-background-active {
-fx-body-color: linear-gradient(to bottom, -bs-content-background-gray, -bs-color-gray-1);
-fx-outer-border: linear-gradient(to bottom, -bs-background-gray, -bs-color-gray-3);
-fx-background-color: -fx-shadow-highlight-color,
-fx-outer-border,
-fx-inner-border,
-fx-body-color;
-fx-background-insets: 0 0 -1 0, 0, 1, 2;
-fx-background-radius: 3px, 3px, 2px, 1px;
}
#account-settings-item-background-selected {
-fx-body-color: linear-gradient(to bottom, -bs-color-gray-5, -bs-color-gray-1);
-fx-outer-border: linear-gradient(to bottom, -bs-color-blue-1, -bs-color-blue-2);
-fx-background-color: -fx-shadow-highlight-color,
-fx-outer-border,
-fx-inner-border,
-fx-body-color;
-fx-background-insets: 0 0 -1 0, 0, 1, 2;
-fx-background-radius: 3px, 3px, 2px, 1px;
}
/* Pending trades */
#trade-wizard-item-background-disabled {
-fx-text-fill: -bs-rd-font-light;
}
#trade-wizard-item-background-active {
-fx-text-fill: -bs-text-color;
-fx-font-family: "IBM Plex Sans Medium";
}
.trade-step-label {
-fx-text-fill: -bs-background-color;
}
.trade-step-disabled-bg {
-fx-fill: -bs-color-gray-ccc;
}
.trade-step-active-bg {
-fx-fill: -bs-color-primary-dark;
}
.trade-msg-state-undefined {
-fx-text-fill: -bs-yellow;
}
.trade-msg-state-sent {
-fx-text-fill: -bs-yellow-light;
}
.trade-msg-state-arrived {
-fx-text-fill: -bs-turquoise;
}
.trade-msg-state-stored {
-fx-text-fill: -bs-color-blue-4;
}
.trade-msg-state-acknowledged {
-fx-text-fill: -bs-color-primary;
}
.trade-msg-state-failed {
-fx-text-fill: -bs-rd-error-red;
}
#open-support-button {
-fx-font-weight: bold;
-fx-font-size: 1.077em;
-fx-background-color: -bs-warning;
}
#open-dispute-button {
-fx-font-weight: bold;
-fx-text-fill: -bs-background-color;
-fx-font-size: 1.077em;
-fx-background-color: -bs-rd-error-red;
}
/* TitledGroupBg */
.titled-group-bg-label, .titled-group-bg-label-active {
-fx-font-size: 1.077em;
-fx-font-family: "IBM Plex Sans Medium";
-fx-text-fill: -bs-text-color;
-fx-background-color: transparent;
}
.titled-group-bg, .titled-group-bg-active {
-fx-body-color: -bs-color-gray-background;
-fx-border-color: -bs-rd-separator;
-fx-border-width: 0 0 1 0;
-fx-background-color: transparent;
-fx-background-insets: 0;
}
.titled-group-bg.last, .titled-group-bg-active.last {
-fx-border-width: 0;
}
/* TableGroupHeadline */
#table-group-headline {
-fx-background-color: -bs-content-background-gray;
-fx-background-insets: 10 0 -1 0, 0, 1, 2;
-fx-background-radius: 3px, 3px, 2px, 1px;
}
/* copied form modena.css text-input */
#flow-pane-checkboxes-bg {
-fx-text-fill: -fx-text-inner-color;
-fx-highlight-fill: derive(-fx-control-inner-background, -20%);
-fx-highlight-text-fill: -fx-text-inner-color;
-fx-prompt-text-fill: derive(-bs-prompt-text, -30%);
-fx-background-color: linear-gradient(to bottom, derive(-fx-text-box-border, -10%), -fx-text-box-border),
linear-gradient(from 0px 0px to 0px 5px, derive(-fx-control-inner-background, -9%), -fx-control-inner-background);
-fx-background-insets: 0, 1;
-fx-background-radius: 3, 2;
-fx-padding: 0.333333em 0.583em 0.333333em 0.583em; /* 4 7 4 7 */
}
#flow-pane-checkboxes-non-editable-bg {
-fx-text-fill: -fx-text-inner-color;
-fx-highlight-fill: derive(-fx-control-inner-background, -20%);
-fx-highlight-text-fill: -fx-text-inner-color;
-fx-prompt-text-fill: derive(-bs-prompt-text, -30%);
-fx-background-color: linear-gradient(to bottom, derive(-fx-text-box-border, -10%), -fx-text-box-border),
linear-gradient(from 0px 0px to 0px 5px, derive(-fx-control-inner-background, -9%), -bs-color-gray-1);
-fx-background-insets: 0, 1;
-fx-background-radius: 3, 2;
-fx-padding: 0.333333em 0.583em 0.333333em 0.583em; /* 4 7 4 7 */
}
/* message-list-view*/
#message-list-view.list-view:focused > .virtual-flow > .clipped-container > .sheet > .list-cell:filled:selected {
-fx-background-color: -bs-background-color;
}
#message-list-view.list-view > .virtual-flow > .clipped-container > .sheet > .list-cell {
-fx-background-color: -bs-background-color;
}
#message-list-view.list-view > .virtual-flow > .clipped-container > .sheet > .list-cell:filled {
-fx-background-color: -bs-background-color;
}
#message-list-view.list-view > .virtual-flow > .clipped-container > .sheet > .list-cell:filled:selected {
-fx-background-color: -bs-background-color;
}
#message-list-view.list-view:focused > .virtual-flow > .clipped-container > .sheet > .list-cell {
-fx-background-color: -bs-background-color;
}
#message-list-view.list-cell {
-fx-padding: 0.25em 0.583em 0.25em 0.583em;
}
#message-list-view.list-view {
-fx-background-color: -fx-box-border, -fx-control-inner-background;
-fx-background-insets: 0, 1;
-fx-padding: 1;
}
#message-list-view.list-view:focused {
-fx-background-color: -fx-box-border, -fx-control-inner-background;
-fx-background-insets: 0, 1;
-fx-padding: 1;
}
/* bubble */
#message-bubble-green {
-fx-background-color: -bs-color-primary;
-fx-background-radius: 10 10 10 10;
}
#message-bubble-blue {
-fx-background-color: -bs-rd-message-bubble;
-fx-background-radius: 10 10 10 10;
}
#message-bubble-grey {
-fx-background-color: -bs-color-gray-3;
-fx-background-radius: 10 10 10 10;
}
.attachment-icon {
-fx-text-fill: -bs-background-color;
-fx-cursor: hand;
}
.attachment-icon-black {
-fx-text-fill: -bs-text-color;
-fx-cursor: hand;
}
/*******************************************************************************
* *
* Grid pane *
* *
******************************************************************************/
.grid-pane {
-fx-background-color: -bs-content-background-gray;
-fx-background-radius: 5;
-fx-effect: null;
-fx-effect: dropshadow(gaussian, -bs-color-gray-10, 10, 0, 0, 0);
-fx-background-insets: 10;
}
/********************************************************************************************************************
* *
* Market overview *
* *
********************************************************************************************************************/
.chart-pane {
-fx-background-color: -bs-background-color;
}
#charts .chart-legend, #charts-dao .chart-legend {
-fx-font-size: 1.077em;
-fx-alignment: center;
}
#charts .axis, #price-chart .axis, #volume-chart .axis, #charts-dao .axis {
-fx-tick-label-fill: -bs-rd-font-lighter;
-fx-tick-label-font-size: 0.769em;
-fx-font-size: 0.880em;
}
#price-chart .axis-tick-mark-text-node,
#volume-chart .axis-tick-mark-text-node,
#charts-dao .axis-tick-mark-text-node {
-fx-text-alignment: center;
}
#charts .chart-plot-background, #charts-dao .chart-plot-background {
-fx-background-color: -bs-background-color;
}
#charts .default-color0.chart-area-symbol {
-fx-background-color: -bs-sell, -bs-background-color;
}
#charts .default-color1.chart-area-symbol, #charts-dao .default-color0.chart-area-symbol {
-fx-background-color: -bs-buy, -bs-background-color;
}
#charts .default-color0.chart-series-area-line {
-fx-stroke: -bs-sell;
}
#charts .default-color1.chart-series-area-line, #charts-dao .default-color0.chart-series-area-line {
-fx-stroke: -bs-buy;
}
/* The .chart-line-symbol rules change the color of the legend symbol */
#charts-dao .default-color0.chart-series-line { -fx-stroke: -bs-chart-dao-line1; }
#charts-dao .default-color0.chart-line-symbol { -fx-background-color: -bs-chart-dao-line1, -bs-chart-dao-line1; }
#charts-dao .default-color1.chart-series-line { -fx-stroke: -bs-chart-dao-line2; }
#charts-dao .default-color1.chart-line-symbol { -fx-background-color: -bs-chart-dao-line2, -bs-chart-dao-line2; }
#charts-dao .default-color2.chart-series-line { -fx-stroke: -bs-chart-dao-line3; }
#charts-dao .default-color2.chart-line-symbol { -fx-background-color: -bs-chart-dao-line3, -bs-chart-dao-line3; }
#charts-dao .default-color3.chart-series-line { -fx-stroke: -bs-chart-dao-line4; }
#charts-dao .default-color3.chart-line-symbol { -fx-background-color: -bs-chart-dao-line4, -bs-chart-dao-line4; }
#charts-dao .default-color4.chart-series-line { -fx-stroke: -bs-chart-dao-line5; }
#charts-dao .default-color4.chart-line-symbol { -fx-background-color: -bs-chart-dao-line5, -bs-chart-dao-line5; }
#charts-dao .default-color5.chart-series-line { -fx-stroke: -bs-chart-dao-line6; }
#charts-dao .default-color5.chart-line-symbol { -fx-background-color: -bs-chart-dao-line6, -bs-chart-dao-line6; }
#charts-legend-toggle0 {
-jfx-toggle-color: -bs-chart-dao-line1
}
#charts-legend-toggle1 {
-jfx-toggle-color: -bs-chart-dao-line2;
}
#charts-legend-toggle2 {
-jfx-toggle-color: -bs-chart-dao-line3;
}
#charts-legend-toggle3 {
-jfx-toggle-color: -bs-chart-dao-line4;
}
#charts-legend-toggle4 {
-jfx-toggle-color: -bs-chart-dao-line5;
}
#charts-legend-toggle5 {
-jfx-toggle-color: -bs-chart-dao-line6;
}
#charts-dao .chart-series-line {
-fx-stroke-width: 2px;
}
#charts .default-color0.chart-series-area-fill {
-fx-fill: -bs-sell-transparent;
}
#charts .default-color1.chart-series-area-fill, #charts-dao .default-color0.chart-series-area-fill {
-fx-fill: -bs-buy-transparent;
}
.chart-vertical-grid-lines {
-fx-stroke: transparent;
}
#charts .axis-label {
-fx-font-size: 0.769em;
-fx-alignment: center-left;
}
#charts .axisy .axis-label {
-fx-alignment: center;
}
#chart-navigation-label {
-fx-text-fill: -bs-rd-font-lighter;
-fx-font-size: 0.769em;
-fx-alignment: center;
}
#chart-navigation-center-pane {
-fx-background-color: -bs-progress-bar-track;
}
/********************************************************************************************************************
* *
* Highlight buttons *
* *
********************************************************************************************************************/
#buy-button-big {
-fx-font-size: 1em;
-fx-background-color: -bs-buy;
-fx-text-fill: -bs-white;
}
#buy-button {
-fx-background-color: -bs-buy;
-fx-text-fill: -bs-white;
}
#buy-button-big:hover, #buy-button:hover,
#buy-button-big:focused, #buy-button:focused {
-fx-background-color: derive(-bs-buy, -10%);
}
#sell-button-big {
-fx-background-color: -bs-sell;
-fx-text-fill: -bs-white;
-fx-font-size: 1em;
}
#sell-button {
-fx-background-color: -bs-sell;
-fx-text-fill: -bs-white;
}
#sell-button-big:hover, #sell-button:hover,
#sell-button-big:focused, #sell-button:focused {
-fx-background-color: derive(-bs-sell, -10%);
}
#sell-button-big.grey-style, #buy-button-big.grey-style,
#sell-button.grey-style, #buy-button.grey-style {
-fx-background-color: -bs-color-gray-bbb;
-fx-text-fill: -bs-rd-font-dark-gray;
}
.action-button:disabled, #sell-button:disabled, #buy-button:disabled {
-fx-background-color: -bs-color-gray-0;
-fx-text-fill: -bs-rd-font-dark-gray;
}
/********************************************************************************************************************
* *
* Popups *
* *
********************************************************************************************************************/
.popup-headline {
-fx-font-size: 1.538em;
-fx-text-fill: -bs-rd-font-dark;
}
.popup-headline-information {
-fx-font-size: 1.538em;
-fx-text-fill: -bs-color-primary;
}
.popup-headline-warning {
-fx-font-size: 1.538em;
-fx-text-fill: -bs-rd-error-red;
}
.popup-icon-information {
-fx-text-fill: -bs-color-primary;
}
.popup-icon-warning {
-fx-text-fill: -bs-rd-error-red;
}
.popup-bg, .notification-popup-bg, .peer-info-popup-bg {
-fx-font-size: 1.077em;
-fx-text-fill: -bs-rd-font-dark;
-fx-background-color: -bs-background-color;
-fx-background-radius: 0;
-fx-background-insets: 44;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent-dark, 44, 0, 0, 0);
}
.popup-bg-top {
-fx-font-size: 1.077em;
-fx-text-fill: -bs-rd-font-dark;
-fx-background-color: -bs-background-color;
-fx-background-radius: 0;
-fx-background-insets: 44;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent-dark, 44, 0, 0, 0);
}
.notification-popup-headline, peer-info-popup-headline {
-fx-font-size: 1.077em;
/*-fx-font-weight: bold;*/
-fx-text-fill: -bs-color-primary;
}
.notification-popup-bg {
-fx-font-size: 0.846em;
-fx-background-insets: 44;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent-dark, 44, 0, -1, 3);
}
.peer-info-popup-bg {
-fx-font-size: 0.846em;
-fx-background-insets: 44;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent-dark, 44, 0, -1, 3);
}
.account-status-title {
-fx-font-size: 0.769em;
-fx-font-family: "IBM Plex Sans Medium";
}
.account-status-inactive-info-item {
-fx-text-fill: -bs-color-gray-dim;
-fx-fill: -bs-color-gray-dim;
}
.account-status-active-info-item {
-fx-text-fill: -fx-accent;
-fx-fill: -fx-accent;
}
#price-feed-combo {
-fx-background-color: none;
}
#price-feed-combo > .list-cell {
-fx-text-fill: -bs-text-color;
-fx-font-family: "IBM Plex Sans";
}
#invert-market-price {
-fx-text-fill: -bs-color-gray-11;
}
#popup-qr-code-info {
-fx-font-size: 0.846em;
}
#ident-num-label {
-fx-font-weight: bold;
-fx-alignment: center;
-fx-font-size: 0.769em;
-fx-text-fill: -bs-background-color;
}
#toggle-left {
-fx-border-radius: 4 0 0 4;
-fx-border-color: -bs-rd-separator-dark;
-fx-border-style: solid;
-fx-border-width: 0 1 0 0;
-fx-background-radius: 4 0 0 4;
-fx-background-color: -bs-background-color;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent, 4, 0, 0, 0, 2);
}
#toggle-center {
-fx-border-radius: 0;
-fx-border-color: -bs-rd-separator-dark;
-fx-border-style: solid;
-fx-border-width: 0 1 0 0;
-fx-border-insets: 0;
-fx-background-insets: 0;
-fx-background-radius: 0;
-fx-background-color: -bs-background-color;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent, 4, 0, 0, 0, 2);
}
#toggle-center:selected, #toggle-left:selected, #toggle-right:selected {
-fx-text-fill: -bs-background-color;
-fx-background-color: -bs-toggle-selected;
}
#toggle-right {
-fx-border-radius: 0 4 4 0;
-fx-border-width: 0;
-fx-background-radius: 0 4 4 0;
-fx-background-color: -bs-background-color;
-fx-effect: dropshadow(gaussian, -bs-text-color-transparent, 4, 0, 0, 0, 2);
}
#toggle-left:hover, #toggle-right:hover, #toggle-center:hover {
-fx-background-color: -bs-toggle-selected;
}
/********************************************************************************************************************
* *
* Arbitration *
* *
********************************************************************************************************************/
.message {
-fx-text-fill: -bs-text-color;
}
.my-message {
-fx-text-fill: -bs-background-color;
}
.message-header {
-fx-text-fill: -bs-color-gray-3;
-fx-font-size: 0.846em;
}
.my-message-header {
-fx-text-fill: -bs-rd-message-bubble;
-fx-fill: -bs-rd-message-bubble;
-fx-font-size: 0.846em;
}
.dispute-chat-border {
-fx-background-color: -bs-color-blue-5;
}
/********************************************************************************************************************
* *
* DAO *
* *
********************************************************************************************************************/
.dao-tx-type-trade-fee-icon,
.dao-tx-type-trade-fee-icon:hover {
-fx-text-fill: -bs-color-green-2;
}
.dao-tx-type-unverified-icon,
.dao-tx-type-unverified-icon:hover {
-fx-text-fill: -bs-yellow;
}
.dao-tx-type-invalid-icon,
.dao-tx-type-invalid-icon:hover {
-fx-text-fill: -bs-red-soft;
}
.dao-tx-type-self-icon,
.dao-tx-type-self-icon:hover {
-fx-text-fill: -bs-color-gray-2;
}
.dao-tx-type-proposal-fee-icon,
.dao-tx-type-proposal-fee-icon:hover {
-fx-text-fill: -bs-color-green-4;
}
.dao-tx-type-genesis-icon,
.dao-tx-type-genesis-icon:hover {
-fx-text-fill: -fx-accent;
}
.dao-tx-type-received-funds-icon,
.dao-tx-type-received-funds-icon:hover {
-fx-text-fill: -bs-green-soft;
}
.dao-tx-type-sent-funds-icon,
.dao-tx-type-sent-funds-icon:hover {
-fx-text-fill: -bs-red-soft;
}
.dao-tx-type-vote-icon,
.dao-tx-type-vote-icon:hover {
-fx-text-fill: -bs-color-blue-5;
}
.dao-tx-type-vote-reveal-icon,
.dao-tx-type-vote-reveal-icon:hover {
-fx-text-fill: -bs-color-blue-4;
}
.dao-tx-type-issuance-icon,
.dao-tx-type-issuance-icon:hover {
-fx-text-fill: -bs-color-green-3;
}
.dao-tx-type-lockup-icon,
.dao-tx-type-lockup-icon:hover {
-fx-text-fill: -bs-color-blue-5;
}
.dao-tx-type-unlock-icon,
.dao-tx-type-unlock-icon:hover {
-fx-text-fill: -bs-color-green-3;
}
.dao-tx-type-bsq-swap-icon,
.dao-tx-type-bsq-swap-icon:hover {
-fx-text-fill: -bs-color-blue-4;
}
.dao-accepted-icon {
-fx-text-fill: -bs-color-primary;
}
.dao-rejected-icon {
-fx-text-fill: -bs-rd-error-red;
}
.dao-ignored-icon {
-fx-text-fill: -bs-color-gray-4;
}
.compensation-root {
-fx-background-insets: 0, 0 0 0 0;
}
.info-icon {
-fx-text-fill: -fx-accent;
}
.info-icon-button {
-fx-cursor: hand;
-fx-background-color: transparent;
}
.dao-remove-proposal-icon {
-fx-text-fill: -fx-accent;
}
.dao-news-titled-group .titled-group-bg-label-active {
-fx-font-size: 0.923em;
}
.dao-news-teaser {
-fx-font-size: 1.538em;
-fx-font-family: "IBM Plex Sans Light";
}
.dao-news-section-header {
-fx-font-size: 1.923em;
-fx-text-fill: -bs-rd-green-dark;
-fx-font-family: "IBM Plex Sans Light";
}
.dao-news-section-content, .dao-news-content, .dao-news-section-link {
-fx-font-size: 0.923em;
}
.dao-news-section-content {
-fx-text-fill: -bs-rd-font-dark;
}
.dao-news-content, .dao-news-section-link, .dao-news-section-link .hyperlink, .dao-launch-version {
-fx-text-fill: -bs-rd-font-light;
-fx-fill: -bs-rd-font-light;
}
.dao-news-link {
-fx-text-fill: -fx-accent;
-fx-padding: 16 0 0 0;
}
.dao-news-link .hyperlink {
-fx-fill: -fx-accent;
}
.dao-inSync {
-fx-text-fill: -bs-rd-green;
}
.dao-inConflict {
-fx-text-fill: -bs-rd-error-red;
}
.dao-kpi-big {
-fx-font-size: 1.923em;
-fx-text-fill: -bs-rd-font-dark;
-fx-font-family: "IBM Plex Sans Light";
}
.dao-kpi-subtext {
-fx-text-fill: -bs-rd-font-light;
-fx-font-size: 0.923em;
}
.price-trend-up {
-fx-text-fill: -bs-color-primary;
-fx-padding: 2 0 0 0;
}
.price-trend-down {
-fx-text-fill: -bs-red;
-fx-padding: 2 0 0 0;
}
/********************************************************************************************************************
* *
* News *
* *
********************************************************************************************************************/
.news-version {
-fx-alignment: center-left;
-fx-font-size: 1em;
}
.news-feature-headline {
-fx-font-size: 1.077em;
-fx-text-fill: -bs-rd-font-dark-gray;
-fx-font-family: "IBM Plex Sans Medium";
}
.news-feature-description {
-fx-font-size: 1em;
-fx-text-fill: -bs-rd-font-dark-gray;
}
.news-feature-image {
-fx-border-style: solid;
-fx-border-width: 1;
-fx-border-color: -bs-rd-separator-dark;
}
/********************************************************************************************************************
* *
* Notifications *
* *
********************************************************************************************************************/
#notification-erase-button {
-fx-background-color: -bs-red-soft;
-fx-text-fill: -bs-background-color;
}
.status-icon {
-fx-text-fill: -fx-faint-focus-color;
}
/********************************************************************************************************************
* *
* Popover *
* *
********************************************************************************************************************/
.popover > .content {
-fx-padding: 10;
}
.popover > .content .default-text {
-fx-text-fill: -bs-text-color;
}
.popover > .border {
-fx-stroke: linear-gradient(to bottom, -bs-text-color-transparent, -bs-text-color-transparent-dark) !important;
-fx-fill: -bs-background-color !important;
}
|
Ephesoft_Community_Release_4.0.2.0/javadocs/com/ephesoft/gxt/foldermanager/client/view/FolderManagementNavigatorView.NavigationTreeIcons.html | ungerik/ephesoft | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_71) on Fri Jul 10 16:42:50 IST 2015 -->
<title>FolderManagementNavigatorView.NavigationTreeIcons</title>
<meta name="date" content="2015-07-10">
<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="FolderManagementNavigatorView.NavigationTreeIcons";
}
//-->
</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/FolderManagementNavigatorView.NavigationTreeIcons.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-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/ephesoft/gxt/foldermanager/client/view/FolderManagementNavigatorView.html" title="class in com.ephesoft.gxt.foldermanager.client.view"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/ephesoft/gxt/foldermanager/client/view/FolderManagementOptionsView.html" title="class in com.ephesoft.gxt.foldermanager.client.view"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/ephesoft/gxt/foldermanager/client/view/FolderManagementNavigatorView.NavigationTreeIcons.html" target="_top">Frames</a></li>
<li><a href="FolderManagementNavigatorView.NavigationTreeIcons.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.ephesoft.gxt.foldermanager.client.view</div>
<h2 title="Interface FolderManagementNavigatorView.NavigationTreeIcons" class="title">Interface FolderManagementNavigatorView.NavigationTreeIcons</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Superinterfaces:</dt>
<dd>com.google.gwt.resources.client.ClientBundle, com.google.gwt.resources.client.ClientBundleWithLookup</dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../../../com/ephesoft/gxt/foldermanager/client/view/FolderManagementNavigatorView.html" title="class in com.ephesoft.gxt.foldermanager.client.view">FolderManagementNavigatorView</a></dd>
</dl>
<hr>
<br>
<pre>public static interface <span class="strong">FolderManagementNavigatorView.NavigationTreeIcons</span>
extends com.google.gwt.resources.client.ClientBundleWithLookup</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested_class_summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="nested_classes_inherited_from_class_com.google.gwt.resources.client.ClientBundle">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from interface com.google.gwt.resources.client.ClientBundle</h3>
<code>com.google.gwt.resources.client.ClientBundle.Source</code></li>
</ul>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </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>com.google.gwt.resources.client.ImageResource</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/ephesoft/gxt/foldermanager/client/view/FolderManagementNavigatorView.NavigationTreeIcons.html#close()">close</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>com.google.gwt.resources.client.ImageResource</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/ephesoft/gxt/foldermanager/client/view/FolderManagementNavigatorView.NavigationTreeIcons.html#leaf()">leaf</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>com.google.gwt.resources.client.ImageResource</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/ephesoft/gxt/foldermanager/client/view/FolderManagementNavigatorView.NavigationTreeIcons.html#open()">open</a></strong>()</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_com.google.gwt.resources.client.ClientBundleWithLookup">
<!-- -->
</a>
<h3>Methods inherited from interface com.google.gwt.resources.client.ClientBundleWithLookup</h3>
<code>getResource, getResources</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="open()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>open</h4>
<pre>com.google.gwt.resources.client.ImageResource open()</pre>
</li>
</ul>
<a name="close()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>close</h4>
<pre>com.google.gwt.resources.client.ImageResource close()</pre>
</li>
</ul>
<a name="leaf()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>leaf</h4>
<pre>com.google.gwt.resources.client.ImageResource leaf()</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/FolderManagementNavigatorView.NavigationTreeIcons.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-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/ephesoft/gxt/foldermanager/client/view/FolderManagementNavigatorView.html" title="class in com.ephesoft.gxt.foldermanager.client.view"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/ephesoft/gxt/foldermanager/client/view/FolderManagementOptionsView.html" title="class in com.ephesoft.gxt.foldermanager.client.view"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/ephesoft/gxt/foldermanager/client/view/FolderManagementNavigatorView.NavigationTreeIcons.html" target="_top">Frames</a></li>
<li><a href="FolderManagementNavigatorView.NavigationTreeIcons.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
src/enunciados/01-objetos/05-polimorfismo.html | asanzdiego/curso-javascript-avanzado-2015 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Inicio</title>
<link rel="shortcut icon" type="image/png" href="../../jasmine-standalone-2.3.4/lib/jasmine-2.3.4/jasmine_favicon.png">
<link rel="stylesheet" href="../../jasmine-standalone-2.3.4/lib/jasmine-2.3.4/jasmine.css">
<script src="../../jasmine-standalone-2.3.4/lib/jasmine-2.3.4/jasmine.js"></script>
<script src="../../jasmine-standalone-2.3.4/lib/jasmine-2.3.4/jasmine-html.js"></script>
<script src="../../jasmine-standalone-2.3.4/lib/jasmine-2.3.4/boot.js"></script>
</head>
<script>
describe("tests", function() {
function Figura(_b, _h) {
this.b = _b;
this.h = _h;
}
Figura.prototype.area = function() {
throw "Metodo area no implementado";
}
function Rectangulo(_b, _h) {
Figura.call(this, _b, _h);
}
Rectangulo.prototype = Object.create(Figura.prototype);
Rectangulo.prototype.area = function() {
return (this.h * this.b);
}
function Triangulo(_b, _h) {
Figura.call(this, _b, _h);
}
Triangulo.prototype = Object.create(Figura.prototype);
Triangulo.prototype.area = function() {
return ((this.h * this.b)/2);
}
var pepinillo = {
area: function() {
return 5;
}
};
var figuras = [
new Rectangulo(4, 2),
new Triangulo(4, 2),
new Figura(4, 2),
pepinillo,
];
it('areas', function() {
//expect(figuras[0].area()).toEqual();
//expect(figuras[1].area()).toEqual();
/*
expect(function() {
figuras[2].area();
}).toThrow();
*/
//expect(figuras[3].area()).toEqual();
});
});
</script>
<body>
</body>
</html> |
DDMoRe-BWF-Main/workflow-server-rest-api/eu/ddmore/workflow/server/client/model/UploadQuery.html | DDMoReThoughtflow/ThoughtflowGUI | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (version 1.7.0_71) on Tue Aug 23 16:13:51 CEST 2016 -->
<title>UploadQuery</title>
<meta name="date" content="2016-08-23">
<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="UploadQuery";
}
//-->
</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/UploadQuery.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-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../eu/ddmore/workflow/server/client/model/Relations.html" title="class in eu.ddmore.workflow.server.client.model"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?eu/ddmore/workflow/server/client/model/UploadQuery.html" target="_top">Frames</a></li>
<li><a href="UploadQuery.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </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">eu.ddmore.workflow.server.client.model</div>
<h2 title="Class UploadQuery" class="title">Class UploadQuery</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>eu.ddmore.workflow.server.client.model.UploadQuery</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable</dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">UploadQuery</span>
extends java.lang.Object
implements java.io.Serializable</pre>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../../serialized-form.html#eu.ddmore.workflow.server.client.model.UploadQuery">Serialized Form</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#UploadQuery()">UploadQuery</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#UploadQuery(java.lang.String)">UploadQuery</a></strong>(java.lang.String repo_id)</code> </td>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#UploadQuery(java.lang.String,%20java.lang.String)">UploadQuery</a></strong>(java.lang.String repo_id,
java.lang.String entity_id)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </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>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#getEntity_id()">getEntity_id</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.Boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#getIsNew()">getIsNew</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../eu/ddmore/workflow/server/client/model/ProvTypes.html" title="class in eu.ddmore.workflow.server.client.model">ProvTypes</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#getProvTypes()">getProvTypes</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#getRef_id()">getRef_id</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../eu/ddmore/workflow/server/client/model/Relation.html" title="class in eu.ddmore.workflow.server.client.model">Relation</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#getRelation()">getRelation</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#getRepo_id()">getRepo_id</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#getUser_id()">getUser_id</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#setEntity_id(java.lang.String)">setEntity_id</a></strong>(java.lang.String entity_id)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#setIsNew(java.lang.Boolean)">setIsNew</a></strong>(java.lang.Boolean isNew)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#setProvTypes(eu.ddmore.workflow.server.client.model.ProvTypes)">setProvTypes</a></strong>(<a href="../../../../../../eu/ddmore/workflow/server/client/model/ProvTypes.html" title="class in eu.ddmore.workflow.server.client.model">ProvTypes</a> provTypes)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#setRef_id(java.lang.String)">setRef_id</a></strong>(java.lang.String ref_id)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#setRelation(eu.ddmore.workflow.server.client.model.Relation)">setRelation</a></strong>(<a href="../../../../../../eu/ddmore/workflow/server/client/model/Relation.html" title="class in eu.ddmore.workflow.server.client.model">Relation</a> relation)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#setRepo_id(java.lang.String)">setRepo_id</a></strong>(java.lang.String repo_id)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../eu/ddmore/workflow/server/client/model/UploadQuery.html#setUser_id(java.lang.String)">setUser_id</a></strong>(java.lang.String user_id)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="UploadQuery()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>UploadQuery</h4>
<pre>public UploadQuery()</pre>
</li>
</ul>
<a name="UploadQuery(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>UploadQuery</h4>
<pre>public UploadQuery(java.lang.String repo_id)</pre>
</li>
</ul>
<a name="UploadQuery(java.lang.String, java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>UploadQuery</h4>
<pre>public UploadQuery(java.lang.String repo_id,
java.lang.String entity_id)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getRepo_id()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRepo_id</h4>
<pre>public java.lang.String getRepo_id()</pre>
</li>
</ul>
<a name="setRepo_id(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRepo_id</h4>
<pre>public void setRepo_id(java.lang.String repo_id)</pre>
</li>
</ul>
<a name="getEntity_id()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getEntity_id</h4>
<pre>public java.lang.String getEntity_id()</pre>
</li>
</ul>
<a name="setEntity_id(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setEntity_id</h4>
<pre>public void setEntity_id(java.lang.String entity_id)</pre>
</li>
</ul>
<a name="getRef_id()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRef_id</h4>
<pre>public java.lang.String getRef_id()</pre>
</li>
</ul>
<a name="setRef_id(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRef_id</h4>
<pre>public void setRef_id(java.lang.String ref_id)</pre>
</li>
</ul>
<a name="getProvTypes()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getProvTypes</h4>
<pre>public <a href="../../../../../../eu/ddmore/workflow/server/client/model/ProvTypes.html" title="class in eu.ddmore.workflow.server.client.model">ProvTypes</a> getProvTypes()</pre>
</li>
</ul>
<a name="setProvTypes(eu.ddmore.workflow.server.client.model.ProvTypes)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setProvTypes</h4>
<pre>public void setProvTypes(<a href="../../../../../../eu/ddmore/workflow/server/client/model/ProvTypes.html" title="class in eu.ddmore.workflow.server.client.model">ProvTypes</a> provTypes)</pre>
</li>
</ul>
<a name="getRelation()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRelation</h4>
<pre>public <a href="../../../../../../eu/ddmore/workflow/server/client/model/Relation.html" title="class in eu.ddmore.workflow.server.client.model">Relation</a> getRelation()</pre>
</li>
</ul>
<a name="setRelation(eu.ddmore.workflow.server.client.model.Relation)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRelation</h4>
<pre>public void setRelation(<a href="../../../../../../eu/ddmore/workflow/server/client/model/Relation.html" title="class in eu.ddmore.workflow.server.client.model">Relation</a> relation)</pre>
</li>
</ul>
<a name="getUser_id()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getUser_id</h4>
<pre>public java.lang.String getUser_id()</pre>
</li>
</ul>
<a name="setUser_id(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setUser_id</h4>
<pre>public void setUser_id(java.lang.String user_id)</pre>
</li>
</ul>
<a name="getIsNew()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIsNew</h4>
<pre>public java.lang.Boolean getIsNew()</pre>
</li>
</ul>
<a name="setIsNew(java.lang.Boolean)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>setIsNew</h4>
<pre>public void setIsNew(java.lang.Boolean isNew)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/UploadQuery.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-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../eu/ddmore/workflow/server/client/model/Relations.html" title="class in eu.ddmore.workflow.server.client.model"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?eu/ddmore/workflow/server/client/model/UploadQuery.html" target="_top">Frames</a></li>
<li><a href="UploadQuery.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
smlouvy/2018/11/28/Najem_JiPiCe/index.html | pirati-web/smlouvy.pirati.cz | ---
"layout": contract
"datum podpisu": 2018-11-28
"datum účinnosti": 2018-12-01
"datum ukončení": 0000-00-00
"title": "Smlouva o nájmu nebytových prostor KS Vysočina"
"předmět": "nájem JiPiCe"
"stav": v plnění
"náklady": 139728
"smluvní strany":
"soubory":
-
"podepsaná verze": Nájemní smlouva JiPiCe.pdf
--- |
crislib/libscapi/lib/boost_1_64_0/doc/html/boost/hash_std_wstr_idp509004032.html | cris-iisc/mpc-primitives | <!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 hash<std::wstring></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="../hash/reference.html#header.boost.functional.hash_hpp" title="Header <boost/functional/hash.hpp>">
<link rel="prev" href="hash_std_stri_idp508997264.html" title="Struct hash<std::string>">
<link rel="next" href="hash_T_idp509010800.html" title="Struct template hash<T*>">
</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="hash_std_stri_idp508997264.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../hash/reference.html#header.boost.functional.hash_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="hash_T_idp509010800.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.hash_std_wstr_idp509004032"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct hash<std::wstring></span></h2>
<p>boost::hash<std::wstring></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: <<a class="link" href="../hash/reference.html#header.boost.functional.hash_hpp" title="Header <boost/functional/hash.hpp>">boost/functional/hash.hpp</a>>
</span>
<span class="keyword">struct</span> <a class="link" href="hash_std_wstr_idp509004032.html" title="Struct hash<std::wstring>">hash</a><span class="special"><</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">wstring</span><span class="special">></span> <span class="special">{</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <a class="link" href="hash_std_wstr_idp509004032.html#idp509005776-bb"><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span></a><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">wstring</span> <span class="keyword">const</span><span class="special">&</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp252788288"></a><h2>Description</h2>
<pre class="literallayout"><span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <a name="idp509005776-bb"></a><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">wstring</span> <span class="keyword">const</span><span class="special">&</span> val<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term">Returns:</span></p></td>
<td>
<p>Unspecified in TR1, except that equal arguments yield the same result.</p>
<p><a class="link" href="../hash/reference.html#boost.hash_value_idp509058208">hash_value</a>(val) in Boost.</p>
</td>
</tr>
<tr>
<td><p><span class="term">Throws:</span></p></td>
<td><p>Doesn't throw</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 © 2005-2008 Daniel
James<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="hash_std_stri_idp508997264.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../hash/reference.html#header.boost.functional.hash_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="hash_T_idp509010800.html"><img src="../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
ceaWeb/indices/a00320.html | jacintodavila/catalogoelectronicoautonomo | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/transitional.dtd">
<html><head>
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="estilos.css" />
<title> Indice de Flores H., Hazel C., como autor(a) en EDUCERE</title>
</head><body>
<div id="container">
<div id="pageHeader">
</div>
<div id="pageContehome">
<center><big><a href="../index.html">Indices EDUCERE</a><br></big></center>
<entry>
<number>
320 </number>
<results>
<authors>
"Flores H., Hazel C." </authors>
<results>
<div></div>
<h2 align="center">La frase: Flores H., Hazel C.</h2>
<h3 align="center">Produjo 2 resultados</h3>
<table align="center" border="1" width="100%">
<tr><th>Relevancia</th><th>Archivo (URL implicito)</th><th>Tama�o (en Bytes)</th></tr>
<tr><td>1000</td><td><a href=".%2fpdfs%2fv13n45%2farticulo7.pdf">articulo7.pdf</a></td><td><em>614801</em></td></tr>
<tr><td>323</td><td><a href=".%2fpdfs%2fv15n52%2fpdf%2fart02.pdf">art02.pdf</a></td><td><em>3023946</em></td></tr>
</table>
</results>
</entry>
</div>
<div id="footer"><p>EDUCERE. La Revista Venezolana de Educación Escuela de Educación. <br/>
Facultad de Humanidades y Educación Universidad de Los Andes,<br/>
Mérida - Venezuela<br/>
<br/>
<br/>
</p>
</div>
</div>
</body>
</html>
|
scripts/apps/workspace/content/views/schema-editor.html | marwoodandrew/superdesk-client-core | <div class="schema-editor" ng-if="fields">
<div ng-if="enabled.length < 1" style="display: flex; justify-content: center; margin: 20px 0;">
<sd-schema-editor-fields-dropdown fields="available" on-select="toggle(field, id, 'before')"></sd-schema-editor-fields-dropdown>
</div>
<ul class="pills-list" sd-sort-content-profiles>
<li class="schema-item" ng-repeat="id in enabled track by id" data-id="{{ id }}">
<sd-schema-editor-fields-dropdown fields="available" on-select="toggle(field, id, 'before')"></sd-schema-editor-fields-dropdown>
<div class="header">
<span class="title">{{ :: model.editor[id].field_name || label(id) | translate}}</span>
<button class="btn btn--icon-only btn--text-only pull-right remove-item" ng-click="remove(id)">
<i class="icon-close-small"></i>
</button>
</div>
<form>
<fieldset class="fieldset-flex">
<div class="field" ng-if="id === 'dateline'">
<label translate>Hide Date</label>
<div sd-check ng-model="model.editor[id].hideDate"></div>
</div>
<div class="field">
<label translate>Required</label>
<div sd-check ng-model="model.schema[id].required" ng-click="model.editor[id].required = model.schema[id].required"></div>
</div>
<div class="field">
<label translate>Order</label>
<input class="input-small line-input" placeholder="{{ 'Default' | translate }}"
type="number" ng-model="model.editor[id].order" min="1" max="99" ng-change="updateOrder(id)" />
</div>
<div class="field" ng-show="model.schema[id].type === 'string' || fields[id].field_type === 'text'">
<label translate>Length</label>
<div class="controls">
<span translate>min</span>:
<input placeholder="{{ :: 'Not set' | translate }}" type="number" class="input-small line-input" ng-model="model.schema[id].minlength" min="0" />
<span translate>max</span>:
<input placeholder="{{ :: 'Not set' | translate }}" type="number" class="input-small line-input" ng-model="model.schema[id].maxlength" min="0" />
<span class="error"
ng-show="model.schema[id].minlength > model.schema[id].maxlength && model.schema[id].maxlength"
translate>Min length shouldn't be bigger than max length.</span>
<span class="error"
ng-show="model.schema[id].maxlength === 0"
translate>Max length should be bigger than 0 or empty.</span>
</div>
</div>
<div class="field">
<label translate>Width</label>
<select class="dropdown__toggle line-input" ng-model="model.editor[id].sdWidth">
<option value="full" translate>Full</option>
<option value="half" translate>Half</option>
<option value="quarter" translate>Quarter</option>
</select>
</div>
<div class="field" ng-if="model.schema[id].type === 'string' && !model.editor.body_html.editor3">
<label translate>Clean Pasted HTML</label>
<div sd-check ng-model="model.editor[id].cleanPastedHTML"></div>
</div>
<!-- IF EDITOR3 -->
<div class="field" ng-if="hasFormatOptions(id) && model.editor.body_html.editor3 === true">
<label translate>Format options</label>
<div class="controls" ng-if="model.editor.body_html.editor3"
sd-multi-select
data-item="model.editor[id].formatOptions"
data-list="getEditor3FormattingOptions(id)"
data-change="setDirty()">
</div>
</div>
<!-- ELSE IF EDITOR2 -->
<div class="field" ng-if="hasFormatOptions(id) && model.editor.body_html.editor3 !== true">
<label translate>Format options</label>
<div class="controls" ng-if="!model.editor.body_html.editor3"
sd-multi-select
data-item="model.editor[id].formatOptions"
data-list="formattingOptions"
data-change="setDirty()">
</div>
</div>
<!-- END IF -->
<div class="field" ng-if="model.schema[id].type === 'media'">
<label translate>Show Crops</label>
<div sd-check ng-model="model.editor[id].showCrops"></div>
</div>
<div class="field" ng-if="model.schema[id].type === 'media' || hasImageSelected(id)">
<label translate>Show Image Title</label>
<div sd-check ng-model="model.editor[id].imageTitle"></div>
</div>
<div class="field" ng-if="id === 'sms'">
<label translate>Prefill the field with text from:</label>
<select ng-model="model.editor[id].sourceField">
<option value="" translate>Abstract</option>
<option value="headline" translate>Headline</option>
</select>
</div>
</fieldset>
</form>
<div ng-if="$last">
<sd-schema-editor-fields-dropdown fields="available" on-select="toggle(field, id, 'after')" bottom="true"></sd-schema-editor-fields-dropdown>
</div>
</li>
</ul>
</div>
|
media/js/farkob-FaceTips-67e964f/Source/facetip.css | lasarux/PollXpress | .facetip {
background-color: #333;
color: #fff;
font-family: Helvetica, Arial, sans-serif;
font-size: 13px;
padding: 6px;
-moz-border-radius: 1px;
-webkit-border-radius: 1px;
}
.facetip-arrow-down {
position: absolute;
left: 8px;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid #333;
} |
crislib/libscapi/lib/boost_1_64_0/doc/html/boost/proto/dereference.html | cris-iisc/mpc-primitives | <!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 template dereference</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="../../proto/reference.html#header.boost.proto.traits_hpp" title="Header <boost/proto/traits.hpp>">
<link rel="prev" href="negate/impl.html" title="Struct template impl">
<link rel="next" href="dereference/impl.html" title="Struct template impl">
</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="negate/impl.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../proto/reference.html#header.boost.proto.traits_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="dereference/impl.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.proto.dereference"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct template dereference</span></h2>
<p>boost::proto::dereference — A metafunction for generating defereference expression types,
a grammar element for matching dereference expressions, and
a <a class="link" href="../../PrimitiveTransform.html" title="Concept PrimitiveTransform">PrimitiveTransform</a> that dispatches to the
<code class="computeroutput"><a class="link" href="pass_through.html" title="Struct template pass_through">proto::pass_through<></a></code>
transform.</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: <<a class="link" href="../../proto/reference.html#header.boost.proto.traits_hpp" title="Header <boost/proto/traits.hpp>">boost/proto/traits.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="dereference.html" title="Struct template dereference">dereference</a> <span class="special">:</span> <span class="keyword"></span> <a class="link" href="transform.html" title="Struct template transform">proto::transform</a><span class="special"><</span> <span class="identifier">dereference</span><span class="special"><</span><span class="identifier">T</span><span class="special">></span> <span class="special">></span> <span class="special">{</span>
<span class="comment">// types</span>
<span class="keyword">typedef</span> <a class="link" href="expr.html" title="Struct template expr">proto::expr</a><span class="special"><</span> <a class="link" href="tag/dereference.html" title="Struct dereference">proto::tag::dereference</a><span class="special">,</span> <a class="link" href="listN.html" title="Struct template listN">proto::list1</a><span class="special"><</span> <span class="identifier">T</span> <span class="special">></span> <span class="special">></span> <a name="boost.proto.dereference.type"></a><span class="identifier">type</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="basic_expr.html" title="Struct template basic_expr">proto::basic_expr</a><span class="special"><</span> <a class="link" href="tag/dereference.html" title="Struct dereference">proto::tag::dereference</a><span class="special">,</span> <a class="link" href="listN.html" title="Struct template listN">proto::list1</a><span class="special"><</span> <span class="identifier">T</span> <span class="special">></span> <span class="special">></span> <a name="boost.proto.dereference.proto_grammar"></a><span class="identifier">proto_grammar</span><span class="special">;</span>
<span class="comment">// member classes/structs/unions</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> <a class="link" href="../../Expr.html" title="Concept Expr">Expr</a><span class="special">,</span> <span class="keyword">typename</span> State<span class="special">,</span> <span class="keyword">typename</span> Data<span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="dereference/impl.html" title="Struct template impl">impl</a> <span class="special">:</span>
<span class="keyword"></span> <a class="link" href="pass_through.html" title="Struct template pass_through">proto::pass_through</a><dereference>::template impl<Expr, State, Data>
<span class="special">{</span>
<span class="special">}</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp475282080"></a><h2>Description</h2>
</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 © 2008 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="negate/impl.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../proto/reference.html#header.boost.proto.traits_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="dereference/impl.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
doc/ccode/html/face__mgmt_8h_source.html | ryanrhymes/mobiccnx | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Content-Centric Networking in C: include/ccn/face_mgmt.h Source File</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.6.3 -->
<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 Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="dirs.html"><span>Directories</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>Globals</span></a></li>
</ul>
</div>
<div class="navpath"><a class="el" href="dir_12062ebbab4d605a0f3c00eaabba55a9.html">include</a> » <a class="el" href="dir_d1db099e7ca03d1b7690aea71058ce1b.html">ccn</a>
</div>
</div>
<div class="contents">
<h1>face_mgmt.h</h1><a href="face__mgmt_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/**</span>
<a name="l00002"></a>00002 <span class="comment"> * @file ccn/face_mgmt.h</span>
<a name="l00003"></a>00003 <span class="comment"> *</span>
<a name="l00004"></a>00004 <span class="comment"> * Part of the CCNx C Library.</span>
<a name="l00005"></a>00005 <span class="comment"> *</span>
<a name="l00006"></a>00006 <span class="comment"> * Copyright (C) 2009 Palo Alto Research Center, Inc.</span>
<a name="l00007"></a>00007 <span class="comment"> *</span>
<a name="l00008"></a>00008 <span class="comment"> * This library is free software; you can redistribute it and/or modify it</span>
<a name="l00009"></a>00009 <span class="comment"> * under the terms of the GNU Lesser General Public License version 2.1</span>
<a name="l00010"></a>00010 <span class="comment"> * as published by the Free Software Foundation.</span>
<a name="l00011"></a>00011 <span class="comment"> * This library is distributed in the hope that it will be useful,</span>
<a name="l00012"></a>00012 <span class="comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<a name="l00013"></a>00013 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span>
<a name="l00014"></a>00014 <span class="comment"> * Lesser General Public License for more details. You should have received</span>
<a name="l00015"></a>00015 <span class="comment"> * a copy of the GNU Lesser General Public License along with this library;</span>
<a name="l00016"></a>00016 <span class="comment"> * if not, write to the Free Software Foundation, Inc., 51 Franklin Street,</span>
<a name="l00017"></a>00017 <span class="comment"> * Fifth Floor, Boston, MA 02110-1301 USA.</span>
<a name="l00018"></a>00018 <span class="comment"> */</span>
<a name="l00019"></a>00019
<a name="l00020"></a>00020 <span class="preprocessor">#ifndef CCN_FACE_MGMT_DEFINED</span>
<a name="l00021"></a>00021 <span class="preprocessor"></span><span class="preprocessor">#define CCN_FACE_MGMT_DEFINED</span>
<a name="l00022"></a>00022 <span class="preprocessor"></span>
<a name="l00023"></a>00023 <span class="preprocessor">#include <stddef.h></span>
<a name="l00024"></a>00024 <span class="preprocessor">#include <<a class="code" href="charbuf_8h.html" title="Expandable character buffer for counted sequences of arbitrary octets.">ccn/charbuf.h</a>></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include <<a class="code" href="sockcreate_8h.html" title="Part of the CCNx C Library.">ccn/sockcreate.h</a>></span>
<a name="l00026"></a>00026
<a name="l00027"></a><a class="code" href="face__mgmt_8h.html#a361b250929804623cf8ed0d2521fd587">00027</a> <span class="preprocessor">#define CCN_NO_FACEID (~0U)</span>
<a name="l00028"></a>00028 <span class="preprocessor"></span>
<a name="l00029"></a><a class="code" href="structccn__face__instance.html">00029</a> <span class="keyword">struct </span><a class="code" href="structccn__face__instance.html">ccn_face_instance</a> {
<a name="l00030"></a><a class="code" href="structccn__face__instance.html#a55ff2d47caccd42c3f19978573bfad4a">00030</a> <span class="keyword">const</span> <span class="keywordtype">char</span> *<a class="code" href="structccn__face__instance.html#a55ff2d47caccd42c3f19978573bfad4a">action</a>;
<a name="l00031"></a><a class="code" href="structccn__face__instance.html#ae992dd67b83b528a8396e26fc3c3758d">00031</a> <span class="keyword">const</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> *<a class="code" href="structccn__face__instance.html#ae992dd67b83b528a8396e26fc3c3758d">ccnd_id</a>;
<a name="l00032"></a><a class="code" href="structccn__face__instance.html#a9a1d910901f1ea0d5c1ab8825823a746">00032</a> <span class="keywordtype">size_t</span> <a class="code" href="structccn__face__instance.html#a9a1d910901f1ea0d5c1ab8825823a746">ccnd_id_size</a>;
<a name="l00033"></a><a class="code" href="structccn__face__instance.html#ac704f2cb30a923bce50232ba5e70a4a0">00033</a> <span class="keywordtype">unsigned</span> <a class="code" href="structccn__face__instance.html#ac704f2cb30a923bce50232ba5e70a4a0">faceid</a>;
<a name="l00034"></a><a class="code" href="structccn__face__instance.html#a56e89a567d369d0f4e68dbbd2005d1a9">00034</a> <span class="keyword">struct </span><a class="code" href="structccn__sockdescr.html" title="Text-friendly description of a socket (IPv4 or IPv6).">ccn_sockdescr</a> <a class="code" href="structccn__face__instance.html#a56e89a567d369d0f4e68dbbd2005d1a9">descr</a>;
<a name="l00035"></a><a class="code" href="structccn__face__instance.html#ae43c6cf1125566fcab5c3b4e4125c3ca">00035</a> <span class="keywordtype">int</span> <a class="code" href="structccn__face__instance.html#ae43c6cf1125566fcab5c3b4e4125c3ca">lifetime</a>;
<a name="l00036"></a><a class="code" href="structccn__face__instance.html#a69b2b34e6a91744ad5402199f490fb70">00036</a> <span class="keyword">struct </span><a class="code" href="structccn__charbuf.html">ccn_charbuf</a> *<a class="code" href="structccn__face__instance.html#a69b2b34e6a91744ad5402199f490fb70">store</a>;
<a name="l00037"></a>00037 };
<a name="l00038"></a>00038
<a name="l00039"></a>00039 <span class="keyword">struct </span><a class="code" href="structccn__face__instance.html">ccn_face_instance</a> *<a class="code" href="face__mgmt_8h.html#a898058dc432de19bca275becf60469ac" title="Parse a ccnb-ecoded FaceInstance into an internal representation.">ccn_face_instance_parse</a>(<span class="keyword">const</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> *p,
<a name="l00040"></a>00040 <span class="keywordtype">size_t</span> size);
<a name="l00041"></a>00041
<a name="l00042"></a>00042 <span class="keywordtype">void</span> <a class="code" href="face__mgmt_8h.html#ab2e8f68918bd346c3aa3f2cd92d28a87" title="Destroy the result of ccn_face_instance_parse().">ccn_face_instance_destroy</a>(<span class="keyword">struct</span> <a class="code" href="structccn__face__instance.html">ccn_face_instance</a>**);
<a name="l00043"></a>00043
<a name="l00044"></a>00044 <span class="keywordtype">int</span> <a class="code" href="face__mgmt_8h.html#a9e59b8d1ffd4f339edfdfb6d0ea9c1e1" title="Marshal an internal face instance representation into ccnb form.">ccnb_append_face_instance</a>(<span class="keyword">struct</span> <a class="code" href="structccn__charbuf.html">ccn_charbuf</a> *,
<a name="l00045"></a>00045 <span class="keyword">const</span> <span class="keyword">struct</span> <a class="code" href="structccn__face__instance.html">ccn_face_instance</a> *);
<a name="l00046"></a>00046
<a name="l00047"></a>00047 <span class="preprocessor">#endif</span>
</pre></div></div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Tue Aug 21 14:54:17 2012 for Content-Centric Networking in C by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>
|
external/xerces/doc/html/apiDocs-3/classXMLMutexMgr.html | einon/affymetrix-power-tools | <!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++: XMLMutexMgr 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.4 -->
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</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>
<li><a href="pages.html"><span>Related Pages</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="classes.html"><span>Alphabetical List</span></a></li>
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<h1>XMLMutexMgr Class Reference</h1><!-- doxytag: class="XMLMutexMgr" --><!-- doxytag: inherits="XMemory" --><div class="dynheader">
Inheritance diagram for XMLMutexMgr:</div>
<div class="dynsection">
<p><center><img src="classXMLMutexMgr.png" usemap="#XMLMutexMgr_map" border="0" alt=""></center>
<map name="XMLMutexMgr_map">
<area href="classXMemory.html" alt="XMemory" shape="rect" coords="0,0,96,24">
</map>
</div>
<p>
<a href="classXMLMutexMgr-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 class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classXMLMutexMgr.html#63ad7607a796d2164abe97dc8e6d6e78">XMLMutexMgr</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classXMLMutexMgr.html#0fac37ce120018ed4d4b072447a50c1c">~XMLMutexMgr</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual <a class="el" href="XMLMutexMgr_8hpp.html#aa5881018bb3a619d8f79d1eb7cd3196">XMLMutexHandle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classXMLMutexMgr.html#b642eb371f6c5a96ca599299e1e1c50c">create</a> (<a class="el" href="classMemoryManager.html">MemoryManager</a> *const manager)=0</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classXMLMutexMgr.html#4e15eae7adb89508b72f879e058cfe45">destroy</a> (<a class="el" href="XMLMutexMgr_8hpp.html#aa5881018bb3a619d8f79d1eb7cd3196">XMLMutexHandle</a> mtx, <a class="el" href="classMemoryManager.html">MemoryManager</a> *const manager)=0</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classXMLMutexMgr.html#562af6ab7e3efc431292cfc7814dabb6">lock</a> (<a class="el" href="XMLMutexMgr_8hpp.html#aa5881018bb3a619d8f79d1eb7cd3196">XMLMutexHandle</a> mtx)=0</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classXMLMutexMgr.html#3903ee695ecd4c53a88990f107367be4">unlock</a> (<a class="el" href="XMLMutexMgr_8hpp.html#aa5881018bb3a619d8f79d1eb7cd3196">XMLMutexHandle</a> mtx)=0</td></tr>
</table>
<hr><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" name="63ad7607a796d2164abe97dc8e6d6e78"></a><!-- doxytag: member="XMLMutexMgr::XMLMutexMgr" ref="63ad7607a796d2164abe97dc8e6d6e78" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">XMLMutexMgr::XMLMutexMgr </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="0fac37ce120018ed4d4b072447a50c1c"></a><!-- doxytag: member="XMLMutexMgr::~XMLMutexMgr" ref="0fac37ce120018ed4d4b072447a50c1c" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual XMLMutexMgr::~XMLMutexMgr </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<hr><h2>Member Function Documentation</h2>
<a class="anchor" name="b642eb371f6c5a96ca599299e1e1c50c"></a><!-- doxytag: member="XMLMutexMgr::create" ref="b642eb371f6c5a96ca599299e1e1c50c" args="(MemoryManager *const manager)=0" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="XMLMutexMgr_8hpp.html#aa5881018bb3a619d8f79d1eb7cd3196">XMLMutexHandle</a> XMLMutexMgr::create </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classMemoryManager.html">MemoryManager</a> *const </td>
<td class="paramname"> <em>manager</em> </td>
<td> ) </td>
<td width="100%"><code> [pure virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="4e15eae7adb89508b72f879e058cfe45"></a><!-- doxytag: member="XMLMutexMgr::destroy" ref="4e15eae7adb89508b72f879e058cfe45" args="(XMLMutexHandle mtx, MemoryManager *const manager)=0" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void XMLMutexMgr::destroy </td>
<td>(</td>
<td class="paramtype"><a class="el" href="XMLMutexMgr_8hpp.html#aa5881018bb3a619d8f79d1eb7cd3196">XMLMutexHandle</a> </td>
<td class="paramname"> <em>mtx</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classMemoryManager.html">MemoryManager</a> *const </td>
<td class="paramname"> <em>manager</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [pure virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="562af6ab7e3efc431292cfc7814dabb6"></a><!-- doxytag: member="XMLMutexMgr::lock" ref="562af6ab7e3efc431292cfc7814dabb6" args="(XMLMutexHandle mtx)=0" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void XMLMutexMgr::lock </td>
<td>(</td>
<td class="paramtype"><a class="el" href="XMLMutexMgr_8hpp.html#aa5881018bb3a619d8f79d1eb7cd3196">XMLMutexHandle</a> </td>
<td class="paramname"> <em>mtx</em> </td>
<td> ) </td>
<td width="100%"><code> [pure virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="3903ee695ecd4c53a88990f107367be4"></a><!-- doxytag: member="XMLMutexMgr::unlock" ref="3903ee695ecd4c53a88990f107367be4" args="(XMLMutexHandle mtx)=0" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void XMLMutexMgr::unlock </td>
<td>(</td>
<td class="paramtype"><a class="el" href="XMLMutexMgr_8hpp.html#aa5881018bb3a619d8f79d1eb7cd3196">XMLMutexHandle</a> </td>
<td class="paramname"> <em>mtx</em> </td>
<td> ) </td>
<td width="100%"><code> [pure virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<hr>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="XMLMutexMgr_8hpp-source.html">XMLMutexMgr.hpp</a></ul>
<hr size="1"><address style="text-align: right;"><small>Generated on Wed Sep 24 16:36:35 2008 for Xerces-C++ by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.4 </small></address>
</body>
</html>
|
docs/gst/html/GstStructure.html | tieto/gstreamer-pkg | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>GStreamer 1.0 Core Reference Manual: GstStructure</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstSegment.html" title="GstSegment">
<link rel="next" href="GstSystemClock.html" title="GstSystemClock">
<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
<td width="100%" align="left" class="shortcuts">
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
<a href="#GstStructure.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
<a href="#GstStructure.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
</td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
<td><a accesskey="u" href="libgstreamer.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
<td><a accesskey="p" href="GstSegment.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
<td><a accesskey="n" href="GstSystemClock.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
</tr></table>
<div class="refentry">
<a name="GstStructure"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="GstStructure.top_of_page"></a>GstStructure</span></h2>
<p>GstStructure — Generic structure containing fields of names and values</p>
</td>
<td class="gallery_image" valign="top" align="right"></td>
</tr></table></div>
<div class="refsect1">
<a name="GstStructure.functions"></a><h2>Functions</h2>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="functions_return">
<col class="functions_name">
</colgroup>
<tbody>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<span class="c_punctuation">(</span><a class="link" href="GstStructure.html#GstStructureForeachFunc" title="GstStructureForeachFunc ()">*GstStructureForeachFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<span class="c_punctuation">(</span><a class="link" href="GstStructure.html#GstStructureMapFunc" title="GstStructureMapFunc ()">*GstStructureMapFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-new-empty" title="gst_structure_new_empty ()">gst_structure_new_empty</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-new-id-empty" title="gst_structure_new_id_empty ()">gst_structure_new_id_empty</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-new" title="gst_structure_new ()">gst_structure_new</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-new-valist" title="gst_structure_new_valist ()">gst_structure_new_valist</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-new-id" title="gst_structure_new_id ()">gst_structure_new_id</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-new-from-string" title="gst_structure_new_from_string ()">gst_structure_new_from_string</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-copy" title="gst_structure_copy ()">gst_structure_copy</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-free" title="gst_structure_free ()">gst_structure_free</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-name" title="gst_structure_get_name ()">gst_structure_get_name</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-has-name" title="gst_structure_has_name ()">gst_structure_has_name</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-set-name" title="gst_structure_set_name ()">gst_structure_set_name</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="returnvalue">GQuark</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-name-id" title="gst_structure_get_name_id ()">gst_structure_get_name_id</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-id-get" title="gst_structure_id_get ()">gst_structure_id_get</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-id-get-valist" title="gst_structure_id_get_valist ()">gst_structure_id_get_valist</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="returnvalue">GValue</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-id-get-value" title="gst_structure_id_get_value ()">gst_structure_id_get_value</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-id-set-value" title="gst_structure_id_set_value ()">gst_structure_id_set_value</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-id-take-value" title="gst_structure_id_take_value ()">gst_structure_id_take_value</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get" title="gst_structure_get ()">gst_structure_get</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-valist" title="gst_structure_get_valist ()">gst_structure_get_valist</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="returnvalue">GValue</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-value" title="gst_structure_get_value ()">gst_structure_get_value</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-set-value" title="gst_structure_set_value ()">gst_structure_set_value</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-take-value" title="gst_structure_take_value ()">gst_structure_take_value</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-set" title="gst_structure_set ()">gst_structure_set</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-set-valist" title="gst_structure_set_valist ()">gst_structure_set_valist</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-id-set" title="gst_structure_id_set ()">gst_structure_id_set</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-id-set-valist" title="gst_structure_id_set_valist ()">gst_structure_id_set_valist</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-remove-field" title="gst_structure_remove_field ()">gst_structure_remove_field</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-remove-fields" title="gst_structure_remove_fields ()">gst_structure_remove_fields</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-remove-fields-valist" title="gst_structure_remove_fields_valist ()">gst_structure_remove_fields_valist</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-remove-all-fields" title="gst_structure_remove_all_fields ()">gst_structure_remove_all_fields</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="returnvalue">GType</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-field-type" title="gst_structure_get_field_type ()">gst_structure_get_field_type</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-foreach" title="gst_structure_foreach ()">gst_structure_foreach</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-n-fields" title="gst_structure_n_fields ()">gst_structure_n_fields</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-has-field" title="gst_structure_has_field ()">gst_structure_has_field</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-has-field-typed" title="gst_structure_has_field_typed ()">gst_structure_has_field_typed</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-is-equal" title="gst_structure_is_equal ()">gst_structure_is_equal</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-is-subset" title="gst_structure_is_subset ()">gst_structure_is_subset</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-can-intersect" title="gst_structure_can_intersect ()">gst_structure_can_intersect</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-intersect" title="gst_structure_intersect ()">gst_structure_intersect</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-id-has-field" title="gst_structure_id_has_field ()">gst_structure_id_has_field</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-id-has-field-typed" title="gst_structure_id_has_field_typed ()">gst_structure_id_has_field_typed</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-boolean" title="gst_structure_get_boolean ()">gst_structure_get_boolean</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-int" title="gst_structure_get_int ()">gst_structure_get_int</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-uint" title="gst_structure_get_uint ()">gst_structure_get_uint</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-int64" title="gst_structure_get_int64 ()">gst_structure_get_int64</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-uint64" title="gst_structure_get_uint64 ()">gst_structure_get_uint64</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-double" title="gst_structure_get_double ()">gst_structure_get_double</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-string" title="gst_structure_get_string ()">gst_structure_get_string</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-date" title="gst_structure_get_date ()">gst_structure_get_date</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-date-time" title="gst_structure_get_date_time ()">gst_structure_get_date_time</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-clock-time" title="gst_structure_get_clock_time ()">gst_structure_get_clock_time</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-enum" title="gst_structure_get_enum ()">gst_structure_get_enum</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-get-fraction" title="gst_structure_get_fraction ()">gst_structure_get_fraction</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-map-in-place" title="gst_structure_map_in_place ()">gst_structure_map_in_place</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-nth-field-name" title="gst_structure_nth_field_name ()">gst_structure_nth_field_name</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-set-parent-refcount" title="gst_structure_set_parent_refcount ()">gst_structure_set_parent_refcount</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-to-string" title="gst_structure_to_string ()">gst_structure_to_string</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-from-string" title="gst_structure_from_string ()">gst_structure_from_string</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-fixate" title="gst_structure_fixate ()">gst_structure_fixate</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-fixate-field" title="gst_structure_fixate_field ()">gst_structure_fixate_field</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-fixate-field-nearest-int" title="gst_structure_fixate_field_nearest_int ()">gst_structure_fixate_field_nearest_int</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-fixate-field-nearest-double" title="gst_structure_fixate_field_nearest_double ()">gst_structure_fixate_field_nearest_double</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-fixate-field-nearest-fraction" title="gst_structure_fixate_field_nearest_fraction ()">gst_structure_fixate_field_nearest_fraction</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-fixate-field-boolean" title="gst_structure_fixate_field_boolean ()">gst_structure_fixate_field_boolean</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GstStructure.html#gst-structure-fixate-field-string" title="gst_structure_fixate_field_string ()">gst_structure_fixate_field_string</a> <span class="c_punctuation">()</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="GstStructure.other"></a><h2>Types and Values</h2>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="name">
<col class="description">
</colgroup>
<tbody><tr>
<td class="datatype_keyword">struct</td>
<td class="function_name"><a class="link" href="GstStructure.html#GstStructure-struct" title="struct GstStructure">GstStructure</a></td>
</tr></tbody>
</table></div>
</div>
<div class="refsect1">
<a name="GstStructure.object-hierarchy"></a><h2>Object Hierarchy</h2>
<pre class="screen"> GBoxed
<span class="lineart">╰──</span> GstStructure
</pre>
</div>
<div class="refsect1">
<a name="GstStructure.includes"></a><h2>Includes</h2>
<pre class="synopsis">#include <gst/gst.h>
</pre>
</div>
<div class="refsect1">
<a name="GstStructure.description"></a><h2>Description</h2>
<p>A <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> is a collection of key/value pairs. The keys are expressed
as GQuarks and the values can be of any GType.</p>
<p>In addition to the key/value pairs, a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> also has a name. The name
starts with a letter and can be filled by letters, numbers and any of "/-_.:".</p>
<p><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> is used by various GStreamer subsystems to store information
in a flexible and extensible way. A <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> does not have a refcount
because it usually is part of a higher level object such as <a class="link" href="GstCaps.html" title="GstCaps"><span class="type">GstCaps</span></a>,
<a class="link" href="GstMessage.html" title="GstMessage"><span class="type">GstMessage</span></a>, <a class="link" href="GstEvent.html" title="GstEvent"><span class="type">GstEvent</span></a>, <a class="link" href="GstQuery.html" title="GstQuery"><span class="type">GstQuery</span></a>. It provides a means to enforce mutability
using the refcount of the parent with the <a class="link" href="GstStructure.html#gst-structure-set-parent-refcount" title="gst_structure_set_parent_refcount ()"><code class="function">gst_structure_set_parent_refcount()</code></a>
method.</p>
<p>A <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> can be created with <a class="link" href="GstStructure.html#gst-structure-new-empty" title="gst_structure_new_empty ()"><code class="function">gst_structure_new_empty()</code></a> or
<a class="link" href="GstStructure.html#gst-structure-new" title="gst_structure_new ()"><code class="function">gst_structure_new()</code></a>, which both take a name and an optional set of
key/value pairs along with the types of the values.</p>
<p>Field values can be changed with <a class="link" href="GstStructure.html#gst-structure-set-value" title="gst_structure_set_value ()"><code class="function">gst_structure_set_value()</code></a> or
<a class="link" href="GstStructure.html#gst-structure-set" title="gst_structure_set ()"><code class="function">gst_structure_set()</code></a>.</p>
<p>Field values can be retrieved with <a class="link" href="GstStructure.html#gst-structure-get-value" title="gst_structure_get_value ()"><code class="function">gst_structure_get_value()</code></a> or the more
convenient gst_structure_get_*() functions.</p>
<p>Fields can be removed with <a class="link" href="GstStructure.html#gst-structure-remove-field" title="gst_structure_remove_field ()"><code class="function">gst_structure_remove_field()</code></a> or
<a class="link" href="GstStructure.html#gst-structure-remove-fields" title="gst_structure_remove_fields ()"><code class="function">gst_structure_remove_fields()</code></a>.</p>
<p>Strings in structures must be ASCII or UTF-8 encoded. Other encodings are
not allowed. Strings may be NULL however.</p>
<p>Be aware that the current <a class="link" href="GstCaps.html" title="GstCaps"><span class="type">GstCaps</span></a> / <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> serialization into string
has limited support for nested <a class="link" href="GstCaps.html" title="GstCaps"><span class="type">GstCaps</span></a> / <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> fields. It can only
support one level of nesting. Using more levels will lead to unexpected
behavior when using serialization features, such as <a class="link" href="GstCaps.html#gst-caps-to-string" title="gst_caps_to_string ()"><code class="function">gst_caps_to_string()</code></a> or
<a class="link" href="gstreamer-GstValue.html#gst-value-serialize" title="gst_value_serialize ()"><code class="function">gst_value_serialize()</code></a> and their counterparts.</p>
</div>
<div class="refsect1">
<a name="GstStructure.functions_details"></a><h2>Functions</h2>
<div class="refsect2">
<a name="GstStructureForeachFunc"></a><h3>GstStructureForeachFunc ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
<span class="c_punctuation">(</span>*GstStructureForeachFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> field_id</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
<p>A function that will be called in <a class="link" href="GstStructure.html#gst-structure-foreach" title="gst_structure_foreach ()"><code class="function">gst_structure_foreach()</code></a>. The function may
not modify <em class="parameter"><code>value</code></em>
.</p>
<div class="refsect3">
<a name="id-1.3.45.8.2.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>field_id</p></td>
<td class="parameter_description"><p>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> of the field name</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>the <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> of the field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>user data</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.2.6"></a><h4>Returns</h4>
<p> TRUE if the foreach operation should continue, FALSE if
the foreach operation should stop with FALSE.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="GstStructureMapFunc"></a><h3>GstStructureMapFunc ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
<span class="c_punctuation">(</span>*GstStructureMapFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> field_id</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
<p>A function that will be called in <a class="link" href="GstStructure.html#gst-structure-map-in-place" title="gst_structure_map_in_place ()"><code class="function">gst_structure_map_in_place()</code></a>. The function
may modify <em class="parameter"><code>value</code></em>
.</p>
<div class="refsect3">
<a name="id-1.3.45.8.3.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>field_id</p></td>
<td class="parameter_description"><p>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> of the field name</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>the <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> of the field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>user data</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.3.6"></a><h4>Returns</h4>
<p> TRUE if the map operation should continue, FALSE if
the map operation should stop with FALSE.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-new-empty"></a><h3>gst_structure_new_empty ()</h3>
<pre class="programlisting"><a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
gst_structure_new_empty (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
<p>Creates a new, empty <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> with the given <em class="parameter"><code>name</code></em>
.</p>
<p>See <a class="link" href="GstStructure.html#gst-structure-set-name" title="gst_structure_set_name ()"><code class="function">gst_structure_set_name()</code></a> for constraints on the <em class="parameter"><code>name</code></em>
parameter.</p>
<p>Free-function: gst_structure_free</p>
<div class="refsect3">
<a name="id-1.3.45.8.4.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>name</p></td>
<td class="parameter_description"><p>name of new structure</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.4.8"></a><h4>Returns</h4>
<p> a new, empty <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-new-id-empty"></a><h3>gst_structure_new_id_empty ()</h3>
<pre class="programlisting"><a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
gst_structure_new_id_empty (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> quark</code></em>);</pre>
<p>Creates a new, empty <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> with the given name as a GQuark.</p>
<p>Free-function: gst_structure_free</p>
<div class="refsect3">
<a name="id-1.3.45.8.5.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>quark</p></td>
<td class="parameter_description"><p>name of new structure</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.5.7"></a><h4>Returns</h4>
<p> a new, empty <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-new"></a><h3>gst_structure_new ()</h3>
<pre class="programlisting"><a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
gst_structure_new (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *firstfield</code></em>,
<em class="parameter"><code>...</code></em>);</pre>
<p>Creates a new <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> with the given name. Parses the
list of variable arguments and sets fields to the values listed.
Variable arguments should be passed as field name, field type,
and value. Last variable argument should be NULL.</p>
<p>Free-function: gst_structure_free</p>
<div class="refsect3">
<a name="id-1.3.45.8.6.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>name</p></td>
<td class="parameter_description"><p>name of new structure</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>firstfield</p></td>
<td class="parameter_description"><p>name of first field to set</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>...</p></td>
<td class="parameter_description"><p>additional arguments</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.6.7"></a><h4>Returns</h4>
<p> a new <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-new-valist"></a><h3>gst_structure_new_valist ()</h3>
<pre class="programlisting"><a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
gst_structure_new_valist (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *firstfield</code></em>,
<em class="parameter"><code><span class="type">va_list</span> varargs</code></em>);</pre>
<p>Creates a new <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> with the given <em class="parameter"><code>name</code></em>
. Structure fields
are set according to the varargs in a manner similar to
<a class="link" href="GstStructure.html#gst-structure-new" title="gst_structure_new ()"><code class="function">gst_structure_new()</code></a>.</p>
<p>See <a class="link" href="GstStructure.html#gst-structure-set-name" title="gst_structure_set_name ()"><code class="function">gst_structure_set_name()</code></a> for constraints on the <em class="parameter"><code>name</code></em>
parameter.</p>
<p>Free-function: gst_structure_free</p>
<div class="refsect3">
<a name="id-1.3.45.8.7.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>name</p></td>
<td class="parameter_description"><p>name of new structure</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>firstfield</p></td>
<td class="parameter_description"><p>name of first field to set</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>varargs</p></td>
<td class="parameter_description"><p>variable argument list</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.7.8"></a><h4>Returns</h4>
<p> a new <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-new-id"></a><h3>gst_structure_new_id ()</h3>
<pre class="programlisting"><a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
gst_structure_new_id (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> name_quark</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> field_quark</code></em>,
<em class="parameter"><code>...</code></em>);</pre>
<p>Creates a new <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> with the given name as a GQuark, followed by
fieldname quark, GType, argument(s) "triplets" in the same format as
<a class="link" href="GstStructure.html#gst-structure-id-set" title="gst_structure_id_set ()"><code class="function">gst_structure_id_set()</code></a>. Basically a convenience wrapper around
<a class="link" href="GstStructure.html#gst-structure-new-id-empty" title="gst_structure_new_id_empty ()"><code class="function">gst_structure_new_id_empty()</code></a> and <a class="link" href="GstStructure.html#gst-structure-id-set" title="gst_structure_id_set ()"><code class="function">gst_structure_id_set()</code></a>.</p>
<p>The last variable argument must be NULL (or 0).</p>
<p>Free-function: gst_structure_free</p>
<div class="refsect3">
<a name="id-1.3.45.8.8.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>name_quark</p></td>
<td class="parameter_description"><p>name of new structure</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field_quark</p></td>
<td class="parameter_description"><p>the GQuark for the name of the field to set</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>...</p></td>
<td class="parameter_description"><p>variable arguments</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.8.8"></a><h4>Returns</h4>
<p> a new <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-new-from-string"></a><h3>gst_structure_new_from_string ()</h3>
<pre class="programlisting"><a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
gst_structure_new_from_string (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *string</code></em>);</pre>
<p>Creates a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> from a string representation.
If end is not NULL, a pointer to the place inside the given string
where parsing ended will be returned.</p>
<p>The current implementation of serialization will lead to unexpected results
when there are nested <a class="link" href="GstCaps.html" title="GstCaps"><span class="type">GstCaps</span></a> / <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> deeper than one level.</p>
<p>Free-function: gst_structure_free</p>
<div class="refsect3">
<a name="id-1.3.45.8.9.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>string</p></td>
<td class="parameter_description"><p>a string representation of a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.9.8"></a><h4>Returns</h4>
<p> a new <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> or NULL when the string could
not be parsed. Free with <a class="link" href="GstStructure.html#gst-structure-free" title="gst_structure_free ()"><code class="function">gst_structure_free()</code></a> after use. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
<p class="since">Since 1.2</p>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-copy"></a><h3>gst_structure_copy ()</h3>
<pre class="programlisting"><a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
gst_structure_copy (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>);</pre>
<p>Duplicates a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> and all its fields and values.</p>
<p>Free-function: gst_structure_free</p>
<div class="refsect3">
<a name="id-1.3.45.8.10.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> to duplicate</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.10.7"></a><h4>Returns</h4>
<p> a new <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-free"></a><h3>gst_structure_free ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_free (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>);</pre>
<p>Frees a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> and all its fields and values. The structure must not
have a parent when this function is called.</p>
<div class="refsect3">
<a name="id-1.3.45.8.11.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p> the <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> to free. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input. Default is transfer none."><span class="acronym">in</span></acronym>][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></td>
</tr></tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-name"></a><h3>gst_structure_get_name ()</h3>
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
gst_structure_get_name (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>);</pre>
<p>Get the name of <em class="parameter"><code>structure</code></em>
as a string.</p>
<div class="refsect3">
<a name="id-1.3.45.8.12.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.12.6"></a><h4>Returns</h4>
<p> the name of the structure.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-has-name"></a><h3>gst_structure_has_name ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_has_name (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
<p>Checks if the structure has the given name</p>
<div class="refsect3">
<a name="id-1.3.45.8.13.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>name</p></td>
<td class="parameter_description"><p>structure name to check for</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.13.6"></a><h4>Returns</h4>
<p> TRUE if <em class="parameter"><code>name</code></em>
matches the name of the structure.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-set-name"></a><h3>gst_structure_set_name ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_set_name (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
<p>Sets the name of the structure to the given <em class="parameter"><code>name</code></em>
. The string
provided is copied before being used. It must not be empty, start with a
letter and can be followed by letters, numbers and any of "/-_.:".</p>
<div class="refsect3">
<a name="id-1.3.45.8.14.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>name</p></td>
<td class="parameter_description"><p>the new name of the structure</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-name-id"></a><h3>gst_structure_get_name_id ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="returnvalue">GQuark</span></a>
gst_structure_get_name_id (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>);</pre>
<p>Get the name of <em class="parameter"><code>structure</code></em>
as a GQuark.</p>
<div class="refsect3">
<a name="id-1.3.45.8.15.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.15.6"></a><h4>Returns</h4>
<p> the quark representing the name of the structure.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-id-get"></a><h3>gst_structure_id_get ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_id_get (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> first_field_id</code></em>,
<em class="parameter"><code>...</code></em>);</pre>
<p>Parses the variable arguments and reads fields from <em class="parameter"><code>structure</code></em>
accordingly.
Variable arguments should be in the form field id quark, field type
(as a GType), pointer(s) to a variable(s) to hold the return value(s).
The last variable argument should be NULL (technically it should be a
0 quark, but we require NULL so compilers that support it can check for
the NULL terminator and warn if it's not there).</p>
<p>This function is just like <a class="link" href="GstStructure.html#gst-structure-get" title="gst_structure_get ()"><code class="function">gst_structure_get()</code></a> only that it is slightly
more efficient since it saves the string-to-quark lookup in the global
quark hashtable.</p>
<p>For refcounted (mini)objects you will receive a new reference which
you must release with a suitable <code class="function">_unref()</code> when no longer needed. For
strings and boxed types you will receive a copy which you will need to
release with either <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> or the suitable function for the boxed type.</p>
<div class="refsect3">
<a name="id-1.3.45.8.16.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>first_field_id</p></td>
<td class="parameter_description"><p>the quark of the first field to read</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>...</p></td>
<td class="parameter_description"><p>variable arguments</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.16.8"></a><h4>Returns</h4>
<p> FALSE if there was a problem reading any of the fields (e.g.
because the field requested did not exist, or was of a type other
than the type specified), otherwise TRUE.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-id-get-valist"></a><h3>gst_structure_id_get_valist ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_id_get_valist (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> first_field_id</code></em>,
<em class="parameter"><code><span class="type">va_list</span> args</code></em>);</pre>
<p>Parses the variable arguments and reads fields from <em class="parameter"><code>structure</code></em>
accordingly.
valist-variant of <a class="link" href="GstStructure.html#gst-structure-id-get" title="gst_structure_id_get ()"><code class="function">gst_structure_id_get()</code></a>. Look at the documentation of
<a class="link" href="GstStructure.html#gst-structure-id-get" title="gst_structure_id_get ()"><code class="function">gst_structure_id_get()</code></a> for more details.</p>
<div class="refsect3">
<a name="id-1.3.45.8.17.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>first_field_id</p></td>
<td class="parameter_description"><p>the quark of the first field to read</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>args</p></td>
<td class="parameter_description"><p>variable arguments</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.17.6"></a><h4>Returns</h4>
<p> TRUE, or FALSE if there was a problem reading any of the fields</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-id-get-value"></a><h3>gst_structure_id_get_value ()</h3>
<pre class="programlisting">const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="returnvalue">GValue</span></a> *
gst_structure_id_get_value (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> field</code></em>);</pre>
<p>Get the value of the field with GQuark <em class="parameter"><code>field</code></em>
.</p>
<div class="refsect3">
<a name="id-1.3.45.8.18.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field</p></td>
<td class="parameter_description"><p>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> of the field to get</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.18.6"></a><h4>Returns</h4>
<p> the <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> corresponding to the field with the given name
identifier.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-id-set-value"></a><h3>gst_structure_id_set_value ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_id_set_value (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> field</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>);</pre>
<p>Sets the field with the given GQuark <em class="parameter"><code>field</code></em>
to <em class="parameter"><code>value</code></em>
. If the field
does not exist, it is created. If the field exists, the previous
value is replaced and freed.</p>
<div class="refsect3">
<a name="id-1.3.45.8.19.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field</p></td>
<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> representing a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>the new value of the field</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-id-take-value"></a><h3>gst_structure_id_take_value ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_id_take_value (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> field</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>);</pre>
<p>Sets the field with the given GQuark <em class="parameter"><code>field</code></em>
to <em class="parameter"><code>value</code></em>
. If the field
does not exist, it is created. If the field exists, the previous
value is replaced and freed.</p>
<div class="refsect3">
<a name="id-1.3.45.8.20.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field</p></td>
<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> representing a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p> the new value of the field. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get"></a><h3>gst_structure_get ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <span class="type">char</span> *first_fieldname</code></em>,
<em class="parameter"><code>...</code></em>);</pre>
<p>Parses the variable arguments and reads fields from <em class="parameter"><code>structure</code></em>
accordingly.
Variable arguments should be in the form field name, field type
(as a GType), pointer(s) to a variable(s) to hold the return value(s).
The last variable argument should be NULL.</p>
<p>For refcounted (mini)objects you will receive a new reference which
you must release with a suitable <code class="function">_unref()</code> when no longer needed. For
strings and boxed types you will receive a copy which you will need to
release with either <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> or the suitable function for the boxed type.</p>
<div class="refsect3">
<a name="id-1.3.45.8.21.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>first_fieldname</p></td>
<td class="parameter_description"><p>the name of the first field to read</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>...</p></td>
<td class="parameter_description"><p>variable arguments</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.21.7"></a><h4>Returns</h4>
<p> FALSE if there was a problem reading any of the fields (e.g.
because the field requested did not exist, or was of a type other
than the type specified), otherwise TRUE.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-valist"></a><h3>gst_structure_get_valist ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get_valist (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <span class="type">char</span> *first_fieldname</code></em>,
<em class="parameter"><code><span class="type">va_list</span> args</code></em>);</pre>
<p>Parses the variable arguments and reads fields from <em class="parameter"><code>structure</code></em>
accordingly.
valist-variant of <a class="link" href="GstStructure.html#gst-structure-get" title="gst_structure_get ()"><code class="function">gst_structure_get()</code></a>. Look at the documentation of
<a class="link" href="GstStructure.html#gst-structure-get" title="gst_structure_get ()"><code class="function">gst_structure_get()</code></a> for more details.</p>
<div class="refsect3">
<a name="id-1.3.45.8.22.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>first_fieldname</p></td>
<td class="parameter_description"><p>the name of the first field to read</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>args</p></td>
<td class="parameter_description"><p>variable arguments</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.22.6"></a><h4>Returns</h4>
<p> TRUE, or FALSE if there was a problem reading any of the fields</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-value"></a><h3>gst_structure_get_value ()</h3>
<pre class="programlisting">const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="returnvalue">GValue</span></a> *
gst_structure_get_value (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>);</pre>
<p>Get the value of the field with name <em class="parameter"><code>fieldname</code></em>
.</p>
<div class="refsect3">
<a name="id-1.3.45.8.23.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of the field to get</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.23.6"></a><h4>Returns</h4>
<p> the <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> corresponding to the field with the given name.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-set-value"></a><h3>gst_structure_set_value ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_set_value (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>);</pre>
<p>Sets the field with the given name <em class="parameter"><code>field</code></em>
to <em class="parameter"><code>value</code></em>
. If the field
does not exist, it is created. If the field exists, the previous
value is replaced and freed.</p>
<div class="refsect3">
<a name="id-1.3.45.8.24.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of the field to set</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>the new value of the field</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-take-value"></a><h3>gst_structure_take_value ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_take_value (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value</code></em>);</pre>
<p>Sets the field with the given name <em class="parameter"><code>field</code></em>
to <em class="parameter"><code>value</code></em>
. If the field
does not exist, it is created. If the field exists, the previous
value is replaced and freed. The function will take ownership of <em class="parameter"><code>value</code></em>
.</p>
<div class="refsect3">
<a name="id-1.3.45.8.25.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of the field to set</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p> the new value of the field. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-set"></a><h3>gst_structure_set ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_set (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code>...</code></em>);</pre>
<p>Parses the variable arguments and sets fields accordingly.
Variable arguments should be in the form field name, field type
(as a GType), value(s). The last variable argument should be NULL.</p>
<div class="refsect3">
<a name="id-1.3.45.8.26.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of the field to set</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>...</p></td>
<td class="parameter_description"><p>variable arguments</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-set-valist"></a><h3>gst_structure_set_valist ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_set_valist (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><span class="type">va_list</span> varargs</code></em>);</pre>
<p>va_list form of <a class="link" href="GstStructure.html#gst-structure-set" title="gst_structure_set ()"><code class="function">gst_structure_set()</code></a>.</p>
<div class="refsect3">
<a name="id-1.3.45.8.27.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of the field to set</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>varargs</p></td>
<td class="parameter_description"><p>variable arguments</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-id-set"></a><h3>gst_structure_id_set ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_id_set (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> fieldname</code></em>,
<em class="parameter"><code>...</code></em>);</pre>
<p>Identical to gst_structure_set, except that field names are
passed using the GQuark for the field name. This allows more efficient
setting of the structure if the caller already knows the associated
quark values.
The last variable argument must be NULL.</p>
<div class="refsect3">
<a name="id-1.3.45.8.28.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the GQuark for the name of the field to set</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>...</p></td>
<td class="parameter_description"><p>variable arguments</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-id-set-valist"></a><h3>gst_structure_id_set_valist ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_id_set_valist (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> fieldname</code></em>,
<em class="parameter"><code><span class="type">va_list</span> varargs</code></em>);</pre>
<p>va_list form of <a class="link" href="GstStructure.html#gst-structure-id-set" title="gst_structure_id_set ()"><code class="function">gst_structure_id_set()</code></a>.</p>
<div class="refsect3">
<a name="id-1.3.45.8.29.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of the field to set</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>varargs</p></td>
<td class="parameter_description"><p>variable arguments</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-remove-field"></a><h3>gst_structure_remove_field ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_remove_field (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>);</pre>
<p>Removes the field with the given name. If the field with the given
name does not exist, the structure is unchanged.</p>
<div class="refsect3">
<a name="id-1.3.45.8.30.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of the field to remove</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-remove-fields"></a><h3>gst_structure_remove_fields ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_remove_fields (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code>...</code></em>);</pre>
<p>Removes the fields with the given names. If a field does not exist, the
argument is ignored.</p>
<div class="refsect3">
<a name="id-1.3.45.8.31.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of the field to remove</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>...</p></td>
<td class="parameter_description"><p>NULL-terminated list of more fieldnames to remove</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-remove-fields-valist"></a><h3>gst_structure_remove_fields_valist ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_remove_fields_valist (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><span class="type">va_list</span> varargs</code></em>);</pre>
<p>va_list form of <a class="link" href="GstStructure.html#gst-structure-remove-fields" title="gst_structure_remove_fields ()"><code class="function">gst_structure_remove_fields()</code></a>.</p>
<div class="refsect3">
<a name="id-1.3.45.8.32.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of the field to remove</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>varargs</p></td>
<td class="parameter_description"><p>NULL-terminated list of more fieldnames to remove</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-remove-all-fields"></a><h3>gst_structure_remove_all_fields ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_remove_all_fields (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>);</pre>
<p>Removes all fields in a GstStructure.</p>
<div class="refsect3">
<a name="id-1.3.45.8.33.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-field-type"></a><h3>gst_structure_get_field_type ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="returnvalue">GType</span></a>
gst_structure_get_field_type (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>);</pre>
<p>Finds the field with the given name, and returns the type of the
value it contains. If the field is not found, G_TYPE_INVALID is
returned.</p>
<div class="refsect3">
<a name="id-1.3.45.8.34.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of the field</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.34.6"></a><h4>Returns</h4>
<p> the <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> of the field</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-foreach"></a><h3>gst_structure_foreach ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_foreach (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a class="link" href="GstStructure.html#GstStructureForeachFunc" title="GstStructureForeachFunc ()"><span class="type">GstStructureForeachFunc</span></a> func</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
<p>Calls the provided function once for each field in the <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>. The
function must not modify the fields. Also see <a class="link" href="GstStructure.html#gst-structure-map-in-place" title="gst_structure_map_in_place ()"><code class="function">gst_structure_map_in_place()</code></a>.</p>
<div class="refsect3">
<a name="id-1.3.45.8.35.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>func</p></td>
<td class="parameter_description"><p> a function to call for each field. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span></td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p> private data. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.35.6"></a><h4>Returns</h4>
<p> TRUE if the supplied function returns TRUE For each of the fields,
FALSE otherwise.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-n-fields"></a><h3>gst_structure_n_fields ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
gst_structure_n_fields (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>);</pre>
<p>Get the number of fields in the structure.</p>
<div class="refsect3">
<a name="id-1.3.45.8.36.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.36.6"></a><h4>Returns</h4>
<p> the number of fields in the structure</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-has-field"></a><h3>gst_structure_has_field ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_has_field (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>);</pre>
<p>Check if <em class="parameter"><code>structure</code></em>
contains a field named <em class="parameter"><code>fieldname</code></em>
.</p>
<div class="refsect3">
<a name="id-1.3.45.8.37.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.37.6"></a><h4>Returns</h4>
<p> TRUE if the structure contains a field with the given name</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-has-field-typed"></a><h3>gst_structure_has_field_typed ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_has_field_typed (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> type</code></em>);</pre>
<p>Check if <em class="parameter"><code>structure</code></em>
contains a field named <em class="parameter"><code>fieldname</code></em>
and with GType <em class="parameter"><code>type</code></em>
.</p>
<div class="refsect3">
<a name="id-1.3.45.8.38.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>type</p></td>
<td class="parameter_description"><p>the type of a value</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.38.6"></a><h4>Returns</h4>
<p> TRUE if the structure contains a field with the given name and type</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-is-equal"></a><h3>gst_structure_is_equal ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_is_equal (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure1</code></em>,
<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure2</code></em>);</pre>
<p>Tests if the two <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> are equal.</p>
<div class="refsect3">
<a name="id-1.3.45.8.39.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure1</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>structure2</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.39.6"></a><h4>Returns</h4>
<p> TRUE if the two structures have the same name and field.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-is-subset"></a><h3>gst_structure_is_subset ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_is_subset (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *subset</code></em>,
<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *superset</code></em>);</pre>
<p>Checks if <em class="parameter"><code>subset</code></em>
is a subset of <em class="parameter"><code>superset</code></em>
, i.e. has the same
structure name and for all fields that are existing in <em class="parameter"><code>superset</code></em>
,
<em class="parameter"><code>subset</code></em>
has a value that is a subset of the value in <em class="parameter"><code>superset</code></em>
.</p>
<div class="refsect3">
<a name="id-1.3.45.8.40.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>subset</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>superset</p></td>
<td class="parameter_description"><p>a potentially greater <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.40.6"></a><h4>Returns</h4>
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>subset</code></em>
is a subset of <em class="parameter"><code>superset</code></em>
</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-can-intersect"></a><h3>gst_structure_can_intersect ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_can_intersect (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *struct1</code></em>,
<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *struct2</code></em>);</pre>
<p>Tries intersecting <em class="parameter"><code>struct1</code></em>
and <em class="parameter"><code>struct2</code></em>
and reports whether the result
would not be empty.</p>
<div class="refsect3">
<a name="id-1.3.45.8.41.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>struct1</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>struct2</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.41.6"></a><h4>Returns</h4>
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if intersection would not be empty</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-intersect"></a><h3>gst_structure_intersect ()</h3>
<pre class="programlisting"><a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
gst_structure_intersect (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *struct1</code></em>,
<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *struct2</code></em>);</pre>
<p>Intersects <em class="parameter"><code>struct1</code></em>
and <em class="parameter"><code>struct2</code></em>
and returns the intersection.</p>
<div class="refsect3">
<a name="id-1.3.45.8.42.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>struct1</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>struct2</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.42.6"></a><h4>Returns</h4>
<p> Intersection of <em class="parameter"><code>struct1</code></em>
and <em class="parameter"><code>struct2</code></em>
</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-id-has-field"></a><h3>gst_structure_id_has_field ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_id_has_field (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> field</code></em>);</pre>
<p>Check if <em class="parameter"><code>structure</code></em>
contains a field named <em class="parameter"><code>field</code></em>
.</p>
<div class="refsect3">
<a name="id-1.3.45.8.43.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field</p></td>
<td class="parameter_description"><p><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> of the field name</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.43.6"></a><h4>Returns</h4>
<p> TRUE if the structure contains a field with the given name</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-id-has-field-typed"></a><h3>gst_structure_id_has_field_typed ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_id_has_field_typed (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> field</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> type</code></em>);</pre>
<p>Check if <em class="parameter"><code>structure</code></em>
contains a field named <em class="parameter"><code>field</code></em>
and with GType <em class="parameter"><code>type</code></em>
.</p>
<div class="refsect3">
<a name="id-1.3.45.8.44.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field</p></td>
<td class="parameter_description"><p><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> of the field name</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>type</p></td>
<td class="parameter_description"><p>the type of a value</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.44.6"></a><h4>Returns</h4>
<p> TRUE if the structure contains a field with the given name and type</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-boolean"></a><h3>gst_structure_get_boolean ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get_boolean (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *value</code></em>);</pre>
<p>Sets the boolean pointed to by <em class="parameter"><code>value</code></em>
corresponding to the value of the
given field. Caller is responsible for making sure the field exists
and has the correct type.</p>
<div class="refsect3">
<a name="id-1.3.45.8.45.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p> a pointer to a <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> to set. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.45.6"></a><h4>Returns</h4>
<p> TRUE if the value could be set correctly. If there was no field
with <em class="parameter"><code>fieldname</code></em>
or the existing field did not contain a boolean, this
function returns FALSE.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-int"></a><h3>gst_structure_get_int ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get_int (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *value</code></em>);</pre>
<p>Sets the int pointed to by <em class="parameter"><code>value</code></em>
corresponding to the value of the
given field. Caller is responsible for making sure the field exists
and has the correct type.</p>
<div class="refsect3">
<a name="id-1.3.45.8.46.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p> a pointer to an int to set. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.46.6"></a><h4>Returns</h4>
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the value could be set correctly. If there was no field
with <em class="parameter"><code>fieldname</code></em>
or the existing field did not contain an int, this function
returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-uint"></a><h3>gst_structure_get_uint ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get_uint (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> *value</code></em>);</pre>
<p>Sets the uint pointed to by <em class="parameter"><code>value</code></em>
corresponding to the value of the
given field. Caller is responsible for making sure the field exists
and has the correct type.</p>
<div class="refsect3">
<a name="id-1.3.45.8.47.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p> a pointer to a uint to set. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.47.6"></a><h4>Returns</h4>
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the value could be set correctly. If there was no field
with <em class="parameter"><code>fieldname</code></em>
or the existing field did not contain a uint, this function
returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-int64"></a><h3>gst_structure_get_int64 ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get_int64 (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><span class="type">gint64</span> *value</code></em>);</pre>
<p>Sets the int64 pointed to by <em class="parameter"><code>value</code></em>
corresponding to the value of the
given field. Caller is responsible for making sure the field exists
and has the correct type.</p>
<div class="refsect3">
<a name="id-1.3.45.8.48.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p> a pointer to an int64 to set. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.48.6"></a><h4>Returns</h4>
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the value could be set correctly. If there was no field
with <em class="parameter"><code>fieldname</code></em>
or the existing field did not contain an int64, this function
returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
<p></p>
</div>
<p class="since">Since 1.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-uint64"></a><h3>gst_structure_get_uint64 ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get_uint64 (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><span class="type">guint64</span> *value</code></em>);</pre>
<p>Sets the uint64 pointed to by <em class="parameter"><code>value</code></em>
corresponding to the value of the
given field. Caller is responsible for making sure the field exists
and has the correct type.</p>
<div class="refsect3">
<a name="id-1.3.45.8.49.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p> a pointer to a uint64 to set. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.49.6"></a><h4>Returns</h4>
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the value could be set correctly. If there was no field
with <em class="parameter"><code>fieldname</code></em>
or the existing field did not contain a uint64, this function
returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
<p></p>
</div>
<p class="since">Since 1.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-double"></a><h3>gst_structure_get_double ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get_double (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *value</code></em>);</pre>
<p>Sets the double pointed to by <em class="parameter"><code>value</code></em>
corresponding to the value of the
given field. Caller is responsible for making sure the field exists
and has the correct type.</p>
<div class="refsect3">
<a name="id-1.3.45.8.50.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p> a pointer to a gdouble to set. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.50.6"></a><h4>Returns</h4>
<p> TRUE if the value could be set correctly. If there was no field
with <em class="parameter"><code>fieldname</code></em>
or the existing field did not contain a double, this
function returns FALSE.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-string"></a><h3>gst_structure_get_string ()</h3>
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
gst_structure_get_string (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>);</pre>
<p>Finds the field corresponding to <em class="parameter"><code>fieldname</code></em>
, and returns the string
contained in the field's value. Caller is responsible for making
sure the field exists and has the correct type.</p>
<p>The string should not be modified, and remains valid until the next
call to a gst_structure_*() function with the given structure.</p>
<div class="refsect3">
<a name="id-1.3.45.8.51.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.51.7"></a><h4>Returns</h4>
<p> a pointer to the string or NULL when the field did not exist
or did not contain a string.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-date"></a><h3>gst_structure_get_date ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get_date (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Date-and-Time-Functions.html#GDate"><span class="type">GDate</span></a> **value</code></em>);</pre>
<p>Sets the date pointed to by <em class="parameter"><code>value</code></em>
corresponding to the date of the
given field. Caller is responsible for making sure the field exists
and has the correct type.</p>
<p>On success <em class="parameter"><code>value</code></em>
will point to a newly-allocated copy of the date which
should be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Date-and-Time-Functions.html#g-date-free"><code class="function">g_date_free()</code></a> when no longer needed (note: this is
inconsistent with e.g. <a class="link" href="GstStructure.html#gst-structure-get-string" title="gst_structure_get_string ()"><code class="function">gst_structure_get_string()</code></a> which doesn't return a
copy of the string).</p>
<div class="refsect3">
<a name="id-1.3.45.8.52.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p> a pointer to a <a href="http://library.gnome.org/devel/glib/unstable/glib-Date-and-Time-Functions.html#GDate"><span class="type">GDate</span></a> to set. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Out parameter, where caller must allocate storage."><span class="acronym">out callee-allocates</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.52.7"></a><h4>Returns</h4>
<p> TRUE if the value could be set correctly. If there was no field
with <em class="parameter"><code>fieldname</code></em>
or the existing field did not contain a data, this function
returns FALSE.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-date-time"></a><h3>gst_structure_get_date_time ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get_date_time (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><a class="link" href="GstDateTime.html" title="GstDateTime"><span class="type">GstDateTime</span></a> **value</code></em>);</pre>
<p>Sets the datetime pointed to by <em class="parameter"><code>value</code></em>
corresponding to the datetime of the
given field. Caller is responsible for making sure the field exists
and has the correct type.</p>
<p>On success <em class="parameter"><code>value</code></em>
will point to a reference of the datetime which
should be unreffed with <a class="link" href="GstDateTime.html#gst-date-time-unref" title="gst_date_time_unref ()"><code class="function">gst_date_time_unref()</code></a> when no longer needed
(note: this is inconsistent with e.g. <a class="link" href="GstStructure.html#gst-structure-get-string" title="gst_structure_get_string ()"><code class="function">gst_structure_get_string()</code></a>
which doesn't return a copy of the string).</p>
<div class="refsect3">
<a name="id-1.3.45.8.53.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p> a pointer to a <a class="link" href="GstDateTime.html" title="GstDateTime"><span class="type">GstDateTime</span></a> to set. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Out parameter, where caller must allocate storage."><span class="acronym">out callee-allocates</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.53.7"></a><h4>Returns</h4>
<p> TRUE if the value could be set correctly. If there was no field
with <em class="parameter"><code>fieldname</code></em>
or the existing field did not contain a data, this function
returns FALSE.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-clock-time"></a><h3>gst_structure_get_clock_time ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get_clock_time (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> *value</code></em>);</pre>
<p>Sets the clock time pointed to by <em class="parameter"><code>value</code></em>
corresponding to the clock time
of the given field. Caller is responsible for making sure the field exists
and has the correct type.</p>
<div class="refsect3">
<a name="id-1.3.45.8.54.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p> a pointer to a <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> to set. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.54.6"></a><h4>Returns</h4>
<p> TRUE if the value could be set correctly. If there was no field
with <em class="parameter"><code>fieldname</code></em>
or the existing field did not contain a <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a>, this
function returns FALSE.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-enum"></a><h3>gst_structure_get_enum ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get_enum (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> enumtype</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *value</code></em>);</pre>
<p>Sets the int pointed to by <em class="parameter"><code>value</code></em>
corresponding to the value of the
given field. Caller is responsible for making sure the field exists,
has the correct type and that the enumtype is correct.</p>
<div class="refsect3">
<a name="id-1.3.45.8.55.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>enumtype</p></td>
<td class="parameter_description"><p>the enum type of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p> a pointer to an int to set. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.55.6"></a><h4>Returns</h4>
<p> TRUE if the value could be set correctly. If there was no field
with <em class="parameter"><code>fieldname</code></em>
or the existing field did not contain an enum of the given
type, this function returns FALSE.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-get-fraction"></a><h3>gst_structure_get_fraction ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_get_fraction (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *fieldname</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *value_numerator</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *value_denominator</code></em>);</pre>
<p>Sets the integers pointed to by <em class="parameter"><code>value_numerator</code></em>
and <em class="parameter"><code>value_denominator</code></em>
corresponding to the value of the given field. Caller is responsible
for making sure the field exists and has the correct type.</p>
<div class="refsect3">
<a name="id-1.3.45.8.56.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>fieldname</p></td>
<td class="parameter_description"><p>the name of a field</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value_numerator</p></td>
<td class="parameter_description"><p> a pointer to an int to set. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
</tr>
<tr>
<td class="parameter_name"><p>value_denominator</p></td>
<td class="parameter_description"><p> a pointer to an int to set. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.56.6"></a><h4>Returns</h4>
<p> TRUE if the values could be set correctly. If there was no field
with <em class="parameter"><code>fieldname</code></em>
or the existing field did not contain a GstFraction, this
function returns FALSE.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-map-in-place"></a><h3>gst_structure_map_in_place ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_map_in_place (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a class="link" href="GstStructure.html#GstStructureMapFunc" title="GstStructureMapFunc ()"><span class="type">GstStructureMapFunc</span></a> func</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
<p>Calls the provided function once for each field in the <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>. In
contrast to <a class="link" href="GstStructure.html#gst-structure-foreach" title="gst_structure_foreach ()"><code class="function">gst_structure_foreach()</code></a>, the function may modify but not delete the
fields. The structure must be mutable.</p>
<div class="refsect3">
<a name="id-1.3.45.8.57.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>func</p></td>
<td class="parameter_description"><p> a function to call for each field. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span></td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p> private data. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.57.6"></a><h4>Returns</h4>
<p> TRUE if the supplied function returns TRUE For each of the fields,
FALSE otherwise.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-nth-field-name"></a><h3>gst_structure_nth_field_name ()</h3>
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
gst_structure_nth_field_name (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> index</code></em>);</pre>
<p>Get the name of the given field number, counting from 0 onwards.</p>
<div class="refsect3">
<a name="id-1.3.45.8.58.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>index</p></td>
<td class="parameter_description"><p>the index to get the name of</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.58.6"></a><h4>Returns</h4>
<p> the name of the given field number</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-set-parent-refcount"></a><h3>gst_structure_set_parent_refcount ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_set_parent_refcount (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *refcount</code></em>);</pre>
<p>Sets the parent_refcount field of <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>. This field is used to
determine whether a structure is mutable or not. This function should only be
called by code implementing parent objects of <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>, as described in
the MT Refcounting section of the design documents.</p>
<div class="refsect3">
<a name="id-1.3.45.8.59.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>refcount</p></td>
<td class="parameter_description"><p> a pointer to the parent's refcount. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input. Default is transfer none."><span class="acronym">in</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.59.6"></a><h4>Returns</h4>
<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the parent refcount could be set.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-to-string"></a><h3>gst_structure_to_string ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
gst_structure_to_string (<em class="parameter"><code>const <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>);</pre>
<p>Converts <em class="parameter"><code>structure</code></em>
to a human-readable string representation.</p>
<p>For debugging purposes its easier to do something like this:</p>
<div class="informalexample">
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td class="listing_lines" align="right"><pre>1</pre></td>
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstInfo.html#GST-LOG:CAPS">GST_LOG</a></span> <span class="gtkdoc opt">(</span><span class="string">"structure is %"</span> GST_PTR_FORMAT<span class="gtkdoc opt">,</span> structure<span class="gtkdoc opt">);</span></pre></td>
</tr>
</tbody>
</table>
</div>
<p>
This prints the structure in human readable form.</p>
<p>The current implementation of serialization will lead to unexpected results
when there are nested <a class="link" href="GstCaps.html" title="GstCaps"><span class="type">GstCaps</span></a> / <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> deeper than one level.</p>
<p>Free-function: g_free</p>
<div class="refsect3">
<a name="id-1.3.45.8.60.10"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.60.11"></a><h4>Returns</h4>
<p> a pointer to string allocated by <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-malloc"><code class="function">g_malloc()</code></a>.
<a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> after usage. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-from-string"></a><h3>gst_structure_from_string ()</h3>
<pre class="programlisting"><a class="link" href="GstStructure.html" title="GstStructure"><span class="returnvalue">GstStructure</span></a> *
gst_structure_from_string (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *string</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **end</code></em>);</pre>
<p>Creates a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> from a string representation.
If end is not NULL, a pointer to the place inside the given string
where parsing ended will be returned.</p>
<p>Free-function: gst_structure_free</p>
<div class="refsect3">
<a name="id-1.3.45.8.61.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>string</p></td>
<td class="parameter_description"><p>a string representation of a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a>.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>end</p></td>
<td class="parameter_description"><p> pointer to store the end of the string in. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.61.7"></a><h4>Returns</h4>
<p> a new <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> or NULL when the string could
not be parsed. Free with <a class="link" href="GstStructure.html#gst-structure-free" title="gst_structure_free ()"><code class="function">gst_structure_free()</code></a> after use. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-fixate"></a><h3>gst_structure_fixate ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gst_structure_fixate (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>);</pre>
<p>Fixate all values in <em class="parameter"><code>structure</code></em>
using <a class="link" href="gstreamer-GstValue.html#gst-value-fixate" title="gst_value_fixate ()"><code class="function">gst_value_fixate()</code></a>.
<em class="parameter"><code>structure</code></em>
will be modified in-place and should be writable.</p>
<div class="refsect3">
<a name="id-1.3.45.8.62.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-fixate-field"></a><h3>gst_structure_fixate_field ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_fixate_field (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <span class="type">char</span> *field_name</code></em>);</pre>
<p>Fixates a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> by changing the given field with its fixated value.</p>
<div class="refsect3">
<a name="id-1.3.45.8.63.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field_name</p></td>
<td class="parameter_description"><p>a field in <em class="parameter"><code>structure</code></em>
</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.63.6"></a><h4>Returns</h4>
<p> TRUE if the structure field could be fixated</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-fixate-field-nearest-int"></a><h3>gst_structure_fixate_field_nearest_int ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_fixate_field_nearest_int
(<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <span class="type">char</span> *field_name</code></em>,
<em class="parameter"><code><span class="type">int</span> target</code></em>);</pre>
<p>Fixates a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> by changing the given field to the nearest
integer to <em class="parameter"><code>target</code></em>
that is a subset of the existing field.</p>
<div class="refsect3">
<a name="id-1.3.45.8.64.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field_name</p></td>
<td class="parameter_description"><p>a field in <em class="parameter"><code>structure</code></em>
</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>target</p></td>
<td class="parameter_description"><p>the target value of the fixation</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.64.6"></a><h4>Returns</h4>
<p> TRUE if the structure could be fixated</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-fixate-field-nearest-double"></a><h3>gst_structure_fixate_field_nearest_double ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_fixate_field_nearest_double
(<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <span class="type">char</span> *field_name</code></em>,
<em class="parameter"><code><span class="type">double</span> target</code></em>);</pre>
<p>Fixates a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> by changing the given field to the nearest
double to <em class="parameter"><code>target</code></em>
that is a subset of the existing field.</p>
<div class="refsect3">
<a name="id-1.3.45.8.65.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field_name</p></td>
<td class="parameter_description"><p>a field in <em class="parameter"><code>structure</code></em>
</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>target</p></td>
<td class="parameter_description"><p>the target value of the fixation</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.65.6"></a><h4>Returns</h4>
<p> TRUE if the structure could be fixated</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-fixate-field-nearest-fraction"></a><h3>gst_structure_fixate_field_nearest_fraction ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_fixate_field_nearest_fraction
(<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <span class="type">char</span> *field_name</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> target_numerator</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> target_denominator</code></em>);</pre>
<p>Fixates a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> by changing the given field to the nearest
fraction to <em class="parameter"><code>target_numerator</code></em>
/<em class="parameter"><code>target_denominator</code></em>
that is a subset
of the existing field.</p>
<div class="refsect3">
<a name="id-1.3.45.8.66.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field_name</p></td>
<td class="parameter_description"><p>a field in <em class="parameter"><code>structure</code></em>
</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>target_numerator</p></td>
<td class="parameter_description"><p>The numerator of the target value of the fixation</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>target_denominator</p></td>
<td class="parameter_description"><p>The denominator of the target value of the fixation</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.66.6"></a><h4>Returns</h4>
<p> TRUE if the structure could be fixated</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-fixate-field-boolean"></a><h3>gst_structure_fixate_field_boolean ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_fixate_field_boolean (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <span class="type">char</span> *field_name</code></em>,
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> target</code></em>);</pre>
<p>Fixates a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> by changing the given <em class="parameter"><code>field_name</code></em>
field to the given
<em class="parameter"><code>target</code></em>
boolean if that field is not fixed yet.</p>
<div class="refsect3">
<a name="id-1.3.45.8.67.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field_name</p></td>
<td class="parameter_description"><p>a field in <em class="parameter"><code>structure</code></em>
</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>target</p></td>
<td class="parameter_description"><p>the target value of the fixation</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.67.6"></a><h4>Returns</h4>
<p> TRUE if the structure could be fixated</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="gst-structure-fixate-field-string"></a><h3>gst_structure_fixate_field_string ()</h3>
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gst_structure_fixate_field_string (<em class="parameter"><code><a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> *structure</code></em>,
<em class="parameter"><code>const <span class="type">char</span> *field_name</code></em>,
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *target</code></em>);</pre>
<p>Fixates a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a> by changing the given <em class="parameter"><code>field_name</code></em>
field to the given
<em class="parameter"><code>target</code></em>
string if that field is not fixed yet.</p>
<div class="refsect3">
<a name="id-1.3.45.8.68.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>structure</p></td>
<td class="parameter_description"><p>a <a class="link" href="GstStructure.html" title="GstStructure"><span class="type">GstStructure</span></a></p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field_name</p></td>
<td class="parameter_description"><p>a field in <em class="parameter"><code>structure</code></em>
</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>target</p></td>
<td class="parameter_description"><p>the target value of the fixation</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.45.8.68.6"></a><h4>Returns</h4>
<p> TRUE if the structure could be fixated</p>
<p></p>
</div>
</div>
</div>
<div class="refsect1">
<a name="GstStructure.other_details"></a><h2>Types and Values</h2>
<div class="refsect2">
<a name="GstStructure-struct"></a><h3>struct GstStructure</h3>
<pre class="programlisting">struct GstStructure {
GType type;
};
</pre>
<p>The GstStructure object. Most fields are private.</p>
<div class="refsect3">
<a name="id-1.3.45.9.2.5"></a><h4>Members</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="300px" class="struct_members_name">
<col class="struct_members_description">
<col width="200px" class="struct_members_annotations">
</colgroup>
<tbody><tr>
<td class="struct_member_name"><p><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> <em class="structfield"><code><a name="GstStructure-struct.type"></a>type</code></em>;</p></td>
<td class="struct_member_description"><p>the GType of a structure</p></td>
<td class="struct_member_annotations"> </td>
</tr></tbody>
</table></div>
</div>
</div>
</div>
<div class="refsect1">
<a name="GstStructure.see-also"></a><h2>See Also</h2>
<p><a class="link" href="GstCaps.html" title="GstCaps"><span class="type">GstCaps</span></a>, <a class="link" href="GstMessage.html" title="GstMessage"><span class="type">GstMessage</span></a>, <a class="link" href="GstEvent.html" title="GstEvent"><span class="type">GstEvent</span></a>, <a class="link" href="GstQuery.html" title="GstQuery"><span class="type">GstQuery</span></a></p>
</div>
</div>
<div class="footer">
<hr>
Generated by GTK-Doc V1.20</div>
</body>
</html> |
llrp/llrp-adaptor/xref/org/fosstrak/llrp/client/repository/sql/roaccess/package-summary.html | Fosstrak/fosstrak.github.io |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<title>llrp-adaptor 1.1.1-SNAPSHOT Reference Package org.fosstrak.llrp.client.repository.sql.roaccess</title>
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="style" />
</head>
<body>
<div class="overview">
<ul>
<li>
<a href="../../../../../../../overview-summary.html">Overview</a>
</li>
<li class="selected">Package</li>
</ul>
</div>
<div class="framenoframe">
<ul>
<li>
<a href="../../../../../../../index.html" target="_top">FRAMES</a>
</li>
<li>
<a href="package-summary.html" target="_top">NO FRAMES</a>
</li>
</ul>
</div>
<h2>Package org.fosstrak.llrp.client.repository.sql.roaccess</h2>
<table class="summary">
<thead>
<tr>
<th>Class Summary</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="AbstractSQLROAccessReportsRepository.html" target="classFrame">AbstractSQLROAccessReportsRepository</a>
</td>
</tr>
<tr>
<td>
<a href="DerbyROAccessReportsRepository.html" target="classFrame">DerbyROAccessReportsRepository</a>
</td>
</tr>
<tr>
<td>
<a href="ROAccessItem.html" target="classFrame">ROAccessItem</a>
</td>
</tr>
</tbody>
</table>
<div class="overview">
<ul>
<li>
<a href="../../../../../../../overview-summary.html">Overview</a>
</li>
<li class="selected">Package</li>
</ul>
</div>
<div class="framenoframe">
<ul>
<li>
<a href="../../../../../../../index.html" target="_top">FRAMES</a>
</li>
<li>
<a href="package-summary.html" target="_top">NO FRAMES</a>
</li>
</ul>
</div>
<hr />
Copyright © 2009. All Rights Reserved.
</body>
</html> |
docs/api-core/org/pentaho/di/i18n/class-use/GlobalMessages.html | icholy/geokettle-2.0 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_20) on Tue Jun 08 23:38:52 EDT 2010 -->
<TITLE>
Uses of Class org.pentaho.di.i18n.GlobalMessages
</TITLE>
<META NAME="date" CONTENT="2010-06-08">
<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.pentaho.di.i18n.GlobalMessages";
}
}
</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/pentaho/di/i18n/GlobalMessages.html" title="class in org.pentaho.di.i18n"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/pentaho/di/i18n//class-useGlobalMessages.html" target="_top"><B>FRAMES</B></A>
<A HREF="GlobalMessages.html" target="_top"><B>NO FRAMES</B></A>
<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.pentaho.di.i18n.GlobalMessages</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../org/pentaho/di/i18n/GlobalMessages.html" title="class in org.pentaho.di.i18n">GlobalMessages</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.pentaho.di.i18n"><B>org.pentaho.di.i18n</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="org.pentaho.di.i18n"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../org/pentaho/di/i18n/GlobalMessages.html" title="class in org.pentaho.di.i18n">GlobalMessages</A> in <A HREF="../../../../../org/pentaho/di/i18n/package-summary.html">org.pentaho.di.i18n</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../../org/pentaho/di/i18n/GlobalMessages.html" title="class in org.pentaho.di.i18n">GlobalMessages</A> in <A HREF="../../../../../org/pentaho/di/i18n/package-summary.html">org.pentaho.di.i18n</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/pentaho/di/i18n/LAFMessageHandler.html" title="class in org.pentaho.di.i18n">LAFMessageHandler</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/pentaho/di/i18n/GlobalMessages.html" title="class in org.pentaho.di.i18n"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/pentaho/di/i18n//class-useGlobalMessages.html" target="_top"><B>FRAMES</B></A>
<A HREF="GlobalMessages.html" target="_top"><B>NO FRAMES</B></A>
<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>
|
javadoc/com/JasonILTG/ScienceMod/reference/Names.Blocks.Machine.html | JasonILTG/Minecraft-Modding | <!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_60) on Sun Mar 20 22:06:22 PDT 2016 -->
<title>Names.Blocks.Machine</title>
<meta name="date" content="2016-03-20">
<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="Names.Blocks.Machine";
}
}
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="navBarCell1Rev">Class</li>
<li><a href="class-use/Names.Blocks.Machine.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-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.Generator.html" title="class in com.JasonILTG.ScienceMod.reference"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.Misc.html" title="class in com.JasonILTG.ScienceMod.reference"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/JasonILTG/ScienceMod/reference/Names.Blocks.Machine.html" target="_top">Frames</a></li>
<li><a href="Names.Blocks.Machine.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: </li>
<li>Nested | </li>
<li><a href="#field.summary">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#methods.inherited.from.class.java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.JasonILTG.ScienceMod.reference</div>
<h2 title="Class Names.Blocks.Machine" class="title">Class Names.Blocks.Machine</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>com.JasonILTG.ScienceMod.reference.Names.Blocks.Machine</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.html" title="class in com.JasonILTG.ScienceMod.reference">Names.Blocks</a></dd>
</dl>
<hr>
<br>
<pre>public static final class <span class="typeNameLabel">Names.Blocks.Machine</span>
extends java.lang.Object</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.Machine.html#MACHINE_AIR_EXTRACTOR">MACHINE_AIR_EXTRACTOR</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.Machine.html#MACHINE_CENTRIFUGE">MACHINE_CENTRIFUGE</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.Machine.html#MACHINE_CHEM_REACTOR">MACHINE_CHEM_REACTOR</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.Machine.html#MACHINE_CONDENSER">MACHINE_CONDENSER</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.Machine.html#MACHINE_DISTILLER">MACHINE_DISTILLER</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.Machine.html#MACHINE_ELECTROLYZER">MACHINE_ELECTROLYZER</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.Machine.html#MACHINE_MIXER">MACHINE_MIXER</a></span></code> </td>
</tr>
</table>
</li>
</ul>
<!-- ======== 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"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.Machine.html#Machine--">Machine</a></span>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class 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">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="MACHINE_ELECTROLYZER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MACHINE_ELECTROLYZER</h4>
<pre>public static final java.lang.String MACHINE_ELECTROLYZER</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.JasonILTG.ScienceMod.reference.Names.Blocks.Machine.MACHINE_ELECTROLYZER">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MACHINE_AIR_EXTRACTOR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MACHINE_AIR_EXTRACTOR</h4>
<pre>public static final java.lang.String MACHINE_AIR_EXTRACTOR</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.JasonILTG.ScienceMod.reference.Names.Blocks.Machine.MACHINE_AIR_EXTRACTOR">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MACHINE_CONDENSER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MACHINE_CONDENSER</h4>
<pre>public static final java.lang.String MACHINE_CONDENSER</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.JasonILTG.ScienceMod.reference.Names.Blocks.Machine.MACHINE_CONDENSER">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MACHINE_MIXER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MACHINE_MIXER</h4>
<pre>public static final java.lang.String MACHINE_MIXER</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.JasonILTG.ScienceMod.reference.Names.Blocks.Machine.MACHINE_MIXER">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MACHINE_CENTRIFUGE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MACHINE_CENTRIFUGE</h4>
<pre>public static final java.lang.String MACHINE_CENTRIFUGE</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.JasonILTG.ScienceMod.reference.Names.Blocks.Machine.MACHINE_CENTRIFUGE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MACHINE_DISTILLER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MACHINE_DISTILLER</h4>
<pre>public static final java.lang.String MACHINE_DISTILLER</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.JasonILTG.ScienceMod.reference.Names.Blocks.Machine.MACHINE_DISTILLER">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MACHINE_CHEM_REACTOR">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>MACHINE_CHEM_REACTOR</h4>
<pre>public static final java.lang.String MACHINE_CHEM_REACTOR</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.JasonILTG.ScienceMod.reference.Names.Blocks.Machine.MACHINE_CHEM_REACTOR">Constant Field Values</a></dd>
</dl>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="Machine--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Machine</h4>
<pre>public Machine()</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="class-use/Names.Blocks.Machine.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-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.Generator.html" title="class in com.JasonILTG.ScienceMod.reference"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../com/JasonILTG/ScienceMod/reference/Names.Blocks.Misc.html" title="class in com.JasonILTG.ScienceMod.reference"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/JasonILTG/ScienceMod/reference/Names.Blocks.Machine.html" target="_top">Frames</a></li>
<li><a href="Names.Blocks.Machine.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: </li>
<li>Nested | </li>
<li><a href="#field.summary">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#methods.inherited.from.class.java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
src/articleSwitch/assets/css/style.css | slashworks/contao-articleSwitch | #articleSwitch-wrapper {
display: none;
text-align: right;
margin-right: 10px;
}
#articleSwitch {
display: inline-block;
margin-top: 20px;
text-align: left;
}
#articleSwitch .tl_chosen {
width: 300px;
} |
matlab/include/help/install/csh/fik-desc_ko_KR.html | robotology-playground/Robust-View-Graph-SLAM | <!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" itemscope itemtype="http://www.mathworks.com/help/schema/MathWorksDocPage">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>파일 설치 키</title>
<link rel="stylesheet" href="docstyle.css" type="text/css"><link href="../../includes/product/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="toctype" itemprop="pagetype" content="ug">
<meta name="infotype" itemprop="infotype" content="other" />
<meta name="description" itemprop="description" content="인터넷에 연결되어 있지 않은 경우 설치를 위해 파일 설치 키를 사용합니다." />
<script src="../../includes/product/scripts/jquery/jquery.mobile.custom.min.js"></script>
<script src="../../includes/product/scripts/bootstrap.min.js" type="text/javascript"></script>
<script src="../../includes/product/scripts/global.js"></script>
<link href="../../includes/product/css/doc_center.css" rel="stylesheet" type="text/css">
<link href="../../includes/product/css/doc_center_installed.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="../../includes/product/css/doc_center_ko_KR.css">
<link href="../../includes/product/css/doc_center_print.css" rel="stylesheet" type="text/css" media="print">
</head>
<body id="responsive_offcanvas">
<div id="doc_header_spacer" class="header"></div>
<div class="content_container" id="content_container">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<section id="doc_center_content" lang="ko_KR"><div id="pgtype-topic"><!-- translationrelease="R2016b", translationstatus="Final" -->
<span id="fik-desc" class="anchor_target"></span><h2 class="title r2016b" itemprop="title content" id="fik-desc">파일 설치 키</h2><div class="clearfix"></div><div itemprop="content"><p>파일 설치 키는 설치할 수 있는 제품을 식별합니다. 인터넷에 연결되어 있지 않은 경우 설치를 위해 파일 설치 키를 사용해야 합니다. MATLAB<sup>®</sup> 관리자는 MathWorks<sup>®</sup> 웹 사이트의 라이선스 센터에서 파일 설치 키를 가져올 수 있습니다.</p></div><div class="clearfix"></div><div itemprop="content"><p></p></div><div class="clearfix"></div><div itemprop="content"><p>파일 설치 키를 사용하려면 <span class="emphasis">다음 위치 중 하나</span>에서 인스톨러를 실행해야 합니다. </p></div><div class="clearfix"></div><div itemprop="content"><ul type="disc"><li><p>MATLAB DVD 1. </p></li><li><p>인스톨러와 제품 파일이 들어 있는 폴더. </p><p>MATLAB 관리자는 인스톨러를 실행하여 필요한 파일을 이 폴더로 다운로드할 수 있습니다.</p></li></ul></div></div></section>
<!--Last updated: Wed Aug 17 14:36:40 EDT 2016-->
</div>
</div>
</div><!--close_0960-->
</div><!--close_0970-->
</body>
</html>
|
sdk/dox/html/classDI.html | einon/affymetrix-power-tools | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Affymetrix Power Tools: DI Class 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.7.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="dirs.html"><span>Directories</span></a></li>
</ul>
</div>
<div class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-attribs">Public Attributes</a> </div>
<div class="headertitle">
<h1>DI Class Reference</h1> </div>
</div>
<div class="contents">
<!-- doxytag: class="DI" -->
<p><a href="classDI-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8b2090d2ca4f06fe2442d2a5d7a29bfa"></a><!-- doxytag: member="DI::DI" ref="a8b2090d2ca4f06fe2442d2a5d7a29bfa" args="(double dv, int iv)" -->
</td><td class="memItemRight" valign="bottom"><b>DI</b> (double dv, int iv)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab11baacd7c1b44f108da5dbe536ab4ea"></a><!-- doxytag: member="DI::operator<" ref="ab11baacd7c1b44f108da5dbe536ab4ea" args="(const DI &rhs) const " -->
bool </td><td class="memItemRight" valign="bottom"><b>operator<</b> (const <a class="el" href="classDI.html">DI</a> &rhs) const </td></tr>
<tr><td colspan="2"><h2><a name="pub-attribs"></a>
Public Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0cc54595d12e85fdc7dffa6a4e77baba"></a><!-- doxytag: member="DI::d" ref="a0cc54595d12e85fdc7dffa6a4e77baba" args="" -->
double </td><td class="memItemRight" valign="bottom"><b>d</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ade21041e3f182b280b2fba19e950dbca"></a><!-- doxytag: member="DI::i" ref="ade21041e3f182b280b2fba19e950dbca" args="" -->
int </td><td class="memItemRight" valign="bottom"><b>i</b></td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<p>Definition at line <a class="el" href="mathLib_8h_source.html#l00045">45</a> of file <a class="el" href="mathLib_8h_source.html">mathLib.h</a>.</p>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>mas5-stat/src/<a class="el" href="mathLib_8h_source.html">mathLib.h</a></li>
</ul>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Fri Mar 20 2015 18:03:42 for Affymetrix Power Tools by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.1 </small></address>
</body>
</html>
|
build/reports/example/iTrust_v10/edu/ncsu/csc/itrust/beans/loaders/LOINCBeanLoader.html | qynnine/JDiffOriginDemo | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="zh">
<head>
<!-- Generated by javadoc (version 1.7.0_45) on Wed Oct 28 10:24:57 CST 2015 -->
<title>LOINCBeanLoader</title>
<meta name="date" content="2015-10-28">
<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="LOINCBeanLoader";
}
//-->
</script>
<noscript>
<div>???????? JavaScript?</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="??????"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="??">
<li><a href="../../../../../../overview-summary.html">??</a></li>
<li><a href="package-summary.html">???</a></li>
<li class="navBarCell1Rev">?</li>
<li><a href="package-tree.html">?</a></li>
<li><a href="../../../../../../deprecated-list.html">???</a></li>
<li><a href="../../../../../../index-all.html">??</a></li>
<li><a href="../../../../../../help-doc.html">??</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/LabProcedureBeanLoader.html" title="edu.ncsu.csc.itrust.beans.loaders???"><span class="strong">????</span></a></li>
<li><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/MedicationBeanLoader.html" title="edu.ncsu.csc.itrust.beans.loaders???"><span class="strong">????</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?edu/ncsu/csc/itrust/beans/loaders/LOINCBeanLoader.html" target="_top">??</a></li>
<li><a href="LOINCBeanLoader.html" target="_top">???</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">???</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>??: </li>
<li>?? | </li>
<li>?? | </li>
<li><a href="#constructor_summary">???</a> | </li>
<li><a href="#method_summary">??</a></li>
</ul>
<ul class="subNavList">
<li>????: </li>
<li>?? | </li>
<li><a href="#constructor_detail">???</a> | </li>
<li><a href="#method_detail">??</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">edu.ncsu.csc.itrust.beans.loaders</div>
<h2 title="? LOINCBeanLoader" class="title">? LOINCBeanLoader</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>edu.ncsu.csc.itrust.beans.loaders.LOINCBeanLoader</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>????????:</dt>
<dd><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/BeanLoader.html" title="edu.ncsu.csc.itrust.beans.loaders????">BeanLoader</a><<a href="../../../../../../edu/ncsu/csc/itrust/beans/LOINCbean.html" title="edu.ncsu.csc.itrust.beans???">LOINCbean</a>></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">LOINCBeanLoader</span>
extends java.lang.Object
implements <a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/BeanLoader.html" title="edu.ncsu.csc.itrust.beans.loaders????">BeanLoader</a><<a href="../../../../../../edu/ncsu/csc/itrust/beans/LOINCbean.html" title="edu.ncsu.csc.itrust.beans???">LOINCbean</a>></pre>
<div class="block">A loader for LOINCBeans.
Loads in information to/from beans using ResultSets and PreparedStatements. Use the superclass to enforce consistency.
For details on the paradigm for a loader (and what its methods do), see <a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/BeanLoader.html" title="edu.ncsu.csc.itrust.beans.loaders????"><code>BeanLoader</code></a></div>
</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>?????</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="??????, ????????">
<caption><span>???</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">??????</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/LOINCBeanLoader.html#LOINCBeanLoader()">LOINCBeanLoader</a></strong>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>????</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="?????, ???????">
<caption><span>??</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">??????</th>
<th class="colLast" scope="col">?????</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.util.List<<a href="../../../../../../edu/ncsu/csc/itrust/beans/LOINCbean.html" title="edu.ncsu.csc.itrust.beans???">LOINCbean</a>></code></td>
<td class="colLast"><code><strong><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/LOINCBeanLoader.html#loadList(java.sql.ResultSet)">loadList</a></strong>(java.sql.ResultSet rs)</code>
<div class="block">Loads a list of the bean of type T from a result set.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.sql.PreparedStatement</code></td>
<td class="colLast"><code><strong><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/LOINCBeanLoader.html#loadParameters(java.sql.PreparedStatement, edu.ncsu.csc.itrust.beans.LOINCbean)">loadParameters</a></strong>(java.sql.PreparedStatement ps,
<a href="../../../../../../edu/ncsu/csc/itrust/beans/LOINCbean.html" title="edu.ncsu.csc.itrust.beans???">LOINCbean</a> bean)</code>
<div class="block">Used for an insert or update, this method contains the instructions for mapping the fields within
a bean of type T into a prepared statement which modifies the appropriate table.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../edu/ncsu/csc/itrust/beans/LOINCbean.html" title="edu.ncsu.csc.itrust.beans???">LOINCbean</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/LOINCBeanLoader.html#loadSingle(java.sql.ResultSet)">loadSingle</a></strong>(java.sql.ResultSet rs)</code>
<div class="block">Contains the instructions for mapping the rows in this java.sql.ResultSet into
beans of type <T>.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>??????? 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>???????</h3>
<a name="LOINCBeanLoader()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>LOINCBeanLoader</h4>
<pre>public LOINCBeanLoader()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>??????</h3>
<a name="loadList(java.sql.ResultSet)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>loadList</h4>
<pre>public java.util.List<<a href="../../../../../../edu/ncsu/csc/itrust/beans/LOINCbean.html" title="edu.ncsu.csc.itrust.beans???">LOINCbean</a>> loadList(java.sql.ResultSet rs)
throws java.sql.SQLException</pre>
<div class="block"><strong>????????: <code><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/BeanLoader.html#loadList(java.sql.ResultSet)">BeanLoader</a></code></strong></div>
<div class="block">Loads a list of the bean of type T from a result set. Typically makes iterated calls
to loadSingle.</div>
<dl>
<dt><strong>???:</strong></dt>
<dd><code><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/BeanLoader.html#loadList(java.sql.ResultSet)">loadList</a></code> ???? <code><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/BeanLoader.html" title="edu.ncsu.csc.itrust.beans.loaders????">BeanLoader</a><<a href="../../../../../../edu/ncsu/csc/itrust/beans/LOINCbean.html" title="edu.ncsu.csc.itrust.beans???">LOINCbean</a>></code></dd>
<dt><span class="strong">??:</span></dt><dd><code>rs</code> - The java.sql.ResultSet we are extracting.</dd>
<dt><span class="strong">??:</span></dt><dd>A java.util.List<T> where T is the type for this loader.</dd>
<dt><span class="strong">??:</span></dt>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="loadSingle(java.sql.ResultSet)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>loadSingle</h4>
<pre>public <a href="../../../../../../edu/ncsu/csc/itrust/beans/LOINCbean.html" title="edu.ncsu.csc.itrust.beans???">LOINCbean</a> loadSingle(java.sql.ResultSet rs)
throws java.sql.SQLException</pre>
<div class="block"><strong>????????: <code><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/BeanLoader.html#loadSingle(java.sql.ResultSet)">BeanLoader</a></code></strong></div>
<div class="block">Contains the instructions for mapping the rows in this java.sql.ResultSet into
beans of type <T>.</div>
<dl>
<dt><strong>???:</strong></dt>
<dd><code><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/BeanLoader.html#loadSingle(java.sql.ResultSet)">loadSingle</a></code> ???? <code><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/BeanLoader.html" title="edu.ncsu.csc.itrust.beans.loaders????">BeanLoader</a><<a href="../../../../../../edu/ncsu/csc/itrust/beans/LOINCbean.html" title="edu.ncsu.csc.itrust.beans???">LOINCbean</a>></code></dd>
<dt><span class="strong">??:</span></dt><dd><code>rs</code> - The java.sql.ResultSet to be loaded.</dd>
<dt><span class="strong">??:</span></dt><dd>A Bean of type T containing the loaded information, typically of the first (or next) item in the result set.</dd>
<dt><span class="strong">??:</span></dt>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="loadParameters(java.sql.PreparedStatement, edu.ncsu.csc.itrust.beans.LOINCbean)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>loadParameters</h4>
<pre>public java.sql.PreparedStatement loadParameters(java.sql.PreparedStatement ps,
<a href="../../../../../../edu/ncsu/csc/itrust/beans/LOINCbean.html" title="edu.ncsu.csc.itrust.beans???">LOINCbean</a> bean)
throws java.sql.SQLException</pre>
<div class="block"><strong>????????: <code><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/BeanLoader.html#loadParameters(java.sql.PreparedStatement, T)">BeanLoader</a></code></strong></div>
<div class="block">Used for an insert or update, this method contains the instructions for mapping the fields within
a bean of type T into a prepared statement which modifies the appropriate table.</div>
<dl>
<dt><strong>???:</strong></dt>
<dd><code><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/BeanLoader.html#loadParameters(java.sql.PreparedStatement, T)">loadParameters</a></code> ???? <code><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/BeanLoader.html" title="edu.ncsu.csc.itrust.beans.loaders????">BeanLoader</a><<a href="../../../../../../edu/ncsu/csc/itrust/beans/LOINCbean.html" title="edu.ncsu.csc.itrust.beans???">LOINCbean</a>></code></dd>
<dt><span class="strong">??:</span></dt><dd><code>ps</code> - The prepared statement to be loaded.</dd><dd><code>bean</code> - The bean containing the data to be placed.</dd>
<dt><span class="strong">??:</span></dt><dd>A prepared statement with the appropriately loaded parameters.</dd>
<dt><span class="strong">??:</span></dt>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="??????"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="??">
<li><a href="../../../../../../overview-summary.html">??</a></li>
<li><a href="package-summary.html">???</a></li>
<li class="navBarCell1Rev">?</li>
<li><a href="package-tree.html">?</a></li>
<li><a href="../../../../../../deprecated-list.html">???</a></li>
<li><a href="../../../../../../index-all.html">??</a></li>
<li><a href="../../../../../../help-doc.html">??</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/LabProcedureBeanLoader.html" title="edu.ncsu.csc.itrust.beans.loaders???"><span class="strong">????</span></a></li>
<li><a href="../../../../../../edu/ncsu/csc/itrust/beans/loaders/MedicationBeanLoader.html" title="edu.ncsu.csc.itrust.beans.loaders???"><span class="strong">????</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?edu/ncsu/csc/itrust/beans/loaders/LOINCBeanLoader.html" target="_top">??</a></li>
<li><a href="LOINCBeanLoader.html" target="_top">???</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">???</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>??: </li>
<li>?? | </li>
<li>?? | </li>
<li><a href="#constructor_summary">???</a> | </li>
<li><a href="#method_summary">??</a></li>
</ul>
<ul class="subNavList">
<li>????: </li>
<li>?? | </li>
<li><a href="#constructor_detail">???</a> | </li>
<li><a href="#method_detail">??</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
vstgui/Documentation/html/functions_vars_0x62.html | osoumen/C700 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>VSTGUI: Class Members - Variables</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxydocu.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.3 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li class="current"><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="functions.html"><span>All</span></a></li>
<li><a href="functions_func.html"><span>Functions</span></a></li>
<li class="current"><a href="functions_vars.html"><span>Variables</span></a></li>
<li><a href="functions_enum.html"><span>Enumerations</span></a></li>
<li><a href="functions_eval.html"><span>Enumerator</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="functions_vars.html#index_a"><span>a</span></a></li>
<li class="current"><a href="functions_vars_0x62.html#index_b"><span>b</span></a></li>
<li><a href="functions_vars_0x63.html#index_c"><span>c</span></a></li>
<li><a href="functions_vars_0x64.html#index_d"><span>d</span></a></li>
<li><a href="functions_vars_0x65.html#index_e"><span>e</span></a></li>
<li><a href="functions_vars_0x66.html#index_f"><span>f</span></a></li>
<li><a href="functions_vars_0x67.html#index_g"><span>g</span></a></li>
<li><a href="functions_vars_0x68.html#index_h"><span>h</span></a></li>
<li><a href="functions_vars_0x69.html#index_i"><span>i</span></a></li>
<li><a href="functions_vars_0x6b.html#index_k"><span>k</span></a></li>
<li><a href="functions_vars_0x6c.html#index_l"><span>l</span></a></li>
<li><a href="functions_vars_0x6d.html#index_m"><span>m</span></a></li>
<li><a href="functions_vars_0x6e.html#index_n"><span>n</span></a></li>
<li><a href="functions_vars_0x6f.html#index_o"><span>o</span></a></li>
<li><a href="functions_vars_0x70.html#index_p"><span>p</span></a></li>
<li><a href="functions_vars_0x72.html#index_r"><span>r</span></a></li>
<li><a href="functions_vars_0x73.html#index_s"><span>s</span></a></li>
<li><a href="functions_vars_0x74.html#index_t"><span>t</span></a></li>
<li><a href="functions_vars_0x75.html#index_u"><span>u</span></a></li>
<li><a href="functions_vars_0x76.html#index_v"><span>v</span></a></li>
<li><a href="functions_vars_0x77.html#index_w"><span>w</span></a></li>
<li><a href="functions_vars_0x78.html#index_x"><span>x</span></a></li>
<li><a href="functions_vars_0x79.html#index_y"><span>y</span></a></li>
<li><a href="functions_vars_0x7a.html#index_z"><span>z</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h3><a class="anchor" id="index_b">- b -</a></h3><ul>
<li>backColor
: <a class="el" href="class_c_param_display.html#a7f6cf1112aba1291073b6ca93399b9ea">CParamDisplay</a>
</li>
<li>backgroundColor
: <a class="el" href="class_c_scrollbar.html#a1e5cbf2f65427aafbd2afef9d8570405">CScrollbar</a>
, <a class="el" href="class_c_offscreen_context.html#a1e5cbf2f65427aafbd2afef9d8570405">COffscreenContext</a>
, <a class="el" href="class_c_view_container.html#a1e5cbf2f65427aafbd2afef9d8570405">CViewContainer</a>
, <a class="el" href="class_c_option_menu_scheme.html#a1e5cbf2f65427aafbd2afef9d8570405">COptionMenuScheme</a>
</li>
<li>backgroundOffset
: <a class="el" href="class_c_view_container.html#a2881def78e7d6c57807b03913fa3cdde">CViewContainer</a>
</li>
<li>backOffset
: <a class="el" href="class_c_control.html#abab9436c327f08c8824d1b28fcf5bb98">CControl</a>
</li>
<li>bAntialias
: <a class="el" href="class_c_param_display.html#a7fb89b8e5c5e2034ecb2b008b880c0d2">CParamDisplay</a>
</li>
<li>bCoef
: <a class="el" href="class_c_knob.html#addd422537c9a9ac457b8f85a6953605d">CKnob</a>
</li>
<li>bDestroyPixmap
: <a class="el" href="class_c_offscreen_context.html#af823fd8878b94606b4cbcb798d707d38">COffscreenContext</a>
</li>
<li>bDirty
: <a class="el" href="class_c_view.html#a4262736006e656ebf729e7950ec51c99">CView</a>
</li>
<li>bDrawInBitmap
: <a class="el" href="class_c_offscreen_context.html#a515ec341e94e66762ebbb4e3685f2465">COffscreenContext</a>
</li>
<li>bDrawInOffscreen
: <a class="el" href="class_c_view_container.html#a7b8cb88aa4b41a4a507c835cea0ffbd8">CViewContainer</a>
</li>
<li>bDrawTransparentEnabled
: <a class="el" href="class_c_slider.html#ac2fde1d7331e9368b5ef71686f34fb2f">CSlider</a>
</li>
<li>bDropActive
: <a class="el" href="class_c_frame.html#a4ee0e7aa8a4bbd734ed48bb6c6e996ec">CFrame</a>
</li>
<li>bFirstDraw
: <a class="el" href="class_c_frame.html#a3b44cedab344c38813f1e2583c8f0cfe">CFrame</a>
</li>
<li>bFreeClick
: <a class="el" href="class_c_slider.html#afa38bd2d21f853b4ca5201dde0e9b1fe">CSlider</a>
</li>
<li>bgWhenClick
: <a class="el" href="class_c_option_menu.html#a04f9a7c482fc767d2623d83d7771d3cc">COptionMenu</a>
</li>
<li>bInverseBitmap
: <a class="el" href="class_c_anim_knob.html#acde0a67d57f288d50b119435bd8cf104">CAnimKnob</a>
</li>
<li>bIsAttached
: <a class="el" href="class_c_view.html#a8910a78ef2a746652c1538a2a5af2973">CView</a>
</li>
<li>blue
: <a class="el" href="struct_c_color.html#a53125a3aec56167e405e8e5296862ef8">CColor</a>
</li>
<li>bMouseEnabled
: <a class="el" href="class_c_view.html#ac31c9e7188bd808b31f50d6c537fcf06">CView</a>
</li>
<li>bOpenFlag
: <a class="el" href="class_c_frame.html#a1c481e974226dafd2a782f4aaf773751">CFrame</a>
</li>
<li>bottom
: <a class="el" href="struct_c_rect.html#abe1a31a1289c1f9956f7c709131e751b">CRect</a>
</li>
<li>bTextTransparencyEnabled
: <a class="el" href="class_c_param_display.html#a7576ce6b6e1e39edaa762550e22cba77">CParamDisplay</a>
</li>
<li>bTransparencyEnabled
: <a class="el" href="class_c_view.html#a8b67b064cb5145725cfdd8b12b95d7f8">CView</a>
</li>
<li>bUseOffscreen
: <a class="el" href="class_c_vu_meter.html#a36c3faad49e770626ae568d4d6677429">CVuMeter</a>
</li>
<li>buttons
: <a class="el" href="class_c_frame.html#a62670fbfd71376d1643624f11b590014">CFrame</a>
</li>
<li>buttonState
: <a class="el" href="class_c_movie_button.html#a096d90afb2e9f7330f99792d6694a15f">CMovieButton</a>
</li>
<li>bVisible
: <a class="el" href="class_c_view.html#abf006167b8a30fb3049eae201d93c8e3">CView</a>
</li>
<li>bWantsFocus
: <a class="el" href="class_c_view.html#aee2a786071f5f69abdd47d6db0952b31">CView</a>
</li>
<li>bWasReturnPressed
: <a class="el" href="class_c_text_edit.html#a09365bb6885b405e47e089a7c46256f4">CTextEdit</a>
</li>
<li>bWindowOpened
: <a class="el" href="class_c_auto_animation.html#afd292af36cee8d646a779bd7c934111e">CAutoAnimation</a>
</li>
</ul>
</div>
<hr class="footer"/><address style="text-align: right;"><small>Generated on Fri Apr 9 10:19:32 2010 for VSTGUI by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address>
</body>
</html>
|
doc/html/widgets-analogclock.html | kobolabs/qt-everywhere-4.8.0 | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- analogclock.qdoc -->
<title>Qt 4.8: Analog Clock Example</title>
<link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader">
<div class="content">
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
</div>
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Breadcrumbs go here -->
<li><a href="all-examples.html">Examples</a></li>
<li>Analog Clock Example</li>
</ul>
</div>
</div>
<div class="content mainContent">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#analogclock-class-definition">AnalogClock Class Definition</a></li>
<li class="level1"><a href="#analogclock-class-implementation">AnalogClock Class Implementation</a></li>
</ul>
</div>
<h1 class="title">Analog Clock Example</h1>
<span class="subtitle"></span>
<!-- $$$widgets/analogclock-description -->
<div class="descr"> <a name="details"></a>
<p>Files:</p>
<ul>
<li><a href="widgets-analogclock-analogclock-cpp.html">widgets/analogclock/analogclock.cpp</a></li>
<li><a href="widgets-analogclock-analogclock-h.html">widgets/analogclock/analogclock.h</a></li>
<li><a href="widgets-analogclock-main-cpp.html">widgets/analogclock/main.cpp</a></li>
<li><a href="widgets-analogclock-analogclock-pro.html">widgets/analogclock/analogclock.pro</a></li>
</ul>
<p class="centerAlign"><img src="images/analogclock-example.png" alt="Screenshot of the Analog Clock example" /></p><p>This example also demonstrates how the transformation and scaling features of <a href="qpainter.html">QPainter</a> can be used to make drawing custom widgets easier.</p>
<a name="analogclock-class-definition"></a>
<h2>AnalogClock Class Definition</h2>
<p>The <tt>AnalogClock</tt> class provides a clock widget with hour and minute hands that is automatically updated every few seconds. We subclass <a href="qwidget.html">QWidget</a> and reimplement the standard <a href="qwidget.html#paintEvent">paintEvent()</a> function to draw the clock face:</p>
<pre class="cpp"> <span class="keyword">class</span> AnalogClock : <span class="keyword">public</span> <span class="type"><a href="qwidget.html">QWidget</a></span>
{
Q_OBJECT
<span class="keyword">public</span>:
AnalogClock(<span class="type"><a href="qwidget.html">QWidget</a></span> <span class="operator">*</span>parent <span class="operator">=</span> <span class="number">0</span>);
<span class="keyword">protected</span>:
<span class="type">void</span> paintEvent(<span class="type"><a href="qpaintevent.html">QPaintEvent</a></span> <span class="operator">*</span>event);
};</pre>
<a name="analogclock-class-implementation"></a>
<h2>AnalogClock Class Implementation</h2>
<pre class="cpp"> AnalogClock<span class="operator">::</span>AnalogClock(<span class="type"><a href="qwidget.html">QWidget</a></span> <span class="operator">*</span>parent)
: <span class="type"><a href="qwidget.html">QWidget</a></span>(parent)
{
<span class="type"><a href="qtimer.html">QTimer</a></span> <span class="operator">*</span>timer <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qtimer.html">QTimer</a></span>(<span class="keyword">this</span>);
connect(timer<span class="operator">,</span> SIGNAL(timeout())<span class="operator">,</span> <span class="keyword">this</span><span class="operator">,</span> SLOT(update()));
timer<span class="operator">-</span><span class="operator">></span>start(<span class="number">1000</span>);
setWindowTitle(tr(<span class="string">"Analog Clock"</span>));
resize(<span class="number">200</span><span class="operator">,</span> <span class="number">200</span>);
}</pre>
<p>When the widget is constructed, we set up a one-second timer to keep track of the current time, and we connect it to the standard <a href="qwidget.html#update">update()</a> slot so that the clock face is updated when the timer emits the <a href="qtimer.html#timeout">timeout()</a> signal.</p>
<p>Finally, we resize the widget so that it is displayed at a reasonable size.</p>
<pre class="cpp"> <span class="type">void</span> AnalogClock<span class="operator">::</span>paintEvent(<span class="type"><a href="qpaintevent.html">QPaintEvent</a></span> <span class="operator">*</span>)
{
<span class="keyword">static</span> <span class="keyword">const</span> <span class="type"><a href="qpoint.html">QPoint</a></span> hourHand<span class="operator">[</span><span class="number">3</span><span class="operator">]</span> <span class="operator">=</span> {
<span class="type"><a href="qpoint.html">QPoint</a></span>(<span class="number">7</span><span class="operator">,</span> <span class="number">8</span>)<span class="operator">,</span>
<span class="type"><a href="qpoint.html">QPoint</a></span>(<span class="operator">-</span><span class="number">7</span><span class="operator">,</span> <span class="number">8</span>)<span class="operator">,</span>
<span class="type"><a href="qpoint.html">QPoint</a></span>(<span class="number">0</span><span class="operator">,</span> <span class="operator">-</span><span class="number">40</span>)
};
<span class="keyword">static</span> <span class="keyword">const</span> <span class="type"><a href="qpoint.html">QPoint</a></span> minuteHand<span class="operator">[</span><span class="number">3</span><span class="operator">]</span> <span class="operator">=</span> {
<span class="type"><a href="qpoint.html">QPoint</a></span>(<span class="number">7</span><span class="operator">,</span> <span class="number">8</span>)<span class="operator">,</span>
<span class="type"><a href="qpoint.html">QPoint</a></span>(<span class="operator">-</span><span class="number">7</span><span class="operator">,</span> <span class="number">8</span>)<span class="operator">,</span>
<span class="type"><a href="qpoint.html">QPoint</a></span>(<span class="number">0</span><span class="operator">,</span> <span class="operator">-</span><span class="number">70</span>)
};
<span class="type"><a href="qcolor.html">QColor</a></span> hourColor(<span class="number">127</span><span class="operator">,</span> <span class="number">0</span><span class="operator">,</span> <span class="number">127</span>);
<span class="type"><a href="qcolor.html">QColor</a></span> minuteColor(<span class="number">0</span><span class="operator">,</span> <span class="number">127</span><span class="operator">,</span> <span class="number">127</span><span class="operator">,</span> <span class="number">191</span>);
<span class="type">int</span> side <span class="operator">=</span> <a href="qtglobal.html#qMin">qMin</a>(width()<span class="operator">,</span> height());
<span class="type"><a href="qtime.html">QTime</a></span> time <span class="operator">=</span> <span class="type"><a href="qtime.html">QTime</a></span><span class="operator">::</span>currentTime();</pre>
<p>The <tt>paintEvent()</tt> function is called whenever the widget's contents need to be updated. This happens when the widget is first shown, and when it is covered then exposed, but it is also executed when the widget's <a href="qwidget.html#update">update()</a> slot is called. Since we connected the timer's <a href="qtimer.html#timeout">timeout()</a> signal to this slot, it will be called at least once every five seconds.</p>
<p>Before we set up the painter and draw the clock, we first define two lists of <a href="qpoint.html">QPoint</a>s and two <a href="qcolor.html">QColor</a>s that will be used for the hour and minute hands. The minute hand's color has an alpha component of 191, meaning that it's 75% opaque.</p>
<p>We also determine the length of the widget's shortest side so that we can fit the clock face inside the widget. It is also useful to determine the current time before we start drawing.</p>
<pre class="cpp"> <span class="type"><a href="qpainter.html">QPainter</a></span> painter(<span class="keyword">this</span>);
painter<span class="operator">.</span>setRenderHint(<span class="type"><a href="qpainter.html">QPainter</a></span><span class="operator">::</span>Antialiasing);
painter<span class="operator">.</span>translate(width() <span class="operator">/</span> <span class="number">2</span><span class="operator">,</span> height() <span class="operator">/</span> <span class="number">2</span>);
painter<span class="operator">.</span>scale(side <span class="operator">/</span> <span class="number">200.0</span><span class="operator">,</span> side <span class="operator">/</span> <span class="number">200.0</span>);</pre>
<p>The contents of custom widgets are drawn with a <a href="qpainter.html">QPainter</a>. Painters can be used to draw on any <a href="qpaintdevice.html">QPaintDevice</a>, but they are usually used with widgets, so we pass the widget instance to the painter's constructor.</p>
<p>We call <a href="qpainter.html#setRenderHint">QPainter::setRenderHint</a>() with <a href="qpainter.html#RenderHint-enum">QPainter::Antialiasing</a> to turn on antialiasing. This makes drawing of diagonal lines much smoother.</p>
<p>The translation moves the origin to the center of the widget, and the scale operation ensures that the following drawing operations are scaled to fit within the widget. We use a scale factor that let's us use x and y coordinates between -100 and 100, and that ensures that these lie within the length of the widget's shortest side.</p>
<p>To make our code simpler, we will draw a fixed size clock face that will be positioned and scaled so that it lies in the center of the widget.</p>
<p>The painter takes care of all the transformations made during the paint event, and ensures that everything is drawn correctly. Letting the painter handle transformations is often easier than performing manual calculations just to draw the contents of a custom widget.</p>
<p class="centerAlign"><img src="images/analogclock-viewport.png" /></p><p>We draw the hour hand first, using a formula that rotates the coordinate system counterclockwise by a number of degrees determined by the current hour and minute. This means that the hand will be shown rotated clockwise by the required amount.</p>
<pre class="cpp"> painter<span class="operator">.</span>setPen(<span class="type"><a href="qt.html">Qt</a></span><span class="operator">::</span>NoPen);
painter<span class="operator">.</span>setBrush(hourColor);</pre>
<p>We set the pen to be <a href="qt.html#PenStyle-enum">Qt::NoPen</a> because we don't want any outline, and we use a solid brush with the color appropriate for displaying hours. Brushes are used when filling in polygons and other geometric shapes.</p>
<pre class="cpp"> painter<span class="operator">.</span>save();
painter<span class="operator">.</span>rotate(<span class="number">30.0</span> <span class="operator">*</span> ((time<span class="operator">.</span>hour() <span class="operator">+</span> time<span class="operator">.</span>minute() <span class="operator">/</span> <span class="number">60.0</span>)));
painter<span class="operator">.</span>drawConvexPolygon(hourHand<span class="operator">,</span> <span class="number">3</span>);
painter<span class="operator">.</span>restore();</pre>
<p>We save and restore the transformation matrix before and after the rotation because we want to place the minute hand without having to take into account any previous rotations.</p>
<pre class="cpp"> painter<span class="operator">.</span>setPen(hourColor);
<span class="keyword">for</span> (<span class="type">int</span> i <span class="operator">=</span> <span class="number">0</span>; i <span class="operator"><</span> <span class="number">12</span>; <span class="operator">+</span><span class="operator">+</span>i) {
painter<span class="operator">.</span>drawLine(<span class="number">88</span><span class="operator">,</span> <span class="number">0</span><span class="operator">,</span> <span class="number">96</span><span class="operator">,</span> <span class="number">0</span>);
painter<span class="operator">.</span>rotate(<span class="number">30.0</span>);
}</pre>
<p>We draw markers around the edge of the clock for each hour. We draw each marker then rotate the coordinate system so that the painter is ready for the next one.</p>
<pre class="cpp"> painter<span class="operator">.</span>setPen(<span class="type"><a href="qt.html">Qt</a></span><span class="operator">::</span>NoPen);
painter<span class="operator">.</span>setBrush(minuteColor);
painter<span class="operator">.</span>save();
painter<span class="operator">.</span>rotate(<span class="number">6.0</span> <span class="operator">*</span> (time<span class="operator">.</span>minute() <span class="operator">+</span> time<span class="operator">.</span>second() <span class="operator">/</span> <span class="number">60.0</span>));
painter<span class="operator">.</span>drawConvexPolygon(minuteHand<span class="operator">,</span> <span class="number">3</span>);
painter<span class="operator">.</span>restore();</pre>
<p>The minute hand is rotated in a similar way to the hour hand.</p>
<pre class="cpp"> painter<span class="operator">.</span>setPen(minuteColor);
<span class="keyword">for</span> (<span class="type">int</span> j <span class="operator">=</span> <span class="number">0</span>; j <span class="operator"><</span> <span class="number">60</span>; <span class="operator">+</span><span class="operator">+</span>j) {
<span class="keyword">if</span> ((j <span class="operator">%</span> <span class="number">5</span>) <span class="operator">!</span><span class="operator">=</span> <span class="number">0</span>)
painter<span class="operator">.</span>drawLine(<span class="number">92</span><span class="operator">,</span> <span class="number">0</span><span class="operator">,</span> <span class="number">96</span><span class="operator">,</span> <span class="number">0</span>);
painter<span class="operator">.</span>rotate(<span class="number">6.0</span>);
}
}</pre>
<p>Again, we draw markers around the edge of the clock, but this time to indicate minutes. We skip multiples of 5 to avoid drawing minute markers on top of hour markers.</p>
</div>
<!-- @@@widgets/analogclock -->
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2008-2011 Nokia Corporation and/or its
subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation
in Finland and/or other countries worldwide.</p>
<p>
All other trademarks are property of their respective owners. <a title="Privacy Policy"
href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p>
<br />
<p>
Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p>
<p>
Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU
Free Documentation License version 1.3</a>
as published by the Free Software Foundation.</p>
</div>
</body>
</html>
|
doc/html/ipc-localfortuneclient.html | sunblithe/qt-everywhere-opensource-src-4.7.1 | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- localfortuneclient.qdoc -->
<title>Qt 4.7: Local Fortune Client Example</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
<script src="scripts/jquery.js" type="text/javascript"></script>
<script src="scripts/functions.js" type="text/javascript"></script>
</head>
<body class="offline narrow creator">
<div class="header" id="qtdocheader">
<div class="content">
<div id="nav-logo">
<a href="index.html">Home</a></div>
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
<div id="nav-topright">
<ul>
<li class="nav-topright-home"><a href="http://qt.nokia.com/">Qt HOME</a></li>
<li class="nav-topright-dev"><a href="http://developer.qt.nokia.com/">DEV</a></li>
<li class="nav-topright-labs"><a href="http://labs.qt.nokia.com/blogs/">LABS</a></li>
<li class="nav-topright-doc nav-topright-doc-active"><a href="http://doc.qt.nokia.com/">
DOC</a></li>
<li class="nav-topright-blog"><a href="http://blog.qt.nokia.com/">BLOG</a></li>
</ul>
</div>
<div id="shortCut">
<ul>
<li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.7</a></span></li>
<li class="shortCut-topleft-active"><a href="http://doc.qt.nokia.com">ALL VERSIONS </a></li>
</ul>
</div>
<ul class="sf-menu sf-js-enabled sf-shadow" id="narrowmenu">
<li><a href="#">API Lookup</a>
<ul id="topmenuLook">
<li><a href="classes.html">Class index</a></li>
<li><a href="functions.html">Function index</a></li>
<li><a href="modules.html">Modules</a></li>
<li><a href="namespaces.html">Namespaces</a></li>
<li><a href="qtglobal.html">Global Declarations</a></li>
<li><a href="licensing.html">Licenses and Credits</a></li>
</ul>
</li>
<li><a href="#">Qt Topics</a>
<ul id="topmenuTopic">
<li><a href="qt-basic-concepts.html">Programming with Qt</a></li>
<li><a href="qtquick.html">Device UI's & Qt Quick</a></li>
<li><a href="qt-gui-concepts.html">UI Design with Qt</a></li>
<li><a href="developing-with-qt.html">Cross-platform and Platform-specific</a></li>
<li><a href="platform-specific.html">Platform-specific info</a></li>
<li><a href="technology-apis.html">Qt and Key Technologies</a></li>
<li><a href="best-practices.html">How-To's and Best Practices</a></li>
</ul>
</li>
<li><a href="#">Examples</a>
<ul id="topmenuexample">
<li><a href="all-examples.html">Examples</a></li>
<li><a href="tutorials.html">Tutorials</a></li>
<li><a href="demos.html">Demos</a></li>
<li><a href="qdeclarativeexamples.html">QML Examples</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="wrapper">
<div class="hd">
<span></span>
</div>
<div class="bd group">
<div class="sidebar">
<div class="searchlabel">
Search index:</div>
<div class="search">
<form id="qtdocsearch" action="" onsubmit="return false;">
<fieldset>
<input type="text" name="searchstring" id="pageType" value="" />
</fieldset>
</form>
</div>
<div class="box first bottombar" id="lookup">
<h2 title="API Lookup"><span></span>
API Lookup</h2>
<div id="list001" class="list">
<ul id="ul001" >
<li class="defaultLink"><a href="classes.html">Class index</a></li>
<li class="defaultLink"><a href="functions.html">Function index</a></li>
<li class="defaultLink"><a href="modules.html">Modules</a></li>
<li class="defaultLink"><a href="namespaces.html">Namespaces</a></li>
<li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li>
<li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li>
</ul>
</div>
</div>
<div class="box bottombar" id="topics">
<h2 title="Qt Topics"><span></span>
Qt Topics</h2>
<div id="list002" class="list">
<ul id="ul002" >
<li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li>
<li class="defaultLink"><a href="qtquick.html">Device UI's & Qt Quick</a></li>
<li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li>
<li class="defaultLink"><a href="developing-with-qt.html">Cross-platform and Platform-specific</a></li>
<li class="defaultLink"><a href="platform-specific.html">Platform-specific info</a></li>
<li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li>
<li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li>
</ul>
</div>
</div>
<div class="box" id="examples">
<h2 title="Examples"><span></span>
Examples</h2>
<div id="list003" class="list">
<ul id="ul003">
<li class="defaultLink"><a href="all-examples.html">Examples</a></li>
<li class="defaultLink"><a href="tutorials.html">Tutorials</a></li>
<li class="defaultLink"><a href="demos.html">Demos</a></li>
<li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li>
</ul>
</div>
</div>
</div>
<div class="wrap">
<div class="toolbar">
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Bread crumbs goes here -->
<li><a href="all-examples.html">Examples</a></li> <li>Local Fortune Client Example</li> </ul>
</div>
<div class="toolbuttons toolblock">
<ul>
<li id="smallA" class="t_button">A</li>
<li id="medA" class="t_button active">A</li>
<li id="bigA" class="t_button">A</li>
<li id="print" class="t_button"><a href="javascript:this.print();">
<span>Print</span></a></li>
</ul>
</div>
</div>
<div class="content">
<h1 class="title">Local Fortune Client Example</h1>
<span class="subtitle"></span>
<!-- $$$ipc/localfortuneclient-description -->
<div class="descr"> <a name="details"></a>
<p>Files:</p>
<ul>
<li><a href="ipc-localfortuneclient-client-cpp.html">ipc/localfortuneclient/client.cpp</a></li>
<li><a href="ipc-localfortuneclient-client-h.html">ipc/localfortuneclient/client.h</a></li>
<li><a href="ipc-localfortuneclient-main-cpp.html">ipc/localfortuneclient/main.cpp</a></li>
<li><a href="ipc-localfortuneclient-localfortuneclient-pro.html">ipc/localfortuneclient/localfortuneclient.pro</a></li>
</ul>
<p>The Local Fortune Client example shows how to create a client for a simple local service using <a href="qlocalsocket.html">QLocalSocket</a>. It is intended to be run alongside the <a href="ipc-localfortuneserver.html">Local Fortune Server</a> example.</p>
<p class="centerAlign"><img src="images/localfortuneclient-example.png" alt="Screenshot of the Local Fortune Client example" /></p></div>
<!-- @@@ipc/localfortuneclient -->
<div class="feedback t_button">
[+] Documentation Feedback</div>
</div>
</div>
</div>
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2008-2010 Nokia Corporation and/or its
subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation
in Finland and/or other countries worldwide.</p>
<p>
All other trademarks are property of their respective owners. <a title="Privacy Policy"
href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p>
<br />
<p>
Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p>
<p>
Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU
Free Documentation License version 1.3</a>
as published by the Free Software Foundation.</p>
</div>
<div id="feedbackBox">
<div id="feedcloseX" class="feedclose t_button">X</div>
<form id="feedform" action="http://doc.qt.nokia.com/docFeedbck/feedback.php" method="get">
<p id="noteHead">Thank you for giving your feedback.</p> <p class="note">Make sure it is related to this specific page. For more general bugs and
requests, please use the <a href="http://bugreports.qt.nokia.com/secure/Dashboard.jspa">Qt Bug Tracker</a>.</p>
<p><textarea id="feedbox" name="feedText" rows="5" cols="40"></textarea></p>
<p><input id="feedsubmit" class="feedclose" type="submit" name="feedback" /></p>
</form>
</div>
<div id="blurpage">
</div>
</body>
</html>
|
lib/javadoc/com/teamdev/jxbrowser/chromium/events/class-use/StartLoadingEvent.html | Happyville101/Stocky | <!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_25) on Thu Feb 25 15:40:57 EET 2016 -->
<title>Uses of Class com.teamdev.jxbrowser.chromium.events.StartLoadingEvent (JxBrowser reference)</title>
<meta name="date" content="2016-02-25">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.teamdev.jxbrowser.chromium.events.StartLoadingEvent (JxBrowser reference)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/teamdev/jxbrowser/chromium/events/StartLoadingEvent.html" title="class in com.teamdev.jxbrowser.chromium.events">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/teamdev/jxbrowser/chromium/events/class-use/StartLoadingEvent.html" target="_top">Frames</a></li>
<li><a href="StartLoadingEvent.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class com.teamdev.jxbrowser.chromium.events.StartLoadingEvent" class="title">Uses of Class<br>com.teamdev.jxbrowser.chromium.events.StartLoadingEvent</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../com/teamdev/jxbrowser/chromium/events/StartLoadingEvent.html" title="class in com.teamdev.jxbrowser.chromium.events">StartLoadingEvent</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.teamdev.jxbrowser.chromium.events">com.teamdev.jxbrowser.chromium.events</a></td>
<td class="colLast">
<div class="block">Contains interfaces and classes for dealing with different
types of events fired by <a href="../../../../../../com/teamdev/jxbrowser/chromium/Browser.html" title="class in com.teamdev.jxbrowser.chromium"><code>Browser</code></a> component.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.teamdev.jxbrowser.chromium.events">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../com/teamdev/jxbrowser/chromium/events/StartLoadingEvent.html" title="class in com.teamdev.jxbrowser.chromium.events">StartLoadingEvent</a> in <a href="../../../../../../com/teamdev/jxbrowser/chromium/events/package-summary.html">com.teamdev.jxbrowser.chromium.events</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../com/teamdev/jxbrowser/chromium/events/package-summary.html">com.teamdev.jxbrowser.chromium.events</a> with parameters of type <a href="../../../../../../com/teamdev/jxbrowser/chromium/events/StartLoadingEvent.html" title="class in com.teamdev.jxbrowser.chromium.events">StartLoadingEvent</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">LoadListener.</span><code><span class="memberNameLink"><a href="../../../../../../com/teamdev/jxbrowser/chromium/events/LoadListener.html#onStartLoadingFrame-com.teamdev.jxbrowser.chromium.events.StartLoadingEvent-">onStartLoadingFrame</a></span>(<a href="../../../../../../com/teamdev/jxbrowser/chromium/events/StartLoadingEvent.html" title="class in com.teamdev.jxbrowser.chromium.events">StartLoadingEvent</a> event)</code>
<div class="block">Invoked when browser starts loading a frame.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">LoadAdapter.</span><code><span class="memberNameLink"><a href="../../../../../../com/teamdev/jxbrowser/chromium/events/LoadAdapter.html#onStartLoadingFrame-com.teamdev.jxbrowser.chromium.events.StartLoadingEvent-">onStartLoadingFrame</a></span>(<a href="../../../../../../com/teamdev/jxbrowser/chromium/events/StartLoadingEvent.html" title="class in com.teamdev.jxbrowser.chromium.events">StartLoadingEvent</a> event)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/teamdev/jxbrowser/chromium/events/StartLoadingEvent.html" title="class in com.teamdev.jxbrowser.chromium.events">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/teamdev/jxbrowser/chromium/events/class-use/StartLoadingEvent.html" target="_top">Frames</a></li>
<li><a href="StartLoadingEvent.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
LayoutTests/platform/chromium/permissionclient/script-permissions.html | youfoh/webkit-efl | <html>
<head>
<script>
if (window.layoutTestController) {
layoutTestController.dumpAsText();
layoutTestController.dumpPermissionClientCallbacks();
}
function log(a)
{
document.getElementById("log").innerHTML += a + "<br>";
}
function test()
{
if (window.layoutTestController && layoutTestController.setScriptsAllowed)
layoutTestController.setScriptsAllowed(false);
else
log("This test requires layoutTestController.setScriptsAllowed, so it be can't run in a browser.");
// Try to load an external script.
var script = document.createElement('script');
script.src = "resources/script.js";
document.getElementById("script").appendChild(script);
}
</script>
</head>
<body onload="test()">
<div id="script"></div>
<div id="log"></div>
</body>
</html>
|
theming/message-viewer.html | mjog/geary | <html>
<head>
<title>Geary</title>
<style id="default_fonts"></style>
<style id="blacklist_ids"></style>
</head>
<body>
<div id="message_container"><span id="placeholder"></span></div>
<div id="multiple_messages"><div id="selection_counter" class="email"></div></div>
<div id="email_template" class="email">
<div class="compressed_note"><span><span></div>
<div class="geary_spacer"></div>
<div class="email_container">
<div class="email_warning"></div>
<div class="header_container">
<img src="" class="avatar" />
<div class="button_bar">
<div class="starred button"><img src="" class="icon" /></div>
<div class="unstarred button"><img src="" class="icon" /></div>
<div class="menu button"><img src="" class="icon" /></div>
</div>
<img src="" class="attachment icon" />
<div class="header"></div>
<div class="preview"></div>
</div>
<div class="remote_images"><img class="close_show_images button" /></div>
<div class="body" dir="auto"></div>
<div class="draft_edit"><span class="draft_edit_button button"></span></div>
</div>
</div>
<div id="attachment_template" class="attachment_container">
<div class="top_border"></div>
<table class="attachment"><tr>
<td class="preview"><img src="" /></td>
<td class="info">
<div class="filename"></div>
<div class="filesize"></div>
</td>
</tr></table>
</div>
<div id="link_warning_template" class="link_warning">
<img class="close_link_warning button" />
</div>
<div id="spinner">
<!--
Spinner code from CSSLoad.net
License: http://cssload.net/en/terms_of_use
-->
<div id="floatingCirclesG">
<div class="f_circleG" id="frotateG_01"></div>
<div class="f_circleG" id="frotateG_02"></div>
<div class="f_circleG" id="frotateG_03"></div>
<div class="f_circleG" id="frotateG_04"></div>
<div class="f_circleG" id="frotateG_05"></div>
<div class="f_circleG" id="frotateG_06"></div>
<div class="f_circleG" id="frotateG_07"></div>
<div class="f_circleG" id="frotateG_08"></div>
</div>
</div>
</body>
</html>
|
doc/html/radio-radio-pro.html | robclark/qtmobility-1.1.0 | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Qt Mobility 1.1: radio.pro Example File (radio/radio.pro)</title>
<link rel="stylesheet" type="text/css" href="style/style.css"
/> <!--[if IE]>
<meta name="MSSmartTagsPreventParsing" content="true">
<meta http-equiv="imagetoolbar" content="no">
<![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="style/style_ie6.css">
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="style/style_ie7.css">
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="style/style_ie8.css">
<![endif]-->
<script src="scripts/jquery.js" type="text/javascript"></script>
<script src="scripts/functions.js" type="text/javascript"></script>
<script src="./scripts/superfish.js" type="text/javascript"></script>
<script src="./scripts/narrow.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="style/superfish.css" /> <link rel="stylesheet" type="text/css" href="style/narrow.css" /></head>
<body class="" onload="CheckEmptyAndLoadList();">
<div class="header" id="qtdocheader">
<div class="content">
<div id="nav-logo">
<a href="index.html">Home</a></div>
<a href="index.html" class="qtref"><span>Qt Mobility Reference Documentation</span></a>
<div id="narrowsearch"><form onsubmit="return false;" action="" id="qtdocsearchTop">
<fieldset>
<input type="text" value="" id="pageType2" name="searchstring"/>
</fieldset>
</form></div>
<div id="nav-topright">
<ul>
<li class="nav-topright-home"><a href="http://qt.nokia.com/">Qt HOME</a></li>
<li class="nav-topright-dev"><a href="http://developer.qt.nokia.com/">DEV</a></li>
<li class="nav-topright-labs"><a href="http://labs.qt.nokia.com/blogs/">LABS</a></li>
<li class="nav-topright-doc nav-topright-doc-active"><a href="http://doc.qt.nokia.com/">
DOC</a></li>
<li class="nav-topright-blog"><a href="http://blog.qt.nokia.com/">BLOG</a></li>
</ul>
</div>
<div id="shortCut">
<ul>
<li class="shortCut-topleft-inactive"><span><a href="index.html">Mobility 1.1</a></span></li>
<li class="shortCut-topleft-active"><a href="http://doc.qt.nokia.com">ALL VERSIONS </a></li>
</ul>
</div>
<ul class="sf-menu sf-js-enabled sf-shadow" id="narrowmenu">
<li><a href="#">API Lookup</a>
<ul id="topmenuLook">
<li><a href="classes.html">Class index</a></li>
<li><a href="functions.html">Function index</a></li>
<li><a href="modules.html">Modules</a></li>
</ul>
</li>
<li><a href="#">Examples</a>
<ul id="topmenuexample">
<li><a href="all-examples.html">Examples</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="wrapper">
<div class="hd">
<span></span>
</div>
<div class="bd group">
<div class="sidebar">
<div class="searchlabel">
Search index:</div>
<div class="search">
<form id="qtdocsearch" action="" onsubmit="return false;">
<fieldset>
<input type="text" name="searchstring" id="pageType" value="" />
</fieldset>
</form>
</div>
<div class="box first bottombar" id="lookup">
<h2 title="API Lookup"><span></span>
API Lookup</h2>
<div id="list001" class="list">
<ul id="ul001" >
<li class="defaultLink"><a href="classes.html">Class index</a></li>
<li class="defaultLink"><a href="functions.html">Function index</a></li>
<li class="defaultLink"><a href="modules.html">Modules</a></li>
<li class="defaultLink"><a href="index.html#platform-compatibility">Platform Compatibility</a></li>
<li class="defaultLink"><a href="qml-plugins.html">QML Plugins</a></li>
</ul>
</div>
</div>
<div class="box bottombar" id="topics">
<h2 title="Qt Topics"><span></span>
Qt Topics</h2>
<div id="list002" class="list">
<ul id="ul002" >
<li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/">Qt 4.7</a></li>
<li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/qt-basic-concepts.html">Basic Qt architecture</a></li>
<li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/declarativeui.html">Device UI's & Qt Quick</a></li>
<li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/qt-gui-concepts.html">Desktop UI components</a></li>
<li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/platform-specific.html">Platform-specific info</a></li>
</ul>
</div>
</div>
<div class="box" id="examples">
<h2 title="Examples"><span></span>
Examples</h2>
<div id="list003" class="list">
<ul id="ul003">
<li class="defaultLink"><a href="all-examples.html">Examples</a></li>
</ul>
</div>
</div>
</div>
<div class="wrap">
<div class="toolbar">
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Bread crumbs goes here -->
</ul>
</div>
<div class="toolbuttons toolblock">
<ul>
<li id="smallA" class="t_button">A</li>
<li id="medA" class="t_button active">A</li>
<li id="bigA" class="t_button">A</li>
<li id="print" class="t_button"><a href="javascript:this.print();">
<span>Print</span></a></li>
</ul>
</div>
</div>
<div class="content">
<h1 class="title">radio.pro Example File</h1>
<span class="small-subtitle">radio/radio.pro</span>
<div class="descr"/>
<pre class="highlightedCode brush: cpp"> TEMPLATE = app
CONFIG += example
INCLUDEPATH += ../../src/multimedia
include(../examples.pri)
CONFIG += mobility
MOBILITY = multimedia
QMAKE_RPATHDIR += $$DESTDIR
HEADERS = \
radio.h
SOURCES = \
main.cpp \
radio.cpp
symbian: {
TARGET.CAPABILITY = UserEnvironment WriteDeviceData ReadDeviceData SwEvent
}</pre>
</div>
<!-- /div -->
<div class="feedback t_button">
[+] Documentation Feedback</div>
</div>
</div>
<div class="ft">
<span></span>
</div>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2008-2010 Nokia Corporation and/or its
subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation
in Finland and/or other countries worldwide.</p>
<p>
All other trademarks are property of their respective owners. <a title="Privacy Policy"
href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p>
</div>
<div id="feedbackBox">
<div id="feedcloseX" class="feedclose t_button">X</div>
<form id="feedform" action="http://doc.qt.nokia.com/docFeedbck/feedback.php" method="get">
<p id="noteHead">Thank you for giving your feedback.</p> <div class="note"><p>Make sure it is related to this specific page. For more general bugs and
requests, please use the <a href="http://bugreports.qt.nokia.com/secure/Dashboard.jspa">Qt Bug Tracker</a>.</p></div>
<p><textarea id="feedbox" name="feedText" rows="5" cols="40"></textarea></p>
<p><input id="feedsubmit" class="feedclose" type="submit" name="feedback" /></p>
</form>
</div>
<div id="blurpage">
</div>
</div>
<script src="scripts/functions.js" type="text/javascript"></script>
</body>
</html>
|
doc/html/webkit-webplugin-main-cpp.html | kobolabs/qt-everywhere-4.8.0 | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Qt 4.8: main.cpp Example File (webkit/webplugin/main.cpp)</title>
<link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader">
<div class="content">
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
</div>
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Breadcrumbs go here -->
</ul>
</div>
</div>
<div class="content mainContent">
<h1 class="title">main.cpp Example File</h1>
<span class="small-subtitle">webkit/webplugin/main.cpp</span>
<!-- $$$webkit/webplugin/main.cpp-description -->
<div class="descr"> <a name="details"></a>
<pre class="cpp"> <span class="comment">/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
** the names of its contributors may be used to endorse or promote
** products derived from this software without specific prior written
** permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
** $QT_END_LICENSE$
**
****************************************************************************/</span>
<span class="preprocessor">#include <QApplication></span>
<span class="preprocessor">#include "mainwindow.h"</span>
<span class="type">int</span> main(<span class="type">int</span> argc<span class="operator">,</span> <span class="type">char</span> <span class="operator">*</span>argv<span class="operator">[</span><span class="operator">]</span>)
{
<span class="type"><a href="qapplication.html">QApplication</a></span> app(argc<span class="operator">,</span> argv);
MainWindow window;
window<span class="operator">.</span>show();
<span class="keyword">return</span> app<span class="operator">.</span>exec();
}</pre>
</div>
<!-- @@@webkit/webplugin/main.cpp -->
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2008-2011 Nokia Corporation and/or its
subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation
in Finland and/or other countries worldwide.</p>
<p>
All other trademarks are property of their respective owners. <a title="Privacy Policy"
href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p>
<br />
<p>
Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p>
<p>
Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU
Free Documentation License version 1.3</a>
as published by the Free Software Foundation.</p>
</div>
</body>
</html>
|
build/reports/example/changes/fields_index_additions.html | qynnine/JDiffOriginDemo | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd">
<HTML>
<HEAD>
<meta name="generator" content="JDiff v1.1.1">
<!-- Generated by the JDiff Javadoc doclet -->
<!-- (http://www.jdiff.org) -->
<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
<TITLE>
Field Additions Index
</TITLE>
<LINK REL="stylesheet" TYPE="text/css" HREF="../stylesheet-jdiff.css" TITLE="Style">
</HEAD>
<BODY>
<a NAME="topheader"></a>
<table summary="Index for Fields" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#FFFFCC">
<font size="+1"><a href="fields_index_all.html" class="staysblack">All Fields</a></font>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF">
<FONT SIZE="-1">
<A HREF="fields_index_removals.html" class="hiddenlink">Removals</A>
</FONT>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF">
<FONT SIZE="-1">
<font color="#999999">Additions</font>
</FONT>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF">
<FONT SIZE="-1">
<A HREF="fields_index_changes.html"class="hiddenlink">Changes</A>
</FONT>
</td>
</tr>
<tr>
<td>
<font size="-2"><b>Bold</b> is New, <strike>strike</strike> is deleted</font>
</td>
</tr>
</table><br>
</BODY>
</HTML>
|
docs/gnu/vnc/package-frame.html | capickett/ubicomp_jvnc_server | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Sat Jun 08 15:53:07 KST 2002 -->
<TITLE>
gnu.vnc(VNCj)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style">
</HEAD>
<SCRIPT>
function asd()
{
parent.document.title="gnu.vnc(VNCj)";
}
</SCRIPT>
<BODY BGCOLOR="white" onload="asd();">
<FONT size="+1" CLASS="FrameTitleFont">
<A HREF="../../gnu/vnc/package-summary.html" TARGET="classFrame">gnu.vnc</A></FONT>
<TABLE BORDER="0" WIDTH="100%">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
Classes</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="VNCHost.html" TARGET="classFrame">VNCHost</A>
<BR>
<A HREF="VNCQueue.html" TARGET="classFrame">VNCQueue</A>
<BR>
<A HREF="WebServer.html" TARGET="classFrame">WebServer</A></FONT></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|
mamda/c_cpp/doc/cpp/html/MamdaNewsQueryHandler_8h-source.html | reed-jpm-alpert/OpenMAMA.233 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>OpenMAMDA C++ API: MamdaNewsQueryHandler.h Source File</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.4.7 -->
<div class="tabs">
<ul>
<li><a href="main.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="classes.html"><span>Classes</span></a></li>
<li id="current"><a href="files.html"><span>Files</span></a></li>
<li>
<form action="search.php" method="get">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><label> <u>S</u>earch for </label></td>
<td><input type="text" name="query" value="" size="20" accesskey="s"/></td>
</tr>
</table>
</form>
</li>
</ul></div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul></div>
<h1>MamdaNewsQueryHandler.h</h1><a href="MamdaNewsQueryHandler_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/* $Id$</span>
<a name="l00002"></a>00002 <span class="comment"> *</span>
<a name="l00003"></a>00003 <span class="comment"> * OpenMAMA: The open middleware agnostic messaging API</span>
<a name="l00004"></a>00004 <span class="comment"> * Copyright (C) 2011 NYSE Technologies, Inc.</span>
<a name="l00005"></a>00005 <span class="comment"> *</span>
<a name="l00006"></a>00006 <span class="comment"> * This library is free software; you can redistribute it and/or</span>
<a name="l00007"></a>00007 <span class="comment"> * modify it under the terms of the GNU Lesser General Public</span>
<a name="l00008"></a>00008 <span class="comment"> * License as published by the Free Software Foundation; either</span>
<a name="l00009"></a>00009 <span class="comment"> * version 2.1 of the License, or (at your option) any later version.</span>
<a name="l00010"></a>00010 <span class="comment"> *</span>
<a name="l00011"></a>00011 <span class="comment"> * This library is distributed in the hope that it will be useful,</span>
<a name="l00012"></a>00012 <span class="comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<a name="l00013"></a>00013 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span>
<a name="l00014"></a>00014 <span class="comment"> * Lesser General Public License for more details.</span>
<a name="l00015"></a>00015 <span class="comment"> *</span>
<a name="l00016"></a>00016 <span class="comment"> * You should have received a copy of the GNU Lesser General Public</span>
<a name="l00017"></a>00017 <span class="comment"> * License along with this library; if not, write to the Free Software</span>
<a name="l00018"></a>00018 <span class="comment"> * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA</span>
<a name="l00019"></a>00019 <span class="comment"> * 02110-1301 USA</span>
<a name="l00020"></a>00020 <span class="comment"> */</span>
<a name="l00021"></a>00021
<a name="l00022"></a>00022 <span class="preprocessor">#ifndef MamdaNewsQueryHandlerH</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#define MamdaNewsQueryHandlerH</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span>
<a name="l00025"></a>00025 <span class="preprocessor">#include <<a class="code" href="MamdaOptionalConfig_8h.html">mamda/MamdaOptionalConfig.h</a>></span>
<a name="l00026"></a>00026 <span class="preprocessor">#include <mama/mamacpp.h></span>
<a name="l00027"></a>00027
<a name="l00028"></a>00028 <span class="keyword">namespace </span>Wombat
<a name="l00029"></a>00029 {
<a name="l00030"></a>00030
<a name="l00031"></a>00031 <span class="keyword">class </span>MamdaNewsQuery;
<a name="l00032"></a>00032 <span class="keyword">class </span>MamdaNewsManager;
<a name="l00033"></a>00033 <span class="keyword">class </span>MamdaSubscription;
<a name="l00034"></a>00034 <span class="keyword">class </span>MamaMsg;
<a name="l00035"></a>00035 <span class="keyword">class </span>MamdaNewsHeadline;
<a name="l00036"></a>00036 <span class="keyword">class </span>MamdaQuery;
<a name="l00037"></a>00037
<a name="l00045"></a><a class="code" href="classWombat_1_1MamdaNewsQueryHandler.html">00045</a> <span class="keyword">class </span>MAMDAOPTExpDLL MamdaNewsQueryHandler
<a name="l00046"></a>00046 {
<a name="l00047"></a>00047 <span class="keyword">public</span>:
<a name="l00056"></a>00056 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onNewsQueryHeadline (
<a name="l00057"></a>00057 <a class="code" href="classWombat_1_1MamdaNewsManager.html">MamdaNewsManager</a>& manager,
<a name="l00058"></a>00058 <span class="keyword">const</span> MamaMsg& msg,
<a name="l00059"></a>00059 <span class="keyword">const</span> <a class="code" href="classWombat_1_1MamdaNewsHeadline.html">MamdaNewsHeadline</a>& headline,
<a name="l00060"></a>00060 <span class="keyword">const</span> <a class="code" href="classWombat_1_1MamdaQuery.html">MamdaQuery</a>& query,
<a name="l00061"></a>00061 <span class="keywordtype">void</span>* closure) = 0;
<a name="l00062"></a>00062
<a name="l00063"></a>00063 <span class="keyword">virtual</span> <span class="keywordtype">void</span> onNewsQueryError (
<a name="l00064"></a>00064 <a class="code" href="classWombat_1_1MamdaNewsManager.html">MamdaNewsManager</a>& manager,
<a name="l00065"></a>00065 MamaMsg* msg,
<a name="l00066"></a>00066 <span class="keyword">const</span> <span class="keywordtype">char</span>* errorStr,
<a name="l00067"></a>00067 <span class="keyword">const</span> MamaStatus& status,
<a name="l00068"></a>00068 <span class="keyword">const</span> <a class="code" href="classWombat_1_1MamdaQuery.html">MamdaQuery</a>& query,
<a name="l00069"></a>00069 <span class="keywordtype">void</span>* closure) = 0;
<a name="l00070"></a>00070
<a name="l00071"></a><a class="code" href="classWombat_1_1MamdaNewsQueryHandler.html#5c419b05befece5ad135ab983fc8f5ac">00071</a> <span class="keyword">virtual</span> <span class="keywordtype">void</span> onNewsQueryComplete (
<a name="l00072"></a>00072 <a class="code" href="classWombat_1_1MamdaNewsManager.html">MamdaNewsManager</a>& manager,
<a name="l00073"></a>00073 <span class="keyword">const</span> <a class="code" href="classWombat_1_1MamdaQuery.html">MamdaQuery</a>& query,
<a name="l00074"></a>00074 <span class="keywordtype">void</span>* closure)
<a name="l00075"></a>00075 {};
<a name="l00076"></a>00076
<a name="l00077"></a><a class="code" href="classWombat_1_1MamdaNewsQueryHandler.html#8ef2b61870d827f05705231859a901c9">00077</a> <span class="keyword">virtual</span> ~MamdaNewsQueryHandler() {};
<a name="l00078"></a>00078 };
<a name="l00079"></a>00079
<a name="l00080"></a>00080 } <span class="comment">// namespace</span>
<a name="l00081"></a>00081
<a name="l00082"></a>00082 <span class="preprocessor">#endif // MamdaNewsQueryHandlerH</span>
</pre></div><d<!-- HTML footer for doxygen 1.8.7-->
<!-- start footer part -->
<!--BEGIN GENERATE_TREEVIEW-->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
$navpath
<li class="footer">
<span>© 2014 Linux Foundation</span>
</ul>
</div>
<!--END GENERATE_TREEVIEW-->
<!--BEGIN !GENERATE_TREEVIEW-->
<hr class="footer"/><address class="footer"><small>
$generatedby  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="$relpath^doxygen.png" alt="doxygen"/>
</a> 1.4.7
</small></address>
<!--END !GENERATE_TREEVIEW-->
</body>
</html>
|
matlab/include/help/install/csh/act_key_ko_KR.html | robotology-playground/Robust-View-Graph-SLAM | <!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" itemscope itemtype="http://www.mathworks.com/help/schema/MathWorksDocPage">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>활성화 키 지정</title>
<link rel="stylesheet" href="docstyle.css" type="text/css"><link href="../../includes/product/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="toctype" itemprop="pagetype" content="ug">
<meta name="infotype" itemprop="infotype" content="other" />
<meta name="description" itemprop="description" content="계정에 연결된 라이선스가 없는 경우, 또는 선택한 라이선스를 활성화할 수 있는 권한이 확인되지 않는 경우 활성화 키 대화 상자가 표시됩니다." />
<script src="../../includes/product/scripts/jquery/jquery.mobile.custom.min.js"></script>
<script src="../../includes/product/scripts/bootstrap.min.js" type="text/javascript"></script>
<script src="../../includes/product/scripts/global.js"></script>
<link href="../../includes/product/css/doc_center.css" rel="stylesheet" type="text/css">
<link href="../../includes/product/css/doc_center_installed.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="../../includes/product/css/doc_center_ko_KR.css">
<link href="../../includes/product/css/doc_center_print.css" rel="stylesheet" type="text/css" media="print">
</head>
<body id="responsive_offcanvas">
<div id="doc_header_spacer" class="header"></div>
<div class="content_container" id="content_container">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<section id="doc_center_content" lang="ko_KR"><div id="pgtype-topic"><!-- translationrelease="R2016b", translationstatus="Final" -->
<span id="act_key" class="anchor_target"></span><h2 class="title r2016b" itemprop="title content" id="act_key">활성화 키 지정</h2><div class="clearfix"></div><div itemprop="content"><p>계정에 연결된 라이선스가 없는 경우, 또는 선택한 라이선스를 활성화할 수 있는 권한이 확인되지 않는 경우 활성화 키 대화 상자가 표시됩니다. 필요한 활성화 키를 입력하고 <b>다음</b>을 클릭합니다. 활성화 키는 라이선스 담당 관리자에게 문의하십시오.
</p><ul><span id="zmw57dd0e335" class="anchor_target"></span><table cellspacing="0" class="note" summary="Note" cellpadding="5" border="1"><tr width="90%"><td><p><b>참고:</b>
활성화 키에 대시 또는 공백을 입력하는 것은 옵션입니다.</p></td></tr></table></ul><p>
</p></div><div class="clearfix"></div><div itemprop="content"><p>MATLAB<sup>®</sup> 학생용 소프트웨어를 설치하는 경우에는 제품 패키지에 활성화 키가 포함되어 있습니다.</p></div><div class="clearfix"></div><div itemprop="content"><p>
<img src="activation_key_ko_KR.png" height="428" width="637" alt=""></p></div></div></section>
<!--Last updated: Wed Aug 17 14:36:40 EDT 2016-->
</div>
</div>
</div><!--close_0960-->
</div><!--close_0970-->
</body>
</html>
|
doc/html/multimedia-videowidget-videoplayer-cpp.html | sicily/qt4.8.4 | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Qt 4.8: videoplayer.cpp Example File (multimedia/videowidget/videoplayer.cpp)</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
<script src="scripts/jquery.js" type="text/javascript"></script>
<script src="scripts/functions.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="style/superfish.css" />
<link rel="stylesheet" type="text/css" href="style/narrow.css" />
<!--[if IE]>
<meta name="MSSmartTagsPreventParsing" content="true">
<meta http-equiv="imagetoolbar" content="no">
<![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="style/style_ie6.css">
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="style/style_ie7.css">
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="style/style_ie8.css">
<![endif]-->
<script src="scripts/superfish.js" type="text/javascript"></script>
<script src="scripts/narrow.js" type="text/javascript"></script>
</head>
<body class="" onload="CheckEmptyAndLoadList();">
<div class="header" id="qtdocheader">
<div class="content">
<div id="nav-logo">
<a href="index.html">Home</a></div>
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
<div id="narrowsearch"></div>
<div id="nav-topright">
<ul>
<li class="nav-topright-home"><a href="http://qt.digia.com/">Qt HOME</a></li>
<li class="nav-topright-dev"><a href="http://qt-project.org/">DEV</a></li>
<li class="nav-topright-doc nav-topright-doc-active"><a href="http://qt-project.org/doc/">
DOC</a></li>
<li class="nav-topright-blog"><a href="http://blog.qt.digia.com/">BLOG</a></li>
</ul>
</div>
<div id="shortCut">
<ul>
<li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.8</a></span></li>
<li class="shortCut-topleft-active"><a href="http://qt-project.org/doc/">ALL VERSIONS </a></li>
</ul>
</div>
<ul class="sf-menu" id="narrowmenu">
<li><a href="#">API Lookup</a>
<ul>
<li><a href="classes.html">Class index</a></li>
<li><a href="functions.html">Function index</a></li>
<li><a href="modules.html">Modules</a></li>
<li><a href="namespaces.html">Namespaces</a></li>
<li><a href="qtglobal.html">Global Declarations</a></li>
<li><a href="qdeclarativeelements.html">QML elements</a></li>
</ul>
</li>
<li><a href="#">Qt Topics</a>
<ul>
<li><a href="qt-basic-concepts.html">Programming with Qt</a></li>
<li><a href="qtquick.html">Device UIs & Qt Quick</a></li>
<li><a href="qt-gui-concepts.html">UI Design with Qt</a></li>
<li><a href="supported-platforms.html">Supported Platforms</a></li>
<li><a href="technology-apis.html">Qt and Key Technologies</a></li>
<li><a href="best-practices.html">How-To's and Best Practices</a></li>
</ul>
</li>
<li><a href="#">Examples</a>
<ul>
<li><a href="all-examples.html">Examples</a></li>
<li><a href="tutorials.html">Tutorials</a></li>
<li><a href="demos.html">Demos</a></li>
<li><a href="qdeclarativeexamples.html">QML Examples</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="wrapper">
<div class="hd">
<span></span>
</div>
<div class="bd group">
<div class="sidebar">
<div class="searchlabel">
Search index:</div>
<div class="search" id="sidebarsearch">
<form id="qtdocsearch" action="" onsubmit="return false;">
<fieldset>
<input type="text" name="searchstring" id="pageType" value="" />
<div id="resultdialog">
<a href="#" id="resultclose">Close</a>
<p id="resultlinks" class="all"><a href="#" id="showallresults">All</a> | <a href="#" id="showapiresults">API</a> | <a href="#" id="showarticleresults">Articles</a> | <a href="#" id="showexampleresults">Examples</a></p>
<p id="searchcount" class="all"><span id="resultcount"></span><span id="apicount"></span><span id="articlecount"></span><span id="examplecount"></span> results:</p>
<ul id="resultlist" class="all">
</ul>
</div>
</fieldset>
</form>
</div>
<div class="box first bottombar" id="lookup">
<h2 title="API Lookup"><span></span>
API Lookup</h2>
<div id="list001" class="list">
<ul id="ul001" >
<li class="defaultLink"><a href="classes.html">Class index</a></li>
<li class="defaultLink"><a href="functions.html">Function index</a></li>
<li class="defaultLink"><a href="modules.html">Modules</a></li>
<li class="defaultLink"><a href="namespaces.html">Namespaces</a></li>
<li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li>
<li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li>
</ul>
</div>
</div>
<div class="box bottombar" id="topics">
<h2 title="Qt Topics"><span></span>
Qt Topics</h2>
<div id="list002" class="list">
<ul id="ul002" >
<li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li>
<li class="defaultLink"><a href="qtquick.html">Device UIs & Qt Quick</a></li>
<li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li>
<li class="defaultLink"><a href="supported-platforms.html">Supported Platforms</a></li>
<li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li>
<li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li>
</ul>
</div>
</div>
<div class="box" id="examples">
<h2 title="Examples"><span></span>
Examples</h2>
<div id="list003" class="list">
<ul id="ul003">
<li class="defaultLink"><a href="all-examples.html">Examples</a></li>
<li class="defaultLink"><a href="tutorials.html">Tutorials</a></li>
<li class="defaultLink"><a href="demos.html">Demos</a></li>
<li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li>
</ul>
</div>
</div>
</div>
<div class="wrap">
<div class="toolbar">
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Breadcrumbs go here -->
</ul>
</div>
<div class="toolbuttons toolblock">
<ul>
<li id="smallA" class="t_button">A</li>
<li id="medA" class="t_button active">A</li>
<li id="bigA" class="t_button">A</li>
<li id="print" class="t_button"><a href="javascript:this.print();">
<span>Print</span></a></li>
</ul>
</div>
</div>
<div class="content mainContent">
<h1 class="title">videoplayer.cpp Example File</h1>
<span class="small-subtitle">multimedia/videowidget/videoplayer.cpp</span>
<!-- $$$multimedia/videowidget/videoplayer.cpp-description -->
<div class="descr"> <a name="details"></a>
<pre class="cpp"> <span class="comment">/****************************************************************************
**
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
** of its contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/</span>
<span class="preprocessor">#include "videoplayer.h"</span>
<span class="preprocessor">#include "videowidget.h"</span>
<span class="preprocessor">#include <QtMultimedia></span>
VideoPlayer<span class="operator">::</span>VideoPlayer(<span class="type"><a href="qwidget.html">QWidget</a></span> <span class="operator">*</span>parent)
: <span class="type"><a href="qwidget.html">QWidget</a></span>(parent)
<span class="operator">,</span> surface(<span class="number">0</span>)
<span class="operator">,</span> playButton(<span class="number">0</span>)
<span class="operator">,</span> positionSlider(<span class="number">0</span>)
{
connect(<span class="operator">&</span>movie<span class="operator">,</span> SIGNAL(stateChanged(<span class="type"><a href="qmovie.html">QMovie</a></span><span class="operator">::</span>MovieState))<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(movieStateChanged(<span class="type"><a href="qmovie.html">QMovie</a></span><span class="operator">::</span>MovieState)));
connect(<span class="operator">&</span>movie<span class="operator">,</span> SIGNAL(frameChanged(<span class="type">int</span>))<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(frameChanged(<span class="type">int</span>)));
VideoWidget <span class="operator">*</span>videoWidget <span class="operator">=</span> <span class="keyword">new</span> VideoWidget;
surface <span class="operator">=</span> videoWidget<span class="operator">-</span><span class="operator">></span>videoSurface();
<span class="type"><a href="qabstractbutton.html">QAbstractButton</a></span> <span class="operator">*</span>openButton <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qpushbutton.html">QPushButton</a></span>(tr(<span class="string">"Open..."</span>));
connect(openButton<span class="operator">,</span> SIGNAL(clicked())<span class="operator">,</span> <span class="keyword">this</span><span class="operator">,</span> SLOT(openFile()));
playButton <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qpushbutton.html">QPushButton</a></span>;
playButton<span class="operator">-</span><span class="operator">></span>setEnabled(<span class="keyword">false</span>);
playButton<span class="operator">-</span><span class="operator">></span>setIcon(style()<span class="operator">-</span><span class="operator">></span>standardIcon(<span class="type"><a href="qstyle.html">QStyle</a></span><span class="operator">::</span>SP_MediaPlay));
connect(playButton<span class="operator">,</span> SIGNAL(clicked())<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(play()));
positionSlider <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qslider.html">QSlider</a></span>(<span class="type"><a href="qt.html">Qt</a></span><span class="operator">::</span>Horizontal);
positionSlider<span class="operator">-</span><span class="operator">></span>setRange(<span class="number">0</span><span class="operator">,</span> <span class="number">0</span>);
connect(positionSlider<span class="operator">,</span> SIGNAL(sliderMoved(<span class="type">int</span>))<span class="operator">,</span>
<span class="keyword">this</span><span class="operator">,</span> SLOT(setPosition(<span class="type">int</span>)));
connect(<span class="operator">&</span>movie<span class="operator">,</span> SIGNAL(frameChanged(<span class="type">int</span>))<span class="operator">,</span>
positionSlider<span class="operator">,</span> SLOT(setValue(<span class="type">int</span>)));
<span class="type"><a href="qboxlayout.html">QBoxLayout</a></span> <span class="operator">*</span>controlLayout <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qhboxlayout.html">QHBoxLayout</a></span>;
controlLayout<span class="operator">-</span><span class="operator">></span>setMargin(<span class="number">0</span>);
controlLayout<span class="operator">-</span><span class="operator">></span>addWidget(openButton);
controlLayout<span class="operator">-</span><span class="operator">></span>addWidget(playButton);
controlLayout<span class="operator">-</span><span class="operator">></span>addWidget(positionSlider);
<span class="type"><a href="qboxlayout.html">QBoxLayout</a></span> <span class="operator">*</span>layout <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qvboxlayout.html">QVBoxLayout</a></span>;
layout<span class="operator">-</span><span class="operator">></span>addWidget(videoWidget);
layout<span class="operator">-</span><span class="operator">></span>addLayout(controlLayout);
setLayout(layout);
}
VideoPlayer<span class="operator">::</span><span class="operator">~</span>VideoPlayer()
{
}
<span class="type">void</span> VideoPlayer<span class="operator">::</span>openFile()
{
<span class="type"><a href="qstringlist.html">QStringList</a></span> supportedFormats;
foreach (<span class="type"><a href="qstring.html">QString</a></span> fmt<span class="operator">,</span> <span class="type"><a href="qmovie.html">QMovie</a></span><span class="operator">::</span>supportedFormats())
supportedFormats <span class="operator"><</span><span class="operator"><</span> fmt;
foreach (<span class="type"><a href="qstring.html">QString</a></span> fmt<span class="operator">,</span> <span class="type"><a href="qimagereader.html">QImageReader</a></span><span class="operator">::</span>supportedImageFormats())
supportedFormats <span class="operator"><</span><span class="operator"><</span> fmt;
<span class="type"><a href="qstring.html">QString</a></span> filter <span class="operator">=</span> <span class="string">"Images ("</span>;
foreach ( <span class="type"><a href="qstring.html">QString</a></span> fmt<span class="operator">,</span> supportedFormats) {
filter<span class="operator">.</span>append(<span class="type"><a href="qstring.html">QString</a></span>(<span class="string">"*.%1 "</span>)<span class="operator">.</span>arg(fmt));
}
filter<span class="operator">.</span>append(<span class="string">")"</span>);
<span class="type"><a href="qstring.html">QString</a></span> fileName <span class="operator">=</span> <span class="type"><a href="qfiledialog.html">QFileDialog</a></span><span class="operator">::</span>getOpenFileName(<span class="keyword">this</span><span class="operator">,</span> tr(<span class="string">"Open Movie"</span>)<span class="operator">,</span>
<span class="type"><a href="qdir.html">QDir</a></span><span class="operator">::</span>homePath()<span class="operator">,</span> filter);
<span class="keyword">if</span> (<span class="operator">!</span>fileName<span class="operator">.</span>isEmpty()) {
surface<span class="operator">-</span><span class="operator">></span>stop();
movie<span class="operator">.</span>setFileName(fileName);
playButton<span class="operator">-</span><span class="operator">></span>setEnabled(<span class="keyword">true</span>);
positionSlider<span class="operator">-</span><span class="operator">></span>setMaximum(movie<span class="operator">.</span>frameCount());
movie<span class="operator">.</span>jumpToFrame(<span class="number">0</span>);
}
}
<span class="type">void</span> VideoPlayer<span class="operator">::</span>play()
{
<span class="keyword">switch</span>(movie<span class="operator">.</span>state()) {
<span class="keyword">case</span> <span class="type"><a href="qmovie.html">QMovie</a></span><span class="operator">::</span>NotRunning:
movie<span class="operator">.</span>start();
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qmovie.html">QMovie</a></span><span class="operator">::</span>Paused:
movie<span class="operator">.</span>setPaused(<span class="keyword">false</span>);
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qmovie.html">QMovie</a></span><span class="operator">::</span>Running:
movie<span class="operator">.</span>setPaused(<span class="keyword">true</span>);
<span class="keyword">break</span>;
}
}
<span class="type">void</span> VideoPlayer<span class="operator">::</span>movieStateChanged(<span class="type"><a href="qmovie.html">QMovie</a></span><span class="operator">::</span>MovieState state)
{
<span class="keyword">switch</span>(state) {
<span class="keyword">case</span> <span class="type"><a href="qmovie.html">QMovie</a></span><span class="operator">::</span>NotRunning:
<span class="keyword">case</span> <span class="type"><a href="qmovie.html">QMovie</a></span><span class="operator">::</span>Paused:
playButton<span class="operator">-</span><span class="operator">></span>setIcon(style()<span class="operator">-</span><span class="operator">></span>standardIcon(<span class="type"><a href="qstyle.html">QStyle</a></span><span class="operator">::</span>SP_MediaPlay));
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="type"><a href="qmovie.html">QMovie</a></span><span class="operator">::</span>Running:
playButton<span class="operator">-</span><span class="operator">></span>setIcon(style()<span class="operator">-</span><span class="operator">></span>standardIcon(<span class="type"><a href="qstyle.html">QStyle</a></span><span class="operator">::</span>SP_MediaPause));
<span class="keyword">break</span>;
}
}
<span class="type">void</span> VideoPlayer<span class="operator">::</span>frameChanged(<span class="type">int</span> frame)
{
<span class="keyword">if</span> (<span class="operator">!</span>presentImage(movie<span class="operator">.</span>currentImage())) {
movie<span class="operator">.</span>stop();
playButton<span class="operator">-</span><span class="operator">></span>setEnabled(<span class="keyword">false</span>);
positionSlider<span class="operator">-</span><span class="operator">></span>setMaximum(<span class="number">0</span>);
} <span class="keyword">else</span> {
positionSlider<span class="operator">-</span><span class="operator">></span>setValue(frame);
}
}
<span class="type">void</span> VideoPlayer<span class="operator">::</span>setPosition(<span class="type">int</span> frame)
{
movie<span class="operator">.</span>jumpToFrame(frame);
}
<span class="type">bool</span> VideoPlayer<span class="operator">::</span>presentImage(<span class="keyword">const</span> <span class="type"><a href="qimage.html">QImage</a></span> <span class="operator">&</span>image)
{
<span class="type"><a href="qvideoframe.html">QVideoFrame</a></span> frame(image);
<span class="keyword">if</span> (<span class="operator">!</span>frame<span class="operator">.</span>isValid())
<span class="keyword">return</span> <span class="keyword">false</span>;
<span class="type"><a href="qvideosurfaceformat.html">QVideoSurfaceFormat</a></span> currentFormat <span class="operator">=</span> surface<span class="operator">-</span><span class="operator">></span>surfaceFormat();
<span class="keyword">if</span> (frame<span class="operator">.</span>pixelFormat() <span class="operator">!</span><span class="operator">=</span> currentFormat<span class="operator">.</span>pixelFormat()
<span class="operator">|</span><span class="operator">|</span> frame<span class="operator">.</span>size() <span class="operator">!</span><span class="operator">=</span> currentFormat<span class="operator">.</span>frameSize()) {
<span class="type"><a href="qvideosurfaceformat.html">QVideoSurfaceFormat</a></span> format(frame<span class="operator">.</span>size()<span class="operator">,</span> frame<span class="operator">.</span>pixelFormat());
<span class="keyword">if</span> (<span class="operator">!</span>surface<span class="operator">-</span><span class="operator">></span>start(format))
<span class="keyword">return</span> <span class="keyword">false</span>;
}
<span class="keyword">if</span> (<span class="operator">!</span>surface<span class="operator">-</span><span class="operator">></span>present(frame)) {
surface<span class="operator">-</span><span class="operator">></span>stop();
<span class="keyword">return</span> <span class="keyword">false</span>;
} <span class="keyword">else</span> {
<span class="keyword">return</span> <span class="keyword">true</span>;
}
}</pre>
</div>
<!-- @@@multimedia/videowidget/videoplayer.cpp -->
</div>
</div>
</div>
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2012 Digia Plc and/or its
subsidiaries. Documentation contributions included herein are the copyrights of
their respective owners.</p>
<br />
<p>
The documentation provided herein is licensed under the terms of the
<a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation
License version 1.3</a> as published by the Free Software Foundation.</p>
<p>
Documentation sources may be obtained from <a href="http://www.qt-project.org">
www.qt-project.org</a>.</p>
<br />
<p>
Digia, Qt and their respective logos are trademarks of Digia Plc
in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. <a title="Privacy Policy"
href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p>
</div>
<script src="scripts/functions.js" type="text/javascript"></script>
</body>
</html>
|
html-docs/contents/a74404c6a6413fee2a8ea97e80b32793.html | jiangbo212/netty-init | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>length</title>
<!-- <script src="http://use.edgefonts.net/source-sans-pro;source-code-pro.js"></script> -->
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic|Source+Code+Pro:300,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="../assets/css/bootstrap.css">
<link rel="stylesheet" href="../assets/css/jquery.bonsai.css">
<link rel="stylesheet" href="../assets/css/main.css">
<link rel="stylesheet" href="../assets/css/icons.css">
<script type="text/javascript" src="../assets/js/jquery-2.1.0.min.js"></script>
<script type="text/javascript" src="../assets/js/bootstrap.js"></script>
<script type="text/javascript" src="../assets/js/jquery.bonsai.js"></script>
<!-- <script type="text/javascript" src="../assets/js/main.js"></script> -->
</head>
<body>
<div>
<!-- Name Title -->
<h1>length</h1>
<!-- Type and Stereotype -->
<section style="margin-top: .5em;">
<span class="alert alert-info">
<span class="node-icon _icon-UMLParameter"></span>
UMLParameter
</span>
</section>
<!-- Path -->
<section style="margin-top: 10px">
<span class="label label-info"><a href='cf9c8b720f3815adeccaf3ef6e48c6c4.html'><span class='node-icon _icon-Project'></span>Untitled</a></span>
<span>::</span>
<span class="label label-info"><a href='6550300e57d7fc770bd2e9afbcdb3ecb.html'><span class='node-icon _icon-UMLModel'></span>JavaReverse</a></span>
<span>::</span>
<span class="label label-info"><a href='7ff2d96ca3eb7f62f48c1a30b3c7c990.html'><span class='node-icon _icon-UMLPackage'></span>net</a></span>
<span>::</span>
<span class="label label-info"><a href='7adc4be4f2e4859086f068fc27512d85.html'><span class='node-icon _icon-UMLPackage'></span>gleamynode</a></span>
<span>::</span>
<span class="label label-info"><a href='bb15307bdbbaf31bfef4f71be74150ae.html'><span class='node-icon _icon-UMLPackage'></span>netty</a></span>
<span>::</span>
<span class="label label-info"><a href='13ebeea6c90c35d72f303d2d478d584e.html'><span class='node-icon _icon-UMLPackage'></span>buffer</a></span>
<span>::</span>
<span class="label label-info"><a href='e61320e86bd03ed03e8ba9b1629ac337.html'><span class='node-icon _icon-UMLClass'></span>ReadOnlyChannelBuffer</a></span>
<span>::</span>
<span class="label label-info"><a href='e746b558500849546f80e203ba549a4f.html'><span class='node-icon _icon-UMLOperation'></span>setBytes</a></span>
<span>::</span>
<span class="label label-info"><a href='a74404c6a6413fee2a8ea97e80b32793.html'><span class='node-icon _icon-UMLParameter'></span>length</a></span>
</section>
<!-- Diagram -->
<!-- Description -->
<section>
<h3>Description</h3>
<div>
<span class="label label-info">none</span>
</div>
</section>
<!-- Specification -->
<!-- Directed Relationship -->
<!-- Undirected Relationship -->
<!-- Classifier -->
<!-- Interface -->
<!-- Component -->
<!-- Node -->
<!-- Actor -->
<!-- Use Case -->
<!-- Template Parameters -->
<!-- Literals -->
<!-- Attributes -->
<!-- Operations -->
<!-- Receptions -->
<!-- Extension Points -->
<!-- Parameters -->
<!-- Diagrams -->
<!-- Behavior -->
<!-- Action -->
<!-- Interaction -->
<!-- CombinedFragment -->
<!-- Activity -->
<!-- State Machine -->
<!-- State Machine -->
<!-- State -->
<!-- Vertex -->
<!-- Transition -->
<!-- Properties -->
<section>
<h3>Properties</h3>
<table class="table table-striped table-bordered">
<tr>
<th width="50%">Name</th>
<th width="50%">Value</th>
</tr>
<tr>
<td>name</td>
<td>length</td>
</tr>
<tr>
<td>stereotype</td>
<td><span class='label label-info'>null</span></td>
</tr>
<tr>
<td>visibility</td>
<td>public</td>
</tr>
<tr>
<td>isStatic</td>
<td><span class='label label-info'>false</span></td>
</tr>
<tr>
<td>isLeaf</td>
<td><span class='label label-info'>false</span></td>
</tr>
<tr>
<td>type</td>
<td>int</td>
</tr>
<tr>
<td>multiplicity</td>
<td></td>
</tr>
<tr>
<td>isReadOnly</td>
<td><span class='label label-info'>false</span></td>
</tr>
<tr>
<td>isOrdered</td>
<td><span class='label label-info'>false</span></td>
</tr>
<tr>
<td>isUnique</td>
<td><span class='label label-info'>false</span></td>
</tr>
<tr>
<td>defaultValue</td>
<td></td>
</tr>
<tr>
<td>direction</td>
<td>in</td>
</tr>
</table>
</section>
<!-- Tags -->
<!-- Constraints, Dependencies, Dependants -->
<!-- Relationships -->
<!-- Owned Elements -->
</div>
</body>
</html>
|
sdk/dox/html/classFileTranslation-members.html | einon/affymetrix-power-tools | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Affymetrix Power Tools: Member List</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.7.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="dirs.html"><span>Directories</span></a></li>
</ul>
</div>
<div class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<h1>FileTranslation Member List</h1> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="classFileTranslation.html">FileTranslation</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#a0e893db3ac4747747286bccde8c3b375">addProbe</a>(int pId)</td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td><code> [inline]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#ae0d817a2ca7acd094272b2acee5d9bb6">addProbe</a>(int pId, int offset)</td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td><code> [inline]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#ae7f6921900d9b62520b6fdd0ea04ae6a">calcDimensions</a>(int totalProbes)</td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td><code> [inline]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#a1e8f8fdc9f2f185bdd34d91575eb3481">chipType</a></td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#ac59f1e3f251e3be212cdc6c28af4e80b">FileTranslation</a>()</td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td><code> [inline]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#a639aa27b6fac6b103949a8772e0e6782">fillInFromProbeSets</a>(ChipLayout &layout)</td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td><code> [inline]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#aa8284bc3cbb0a76c4a65b9ca1fd71904">keepProbeSets</a></td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>magicOrder</b> (defined in <a class="el" href="classFileTranslation.html">FileTranslation</a>)</td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>magicOrderMap</b> (defined in <a class="el" href="classFileTranslation.html">FileTranslation</a>)</td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>magicOrderTranslation</b> (defined in <a class="el" href="classFileTranslation.html">FileTranslation</a>)</td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#ae0e52aa1bc861fb2d8aaf9122d7fed71">nCol</a></td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#ad7069e52df154347cceeac8fea32887a">nRow</a></td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#a0fdf172538ee10b8079808ab09af7d42">pOffset</a></td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#a0097479d0377e9a337da27340cf7aaca">probeField</a></td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#af93deb375ba0f1fe6fb86fc58a90b281">probeMask</a></td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#aa56e0024afb76bf782791f1061b7daed">probeSetField</a></td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="classFileTranslation.html#ad0999f104cd0c8cc2f616b47eb11c877">totalProbes</a></td><td><a class="el" href="classFileTranslation.html">FileTranslation</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>Generated on Fri Mar 20 2015 18:03:44 for Affymetrix Power Tools by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.1 </small></address>
</body>
</html>
|
csound/html/examples/zkwm.csd.html | gogins/gogins.github.io | <html>
<head>
<title>Minimal Example using Csound for WebAssembly</title>
<script src="csound.js"></script>
</head>
<body>
<script>
var handleMessage = function(message) {
var messages_textarea = document.getElementById("console");
var existing = messages_textarea.value;
messages_textarea.value = existing + '\n' + message;
messages_textarea.scrollTop = messages_textarea.scrollHeight;
}
var moduleDidLoad = function() {
document.getElementById('console').value += 'moduleDidLoad was called; Csound functions may now be called.';
console.warn = handleMessage;
}
var onPlayClick = function() {
var csd = document.getElementById('csd').value;
csound.compileCsdText(csd);
csound.start();
csound.perform();
}
var onPlayStop = function() {
csound.stop();
}
</script>
<h1>zkwm</h1>
<p>
This example will play if your Web browser is a desktop version of Google Chrome with WebAssembly enabled. You can edit and replay the code. At this time, most but not all examples will run in WebAssembly.
</p>
<p>
<input type="button" value="Play" onclick="onPlayClick()"/>
<input type="button" value="Stop" onclick="onPlayStop()"/>
<p>
<textarea id="csd" style="width: 100%; height: 50%;font-size:12px;"><CsoundSynthesizer>
<CsOptions>
; Select audio/midi flags here according to platform
; Audio out Audio in No messages
-odac -iadc -d ;;;RT audio I/O
; For Non-realtime ouput leave only the line below:
; -o zkwm.wav -W ;;; for file output any platform
</CsOptions>
<CsInstruments>
; Initialize the global variables.
sr = 44100
kr = 4410
ksmps = 10
nchnls = 2 ; Changed for WebAssembly output from: = 1
; Initialize the ZAK space.
; Create 1 a-rate variable and 1 k-rate variable.
zakinit 1, 1
; Instrument #1 -- a basic instrument.
instr 1
; Generate a k-rate signal.
; The signal goes from 30 to 20,000 then back to 30.
kramp linseg 30, p3/2, 20000, p3/2, 30
; Mix the signal into the zk variable #1.
zkwm kramp, 1
endin
; Instrument #2 -- another basic instrument.
instr 2
; Generate another k-rate signal.
; This is a low frequency oscillator.
klfo lfo 3500, 2
; Mix this signal into the zk variable #1.
zkwm klfo, 1
endin
; Instrument #3 -- generates audio output.
instr 3
; Read zk variable #1, containing a mix of both signals.
kamp zkr 1
; Create a sine waveform. Its amplitude will vary
; according to the values in zk variable #1.
a1 oscil kamp, 880, 1
; Generate the audio output.
out a1
; Clear the zk variable, get it ready for
; another pass.
zkcl 0, 1
endin
</CsInstruments>
<CsScore>
; Table #1, a sine wave.
f 1 0 16384 10 1
; Play Instrument #1 for 5 seconds.
i 1 0 5
; Play Instrument #2 for 5 seconds.
i 2 0 5
; Play Instrument #3 for 5 seconds.
i 3 0 5
e
</CsScore>
</CsoundSynthesizer>
</textarea>
<h3>Csound Messages</h3>
<textarea id="console" readonly style="width: 100%; height: 25%;font-size:12px;">
</textarea>
</body>
</html> |
reader/xref/org/accada/reader/rprm/core/mgmt/alarm/AlarmProcessor.html | Fosstrak/fosstrak.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<title>AlarmProcessor xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../../../../apidocs/org/accada/reader/rprm/core/mgmt/alarm/AlarmProcessor.html">View Javadoc</a></div><pre>
<a name="1" href="#1">1</a> <em class="jxr_comment">/*</em>
<a name="2" href="#2">2</a> <em class="jxr_comment"> * Copyright (C) 2007 ETH Zurich</em>
<a name="3" href="#3">3</a> <em class="jxr_comment"> *</em>
<a name="4" href="#4">4</a> <em class="jxr_comment"> * This file is part of Accada (www.accada.org).</em>
<a name="5" href="#5">5</a> <em class="jxr_comment"> *</em>
<a name="6" href="#6">6</a> <em class="jxr_comment"> * Accada is free software; you can redistribute it and/or</em>
<a name="7" href="#7">7</a> <em class="jxr_comment"> * modify it under the terms of the GNU Lesser General Public</em>
<a name="8" href="#8">8</a> <em class="jxr_comment"> * License version 2.1, as published by the Free Software Foundation.</em>
<a name="9" href="#9">9</a> <em class="jxr_comment"> *</em>
<a name="10" href="#10">10</a> <em class="jxr_comment"> * Accada is distributed in the hope that it will be useful,</em>
<a name="11" href="#11">11</a> <em class="jxr_comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</em>
<a name="12" href="#12">12</a> <em class="jxr_comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</em>
<a name="13" href="#13">13</a> <em class="jxr_comment"> * Lesser General Public License for more details.</em>
<a name="14" href="#14">14</a> <em class="jxr_comment"> *</em>
<a name="15" href="#15">15</a> <em class="jxr_comment"> * You should have received a copy of the GNU Lesser General Public</em>
<a name="16" href="#16">16</a> <em class="jxr_comment"> * License along with Accada; if not, write to the Free</em>
<a name="17" href="#17">17</a> <em class="jxr_comment"> * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,</em>
<a name="18" href="#18">18</a> <em class="jxr_comment"> * Boston, MA 02110-1301 USA</em>
<a name="19" href="#19">19</a> <em class="jxr_comment"> */</em>
<a name="20" href="#20">20</a>
<a name="21" href="#21">21</a> <strong class="jxr_keyword">package</strong> org.accada.reader.rprm.core.mgmt.alarm;
<a name="22" href="#22">22</a>
<a name="23" href="#23">23</a> <em class="jxr_javadoccomment">/**</em>
<a name="24" href="#24">24</a> <em class="jxr_javadoccomment"> * Defines an interface for classes that can be used to process</em>
<a name="25" href="#25">25</a> <em class="jxr_javadoccomment"> * <code>Alarm</code> objects.</em>
<a name="26" href="#26">26</a> <em class="jxr_javadoccomment"> */</em>
<a name="27" href="#27">27</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../../org/accada/reader/rprm/core/mgmt/alarm/AlarmProcessor.html">AlarmProcessor</a> {
<a name="28" href="#28">28</a>
<a name="29" href="#29">29</a> <em class="jxr_javadoccomment">/**</em>
<a name="30" href="#30">30</a> <em class="jxr_javadoccomment"> * Processes an <code>Alarm</code> object.</em>
<a name="31" href="#31">31</a> <em class="jxr_javadoccomment"> * </em>
<a name="32" href="#32">32</a> <em class="jxr_javadoccomment"> * @param alarm</em>
<a name="33" href="#33">33</a> <em class="jxr_javadoccomment"> * The <code>Alarm</code> object</em>
<a name="34" href="#34">34</a> <em class="jxr_javadoccomment"> */</em>
<a name="35" href="#35">35</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> process(<a href="../../../../../../../org/accada/reader/rprm/core/mgmt/alarm/Alarm.html">Alarm</a> alarm);
<a name="36" href="#36">36</a>
<a name="37" href="#37">37</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
|
sdk/dox/html/CHPFileConverterErrorCode_8h_source.html | einon/affymetrix-power-tools | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Affymetrix Power Tools: calvin_files/converters/chp/src/CHPFileConverterErrorCode.h Source File</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.7.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</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>
<li><a href="dirs.html"><span>Directories</span></a></li>
</ul>
</div>
<div class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
<div class="navpath">
<ul>
<li><a class="el" href="dir_ea39ae8f86ad78ea6fa1bfc1ed8c4ad6.html">calvin_files</a> </li>
<li><a class="el" href="dir_b7f9678479af877921b42aa1c70bd68c.html">converters</a> </li>
<li><a class="el" href="dir_2ba057b4ec54ea88f4e0cee42819cb20.html">chp</a> </li>
<li><a class="el" href="dir_19cd67cc8aed80b3d3ea3c0ee354e51b.html">src</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<h1>CHPFileConverterErrorCode.h</h1> </div>
</div>
<div class="contents">
<div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">////////////////////////////////////////////////////////////////</span>
<a name="l00002"></a>00002 <span class="comment"></span><span class="comment">//</span>
<a name="l00003"></a>00003 <span class="comment">// Copyright (C) 2005 Affymetrix, Inc.</span>
<a name="l00004"></a>00004 <span class="comment">//</span>
<a name="l00005"></a>00005 <span class="comment">// This library is free software; you can redistribute it and/or modify</span>
<a name="l00006"></a>00006 <span class="comment">// it under the terms of the GNU Lesser General Public License </span>
<a name="l00007"></a>00007 <span class="comment">// (version 2.1) as published by the Free Software Foundation.</span>
<a name="l00008"></a>00008 <span class="comment">// </span>
<a name="l00009"></a>00009 <span class="comment">// This library is distributed in the hope that it will be useful, but</span>
<a name="l00010"></a>00010 <span class="comment">// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY</span>
<a name="l00011"></a>00011 <span class="comment">// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License</span>
<a name="l00012"></a>00012 <span class="comment">// for more details.</span>
<a name="l00013"></a>00013 <span class="comment">// </span>
<a name="l00014"></a>00014 <span class="comment">// You should have received a copy of the GNU Lesser General Public License</span>
<a name="l00015"></a>00015 <span class="comment">// along with this library; if not, write to the Free Software Foundation, Inc.,</span>
<a name="l00016"></a>00016 <span class="comment">// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA </span>
<a name="l00017"></a>00017 <span class="comment">//</span><span class="comment"></span>
<a name="l00018"></a>00018 <span class="comment">////////////////////////////////////////////////////////////////</span>
<a name="l00019"></a>00019 <span class="comment"></span>
<a name="l00020"></a>00020
<a name="l00021"></a>00021 <span class="preprocessor">#ifndef _CHPFileConverterErrorCode_HEADER_</span>
<a name="l00022"></a>00022 <span class="preprocessor"></span><span class="preprocessor">#define _CHPFileConverterErrorCode_HEADER_</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="comment"></span>
<a name="l00024"></a>00024 <span class="comment">/*! file CHPFileConverterErrorCode.h Defines error codes for converting CHP files. */</span>
<a name="l00025"></a>00025
<a name="l00026"></a>00026 <span class="preprocessor">#include <cstring></span>
<a name="l00027"></a>00027 <span class="preprocessor">#include <string></span>
<a name="l00028"></a>00028 <span class="comment">//</span>
<a name="l00029"></a>00029
<a name="l00030"></a>00030 <span class="keyword">namespace </span>affymetrix_chp_converter
<a name="l00031"></a>00031 {
<a name="l00032"></a>00032 <span class="comment"></span>
<a name="l00033"></a>00033 <span class="comment">/*! Error codes for the conversion process. */</span>
<a name="l00034"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175">00034</a> <span class="keyword">typedef</span> <span class="keyword">enum</span> <a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175">_CHPFileConverterErrorCode</a>
<a name="l00035"></a>00035 {<span class="comment"></span>
<a name="l00036"></a>00036 <span class="comment"> /*! No error. */</span>
<a name="l00037"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175a2435757615d8b785c3f9bd014bf90c8e">00037</a> NoConversionError,
<a name="l00038"></a>00038 <span class="comment"></span>
<a name="l00039"></a>00039 <span class="comment"> /*! Invalid inputs. */</span>
<a name="l00040"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175aeffe823bbab403f387bfc65f9fef0a5a">00040</a> InvalidConversionInputs,
<a name="l00041"></a>00041 <span class="comment"></span>
<a name="l00042"></a>00042 <span class="comment"> /*! The file does not exist. */</span>
<a name="l00043"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175ab5e57fbe98874f75984db0609a7b1e57">00043</a> FileDoesNotExist,
<a name="l00044"></a>00044 <span class="comment"></span>
<a name="l00045"></a>00045 <span class="comment"> /*! Unable to open the input CHP file. */</span>
<a name="l00046"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175a1664c6e7f1ae9bd220ad976b374e4c9d">00046</a> UnableToOpenChpFile,
<a name="l00047"></a>00047 <span class="comment"></span>
<a name="l00048"></a>00048 <span class="comment"> /*! The format is not valid. */</span>
<a name="l00049"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175a93d5aa07abddbbd9be686f08be0efce3">00049</a> InvalidChpFileFormat,
<a name="l00050"></a>00050 <span class="comment"></span>
<a name="l00051"></a>00051 <span class="comment"> /*! Unable to rename the input file before the conversion process. */</span>
<a name="l00052"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175a1d04833df544f5e7dfaaa9b98f2b8333">00052</a> UnableToRenameInputFile,
<a name="l00053"></a>00053 <span class="comment"></span>
<a name="l00054"></a>00054 <span class="comment"> /*! Unable to read the probe set names from the PSI file or CDF file. */</span>
<a name="l00055"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175aa75e3600e6e35d831b6c3b1cf1b7e9f9">00055</a> UnableToLoadProbeSetNames,
<a name="l00056"></a>00056 <span class="comment"></span>
<a name="l00057"></a>00057 <span class="comment"> /*! Unable to write the output file. */</span>
<a name="l00058"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175a84da311adde1441910f5808d0af3fa5b">00058</a> UnableToWriteTheFile,
<a name="l00059"></a>00059 <span class="comment"></span>
<a name="l00060"></a>00060 <span class="comment"> /*! Unable to open the parent cel file. */</span>
<a name="l00061"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175afefba567257690981ddc9f4c2c26deab">00061</a> UnableToOpenParentCelFile,
<a name="l00062"></a>00062 <span class="comment"></span>
<a name="l00063"></a>00063 <span class="comment"> /*! Unable to read the CDF file. */</span>
<a name="l00064"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175a55d5c393e4bc7ba4e615cd6a0ead92d6">00064</a> UnableToReadCdfFile,
<a name="l00065"></a>00065 <span class="comment"></span>
<a name="l00066"></a>00066 <span class="comment"> /*! Unable to convert a CHP based on the algorithm. */</span>
<a name="l00067"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175a1f86e33526ce96e5829e84e4c8c6691e">00067</a> InvalidAlgorithmType,
<a name="l00068"></a>00068 <span class="comment"></span>
<a name="l00069"></a>00069 <span class="comment"> /*! Unable to convert a CHP based on the assay type. */</span>
<a name="l00070"></a><a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175a0681c45fdd2e1df583509d7b3457b079">00070</a> <a class="code" href="namespaceaffymetrix__chp__converter.html#a17454fbd62abcae7b0186d7a51c8d175a0681c45fdd2e1df583509d7b3457b079">InvalidAssayType</a>
<a name="l00071"></a>00071
<a name="l00072"></a>00072 } CHPFileConverterErrorCode;
<a name="l00073"></a>00073 <span class="comment"></span>
<a name="l00074"></a>00074 <span class="comment">/*! Gets a string message associated with the error code.</span>
<a name="l00075"></a>00075 <span class="comment"> * @param code The error code.</span>
<a name="l00076"></a>00076 <span class="comment"> * @return A string describing the error.</span>
<a name="l00077"></a>00077 <span class="comment"> */</span>
<a name="l00078"></a>00078 std::string <a class="code" href="namespaceaffymetrix__chp__converter.html#a890f17227a203ddd35c8a994a6cf346d">CHPFileConverterErrorMessage</a>(<a class="code" href="namespaceaffymetrix__chp__converter.html#a644f072e54b7956357bc99eae5e10266">CHPFileConverterErrorCode</a> code);
<a name="l00079"></a>00079
<a name="l00080"></a>00080 }
<a name="l00081"></a>00081
<a name="l00082"></a>00082 <span class="preprocessor">#endif</span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Fri Mar 20 2015 18:02:57 for Affymetrix Power Tools by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.1 </small></address>
</body>
</html>
|
sdk/dox/html/ProbesetGenotypeStageEngine_8h_source.html | einon/affymetrix-power-tools | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Affymetrix Power Tools: chipstream/apt-data-step/ProbesetGenotypeStageEngine.h Source File</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.7.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</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>
<li><a href="dirs.html"><span>Directories</span></a></li>
</ul>
</div>
<div class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
<div class="navpath">
<ul>
<li><a class="el" href="dir_1fd5ffe32193b44a43b3e406414c9a55.html">chipstream</a> </li>
<li><a class="el" href="dir_7fd59d2c0dd8a46e92c4a94bbd739330.html">apt-data-step</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<h1>ProbesetGenotypeStageEngine.h</h1> </div>
</div>
<div class="contents">
<a href="ProbesetGenotypeStageEngine_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">////////////////////////////////////////////////////////////////</span>
<a name="l00002"></a>00002 <span class="comment"></span><span class="comment">//</span>
<a name="l00003"></a>00003 <span class="comment">// Copyright (C) 2005 Affymetrix, Inc.</span>
<a name="l00004"></a>00004 <span class="comment">//</span>
<a name="l00005"></a>00005 <span class="comment">// This program is free software; you can redistribute it and/or modify </span>
<a name="l00006"></a>00006 <span class="comment">// it under the terms of the GNU General Public License (version 2) as </span>
<a name="l00007"></a>00007 <span class="comment">// published by the Free Software Foundation.</span>
<a name="l00008"></a>00008 <span class="comment">// </span>
<a name="l00009"></a>00009 <span class="comment">// This program is distributed in the hope that it will be useful, </span>
<a name="l00010"></a>00010 <span class="comment">// but WITHOUT ANY WARRANTY; without even the implied warranty of </span>
<a name="l00011"></a>00011 <span class="comment">// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU </span>
<a name="l00012"></a>00012 <span class="comment">// General Public License for more details.</span>
<a name="l00013"></a>00013 <span class="comment">// </span>
<a name="l00014"></a>00014 <span class="comment">// You should have received a copy of the GNU General Public License </span>
<a name="l00015"></a>00015 <span class="comment">// along with this program;if not, write to the </span>
<a name="l00016"></a>00016 <span class="comment">// </span>
<a name="l00017"></a>00017 <span class="comment">// Free Software Foundation, Inc., </span>
<a name="l00018"></a>00018 <span class="comment">// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</span>
<a name="l00019"></a>00019 <span class="comment">//</span><span class="comment"></span>
<a name="l00020"></a>00020 <span class="comment">////////////////////////////////////////////////////////////////</span>
<a name="l00021"></a>00021 <span class="comment"></span><span class="comment"></span>
<a name="l00022"></a>00022 <span class="comment">/**</span>
<a name="l00023"></a>00023 <span class="comment"> * @file ProbesetGenotypeStageEngine.h</span>
<a name="l00024"></a>00024 <span class="comment"> * @author Chuck Sugnet</span>
<a name="l00025"></a>00025 <span class="comment"> * @date Wed Mar 22 16:01:09 2006</span>
<a name="l00026"></a>00026 <span class="comment"> * </span>
<a name="l00027"></a>00027 <span class="comment"> * @brief Core routines for probeset-genotype binaries. By separating the</span>
<a name="l00028"></a>00028 <span class="comment"> * command line parsing form the computation we allow a GUI application to share</span>
<a name="l00029"></a>00029 <span class="comment"> * the core computation once setting up the option class. To run the algorithm</span>
<a name="l00030"></a>00030 <span class="comment"> * setup the Options class appropriately for a particular run (i.e. specify</span>
<a name="l00031"></a>00031 <span class="comment"> * files and parameters) then call probesetGenotype() to perform analysis.</span>
<a name="l00032"></a>00032 <span class="comment"> */</span>
<a name="l00033"></a>00033
<a name="l00034"></a>00034 <span class="preprocessor">#ifndef _PROBESETGENOTYPEENGINE_H_</span>
<a name="l00035"></a>00035 <span class="preprocessor"></span><span class="preprocessor">#define _PROBESETGENOTYPEENGINE_H_</span>
<a name="l00036"></a>00036 <span class="preprocessor"></span>
<a name="l00037"></a>00037 <span class="comment">//</span>
<a name="l00038"></a>00038 <span class="preprocessor">#include "<a class="code" href="AnalysisStreamFactory_8h.html" title="Object for making new analysis streams.">chipstream/AnalysisStreamFactory.h</a>"</span>
<a name="l00039"></a>00039 <span class="preprocessor">#include "<a class="code" href="AptTypes_8h.html" title="These types are common in the APT code. Collect them here for use by the rest of the code...">chipstream/AptTypes.h</a>"</span>
<a name="l00040"></a>00040 <span class="preprocessor">#include "chipstream/CelStatListener.h"</span>
<a name="l00041"></a>00041 <span class="preprocessor">#include "chipstream/ChipLayout.h"</span>
<a name="l00042"></a>00042 <span class="preprocessor">#include "chipstream/GenderCalls.h"</span>
<a name="l00043"></a>00043 <span class="preprocessor">#include "<a class="code" href="GenoSeed_8h.html" title="Abstract interface for a genotyping oracle used for genotyping seeds in brlmm. Originally seed calls ...">chipstream/GenoSeed.h</a>"</span>
<a name="l00044"></a>00044 <span class="preprocessor">#include "chipstream/InbredStatus.h"</span>
<a name="l00045"></a>00045 <span class="preprocessor">#include "chipstream/MetaProbeset.h"</span>
<a name="l00046"></a>00046 <span class="preprocessor">#include "chipstream/ProbeListFactory.h"</span>
<a name="l00047"></a>00047 <span class="preprocessor">#include "<a class="code" href="QuantBRLMM_8h.html">chipstream/QuantBRLMM.h</a>"</span>
<a name="l00048"></a>00048 <span class="preprocessor">#include "<a class="code" href="QuantLabelZ_8h.html">chipstream/QuantLabelZ.h</a>"</span>
<a name="l00049"></a>00049 <span class="preprocessor">#include "<a class="code" href="SpecialSnps_8h.html">chipstream/SpecialSnps.h</a>"</span>
<a name="l00050"></a>00050 <span class="preprocessor">#include "<a class="code" href="BaseEngine_8h.html" title="base engine base class">util/BaseEngine.h</a>"</span>
<a name="l00051"></a>00051 <span class="comment">//</span>
<a name="l00052"></a>00052 <span class="preprocessor">#include <cstring></span>
<a name="l00053"></a>00053 <span class="preprocessor">#include <ctime></span>
<a name="l00054"></a>00054 <span class="preprocessor">#include <ostream></span>
<a name="l00055"></a>00055 <span class="preprocessor">#include <string></span>
<a name="l00056"></a>00056 <span class="preprocessor">#include <vector></span>
<a name="l00057"></a>00057
<a name="l00058"></a><a class="code" href="classProbesetGenotypeStageEngine.html">00058</a> <span class="keyword">class </span><a class="code" href="classProbesetGenotypeStageEngine.html">ProbesetGenotypeStageEngine</a> : <span class="keyword">public</span> <a class="code" href="classBaseEngine.html" title="Base class for analysis engines.">BaseEngine</a> {
<a name="l00059"></a>00059
<a name="l00060"></a>00060 <span class="keyword">public</span>:
<a name="l00061"></a>00061
<a name="l00062"></a>00062 <span class="keyword">virtual</span> std::string getEngineName() { <span class="keywordflow">return</span> ProbesetGenotypeStageEngine::EngineName(); }
<a name="l00063"></a>00063 <span class="keyword">static</span> <span class="keyword">const</span> std::string EngineName() { <span class="keywordflow">return</span> <span class="stringliteral">"ProbesetGenotypeStageEngine"</span>; }<span class="comment"></span>
<a name="l00064"></a>00064 <span class="comment"> /**</span>
<a name="l00065"></a>00065 <span class="comment"> * Constructor</span>
<a name="l00066"></a>00066 <span class="comment"> */</span>
<a name="l00067"></a>00067 <a class="code" href="classProbesetGenotypeStageEngine.html#a2b37addfac89752621645984a60173e4" title="Constructor.">ProbesetGenotypeStageEngine</a>(
<a name="l00068"></a>00068 <a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> *chipLayout = NULL,
<a name="l00069"></a>00069 std::vector<const char *> *probesetNames = NULL);
<a name="l00070"></a>00070 <span class="comment"></span>
<a name="l00071"></a>00071 <span class="comment"> /**</span>
<a name="l00072"></a>00072 <span class="comment"> * Destructor</span>
<a name="l00073"></a>00073 <span class="comment"> */</span>
<a name="l00074"></a>00074 <a class="code" href="classProbesetGenotypeStageEngine.html#a5d543df52d60039be1c17d086304f847" title="Destructor.">~ProbesetGenotypeStageEngine</a>();
<a name="l00075"></a>00075 <span class="comment"></span>
<a name="l00076"></a>00076 <span class="comment"> /*! A class to register the engine. */</span>
<a name="l00077"></a><a class="code" href="classProbesetGenotypeStageEngine_1_1Reg.html">00077</a> <span class="keyword">class </span><a class="code" href="classProbesetGenotypeStageEngine_1_1Reg.html">Reg</a> : <span class="keyword">public</span> <a class="code" href="classEngineReg.html">EngineReg</a> {
<a name="l00078"></a>00078 <span class="keyword">public</span>:<span class="comment"></span>
<a name="l00079"></a>00079 <span class="comment"> /*! Constructor - register the engine. */</span>
<a name="l00080"></a><a class="code" href="classProbesetGenotypeStageEngine_1_1Reg.html#a4756bad7620f8cdf1eb4601bd87adfd6">00080</a> <a class="code" href="classProbesetGenotypeStageEngine_1_1Reg.html#a4756bad7620f8cdf1eb4601bd87adfd6">Reg</a>() : <a class="code" href="classEngineReg.html">EngineReg</a>(<a class="code" href="classProbesetGenotypeStageEngine.html">ProbesetGenotypeStageEngine</a>::EngineName()) { }
<a name="l00081"></a>00081 <span class="comment"></span>
<a name="l00082"></a>00082 <span class="comment"> /*! Creates an object.</span>
<a name="l00083"></a>00083 <span class="comment"> * @return The object.</span>
<a name="l00084"></a>00084 <span class="comment"> */</span>
<a name="l00085"></a><a class="code" href="classProbesetGenotypeStageEngine_1_1Reg.html#a079eea96509959a6496e810e13af4aa1">00085</a> <a class="code" href="classBaseEngine.html" title="Base class for analysis engines.">BaseEngine</a> *<a class="code" href="classProbesetGenotypeStageEngine_1_1Reg.html#a079eea96509959a6496e810e13af4aa1">MakeObject</a>() { <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code" href="classProbesetGenotypeStageEngine.html">ProbesetGenotypeStageEngine</a>; }
<a name="l00086"></a>00086 };
<a name="l00087"></a>00087 <span class="comment"></span>
<a name="l00088"></a>00088 <span class="comment"> /*! The one and only registration object. */</span>
<a name="l00089"></a><a class="code" href="classProbesetGenotypeStageEngine.html#a50d7a2c29002314c6f198ec78ac38c94">00089</a> <span class="keyword">static</span> <a class="code" href="classProbesetGenotypeStageEngine_1_1Reg.html">Reg</a> <a class="code" href="classProbesetGenotypeStageEngine.html#a50d7a2c29002314c6f198ec78ac38c94">reg</a>;
<a name="l00090"></a>00090 <span class="comment"></span>
<a name="l00091"></a>00091 <span class="comment"> /*! Converts the type to the engine type.</span>
<a name="l00092"></a>00092 <span class="comment"> * @param chip The pointer to the base engine object.</span>
<a name="l00093"></a>00093 <span class="comment"> * @return The engine type or NULL if not compatible.</span>
<a name="l00094"></a>00094 <span class="comment"> */</span>
<a name="l00095"></a>00095 <span class="keyword">static</span> <a class="code" href="classProbesetGenotypeStageEngine.html">ProbesetGenotypeStageEngine</a> * <a class="code" href="classProbesetGenotypeStageEngine.html#a9cf4dd3715bc5a74beb598f4b5333cc9">FromBase</a>(<a class="code" href="classBaseEngine.html" title="Base class for analysis engines.">BaseEngine</a> *engine);
<a name="l00096"></a>00096 <span class="comment"></span>
<a name="l00097"></a>00097 <span class="comment"> /**</span>
<a name="l00098"></a>00098 <span class="comment"> * Compare needed disk space to available disk space</span>
<a name="l00099"></a>00099 <span class="comment"> */</span>
<a name="l00100"></a>00100
<a name="l00101"></a>00101
<a name="l00102"></a>00102 <span class="keyword">private</span>:
<a name="l00103"></a>00103
<a name="l00104"></a>00104 <span class="keywordtype">void</span> defineOptions();
<a name="l00105"></a>00105 <span class="keywordtype">void</span> defineStates();
<a name="l00106"></a>00106 <span class="keywordtype">void</span> defineStdMethods();
<a name="l00107"></a>00107 <span class="keywordtype">void</span> checkOptionsImp();
<a name="l00108"></a>00108 <span class="keywordtype">void</span> checkDiskSpaceImp();
<a name="l00109"></a>00109 <span class="keywordtype">void</span> checkBirdseedTsvPriorFile(<span class="keyword">const</span> std::string &path, <span class="keyword">const</span> std::string &specialSnpType);
<a name="l00110"></a>00110 <span class="keywordtype">void</span> checkSnpLists(<span class="keyword">const</span> std::map<std::string,bool> &haploidSnps, <a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> *layout);
<a name="l00111"></a>00111 <span class="keywordtype">int</span> DetectNeedForSeeds(std::vector<AnalysisStream *> analysis);
<a name="l00112"></a>00112 <span class="keywordtype">void</span> runImp();
<a name="l00113"></a>00113 <span class="keywordtype">void</span> reportBasics();
<a name="l00114"></a>00114 <span class="keywordtype">void</span> extraHelp();
<a name="l00115"></a>00115 <span class="keywordtype">void</span> explain();
<a name="l00116"></a>00116 <span class="keywordtype">void</span> printStandardMethods(std::ostream &out);
<a name="l00117"></a>00117
<a name="l00118"></a>00118 <span class="keywordtype">void</span> loadPSFile(<span class="keyword">const</span> std::string &fileName,
<a name="l00119"></a>00119 std::vector<const char *> *vNames,
<a name="l00120"></a>00120 std::set<const char *, Util::ltstr> *sNames);
<a name="l00121"></a>00121 <span class="keywordtype">void</span> loadLayout(<a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> &layout,
<a name="l00122"></a>00122 std::vector<const char *> &probesetNames,
<a name="l00123"></a>00123 probeidmap_t &killList,
<a name="l00124"></a>00124 <span class="keywordtype">bool</span> justStats,
<a name="l00125"></a>00125 std::set<affxcdf::GeneChipProbeSetType> &psTypesToLoad);
<a name="l00126"></a>00126 <span class="keywordtype">void</span> fillInSpecialSnps(SpecialSnpMap &SpecialSnps,
<a name="l00127"></a>00127 <a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> &layout, <span class="keywordtype">bool</span> permissive);
<a name="l00128"></a>00128 <span class="keywordtype">void</span> setPrior(std::string &outFile, std::vector<std::string> &sample,
<a name="l00129"></a>00129 <a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> &layout, <a class="code" href="classIntensityMart.html" title="IntensityMart.">IntensityMart</a> &iMart,
<a name="l00130"></a>00130 std::vector<ChipStream *> &chipStream, <a class="code" href="classPmAdjuster.html" title="Interface for determining a change based on intensity of perfect match.">PmAdjuster</a> &pmAdjuster,
<a name="l00131"></a>00131 <a class="code" href="classQuantBRLMM.html" title="Implements a SNP genotype calling method motivated by Nusrat Rabbee&#39;s RLMM (Robust Linear Model w...">QuantBRLMM</a> *qBRLMM);
<a name="l00132"></a>00132 <span class="keywordtype">void</span> setNormLabelZ(std::string &outFile, std::vector<std::string> sample,
<a name="l00133"></a>00133 <a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> &layout, <a class="code" href="classIntensityMart.html" title="IntensityMart.">IntensityMart</a> &iMart,
<a name="l00134"></a>00134 std::vector<ChipStream *> &chipStream, <a class="code" href="classPmAdjuster.html" title="Interface for determining a change based on intensity of perfect match.">PmAdjuster</a> &pmAdjuster,
<a name="l00135"></a>00135 <a class="code" href="classQuantLabelZ.html" title="This is the primary class wrapping the bayes_label_routine it handles bookkeeping, gender determination, etc.">QuantLabelZ</a> *qLabelZ);
<a name="l00136"></a>00136 <a class="code" href="classAnalysisInfo.html" title="Information about a particular analysis run.">AnalysisInfo</a> makeAnalysisInfo(<a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> &layout,
<a name="l00137"></a>00137 <span class="keyword">const</span> std::vector<const char*> &probesetNames,
<a name="l00138"></a>00138 <a class="code" href="classGenderCalls.html" title="Class for determining gender from a cel set of cel files.">GenderCalls</a> *genders,
<a name="l00139"></a>00139 <span class="keyword">const</span> std::string &analysisName);
<a name="l00140"></a>00140
<a name="l00141"></a>00141 <a class="code" href="classAnalysisInfo.html" title="Information about a particular analysis run.">AnalysisInfo</a> makeAnalysisInfo(<a class="code" href="classAnalysisStream.html" title="Utility class for centralizing analysis pathway.">AnalysisStream</a> *as,
<a name="l00142"></a>00142 <a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> &layout,
<a name="l00143"></a>00143 <span class="keyword">const</span> std::vector<const char*> &probesetNames,
<a name="l00144"></a>00144 <a class="code" href="classGenderCalls.html" title="Class for determining gender from a cel set of cel files.">GenderCalls</a> *genders);
<a name="l00145"></a>00145 <span class="keywordtype">void</span> createAnalysisFromSpec(
<a name="l00146"></a>00146 std::vector<AnalysisStream *> &analysis,
<a name="l00147"></a>00147 <a class="code" href="classAnalysisStreamFactory.html" title="Object for making new analysis streams from a text specification.">AnalysisStreamFactory</a> &asFactory,
<a name="l00148"></a>00148 <a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> &layout,
<a name="l00149"></a>00149 std::vector<const char*> &probesetNames,
<a name="l00150"></a>00150 <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> numProbeSets);
<a name="l00151"></a>00151 <span class="keywordtype">void</span> setInitialCalls(<a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> &layout, <a class="code" href="classGenoSeed.html" title="Abstract interface for a genotyping oracle used for genotyping seeds in brlmm.">GenoSeed</a> &seeds,
<a name="l00152"></a>00152 std::map<<span class="keyword">const</span> <span class="keywordtype">char</span> *,std::vector<affx::GType>, <a class="code" href="structUtil_1_1ltstr.html" title="Comparison object for use in map for char *.">Util::ltstr</a> > *knownGenotypes,
<a name="l00153"></a>00153 std::map<std::string,bool> &haploidSnps,
<a name="l00154"></a>00154 std::vector<AnalysisStream *> &analysis,
<a name="l00155"></a>00155 std::vector<const char *> toRunProbesets);
<a name="l00156"></a>00156 <span class="keywordtype">void</span> makeToSampleVector(std::vector<const char *> &toSample,
<a name="l00157"></a>00157 map<std::string, int> &sampleMap,
<a name="l00158"></a>00158 <a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> *layout,
<a name="l00159"></a>00159 <span class="keyword">const</span> std::vector<const char *> &probesetNames,
<a name="l00160"></a>00160 <span class="keyword">const</span> std::vector<const char *> &toRunProbesetNames,
<a name="l00161"></a>00161 std::set<affxcdf::GeneChipProbeSetType> &psTypesToSample);
<a name="l00162"></a>00162 <span class="keywordtype">void</span> ObtainSnpSample(
<a name="l00163"></a>00163 <a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> *layout,
<a name="l00164"></a>00164 std::vector<const char *> &selectFrom,
<a name="l00165"></a>00165 std::vector<std::string> &SnpSampleNames);
<a name="l00166"></a>00166 <span class="keywordtype">void</span> sortProbesetsByMapOrder(
<a name="l00167"></a>00167 vector<std::string>::iterator begin,
<a name="l00168"></a>00168 vector<std::string>::iterator end,
<a name="l00169"></a>00169 map<std::string, int> &mapOrder);
<a name="l00170"></a>00170 <span class="keywordtype">void</span> addReporters_Expression(affx::TsvReport::TsvReportFmt_t report_format,
<a name="l00171"></a>00171 <a class="code" href="classAnalysisInfo.html" title="Information about a particular analysis run.">AnalysisInfo</a>& info,
<a name="l00172"></a>00172 <a class="code" href="classQuantGTypeMethod.html" title="Quantification methods used for making genotyping calls implement (currently just brlmm) this interfa...">QuantGTypeMethod</a> *qMethod,
<a name="l00173"></a>00173 <a class="code" href="classAnalysisStream.html" title="Utility class for centralizing analysis pathway.">AnalysisStream</a> *as,
<a name="l00174"></a>00174 std::vector<ChipSummary *> &chipSummaries,
<a name="l00175"></a>00175 <a class="code" href="classGenderCalls.html" title="Class for determining gender from a cel set of cel files.">GenderCalls</a> *gender,
<a name="l00176"></a>00176 std::set<const char *, Util::ltstr> *probeSetsToReport,
<a name="l00177"></a>00177 <span class="keywordtype">bool</span> doCompact=<span class="keyword">false</span>);
<a name="l00178"></a>00178 <span class="keywordtype">void</span> addReporters_Expression(affx::TsvReport::TsvReportFmt_t report_format,
<a name="l00179"></a>00179 <a class="code" href="classAnalysisInfo.html" title="Information about a particular analysis run.">AnalysisInfo</a>& info,
<a name="l00180"></a>00180 std::vector<QuantMethodReport *> &exprReporters,
<a name="l00181"></a>00181 vector<ChipSummary *> &chipSummaries,
<a name="l00182"></a>00182 <a class="code" href="classGenderCalls.html" title="Class for determining gender from a cel set of cel files.">GenderCalls</a> *gender,
<a name="l00183"></a>00183 std::set<const char *, Util::ltstr> *probeSetsToReport,
<a name="l00184"></a>00184 <span class="keywordtype">bool</span> doCompact);
<a name="l00185"></a>00185
<a name="l00186"></a>00186 <span class="keywordtype">void</span> addReporters(
<a name="l00187"></a>00187 <a class="code" href="classQuantGTypeMethod.html" title="Quantification methods used for making genotyping calls implement (currently just brlmm) this interfa...">QuantGTypeMethod</a> *qMethod,
<a name="l00188"></a>00188 <a class="code" href="classAnalysisStream.html" title="Utility class for centralizing analysis pathway.">AnalysisStream</a> *as,
<a name="l00189"></a>00189 std::vector<ChipSummary *> &chipSummaries,
<a name="l00190"></a>00190 <a class="code" href="classGenderCalls.html" title="Class for determining gender from a cel set of cel files.">GenderCalls</a> *gender,
<a name="l00191"></a>00191 std::set<const char *, Util::ltstr> *probeSetsToReport,
<a name="l00192"></a>00192 SpecialSnpMap &SpecialSnps);
<a name="l00193"></a>00193
<a name="l00194"></a>00194 <span class="keywordtype">void</span> makeReporters(
<a name="l00195"></a>00195 <span class="keyword">const</span> std::string &qMethodName,
<a name="l00196"></a>00196 std::vector<QuantMethodReport *> &reporters,
<a name="l00197"></a>00197 std::vector<QuantMethodReport *> &exprReporters,
<a name="l00198"></a>00198 <a class="code" href="classAnalysisInfo.html" title="Information about a particular analysis run.">AnalysisInfo</a> &info,
<a name="l00199"></a>00199 vector<ChipSummary *> &chipSummaries,
<a name="l00200"></a>00200 <a class="code" href="classGenderCalls.html" title="Class for determining gender from a cel set of cel files.">GenderCalls</a> *gender,
<a name="l00201"></a>00201 std::set<const char *, Util::ltstr> *probeSetsToReport,
<a name="l00202"></a>00202 SpecialSnpMap &SpecialSnps);
<a name="l00203"></a>00203 <span class="keywordtype">void</span> DoSetup(std::vector<AnalysisStream *> &analysis,
<a name="l00204"></a>00204 <a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> &localLayout,
<a name="l00205"></a>00205 <a class="code" href="classIntensityMart.html" title="IntensityMart.">IntensityMart</a> &iMart,
<a name="l00206"></a>00206 std::vector<std::string> &priorSnpNames,
<a name="l00207"></a>00207 std::vector<std::string> &normSnpNames,
<a name="l00208"></a>00208 std::vector<std::string> &fileNames,
<a name="l00209"></a>00209 <a class="code" href="classGenderCalls.html" title="Class for determining gender from a cel set of cel files.">GenderCalls</a> *genders,
<a name="l00210"></a>00210 <a class="code" href="classInbredStatus.html" title="Class for determining inbreeding covariate from a cel set of cel files.">InbredStatus</a> *inbred,
<a name="l00211"></a>00211 std::map<std::string,bool> &haploidSnps,
<a name="l00212"></a>00212 SpecialSnpMap &SpecialSnps,
<a name="l00213"></a>00213 CopyNumberMap &copyNumberMap,
<a name="l00214"></a>00214 std::vector<ChipSummary *> &chipSummaries,
<a name="l00215"></a>00215 <span class="keyword">const</span> std::vector<const char *> &probesetNames,
<a name="l00216"></a>00216 std::set<const char *, Util::ltstr> *probeSetsToReport);
<a name="l00217"></a>00217 <span class="keywordtype">void</span> setIterationData(<a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> &localLayout,
<a name="l00218"></a>00218 std::vector<AnalysisStream *> &analysis,
<a name="l00219"></a>00219 std::vector<std::string> &priorSnpNames, std::vector<std::string> &normSnpNames,
<a name="l00220"></a>00220 std::vector<const char *> &toRunProbesets,
<a name="l00221"></a>00221 SpecialSnpMap &specialSnps);
<a name="l00222"></a>00222 <span class="keywordtype">void</span> fillInAnalysisInfo(<a class="code" href="classAnalysisInfo.html" title="Information about a particular analysis run.">AnalysisInfo</a> &info, <a class="code" href="classQuantMethod.html" title="QuantMethod - Interface for computing quantification summaries from PM intensities grouped into probe...">QuantMethod</a> *qMethod);
<a name="l00223"></a>00223 <span class="keywordtype">void</span> fillInAnalysisInfo(<a class="code" href="classAnalysisInfo.html" title="Information about a particular analysis run.">AnalysisInfo</a> &info, std::string prefix);
<a name="l00224"></a>00224
<a name="l00225"></a>00225 <span class="keywordtype">void</span> fillInAnalysisInfo(
<a name="l00226"></a>00226 <a class="code" href="classAnalysisInfo.html" title="Information about a particular analysis run.">AnalysisInfo</a> &info,
<a name="l00227"></a>00227 <a class="code" href="classAnalysisStream.html" title="Utility class for centralizing analysis pathway.">AnalysisStream</a> *as,
<a name="l00228"></a>00228 std::string prefix = <span class="stringliteral">"apt-"</span>);
<a name="l00229"></a>00229 <span class="keywordtype">void</span> closeGlobalA5();
<a name="l00230"></a>00230
<a name="l00231"></a>00231 <span class="keyword">private</span>:
<a name="l00232"></a>00232 <span class="keywordtype">void</span> fillInDesiredOrder(std::vector<int> &desiredOrder);
<a name="l00233"></a>00233
<a name="l00234"></a>00234 <span class="keywordtype">void</span> fillInSelectedGenders(<a class="code" href="classGenderCalls.html" title="Class for determining gender from a cel set of cel files.">GenderCalls</a> **selectedGenders,
<a name="l00235"></a>00235 std::string &analysisName,
<a name="l00236"></a>00236 std::map<std::string, GenderCalls *> &genderCallsMap,
<a name="l00237"></a>00237 <a class="code" href="classNoGenderCalls.html" title="Instance of GenderCalls which provides unknown genders.">NoGenderCalls</a> *noGenderCalls);
<a name="l00238"></a>00238
<a name="l00239"></a>00239 <span class="keywordtype">void</span> fillInChipLayout();
<a name="l00240"></a>00240 <span class="comment"></span>
<a name="l00241"></a>00241 <span class="comment"> /// List of aliases for standardized methods</span>
<a name="l00242"></a>00242 <span class="comment"></span> map<string,string> m_stdMethods; <span class="comment"></span>
<a name="l00243"></a>00243 <span class="comment"> /// Global A5 Input File</span>
<a name="l00244"></a>00244 <span class="comment"></span> <a class="code" href="classaffx_1_1File5__File.html">affx::File5_File</a>* m_a5_global_input_file;
<a name="l00245"></a>00245 <a class="code" href="classaffx_1_1File5__Group.html">affx::File5_Group</a>* m_a5_global_input_group;<span class="comment"></span>
<a name="l00246"></a>00246 <span class="comment"> /// Global A5 Output File</span>
<a name="l00247"></a>00247 <span class="comment"></span> <a class="code" href="classaffx_1_1File5__File.html">affx::File5_File</a>* m_a5_global_output_file;
<a name="l00248"></a>00248 <a class="code" href="classaffx_1_1File5__Group.html">affx::File5_Group</a>* m_a5_global_output_group;<span class="comment"></span>
<a name="l00249"></a>00249 <span class="comment"> /// counts</span>
<a name="l00250"></a>00250 <span class="comment"></span> <span class="keywordtype">int</span> m_celfile_count;
<a name="l00251"></a>00251 <span class="keywordtype">int</span> m_probeset_count;
<a name="l00252"></a>00252 <span class="keywordtype">int</span> m_channel_count;<span class="comment"></span>
<a name="l00253"></a>00253 <span class="comment"> /// Chip Layout Object</span>
<a name="l00254"></a>00254 <span class="comment"></span> <a class="code" href="classChipLayout.html" title="ChipLayout - Data structure to represent the probesets encoded in the CDF, SPF or PGF files which def...">ChipLayout</a> *m_ChipLayout;
<a name="l00255"></a>00255 <span class="keywordtype">bool</span> m_FreeChipLayout;
<a name="l00256"></a>00256 std::vector<const char *> m_ProbesetNames; <span class="comment">/// names of all probesets in cdf order.</span>
<a name="l00257"></a>00257 <span class="comment"></span>};
<a name="l00258"></a>00258
<a name="l00259"></a>00259 <span class="preprocessor">#endif </span><span class="comment">/* _PROBESETGENOTYPEENGINE_H_ */</span>
<a name="l00260"></a>00260
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Fri Mar 20 2015 18:03:07 for Affymetrix Power Tools by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.1 </small></address>
</body>
</html>
|
SeVN/lib/jgrapht-1.0.1/javadoc/org/jgrapht/traverse/class-use/TopologicalOrderIterator.html | hengfanz/franztao.Algorithm.io | <!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_111) on Mon Jan 16 15:31:08 PST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.jgrapht.traverse.TopologicalOrderIterator (JGraphT : a free Java graph library)</title>
<meta name="date" content="2017-01-16">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.jgrapht.traverse.TopologicalOrderIterator (JGraphT : a free Java graph library)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../org/jgrapht/traverse/TopologicalOrderIterator.html" title="class in org.jgrapht.traverse">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/jgrapht/traverse/class-use/TopologicalOrderIterator.html" target="_top">Frames</a></li>
<li><a href="TopologicalOrderIterator.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.jgrapht.traverse.TopologicalOrderIterator" class="title">Uses of Class<br>org.jgrapht.traverse.TopologicalOrderIterator</h2>
</div>
<div class="classUseContainer">No usage of org.jgrapht.traverse.TopologicalOrderIterator</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../org/jgrapht/traverse/TopologicalOrderIterator.html" title="class in org.jgrapht.traverse">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/jgrapht/traverse/class-use/TopologicalOrderIterator.html" target="_top">Frames</a></li>
<li><a href="TopologicalOrderIterator.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2017. All rights reserved.</small></p>
</body>
</html>
|
doc/html/_unarmed_knockdown1_command_8h_source.html | kidaa/Awakening-Core3 | <!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.3.1"/>
<title>Core3: /Users/victor/git/Core3Mda/MMOCoreORB/src/server/zone/objects/creature/commands/UnarmedKnockdown1Command.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Core3
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.3.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li><li class="navelem"><a class="el" href="dir_075bb3ff235063c77951cd176d15a741.html">server</a></li><li class="navelem"><a class="el" href="dir_9e27d73ba17b043ea65c9708c594875e.html">zone</a></li><li class="navelem"><a class="el" href="dir_bb68fceffca92cfae925b7b7ddaff7dd.html">objects</a></li><li class="navelem"><a class="el" href="dir_f0f687cf107b6668f5ef38d977f1b2e8.html">creature</a></li><li class="navelem"><a class="el" href="dir_49f0e85076dfbf69f84c7a1fe8fcfc28.html">commands</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">UnarmedKnockdown1Command.h</div> </div>
</div><!--header-->
<div class="contents">
<a href="_unarmed_knockdown1_command_8h.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> <span class="comment">/*</span></div>
<div class="line"><a name="l00002"></a><span class="lineno"> 2</span> <span class="comment">Copyright (C) 2007 <SWGEmu></span></div>
<div class="line"><a name="l00003"></a><span class="lineno"> 3</span> <span class="comment"></span></div>
<div class="line"><a name="l00004"></a><span class="lineno"> 4</span> <span class="comment">This File is part of Core3.</span></div>
<div class="line"><a name="l00005"></a><span class="lineno"> 5</span> <span class="comment"></span></div>
<div class="line"><a name="l00006"></a><span class="lineno"> 6</span> <span class="comment">This program is free software; you can redistribute</span></div>
<div class="line"><a name="l00007"></a><span class="lineno"> 7</span> <span class="comment">it and/or modify it under the terms of the GNU Lesser</span></div>
<div class="line"><a name="l00008"></a><span class="lineno"> 8</span> <span class="comment">General Public License as published by the Free Software</span></div>
<div class="line"><a name="l00009"></a><span class="lineno"> 9</span> <span class="comment">Foundation; either version 2 of the License,</span></div>
<div class="line"><a name="l00010"></a><span class="lineno"> 10</span> <span class="comment">or (at your option) any later version.</span></div>
<div class="line"><a name="l00011"></a><span class="lineno"> 11</span> <span class="comment"></span></div>
<div class="line"><a name="l00012"></a><span class="lineno"> 12</span> <span class="comment">This program is distributed in the hope that it will be useful,</span></div>
<div class="line"><a name="l00013"></a><span class="lineno"> 13</span> <span class="comment">but WITHOUT ANY WARRANTY; without even the implied warranty of</span></div>
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span> <span class="comment">MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.</span></div>
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span> <span class="comment">See the GNU Lesser General Public License for</span></div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span> <span class="comment">more details.</span></div>
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span> <span class="comment"></span></div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span> <span class="comment">You should have received a copy of the GNU Lesser General</span></div>
<div class="line"><a name="l00019"></a><span class="lineno"> 19</span> <span class="comment">Public License along with this program; if not, write to</span></div>
<div class="line"><a name="l00020"></a><span class="lineno"> 20</span> <span class="comment">the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA</span></div>
<div class="line"><a name="l00021"></a><span class="lineno"> 21</span> <span class="comment"></span></div>
<div class="line"><a name="l00022"></a><span class="lineno"> 22</span> <span class="comment">Linking Engine3 statically or dynamically with other modules</span></div>
<div class="line"><a name="l00023"></a><span class="lineno"> 23</span> <span class="comment">is making a combined work based on Engine3.</span></div>
<div class="line"><a name="l00024"></a><span class="lineno"> 24</span> <span class="comment">Thus, the terms and conditions of the GNU Lesser General Public License</span></div>
<div class="line"><a name="l00025"></a><span class="lineno"> 25</span> <span class="comment">cover the whole combination.</span></div>
<div class="line"><a name="l00026"></a><span class="lineno"> 26</span> <span class="comment"></span></div>
<div class="line"><a name="l00027"></a><span class="lineno"> 27</span> <span class="comment">In addition, as a special exception, the copyright holders of Engine3</span></div>
<div class="line"><a name="l00028"></a><span class="lineno"> 28</span> <span class="comment">give you permission to combine Engine3 program with free software</span></div>
<div class="line"><a name="l00029"></a><span class="lineno"> 29</span> <span class="comment">programs or libraries that are released under the GNU LGPL and with</span></div>
<div class="line"><a name="l00030"></a><span class="lineno"> 30</span> <span class="comment">code included in the standard release of Core3 under the GNU LGPL</span></div>
<div class="line"><a name="l00031"></a><span class="lineno"> 31</span> <span class="comment">license (or modified versions of such code, with unchanged license).</span></div>
<div class="line"><a name="l00032"></a><span class="lineno"> 32</span> <span class="comment">You may copy and distribute such a system following the terms of the</span></div>
<div class="line"><a name="l00033"></a><span class="lineno"> 33</span> <span class="comment">GNU LGPL for Engine3 and the licenses of the other code concerned,</span></div>
<div class="line"><a name="l00034"></a><span class="lineno"> 34</span> <span class="comment">provided that you include the source code of that other code when</span></div>
<div class="line"><a name="l00035"></a><span class="lineno"> 35</span> <span class="comment">and as the GNU LGPL requires distribution of source code.</span></div>
<div class="line"><a name="l00036"></a><span class="lineno"> 36</span> <span class="comment"></span></div>
<div class="line"><a name="l00037"></a><span class="lineno"> 37</span> <span class="comment">Note that people who make modified versions of Engine3 are not obligated</span></div>
<div class="line"><a name="l00038"></a><span class="lineno"> 38</span> <span class="comment">to grant this special exception for their modified versions;</span></div>
<div class="line"><a name="l00039"></a><span class="lineno"> 39</span> <span class="comment">it is their choice whether to do so. The GNU Lesser General Public License</span></div>
<div class="line"><a name="l00040"></a><span class="lineno"> 40</span> <span class="comment">gives permission to release a modified version without this exception;</span></div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span> <span class="comment">this exception also makes it possible to release a modified version</span></div>
<div class="line"><a name="l00042"></a><span class="lineno"> 42</span> <span class="comment">which carries forward this exception.</span></div>
<div class="line"><a name="l00043"></a><span class="lineno"> 43</span> <span class="comment">*/</span></div>
<div class="line"><a name="l00044"></a><span class="lineno"> 44</span> </div>
<div class="line"><a name="l00045"></a><span class="lineno"> 45</span> <span class="preprocessor">#ifndef UNARMEDKNOCKDOWN1COMMAND_H_</span></div>
<div class="line"><a name="l00046"></a><span class="lineno"> 46</span> <span class="preprocessor"></span><span class="preprocessor">#define UNARMEDKNOCKDOWN1COMMAND_H_</span></div>
<div class="line"><a name="l00047"></a><span class="lineno"> 47</span> <span class="preprocessor"></span></div>
<div class="line"><a name="l00048"></a><span class="lineno"> 48</span> <span class="preprocessor">#include "<a class="code" href="server_2zone_2objects_2scene_2_scene_object_8h.html">server/zone/objects/scene/SceneObject.h</a>"</span></div>
<div class="line"><a name="l00049"></a><span class="lineno"> 49</span> <span class="preprocessor">#include "<a class="code" href="_combat_queue_command_8h.html">CombatQueueCommand.h</a>"</span></div>
<div class="line"><a name="l00050"></a><span class="lineno"> 50</span> </div>
<div class="line"><a name="l00051"></a><span class="lineno"><a class="code" href="class_unarmed_knockdown1_command.html"> 51</a></span> <span class="keyword">class </span><a class="code" href="class_unarmed_knockdown1_command.html">UnarmedKnockdown1Command</a> : <span class="keyword">public</span> <a class="code" href="class_combat_queue_command.html">CombatQueueCommand</a> {</div>
<div class="line"><a name="l00052"></a><span class="lineno"> 52</span> <span class="keyword">public</span>:</div>
<div class="line"><a name="l00053"></a><span class="lineno"> 53</span> </div>
<div class="line"><a name="l00054"></a><span class="lineno"><a class="code" href="class_unarmed_knockdown1_command.html#a24cd2ae9b411fe0db0b76511a90328c8"> 54</a></span>  <a class="code" href="class_unarmed_knockdown1_command.html#a24cd2ae9b411fe0db0b76511a90328c8">UnarmedKnockdown1Command</a>(<span class="keyword">const</span> String& <a class="code" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a0d8e1b60e830d42ee881e168d3fd0a62">name</a>, <a class="code" href="classserver_1_1zone_1_1_zone_process_server.html">ZoneProcessServer</a>* <a class="code" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aab0d7c550040a4e8811e270c57ff90a4">server</a>)</div>
<div class="line"><a name="l00055"></a><span class="lineno"> 55</span>  : <a class="code" href="class_combat_queue_command.html">CombatQueueCommand</a>(name, server) {</div>
<div class="line"><a name="l00056"></a><span class="lineno"> 56</span>  }</div>
<div class="line"><a name="l00057"></a><span class="lineno"> 57</span> </div>
<div class="line"><a name="l00058"></a><span class="lineno"><a class="code" href="class_unarmed_knockdown1_command.html#ac35f7c48c85816bd00f2cbfe26c3c4af"> 58</a></span>  <span class="keywordtype">int</span> <a class="code" href="class_unarmed_knockdown1_command.html#ac35f7c48c85816bd00f2cbfe26c3c4af">doQueueCommand</a>(<a class="code" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a>* creature, <span class="keyword">const</span> uint64& target, <span class="keyword">const</span> UnicodeString& arguments) {</div>
<div class="line"><a name="l00059"></a><span class="lineno"> 59</span> </div>
<div class="line"><a name="l00060"></a><span class="lineno"> 60</span>  <span class="keywordflow">if</span> (!<a class="code" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a4f92f6905053c95feee0a3b18ef0adc1">checkStateMask</a>(creature))</div>
<div class="line"><a name="l00061"></a><span class="lineno"> 61</span>  <span class="keywordflow">return</span> <a class="code" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a7c214ae0c5729e3edc6554121ccb0f61">INVALIDSTATE</a>;</div>
<div class="line"><a name="l00062"></a><span class="lineno"> 62</span> </div>
<div class="line"><a name="l00063"></a><span class="lineno"> 63</span>  <span class="keywordflow">if</span> (!<a class="code" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1045fbe728bfd6c600e2e214ebb21406">checkInvalidLocomotions</a>(creature))</div>
<div class="line"><a name="l00064"></a><span class="lineno"> 64</span>  <span class="keywordflow">return</span> <a class="code" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a5349733d0c0ec84bd0d2bf654f81c72f">INVALIDLOCOMOTION</a>;</div>
<div class="line"><a name="l00065"></a><span class="lineno"> 65</span> </div>
<div class="line"><a name="l00066"></a><span class="lineno"> 66</span>  ManagedReference<WeaponObject*> weapon = creature-><a class="code" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html#aa7fbde29e22273f3de70ac9305ef03f6">getWeapon</a>();</div>
<div class="line"><a name="l00067"></a><span class="lineno"> 67</span> </div>
<div class="line"><a name="l00068"></a><span class="lineno"> 68</span>  <span class="keywordflow">if</span> (!weapon->isUnarmedWeapon()) {</div>
<div class="line"><a name="l00069"></a><span class="lineno"> 69</span>  <span class="keywordflow">return</span> <a class="code" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#afc459f7595d765766944b16a13966ab3">INVALIDWEAPON</a>;</div>
<div class="line"><a name="l00070"></a><span class="lineno"> 70</span>  }</div>
<div class="line"><a name="l00071"></a><span class="lineno"> 71</span> </div>
<div class="line"><a name="l00072"></a><span class="lineno"> 72</span>  <span class="keywordflow">return</span> <a class="code" href="class_combat_queue_command.html#ad6028342db12dfd0ed5bc4b793fe3e5c">doCombatAction</a>(creature, target);</div>
<div class="line"><a name="l00073"></a><span class="lineno"> 73</span>  }</div>
<div class="line"><a name="l00074"></a><span class="lineno"> 74</span> </div>
<div class="line"><a name="l00075"></a><span class="lineno"> 75</span> };</div>
<div class="line"><a name="l00076"></a><span class="lineno"> 76</span> </div>
<div class="line"><a name="l00077"></a><span class="lineno"> 77</span> <span class="preprocessor">#endif //UNARMEDKNOCKDOWN1COMMAND_H_</span></div>
</div><!-- fragment --></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Oct 15 2013 17:28:52 for Core3 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.3.1
</small></address>
</body>
</html>
|
tnk1/msr/1elilut_nkrim.html | erelsgl/erel-sites | <!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' lang='he' dir='rtl'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1255' />
<meta charset='windows-1255' />
<meta http-equiv='Content-Script-Type' content='text/javascript' />
<meta http-equiv='revisit-after' content='15 days' />
<title>òáåãú àìéìéí ùì òîéí æøéí áúð"ê</title>
<link rel='stylesheet' type='text/css' href='../../_script/klli.css' />
<link rel='stylesheet' type='text/css' href='../../tnk1/_themes/klli.css' />
<meta property='og:url' content='https://tora.us.fm/tnk1/msr/1elilut_nkrim.html'/>
<meta name='author' content="" />
<meta name='receiver' content="" />
<meta name='jmQovc' content="tnk1/msr/1elilut_nkrim.html" />
<meta name='tvnit' content="tnk_ol" />
<link rel='canonical' href='https://tora.us.fm/tnk1/msr/1elilut_nkrim.html' />
</head>
<!--
PHP Programming by Erel Segal-Halevi
-->
<body lang='he' dir='rtl' id = 'tnk1_msr_1elilut_nkrim' class='awsp_twspt tnk_ol'>
<div class='pnim'>
<script type='text/javascript' src='../../_script/vars.js'></script>
<!--NiwutElyon0-->
<div class='NiwutElyon'>
<div class='NiwutElyon'><a class='link_to_homepage' href='../../tnk1/index.html'>øàùé</a>><a href='../../tryg/index.html'>äàúø ìî÷åøéåú áîöååú</a>><a href='../../tryg/sug/ecm.html'>îöååú ìôé òöí</a>><a href='../../tryg/sug/ecm_alylym.html'>àìéìéí</a>></div>
<div class='NiwutElyon'><a class='link_to_homepage' href='../../tnk1/index.html'>øàùé</a>><a href='../../tnk1/sig/kll.html'>ëììéí</a>><a href='../../tnk1/sig/kll1.html'>ëìì úðê</a>></div>
</div>
<!--NiwutElyon1-->
<h1 id='h1'>òáåãú àìéìéí ùì òîéí æøéí áúð"ê</h1>
<div id='idfields'>
<p>÷åã: àìéìåú ðëøéú áúð"ê</p>
<p>ñåâ: àåñó_úåñôú</p>
<p>îàú: </p>
<p>àì: </p>
</div>
<script type='text/javascript'>kotrt()</script>
<ul id='ulbnim'>
<li>îàîø: <a href='http://www.daat.ac.il/daat/tanach/rishonim/shmua5eli-1.htm' class='mamr dor1' target='_blank'>àøåï ä' áàøõ ôìùúéí<small> / éäåãä àìéöåø -> ñôø äùðä ìîãòé äéäãåú åäøåç ùì áø àéìï, ä'úùë"ã</small> <small>(÷éùåø çéöåðé)</small></a></li>
<li>ëìì: <a href='../../tnk1/kma/hvdlim1/pljt_dt.html' class='kll dor1'>ãúåú áòøé ôìùú<small> / àøàì</small></a></li>
<li>îàîø: <a href='http://www.daat.ac.il/daat/tanach/rishonim/dagon.htm' class='mamr dor1' target='_blank'>äàìéì ãâåï<small> / ôéðçñ àøöé -> àúø ãòú</small> <small>(÷éùåø çéöåðé)</small></a></li>
<li>ëìì: <a href='http://www.daat.ac.il/daat/kitveyet/betmikra/hasamuy.htm' class='kll dor1' target='_blank'>äîàá÷ äñîåé áéï à-ìäé éùøàì ìáéï àìäé äîï<small> / î. îøâìéåú -> áéú î÷øà òã, ðéñï äúùì"ç</small> <small>(÷éùåø çéöåðé)</small></a></li>
<li>îàîø: <a href='../../tnk1/nvia/tryasr/mi-04-05.html' class='mamr dor1'>ëé ëì äòîéí éìëå àéù áùí àìäéå?!<small> / àøàì</small></a></li>
<li>ëìì: <a href='../../tnk1/kma/qjrim2/mzlot.html' class='kll dor1'>ùçéèú äîæìåú<small> / àøàì</small></a></li>
<li>îàîø: <a href='http://www.daat.ac.il/daat/kitveyet/mahanaim/gvaryaho-3.htm' class='mamr dor1' target='_blank'>úåòáåú îöøéí - äçéåú äî÷åãùåú ìîöøéí, åäôòåìåú äî÷ãùåú àåúï<small> / ã"ø çééí âáøéäå -> îçðééí, ä'úùè"æ ëç</small> <small>(÷éùåø çéöåðé)</small></a></li>
</ul><!--end-->
<script type='text/javascript'>AnalyzeBnim(); ktov_bnim_tnk(); </script>
<h2 id='tguvot'>úåñôåú åúâåáåú</h2>
<script type='text/javascript'>ktov_bnim_axrim("<"+"ul>","</"+"ul>")</script>
<script type='text/javascript'>tguva(); txtit()</script>
</div><!--pnim-->
</body>
</html>
|
resources/templates/default/fragments/actions_menu.html | karacos/karacos-wsgi | <%inherit file="/default/parent/actions_menu" />
<% import karacos %>
<% import sys, traceback %>
% try:
<% request = karacos.serving.get_request() %>
<% session = karacos.serving.get_session() %>
% if 'instance_id' in request.str_params and 'base_id' in request.str_params:
<% instance = karacos.base.db[request.str_params['base_id']].db[request.str_params['instance_id']] %>
<% node_actions = instance._get_actions() %>
<% domain_actions = instance.__domain__._get_actions() %>
<% isdomain = False %>
% if instance == instance.__domain__ :
<% isdomain = True %>
% endif
% if session.is_authenticated():
<button id="kc_node_menu_button" style="display:none" >${instance._get_type()} menu</button>
<button id="kc_user_name_menu">${session['username']}</button>
<button id="kc_tb_logout">Se déconnecter</button>
<button id="kc_domain_menu_button" >Domain menu</button>
<ul class="kc_menu" id="kc_domain_menu" style="display:none">
</ul>
<ul class="kc_menu" id="kc_node_menu" style="display:none">
</ul>
<script>
(function($){
$('body').bind('kcready', function(){
var
KaraCos = window.KaraCos,
$ = window.$,
auth = KaraCos.authManager,
toolbar = $('#karacos_actions_toolbar');
$(document).click(function hideMenuAtDocumentClickHandler(event){
$('ul.kc_menu').hide();
});
if (typeof KaraCos.actionMenu === "undefined") {
KaraCos.actionMenu = {};
KaraCos.actionWindow = KaraCos('<div id="kc_action_menu"/>');
$('body').append(KaraCos.actionWindow);
}
$("#kc_tb_logout").button().click(function(){
auth.logout();
});
(function includeDomainMenu(submenu){
<%include file="${instance.__domain__.get_menu_template_uri()}"/>
})($('#kc_domain_menu'));
$('#kc_domain_menu').menu().hide();
$('#kc_domain_menu_button').addClass('menu').button({
icon: 'ui-icon-triangle-1-s',
orientation: 'r',
checkButtonset: true
}).click(function menuClickHandler(event) {
$('ul.kc_menu').hide();
event.stopImmediatePropagation();
event.preventDefault();
$('#kc_domain_menu').css('position','absolute');
$("#kc_domain_menu").css('left',$('#kc_domain_menu_button').offset().left);
$("#kc_domain_menu").animate({"height": "toggle"});
});
% if not isdomain:
$('#kc_node_menu_button').show();
(function includeInstanceMenu(submenu){
<%include file="${instance.get_menu_template_uri()}"/>
})($('#kc_node_menu'));
$('#kc_node_menu').menu().hide();
$('#kc_node_menu_button').addClass('menu').button({
icon: 'ui-icon-triangle-1-s',
orientation: 'r',
checkButtonset: true
}).click(function() {
$('ul.kc_menu').hide();
event.stopImmediatePropagation();
event.preventDefault();
$('#kc_node_menu').css('position','absolute');
$("#kc_node_menu").css('left',$('#kc_node_menu_button').offset().left);
$("#kc_node_menu").animate({"height": "toggle"});
});
% endif
% if '_update' in node_actions:
var editbutton = $('<button>Editer</button>').button(),
savebutton = $('<button>Sauvegarder</button>').button();
toolbar.prepend(editbutton);
toolbar.prepend(savebutton);
savebutton.hide();
editbutton.click(
function(event) {
event.stopImmediatePropagation();
event.preventDefault();
KaraCos.activate_aloha();
//var button = KaraCos.$(this),
savebutton.show();
editbutton.hide();
${self.aloha.activate_editor(instance)}
});
savebutton.click(
function(event) {
event.stopImmediatePropagation();
event.preventDefault();
savebutton.hide();
editbutton.show();
${self.aloha.save_instance(instance)}
}).hide();
% endif
// user_menu
$('#kc_user_name_menu').button().click(function(event){
var
$this = $(this),
$win = $('#kc_user_profile_win');
if ($win.length === 0) {
$win = $('<div id="kc_user_profile_win" title="User profile"/>');
$('body').append($win);
}
event.stopImmediatePropagation();
event.preventDefault();
$.ajax({url:'/fragment/user_profile.html',
context: document.body,
type: "GET",
async: false,
success: function(form) {
$win.empty().append(form);
$win.dialog({width: '500px',modal: true,
buttons: { "Ok": function() {
var
method = "modify_person_data",
params = {};
$.each($win.find('form').serializeArray(), function(i, field) {
if (field.name === "method") {
method = field.value;
} else {
params[field.name] = field.value;
}
}); // each
KaraCos.action({ url: "/",
method: method,
async: false,
params: params,
callback: function(data) {
if (data.success) {
$win.dialog('close');
}
},
error: function(data) {
}
}); // POST profile form
} // button OK
} // buttons
}); // $win.dialog()
$win.dialog('show');
}
});
});
});
})(window.kcQuery);
</script>
% else:
% endif
% endif
% except:
some errors :
<pre>
${sys.exc_info()}
---
%for line in traceback.format_exc().splitlines():
${line}
%endfor
</pre>
% endtry |
javascript-checks/src/main/resources/org/sonar/l10n/javascript/rules/javascript/S1516.html | SonarSource/sonar-javascript | <p>Continuing a string across a linebreak is supported in most script engines, but it is not a part of ECMAScript. Additionally, the whitespace at the
beginning of each line can’t be safely stripped at compile time, and any whitespace after the slash will result in tricky errors.</p>
<h2>Noncompliant Code Example</h2>
<pre>
var myString = 'A rather long string of English text, an error message \
actually that just keeps going and going -- an error \
message to make the Energizer bunny blush (right through \
those Schwarzenegger shades)! Where was I? Oh yes, \
you\'ve got an error and all the extraneous whitespace is \
just gravy. Have a nice day.'; // Noncompliant
</pre>
<h2>Compliant Solution</h2>
<pre>
var myString = 'A rather long string of English text, an error message ' +
'actually that just keeps going and going -- an error ' +
'message to make the Energizer bunny blush (right through ' +
'those Schwarzenegger shades)! Where was I? Oh yes, ' +
'you\'ve got an error and all the extraneous whitespace is ' +
'just gravy. Have a nice day.';
</pre>
|
dataloader/doc/com/poesys/accounting/dataloader/newaccounting/class-use/IFiscalYearUpdater.html | Poesys-Associates/dataloader | <!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_92) on Tue Jan 16 10:58:46 PST 2018 -->
<title>Uses of Interface com.poesys.accounting.dataloader.newaccounting.IFiscalYearUpdater</title>
<meta name="date" content="2018-01-16">
<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 Interface com.poesys.accounting.dataloader.newaccounting.IFiscalYearUpdater";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/IFiscalYearUpdater.html" title="interface in com.poesys.accounting.dataloader.newaccounting">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/poesys/accounting/dataloader/newaccounting/class-use/IFiscalYearUpdater.html" target="_top">Frames</a></li>
<li><a href="IFiscalYearUpdater.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Interface com.poesys.accounting.dataloader.newaccounting.IFiscalYearUpdater" class="title">Uses of Interface<br>com.poesys.accounting.dataloader.newaccounting.IFiscalYearUpdater</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/IFiscalYearUpdater.html" title="interface in com.poesys.accounting.dataloader.newaccounting">IFiscalYearUpdater</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.poesys.accounting.dataloader.newaccounting">com.poesys.accounting.dataloader.newaccounting</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.poesys.accounting.dataloader.properties">com.poesys.accounting.dataloader.properties</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.poesys.accounting.dataloader.newaccounting">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/IFiscalYearUpdater.html" title="interface in com.poesys.accounting.dataloader.newaccounting">IFiscalYearUpdater</a> in <a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/package-summary.html">com.poesys.accounting.dataloader.newaccounting</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/package-summary.html">com.poesys.accounting.dataloader.newaccounting</a> that implement <a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/IFiscalYearUpdater.html" title="interface in com.poesys.accounting.dataloader.newaccounting">IFiscalYearUpdater</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/PoesysFiscalYearUpdater.html" title="class in com.poesys.accounting.dataloader.newaccounting">PoesysFiscalYearUpdater</a></span></code>
<div class="block">Implementation of the IFiscalYearUpdater interface that updates fiscal years for the Poesys
accounting system.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/RjmMlsFiscalYearUpdater.html" title="class in com.poesys.accounting.dataloader.newaccounting">RjmMlsFiscalYearUpdater</a></span></code>
<div class="block">Implementation of the IFiscalYearUpdater interface that updates fiscal years for the Robert J.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/UnitTestFiscalYearUpdater.html" title="class in com.poesys.accounting.dataloader.newaccounting">UnitTestFiscalYearUpdater</a></span></code>
<div class="block">Implementation of the IFiscalYearUpdater interface that updates fiscal years for the Robert J.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.poesys.accounting.dataloader.properties">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/IFiscalYearUpdater.html" title="interface in com.poesys.accounting.dataloader.newaccounting">IFiscalYearUpdater</a> in <a href="../../../../../../com/poesys/accounting/dataloader/properties/package-summary.html">com.poesys.accounting.dataloader.properties</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../com/poesys/accounting/dataloader/properties/package-summary.html">com.poesys.accounting.dataloader.properties</a> that return <a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/IFiscalYearUpdater.html" title="interface in com.poesys.accounting.dataloader.newaccounting">IFiscalYearUpdater</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/IFiscalYearUpdater.html" title="interface in com.poesys.accounting.dataloader.newaccounting">IFiscalYearUpdater</a></code></td>
<td class="colLast"><span class="typeNameLabel">PropertyFileParameters.</span><code><span class="memberNameLink"><a href="../../../../../../com/poesys/accounting/dataloader/properties/PropertyFileParameters.html#getUpdater--">getUpdater</a></span>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/IFiscalYearUpdater.html" title="interface in com.poesys.accounting.dataloader.newaccounting">IFiscalYearUpdater</a></code></td>
<td class="colLast"><span class="typeNameLabel">IParameters.</span><code><span class="memberNameLink"><a href="../../../../../../com/poesys/accounting/dataloader/properties/IParameters.html#getUpdater--">getUpdater</a></span>()</code>
<div class="block">Get the fiscal-year updater based on a program parameter.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/poesys/accounting/dataloader/newaccounting/IFiscalYearUpdater.html" title="interface in com.poesys.accounting.dataloader.newaccounting">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/poesys/accounting/dataloader/newaccounting/class-use/IFiscalYearUpdater.html" target="_top">Frames</a></li>
<li><a href="IFiscalYearUpdater.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
Edda/html/class_edda_1_1_diretor.html | jrbitt/edda | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Edda: Referência à classe Edda::Diretor</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Gerado por Doxygen 1.7.2 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Localizar');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Página principal</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Ficheiros</span></a></li>
<li id="searchli">
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Localizar" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Lista de componentes</span></a></li>
<li><a href="classes.html"><span>Índice dos componentes</span></a></li>
<li><a href="hierarchy.html"><span>Hierarquia de classes</span></a></li>
<li><a href="functions.html"><span>Componentes membro</span></a></li>
</ul>
</div>
<div class="navpath">
<ul>
<li><a class="el" href="namespace_edda.html">Edda</a> </li>
<li><a class="el" href="class_edda_1_1_diretor.html">Diretor</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Membros públicos</a> |
<a href="#pub-static-methods">Membros públicos estáticos</a> |
<a href="#pub-attribs">Atributos Públicos</a> </div>
<div class="headertitle">
<h1>Referência à classe Edda::Diretor</h1> </div>
</div>
<div class="contents">
<!-- doxytag: class="Edda::Diretor" -->
<p><a href="class_edda_1_1_diretor-members.html">Mostrar lista completa dos membros</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Membros públicos</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afe1cdd2433db4a3fa28218b21e60cd2c"></a><!-- doxytag: member="Edda::Diretor::iniciar" ref="afe1cdd2433db4a3fa28218b21e60cd2c" args="(int, int, int, string, bool fullscreen=false)" -->
void </td><td class="memItemRight" valign="bottom"><b>iniciar</b> (int, int, int, string, bool fullscreen=false)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af5b5db70fbf16b8a0faa8db3c5cb3e05"></a><!-- doxytag: member="Edda::Diretor::adicionarCena" ref="af5b5db70fbf16b8a0faa8db3c5cb3e05" args="(Cena *c)" -->
void </td><td class="memItemRight" valign="bottom"><b>adicionarCena</b> (<a class="el" href="class_edda_1_1_cena.html">Cena</a> *c)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aee3297f8d86fc9ebb72492c0bfb1d4ef"></a><!-- doxytag: member="Edda::Diretor::loop" ref="aee3297f8d86fc9ebb72492c0bfb1d4ef" args="(Cena *c)" -->
void </td><td class="memItemRight" valign="bottom"><b>loop</b> (<a class="el" href="class_edda_1_1_cena.html">Cena</a> *c)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a82a8443066bc07a5453a45ca7a07f914"></a><!-- doxytag: member="Edda::Diretor::adicionarAtualizavel" ref="a82a8443066bc07a5453a45ca7a07f914" args="(Atualizavel *)" -->
void </td><td class="memItemRight" valign="bottom"><b>adicionarAtualizavel</b> (<a class="el" href="class_edda_1_1_atualizavel.html">Atualizavel</a> *)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a09e772049dd1e91490620035ef5b9e39"></a><!-- doxytag: member="Edda::Diretor::limparAtualizaveis" ref="a09e772049dd1e91490620035ef5b9e39" args="()" -->
void </td><td class="memItemRight" valign="bottom"><b>limparAtualizaveis</b> ()</td></tr>
<tr><td colspan="2"><h2><a name="pub-static-methods"></a>
Membros públicos estáticos</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1da02fb61b36933484e242f581f17392"></a><!-- doxytag: member="Edda::Diretor::getInstancia" ref="a1da02fb61b36933484e242f581f17392" args="()" -->
static <a class="el" href="class_edda_1_1_diretor.html">Diretor</a> * </td><td class="memItemRight" valign="bottom"><b>getInstancia</b> ()</td></tr>
<tr><td colspan="2"><h2><a name="pub-attribs"></a>
Atributos Públicos</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8f8ddcb338b975fa7b8cfaa51511b119"></a><!-- doxytag: member="Edda::Diretor::larguraTela" ref="a8f8ddcb338b975fa7b8cfaa51511b119" args="" -->
int </td><td class="memItemRight" valign="bottom"><b>larguraTela</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aeb88898002f2a81c6c0b2ac869720869"></a><!-- doxytag: member="Edda::Diretor::alturaTela" ref="aeb88898002f2a81c6c0b2ac869720869" args="" -->
int </td><td class="memItemRight" valign="bottom"><b>alturaTela</b></td></tr>
</table>
<hr/>A documentação para esta classe foi gerada a partir dos seguintes ficheiros:<ul>
<li><a class="el" href="_diretor_8h_source.html">Diretor.h</a></li>
<li>Diretor.cpp</li>
</ul>
</div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>Tudo</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Funções</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Variáveis</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address class="footer"><small>Gerado em Thu May 9 2013 14:16:27 para Edda por 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address>
</body>
</html>
|
quiet/templates/calais.html | stephane-martin/quiet-reading | <!DOCTYPE html>
<html>
<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">
<title>OpenCalais</title>
{% for asset_url in assets['css'] %}
<link href="{{ asset_url }}" rel="stylesheet">
{% endfor %}
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Interrogation OpenCalais</h1>
</div>
</div>
<div class="container">
<form id="form_calais" action="{{ url_for('opencalais') }}">
<div class="row">
<div class="col-md-9">
<label>
<input value="{{ calais_results.url }}" title="URL to fetch" id="input_url" name="input_url" type="text"/>
</label>
</div>
<div class="col-md-3">
<input class="btn btn-sm btn-primary" value="Submit" id="submit_url" name="submit_url" title="Type a URL to submit to OpenCalais" type="submit" />
</div>
</div>
</form>
</div>
<hr />
<div id="quiettitle" class="container">
<h2>{{ calais_results.title }}</h2>
</div>
<div id="calaisresults" class="container">
<table id="entities" class="table table-striped">
{% if calais_results.entities %}
{% for entity_type, entities in calais_results.entities.items() %}
<tr><td>{{ entity_type }}</td><td>{{ ", ".join(entities) }}</td></tr>
{% endfor %}
{% endif %}
{% if calais_results.social_tags %}
<tr><td>SocialTags</td><td>{{ ", ".join(calais_results.social_tags) }}</td></tr>
{% endif %}
{% if calais_results.topics %}
<tr><td>Topics</td><td>{{ ", ".join(calais_results.topics) }}</td></tr>
{% endif %}
</table>
</div>
{% for asset_url in assets['js'] %}
<script src="{{ asset_url }}"></script>
{% endfor %}
</body>
</html>
|
third-party/gstreamer/gst-plugins-bad/docs/plugins/html/gst-plugins-bad-plugins-plugin-dfbvideosink.html | cpopescu/whispermedialib | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>dfbvideosink</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
<link rel="start" href="index.html" title="GStreamer Bad Plugins 0.10 Plugins Reference Manual">
<link rel="up" href="ch02.html" title="gst-plugins-bad Plugins">
<link rel="prev" href="gst-plugins-bad-plugins-plugin-cdxaparse.html" title="cdxaparse">
<link rel="next" href="gst-plugins-bad-plugins-plugin-dtsdec.html" title="dtsdec">
<meta name="generator" content="GTK-Doc V1.10 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="chapter" href="ch01.html" title="gst-plugins-bad Elements">
<link rel="chapter" href="ch02.html" title="gst-plugins-bad Plugins">
<link rel="chapter" href="ch03.html" title="gst-plugins-bad Classes">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
<td><a accesskey="p" href="gst-plugins-bad-plugins-plugin-cdxaparse.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="ch02.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">GStreamer Bad Plugins 0.10 Plugins Reference Manual</th>
<td><a accesskey="n" href="gst-plugins-bad-plugins-plugin-dtsdec.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr></table>
<div class="refentry" lang="en">
<a name="gst-plugins-bad-plugins-plugin-dfbvideosink"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle">dfbvideosink</span></h2>
<p>
<a name="plugin-dfbvideosink"></a>
— DirectFB video output plugin</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsect1" lang="en">
<a name="id2551572"></a><h2>Plugin Information</h2>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term">filename</span></p></td>
<td>libgstdfbvideosink.so</td>
</tr>
<tr>
<td><p><span class="term">version</span></p></td>
<td>0.10.7.1</td>
</tr>
<tr>
<td><p><span class="term">run-time license</span></p></td>
<td>LGPL</td>
</tr>
<tr>
<td><p><span class="term">package</span></p></td>
<td>GStreamer Bad Plug-ins CVS/prerelease</td>
</tr>
<tr>
<td><p><span class="term">origin</span></p></td>
<td>Unknown package origin</td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1" lang="en">
<a name="id2648210"></a><h2>Elements</h2>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><a class="link" href="gst-plugins-bad-plugins-dfbvideosink.html" title="dfbvideosink">dfbvideosink</a></span></p></td>
<td>A DirectFB based videosink</td>
</tr></tbody>
</table></div>
</div>
</div>
<div class="footer">
<hr>
Generated by GTK-Doc V1.10</div>
</body>
</html>
|
doc/html/classserver_1_1zone_1_1objects_1_1player_1_1sessions_1_1_conversation_session_adapter-members.html | kidaa/Awakening-Core3 | <!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.3.1"/>
<title>Core3: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Core3
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.3.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceserver.html">server</a></li><li class="navelem"><a class="el" href="namespaceserver_1_1zone.html">zone</a></li><li class="navelem"><a class="el" href="namespaceserver_1_1zone_1_1objects.html">objects</a></li><li class="navelem"><a class="el" href="namespaceserver_1_1zone_1_1objects_1_1player.html">player</a></li><li class="navelem"><a class="el" href="namespaceserver_1_1zone_1_1objects_1_1player_1_1sessions.html">sessions</a></li><li class="navelem"><a class="el" href="classserver_1_1zone_1_1objects_1_1player_1_1sessions_1_1_conversation_session_adapter.html">ConversationSessionAdapter</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">server::zone::objects::player::sessions::ConversationSessionAdapter Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classserver_1_1zone_1_1objects_1_1player_1_1sessions_1_1_conversation_session_adapter.html">server::zone::objects::player::sessions::ConversationSessionAdapter</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1player_1_1sessions_1_1_conversation_session_adapter.html#aab792701a99836d28903f6266e306f25">ConversationSessionAdapter</a>(ConversationSession *impl)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1player_1_1sessions_1_1_conversation_session_adapter.html">server::zone::objects::player::sessions::ConversationSessionAdapter</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1player_1_1sessions_1_1_conversation_session_adapter.html#a9ef567caee0382a6d6425221b3ffcff9">getNPC</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1player_1_1sessions_1_1_conversation_session_adapter.html">server::zone::objects::player::sessions::ConversationSessionAdapter</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1player_1_1sessions_1_1_conversation_session_adapter.html#a6e8febf2babf9fb2daf00192e847345a">invokeMethod</a>(sys::uint32 methid, DistributedMethod *method)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1player_1_1sessions_1_1_conversation_session_adapter.html">server::zone::objects::player::sessions::ConversationSessionAdapter</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Oct 15 2013 17:29:59 for Core3 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.3.1
</small></address>
</body>
</html>
|
javadoc/index-files/index-9.html | aj-code/BurpJS | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_03) on Wed Mar 21 15:14:29 NZDT 2012 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>P-Index</title>
<meta name="date" content="2012-03-21">
<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="P-Index";
}
//-->
</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="../burp/package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-8.html">Prev Letter</a></li>
<li><a href="index-10.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-filesindex-9.html" target="_top">Frames</a></li>
<li><a href="index-9.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">D</a> <a href="index-4.html">F</a> <a href="index-5.html">G</a> <a href="index-6.html">H</a> <a href="index-7.html">I</a> <a href="index-8.html">J</a> <a href="index-9.html">P</a> <a href="index-10.html">R</a> <a href="index-11.html">S</a> <a href="index-12.html">T</a> <a name="_P_">
<!-- -->
</a>
<h2 class="title">P</h2>
<dl>
<dt><span class="strong"><a href="../burp/BurpExtender.html#processHttpMessage(java.lang.String, boolean, burp.IHttpRequestResponse)">processHttpMessage(String, boolean, IHttpRequestResponse)</a></span> - Method in class burp.<a href="../burp/BurpExtender.html" title="class in burp">BurpExtender</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../burp/JSEngine.html#processRequest(org.mozilla.javascript.Context, java.lang.String, burp.HttpMessage)">processRequest(Context, String, HttpMessage)</a></span> - Method in class burp.<a href="../burp/JSEngine.html" title="class in burp">JSEngine</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../burp/JSEngine.html#processResponse(org.mozilla.javascript.Context, java.lang.String, burp.HttpMessage, burp.HttpMessage)">processResponse(Context, String, HttpMessage, HttpMessage)</a></span> - Method in class burp.<a href="../burp/JSEngine.html" title="class in burp">JSEngine</a></dt>
<dd> </dd>
</dl>
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">D</a> <a href="index-4.html">F</a> <a href="index-5.html">G</a> <a href="index-6.html">H</a> <a href="index-7.html">I</a> <a href="index-8.html">J</a> <a href="index-9.html">P</a> <a href="index-10.html">R</a> <a href="index-11.html">S</a> <a href="index-12.html">T</a> </div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../burp/package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-8.html">Prev Letter</a></li>
<li><a href="index-10.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-filesindex-9.html" target="_top">Frames</a></li>
<li><a href="index-9.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
app/static/js/ckeditor/skins/moono/editor_ie.css | PlagueMen/Compact | /*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_reset {
margin: 0;
padding: 0;
border: 0;
background: transparent;
text-decoration: none;
width: auto;
height: auto;
vertical-align: baseline;
box-sizing: content-box;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box
}
.cke_reset_all, .cke_reset_all * {
margin: 0;
padding: 0;
border: 0;
background: transparent;
text-decoration: none;
width: auto;
height: auto;
vertical-align: baseline;
box-sizing: content-box;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
border-collapse: collapse;
font: normal normal normal 12px Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
color: #000;
text-align: left;
white-space: nowrap;
cursor: auto
}
.cke_reset_all .cke_rtl * {
text-align: right
}
.cke_reset_all iframe {
vertical-align: inherit
}
.cke_reset_all textarea {
white-space: pre
}
.cke_reset_all textarea, .cke_reset_all input[type="text"], .cke_reset_all input[type="password"] {
cursor: text
}
.cke_reset_all textarea[disabled], .cke_reset_all input[type="text"][disabled], .cke_reset_all input[type="password"][disabled] {
cursor: default
}
.cke_reset_all fieldset {
padding: 10px;
border: 2px groove #e0dfe3
}
.cke_reset_all select {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box
}
.cke_chrome {
display: block;
border: 1px solid #b6b6b6;
padding: 0;
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
box-shadow: 0 0 3px rgba(0, 0, 0, .15)
}
.cke_inner {
display: block;
-webkit-touch-callout: none;
background: #fff;
padding: 0
}
.cke_float {
border: 0
}
.cke_float .cke_inner {
padding-bottom: 0
}
.cke_top, .cke_contents, .cke_bottom {
display: block;
overflow: hidden
}
.cke_top {
border-bottom: 1px solid #b6b6b6;
padding: 6px 8px 2px;
white-space: normal;
-moz-box-shadow: 0 1px 0 #fff inset;
-webkit-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 #fff inset;
background: #cfd1cf;
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#cfd1cf));
background-image: -moz-linear-gradient(top, #f5f5f5, #cfd1cf);
background-image: -webkit-linear-gradient(top, #f5f5f5, #cfd1cf);
background-image: -o-linear-gradient(top, #f5f5f5, #cfd1cf);
background-image: -ms-linear-gradient(top, #f5f5f5, #cfd1cf);
background-image: linear-gradient(top, #f5f5f5, #cfd1cf);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f5f5f5', endColorstr='#cfd1cf')
}
.cke_float .cke_top {
border: 1px solid #b6b6b6;
border-bottom-color: #999
}
.cke_bottom {
padding: 6px 8px 2px;
position: relative;
border-top: 1px solid #bfbfbf;
-moz-box-shadow: 0 1px 0 #fff inset;
-webkit-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 #fff inset;
background: #cfd1cf;
background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#cfd1cf));
background-image: -moz-linear-gradient(top, #ebebeb, #cfd1cf);
background-image: -webkit-linear-gradient(top, #ebebeb, #cfd1cf);
background-image: -o-linear-gradient(top, #ebebeb, #cfd1cf);
background-image: -ms-linear-gradient(top, #ebebeb, #cfd1cf);
background-image: linear-gradient(top, #ebebeb, #cfd1cf);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#ebebeb', endColorstr='#cfd1cf')
}
.cke_browser_ios .cke_contents {
overflow-y: auto;
-webkit-overflow-scrolling: touch
}
.cke_resizer {
width: 0;
height: 0;
overflow: hidden;
width: 0;
height: 0;
overflow: hidden;
border-width: 10px 10px 0 0;
border-color: transparent #666 transparent transparent;
border-style: dashed solid dashed dashed;
font-size: 0;
vertical-align: bottom;
margin-top: 6px;
margin-bottom: 2px;
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .3);
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .3);
box-shadow: 0 1px 0 rgba(255, 255, 255, .3)
}
.cke_hc .cke_resizer {
font-size: 15px;
width: auto;
height: auto;
border-width: 0
}
.cke_resizer_ltr {
cursor: se-resize;
float: right;
margin-right: -4px
}
.cke_resizer_rtl {
border-width: 10px 0 0 10px;
border-color: transparent transparent transparent #a5a5a5;
border-style: dashed dashed dashed solid;
cursor: sw-resize;
float: left;
margin-left: -4px;
right: auto
}
.cke_wysiwyg_div {
display: block;
height: 100%;
overflow: auto;
padding: 0 8px;
outline-style: none;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box
}
.cke_panel {
visibility: visible;
width: 120px;
height: 100px;
overflow: hidden;
background-color: #fff;
border: 1px solid #b6b6b6;
border-bottom-color: #999;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
box-shadow: 0 0 3px rgba(0, 0, 0, .15)
}
.cke_menu_panel {
padding: 0;
margin: 0
}
.cke_combopanel {
width: 150px;
height: 170px
}
.cke_panel_frame {
width: 100%;
height: 100%;
font-size: 12px;
overflow: auto;
overflow-x: hidden
}
.cke_panel_container {
overflow-y: auto;
overflow-x: hidden
}
.cke_panel_list {
list-style-type: none;
margin: 3px;
padding: 0;
white-space: nowrap
}
.cke_panel_listItem {
margin: 0;
padding-bottom: 1px
}
.cke_panel_listItem a {
padding: 3px 4px;
display: block;
border: 1px solid #fff;
color: inherit !important;
text-decoration: none;
overflow: hidden;
text-overflow: ellipsis;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px
}
* html .cke_panel_listItem a {
width: 100%;
color: #000
}
*:first-child + html .cke_panel_listItem a {
color: #000
}
.cke_panel_listItem.cke_selected a {
border: 1px solid #dedede;
background-color: #f2f2f2;
-moz-box-shadow: 0 0 2px rgba(0, 0, 0, .1) inset;
-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .1) inset;
box-shadow: 0 0 2px rgba(0, 0, 0, .1) inset
}
.cke_panel_listItem a:hover, .cke_panel_listItem a:focus, .cke_panel_listItem a:active {
border-color: #dedede;
background-color: #f2f2f2;
-moz-box-shadow: 0 0 2px rgba(0, 0, 0, .1) inset;
-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .1) inset;
box-shadow: 0 0 2px rgba(0, 0, 0, .1) inset
}
.cke_hc .cke_panel_listItem a {
border-style: none
}
.cke_hc .cke_panel_listItem a:hover, .cke_hc .cke_panel_listItem a:focus, .cke_hc .cke_panel_listItem a:active {
border: 2px solid;
padding: 1px 2px
}
.cke_panel_grouptitle {
font-size: 11px;
font-weight: bold;
white-space: nowrap;
margin: 0;
padding: 4px 6px;
color: #474747;
text-shadow: 0 1px 0 rgba(255, 255, 255, .75);
border-bottom: 1px solid #b6b6b6;
-moz-border-radius: 2px 2px 0 0;
-webkit-border-radius: 2px 2px 0 0;
border-radius: 2px 2px 0 0;
-moz-box-shadow: 0 1px 0 #fff inset;
-webkit-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 #fff inset;
background: #cfd1cf;
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#cfd1cf));
background-image: -moz-linear-gradient(top, #f5f5f5, #cfd1cf);
background-image: -webkit-linear-gradient(top, #f5f5f5, #cfd1cf);
background-image: -o-linear-gradient(top, #f5f5f5, #cfd1cf);
background-image: -ms-linear-gradient(top, #f5f5f5, #cfd1cf);
background-image: linear-gradient(top, #f5f5f5, #cfd1cf);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f5f5f5', endColorstr='#cfd1cf')
}
.cke_panel_listItem p, .cke_panel_listItem h1, .cke_panel_listItem h2, .cke_panel_listItem h3, .cke_panel_listItem h4, .cke_panel_listItem h5, .cke_panel_listItem h6, .cke_panel_listItem pre {
margin-top: 0;
margin-bottom: 0
}
.cke_colorblock {
padding: 3px;
font-size: 11px;
font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif
}
.cke_colorblock, .cke_colorblock a {
text-decoration: none;
color: #000
}
span.cke_colorbox {
width: 10px;
height: 10px;
border: #808080 1px solid;
float: left
}
.cke_rtl span.cke_colorbox {
float: right
}
a.cke_colorbox {
border: #fff 1px solid;
padding: 2px;
float: left;
width: 12px;
height: 12px
}
.cke_rtl a.cke_colorbox {
float: right
}
a:hover.cke_colorbox, a:focus.cke_colorbox, a:active.cke_colorbox {
border: #b6b6b6 1px solid;
background-color: #e5e5e5
}
a.cke_colorauto, a.cke_colormore {
border: #fff 1px solid;
padding: 2px;
display: block;
cursor: pointer
}
a:hover.cke_colorauto, a:hover.cke_colormore, a:focus.cke_colorauto, a:focus.cke_colormore, a:active.cke_colorauto, a:active.cke_colormore {
border: #b6b6b6 1px solid;
background-color: #e5e5e5
}
.cke_toolbar {
float: left
}
.cke_rtl .cke_toolbar {
float: right
}
.cke_toolgroup {
float: left;
margin: 0 6px 5px 0;
border: 1px solid #a6a6a6;
border-bottom-color: #979797;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 0 2px rgba(255, 255, 255, .15) inset, 0 1px 0 rgba(255, 255, 255, .15) inset;
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 0 2px rgba(255, 255, 255, .15) inset, 0 1px 0 rgba(255, 255, 255, .15) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 0 2px rgba(255, 255, 255, .15) inset, 0 1px 0 rgba(255, 255, 255, .15) inset;
background: #e4e4e4;
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e4e4e4));
background-image: -moz-linear-gradient(top, #fff, #e4e4e4);
background-image: -webkit-linear-gradient(top, #fff, #e4e4e4);
background-image: -o-linear-gradient(top, #fff, #e4e4e4);
background-image: -ms-linear-gradient(top, #fff, #e4e4e4);
background-image: linear-gradient(top, #fff, #e4e4e4);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#ffffff', endColorstr='#e4e4e4')
}
.cke_hc .cke_toolgroup {
border: 0;
margin-right: 10px;
margin-bottom: 10px
}
.cke_rtl .cke_toolgroup *:first-child {
-moz-border-radius: 0 2px 2px 0;
-webkit-border-radius: 0 2px 2px 0;
border-radius: 0 2px 2px 0
}
.cke_rtl .cke_toolgroup *:last-child {
-moz-border-radius: 2px 0 0 2px;
-webkit-border-radius: 2px 0 0 2px;
border-radius: 2px 0 0 2px
}
.cke_rtl .cke_toolgroup {
float: right;
margin-left: 6px;
margin-right: 0
}
a.cke_button {
display: inline-block;
height: 18px;
padding: 4px 6px;
outline: 0;
cursor: default;
float: left;
border: 0
}
.cke_rtl .cke_button {
float: right
}
.cke_hc .cke_button {
border: 1px solid black;
padding: 3px 5px;
margin: -2px 4px 0 -2px
}
.cke_button_on {
-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, .6) inset, 0 1px 0 rgba(0, 0, 0, .2);
-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, .6) inset, 0 1px 0 rgba(0, 0, 0, .2);
box-shadow: 0 1px 5px rgba(0, 0, 0, .6) inset, 0 1px 0 rgba(0, 0, 0, .2);
background: #b5b5b5;
background-image: -webkit-gradient(linear, left top, left bottom, from(#aaa), to(#cacaca));
background-image: -moz-linear-gradient(top, #aaa, #cacaca);
background-image: -webkit-linear-gradient(top, #aaa, #cacaca);
background-image: -o-linear-gradient(top, #aaa, #cacaca);
background-image: -ms-linear-gradient(top, #aaa, #cacaca);
background-image: linear-gradient(top, #aaa, #cacaca);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#aaaaaa', endColorstr='#cacaca')
}
.cke_hc .cke_button_on, .cke_hc a.cke_button_off:hover, .cke_hc a.cke_button_off:focus, .cke_hc a.cke_button_off:active, .cke_hc a.cke_button_disabled:hover, .cke_hc a.cke_button_disabled:focus, .cke_hc a.cke_button_disabled:active {
border-width: 3px;
padding: 1px 3px
}
.cke_button_disabled .cke_button_icon {
opacity: .3
}
.cke_hc .cke_button_disabled {
opacity: .5
}
a.cke_button_on:hover, a.cke_button_on:focus, a.cke_button_on:active {
-moz-box-shadow: 0 1px 6px rgba(0, 0, 0, .7) inset, 0 1px 0 rgba(0, 0, 0, .2);
-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, .7) inset, 0 1px 0 rgba(0, 0, 0, .2);
box-shadow: 0 1px 6px rgba(0, 0, 0, .7) inset, 0 1px 0 rgba(0, 0, 0, .2)
}
a.cke_button_off:hover, a.cke_button_off:focus, a.cke_button_off:active, a.cke_button_disabled:hover, a.cke_button_disabled:focus, a.cke_button_disabled:active {
-moz-box-shadow: 0 0 1px rgba(0, 0, 0, .3) inset;
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .3) inset;
box-shadow: 0 0 1px rgba(0, 0, 0, .3) inset;
background: #ccc;
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#ccc));
background-image: -moz-linear-gradient(top, #f2f2f2, #ccc);
background-image: -webkit-linear-gradient(top, #f2f2f2, #ccc);
background-image: -o-linear-gradient(top, #f2f2f2, #ccc);
background-image: -ms-linear-gradient(top, #f2f2f2, #ccc);
background-image: linear-gradient(top, #f2f2f2, #ccc);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f2f2f2', endColorstr='#cccccc')
}
.cke_button_icon {
cursor: inherit;
background-repeat: no-repeat;
margin-top: 1px;
width: 16px;
height: 16px;
float: left;
display: inline-block
}
.cke_rtl .cke_button_icon {
float: right
}
.cke_hc .cke_button_icon {
display: none
}
.cke_button_label {
display: none;
padding-left: 3px;
margin-top: 1px;
line-height: 17px;
vertical-align: middle;
float: left;
cursor: default;
color: #474747;
text-shadow: 0 1px 0 rgba(255, 255, 255, .5)
}
.cke_rtl .cke_button_label {
padding-right: 3px;
padding-left: 0;
float: right
}
.cke_hc .cke_button_label {
padding: 0;
display: inline-block;
font-size: 12px
}
.cke_button_arrow {
display: inline-block;
margin: 8px 0 0 1px;
width: 0;
height: 0;
cursor: default;
vertical-align: top;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
border-top: 3px solid #474747
}
.cke_rtl .cke_button_arrow {
margin-right: 5px;
margin-left: 0
}
.cke_hc .cke_button_arrow {
font-size: 10px;
margin: 3px -2px 0 3px;
width: auto;
border: 0
}
.cke_toolbar_separator {
float: left;
background-color: #c0c0c0;
background-color: rgba(0, 0, 0, .2);
margin: 5px 2px 0;
height: 18px;
width: 1px;
-webkit-box-shadow: 1px 0 1px rgba(255, 255, 255, .5);
-moz-box-shadow: 1px 0 1px rgba(255, 255, 255, .5);
box-shadow: 1px 0 1px rgba(255, 255, 255, .5)
}
.cke_rtl .cke_toolbar_separator {
float: right;
-webkit-box-shadow: -1px 0 1px rgba(255, 255, 255, .1);
-moz-box-shadow: -1px 0 1px rgba(255, 255, 255, .1);
box-shadow: -1px 0 1px rgba(255, 255, 255, .1)
}
.cke_hc .cke_toolbar_separator {
width: 0;
border-left: 1px solid;
margin: 1px 5px 0 0
}
.cke_toolbar_break {
display: block;
clear: left
}
.cke_rtl .cke_toolbar_break {
clear: right
}
.cke_toolbox_collapser {
width: 12px;
height: 11px;
float: right;
margin: 11px 0 0;
font-size: 0;
cursor: default;
text-align: center;
border: 1px solid #a6a6a6;
border-bottom-color: #979797;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 0 2px rgba(255, 255, 255, .15) inset, 0 1px 0 rgba(255, 255, 255, .15) inset;
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 0 2px rgba(255, 255, 255, .15) inset, 0 1px 0 rgba(255, 255, 255, .15) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 0 2px rgba(255, 255, 255, .15) inset, 0 1px 0 rgba(255, 255, 255, .15) inset;
background: #e4e4e4;
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e4e4e4));
background-image: -moz-linear-gradient(top, #fff, #e4e4e4);
background-image: -webkit-linear-gradient(top, #fff, #e4e4e4);
background-image: -o-linear-gradient(top, #fff, #e4e4e4);
background-image: -ms-linear-gradient(top, #fff, #e4e4e4);
background-image: linear-gradient(top, #fff, #e4e4e4);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#ffffff', endColorstr='#e4e4e4')
}
.cke_toolbox_collapser:hover {
background: #ccc;
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#ccc));
background-image: -moz-linear-gradient(top, #f2f2f2, #ccc);
background-image: -webkit-linear-gradient(top, #f2f2f2, #ccc);
background-image: -o-linear-gradient(top, #f2f2f2, #ccc);
background-image: -ms-linear-gradient(top, #f2f2f2, #ccc);
background-image: linear-gradient(top, #f2f2f2, #ccc);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f2f2f2', endColorstr='#cccccc')
}
.cke_toolbox_collapser.cke_toolbox_collapser_min {
margin: 0 2px 4px
}
.cke_rtl .cke_toolbox_collapser {
float: left
}
.cke_toolbox_collapser .cke_arrow {
display: inline-block;
height: 0;
width: 0;
font-size: 0;
margin-top: 1px;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
border-bottom: 3px solid #474747;
border-top: 3px solid transparent
}
.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow {
margin-top: 4px;
border-bottom-color: transparent;
border-top-color: #474747
}
.cke_hc .cke_toolbox_collapser .cke_arrow {
font-size: 8px;
width: auto;
border: 0;
margin-top: 0;
margin-right: 2px
}
.cke_menubutton {
display: block
}
.cke_menuitem span {
cursor: default
}
.cke_menubutton:hover, .cke_menubutton:focus, .cke_menubutton:active {
background-color: #d3d3d3;
display: block
}
.cke_hc .cke_menubutton {
padding: 2px
}
.cke_hc .cke_menubutton:hover, .cke_hc .cke_menubutton:focus, .cke_hc .cke_menubutton:active {
border: 2px solid;
padding: 0
}
.cke_menubutton_inner {
display: table-row
}
.cke_menubutton_icon, .cke_menubutton_label, .cke_menuarrow {
display: table-cell
}
.cke_menubutton_icon {
background-color: #d7d8d7;
opacity: .70;
filter: alpha(opacity=70);
padding: 4px
}
.cke_hc .cke_menubutton_icon {
height: 16px;
width: 0;
padding: 4px 0
}
.cke_menubutton:hover .cke_menubutton_icon, .cke_menubutton:focus .cke_menubutton_icon, .cke_menubutton:active .cke_menubutton_icon {
background-color: #d0d2d0
}
.cke_menubutton_disabled:hover .cke_menubutton_icon, .cke_menubutton_disabled:focus .cke_menubutton_icon, .cke_menubutton_disabled:active .cke_menubutton_icon {
opacity: .3;
filter: alpha(opacity=30)
}
.cke_menubutton_label {
padding: 0 5px;
background-color: transparent;
width: 100%;
vertical-align: middle
}
.cke_menubutton_disabled .cke_menubutton_label {
opacity: .3;
filter: alpha(opacity=30)
}
.cke_menubutton:hover, .cke_menubutton:focus, .cke_menubutton:active {
background-color: #eff0ef
}
.cke_panel_frame .cke_menubutton_label {
display: none
}
.cke_menuseparator {
background-color: #d3d3d3;
height: 1px;
filter: alpha(opacity=70);
opacity: .70
}
.cke_menuarrow {
background-image: url(images/arrow.png);
background-position: 0 10px;
background-repeat: no-repeat;
padding: 0 5px
}
.cke_rtl .cke_menuarrow {
background-position: 5px -13px;
background-repeat: no-repeat
}
.cke_menuarrow span {
display: none
}
.cke_hc .cke_menuarrow span {
vertical-align: middle;
display: inline
}
.cke_combo {
display: inline-block;
float: left
}
.cke_rtl .cke_combo {
float: right
}
.cke_hc .cke_combo {
margin-top: -2px
}
.cke_combo_label {
display: none;
float: left;
line-height: 26px;
vertical-align: top;
margin-right: 5px
}
.cke_rtl .cke_combo_label {
float: right;
margin-left: 5px;
margin-right: 0
}
.cke_combo_button {
display: inline-block;
float: left;
margin: 0 6px 5px 0;
border: 1px solid #a6a6a6;
border-bottom-color: #979797;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 0 2px rgba(255, 255, 255, .15) inset, 0 1px 0 rgba(255, 255, 255, .15) inset;
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 0 2px rgba(255, 255, 255, .15) inset, 0 1px 0 rgba(255, 255, 255, .15) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 0 2px rgba(255, 255, 255, .15) inset, 0 1px 0 rgba(255, 255, 255, .15) inset;
background: #e4e4e4;
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e4e4e4));
background-image: -moz-linear-gradient(top, #fff, #e4e4e4);
background-image: -webkit-linear-gradient(top, #fff, #e4e4e4);
background-image: -o-linear-gradient(top, #fff, #e4e4e4);
background-image: -ms-linear-gradient(top, #fff, #e4e4e4);
background-image: linear-gradient(top, #fff, #e4e4e4);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#ffffff', endColorstr='#e4e4e4')
}
.cke_combo_off a.cke_combo_button:hover, .cke_combo_off a.cke_combo_button:focus {
background: #ccc;
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#ccc));
background-image: -moz-linear-gradient(top, #f2f2f2, #ccc);
background-image: -webkit-linear-gradient(top, #f2f2f2, #ccc);
background-image: -o-linear-gradient(top, #f2f2f2, #ccc);
background-image: -ms-linear-gradient(top, #f2f2f2, #ccc);
background-image: linear-gradient(top, #f2f2f2, #ccc);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#f2f2f2', endColorstr='#cccccc');
outline: 0
}
.cke_combo_off a.cke_combo_button:active, .cke_combo_on a.cke_combo_button {
border: 1px solid #777;
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 1px 5px rgba(0, 0, 0, .6) inset;
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 1px 5px rgba(0, 0, 0, .6) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 1px 5px rgba(0, 0, 0, .6) inset;
background: #b5b5b5;
background-image: -webkit-gradient(linear, left top, left bottom, from(#aaa), to(#cacaca));
background-image: -moz-linear-gradient(top, #aaa, #cacaca);
background-image: -webkit-linear-gradient(top, #aaa, #cacaca);
background-image: -o-linear-gradient(top, #aaa, #cacaca);
background-image: -ms-linear-gradient(top, #aaa, #cacaca);
background-image: linear-gradient(top, #aaa, #cacaca);
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#aaaaaa', endColorstr='#cacaca')
}
.cke_combo_on a.cke_combo_button:hover, .cke_combo_on a.cke_combo_button:focus, .cke_combo_on a.cke_combo_button:active {
-moz-box-shadow: 0 1px 6px rgba(0, 0, 0, .7) inset, 0 1px 0 rgba(0, 0, 0, .2);
-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, .7) inset, 0 1px 0 rgba(0, 0, 0, .2);
box-shadow: 0 1px 6px rgba(0, 0, 0, .7) inset, 0 1px 0 rgba(0, 0, 0, .2)
}
.cke_rtl .cke_combo_button {
float: right;
margin-left: 5px;
margin-right: 0
}
.cke_hc a.cke_combo_button {
padding: 3px
}
.cke_hc .cke_combo_on a.cke_combo_button, .cke_hc .cke_combo_off a.cke_combo_button:hover, .cke_hc .cke_combo_off a.cke_combo_button:focus, .cke_hc .cke_combo_off a.cke_combo_button:active {
border-width: 3px;
padding: 1px
}
.cke_combo_text {
line-height: 26px;
padding-left: 10px;
text-overflow: ellipsis;
overflow: hidden;
float: left;
cursor: default;
color: #474747;
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
width: 60px
}
.cke_rtl .cke_combo_text {
float: right;
text-align: right;
padding-left: 0;
padding-right: 10px
}
.cke_hc .cke_combo_text {
line-height: 18px;
font-size: 12px
}
.cke_combo_open {
cursor: default;
display: inline-block;
font-size: 0;
height: 19px;
line-height: 17px;
margin: 1px 7px 1px;
width: 5px
}
.cke_hc .cke_combo_open {
height: 12px
}
.cke_combo_arrow {
margin: 11px 0 0;
float: left;
height: 0;
width: 0;
font-size: 0;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
border-top: 3px solid #474747
}
.cke_hc .cke_combo_arrow {
font-size: 10px;
width: auto;
border: 0;
margin-top: 3px
}
.cke_combo_disabled .cke_combo_inlinelabel, .cke_combo_disabled .cke_combo_open {
opacity: .3
}
.cke_path {
float: left;
margin: -2px 0 2px
}
.cke_path_item, .cke_path_empty {
display: inline-block;
float: left;
padding: 3px 4px;
margin-right: 2px;
cursor: default;
text-decoration: none;
outline: 0;
border: 0;
color: #4c4c4c;
text-shadow: 0 1px 0 #fff;
font-weight: bold;
font-size: 11px
}
.cke_rtl .cke_path, .cke_rtl .cke_path_item, .cke_rtl .cke_path_empty {
float: right
}
a.cke_path_item:hover, a.cke_path_item:focus, a.cke_path_item:active {
background-color: #bfbfbf;
color: #333;
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, .5) inset, 0 1px 0 rgba(255, 255, 255, .5);
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .5) inset, 0 1px 0 rgba(255, 255, 255, .5);
box-shadow: 0 0 4px rgba(0, 0, 0, .5) inset, 0 1px 0 rgba(255, 255, 255, .5)
}
.cke_hc a.cke_path_item:hover, .cke_hc a.cke_path_item:focus, .cke_hc a.cke_path_item:active {
border: 2px solid;
padding: 1px 2px
}
.cke_button__source_label, .cke_button__sourcedialog_label {
display: inline
}
.cke_combo__fontsize .cke_combo_text {
width: 30px
}
.cke_combopanel__fontsize {
width: 120px
}
.cke_source {
font-family: 'Courier New', Monospace;
font-size: small;
background-color: #fff;
white-space: pre
}
.cke_wysiwyg_frame, .cke_wysiwyg_div {
background-color: #fff
}
.cke_chrome {
visibility: inherit
}
.cke_voice_label {
display: none
}
legend.cke_voice_label {
display: none
}
a.cke_button_disabled, a.cke_button_disabled:hover, a.cke_button_disabled:focus, a.cke_button_disabled:active {
filter: alpha(opacity=30)
}
.cke_button_disabled .cke_button_icon {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff, endColorstr=#00ffffff)
}
.cke_button_off:hover, .cke_button_off:focus, .cke_button_off:active {
filter: alpha(opacity=100)
}
.cke_combo_disabled .cke_combo_inlinelabel, .cke_combo_disabled .cke_combo_open {
filter: alpha(opacity=30)
}
.cke_toolbox_collapser {
border: 1px solid #a6a6a6
}
.cke_toolbox_collapser .cke_arrow {
margin-top: 1px
}
.cke_hc .cke_top, .cke_hc .cke_bottom, .cke_hc .cke_combo_button, .cke_hc a.cke_combo_button:hover, .cke_hc a.cke_combo_button:focus, .cke_hc .cke_toolgroup, .cke_hc .cke_button_on, .cke_hc a.cke_button_off:hover, .cke_hc a.cke_button_off:focus, .cke_hc a.cke_button_off:active, .cke_hc .cke_toolbox_collapser, .cke_hc .cke_toolbox_collapser:hover, .cke_hc .cke_panel_grouptitle {
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
}
.cke_button__about_icon {
background: url(icons.png) no-repeat 0 -0px !important;
}
.cke_button__bold_icon {
background: url(icons.png) no-repeat 0 -24px !important;
}
.cke_button__italic_icon {
background: url(icons.png) no-repeat 0 -48px !important;
}
.cke_button__strike_icon {
background: url(icons.png) no-repeat 0 -72px !important;
}
.cke_button__subscript_icon {
background: url(icons.png) no-repeat 0 -96px !important;
}
.cke_button__superscript_icon {
background: url(icons.png) no-repeat 0 -120px !important;
}
.cke_button__underline_icon {
background: url(icons.png) no-repeat 0 -144px !important;
}
.cke_button__blockquote_icon {
background: url(icons.png) no-repeat 0 -168px !important;
}
.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {
background: url(icons.png) no-repeat 0 -192px !important;
}
.cke_ltr .cke_button__copy_icon {
background: url(icons.png) no-repeat 0 -216px !important;
}
.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {
background: url(icons.png) no-repeat 0 -240px !important;
}
.cke_ltr .cke_button__cut_icon {
background: url(icons.png) no-repeat 0 -264px !important;
}
.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {
background: url(icons.png) no-repeat 0 -288px !important;
}
.cke_ltr .cke_button__paste_icon {
background: url(icons.png) no-repeat 0 -312px !important;
}
.cke_button__horizontalrule_icon {
background: url(icons.png) no-repeat 0 -336px !important;
}
.cke_button__image_icon {
background: url(icons.png) no-repeat 0 -360px !important;
}
.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {
background: url(icons.png) no-repeat 0 -384px !important;
}
.cke_ltr .cke_button__indent_icon {
background: url(icons.png) no-repeat 0 -408px !important;
}
.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {
background: url(icons.png) no-repeat 0 -432px !important;
}
.cke_ltr .cke_button__outdent_icon {
background: url(icons.png) no-repeat 0 -456px !important;
}
.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {
background: url(icons.png) no-repeat 0 -480px !important;
}
.cke_ltr .cke_button__anchor_icon {
background: url(icons.png) no-repeat 0 -504px !important;
}
.cke_button__link_icon {
background: url(icons.png) no-repeat 0 -528px !important;
}
.cke_button__unlink_icon {
background: url(icons.png) no-repeat 0 -552px !important;
}
.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {
background: url(icons.png) no-repeat 0 -576px !important;
}
.cke_ltr .cke_button__bulletedlist_icon {
background: url(icons.png) no-repeat 0 -600px !important;
}
.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {
background: url(icons.png) no-repeat 0 -624px !important;
}
.cke_ltr .cke_button__numberedlist_icon {
background: url(icons.png) no-repeat 0 -648px !important;
}
.cke_button__maximize_icon {
background: url(icons.png) no-repeat 0 -672px !important;
}
.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {
background: url(icons.png) no-repeat 0 -696px !important;
}
.cke_ltr .cke_button__pastetext_icon {
background: url(icons.png) no-repeat 0 -720px !important;
}
.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {
background: url(icons.png) no-repeat 0 -744px !important;
}
.cke_ltr .cke_button__pastefromword_icon {
background: url(icons.png) no-repeat 0 -768px !important;
}
.cke_button__removeformat_icon {
background: url(icons.png) no-repeat 0 -792px !important;
}
.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {
background: url(icons.png) no-repeat 0 -816px !important;
}
.cke_ltr .cke_button__source_icon {
background: url(icons.png) no-repeat 0 -840px !important;
}
.cke_button__specialchar_icon {
background: url(icons.png) no-repeat 0 -864px !important;
}
.cke_button__scayt_icon {
background: url(icons.png) no-repeat 0 -888px !important;
}
.cke_button__table_icon {
background: url(icons.png) no-repeat 0 -912px !important;
}
.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {
background: url(icons.png) no-repeat 0 -936px !important;
}
.cke_ltr .cke_button__redo_icon {
background: url(icons.png) no-repeat 0 -960px !important;
}
.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {
background: url(icons.png) no-repeat 0 -984px !important;
}
.cke_ltr .cke_button__undo_icon {
background: url(icons.png) no-repeat 0 -1008px !important;
}
.cke_button__spellchecker_icon {
background: url(icons.png) no-repeat 0 -1032px !important;
}
.cke_button__fastimage_icon {
background: url(icons.png) no-repeat 0 -1056px !important;
}
.cke_hidpi .cke_button__about_icon {
background: url(icons_hidpi.png) no-repeat 0 -0px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__bold_icon {
background: url(icons_hidpi.png) no-repeat 0 -24px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__italic_icon {
background: url(icons_hidpi.png) no-repeat 0 -48px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__strike_icon {
background: url(icons_hidpi.png) no-repeat 0 -72px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__subscript_icon {
background: url(icons_hidpi.png) no-repeat 0 -96px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__superscript_icon {
background: url(icons_hidpi.png) no-repeat 0 -120px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__underline_icon {
background: url(icons_hidpi.png) no-repeat 0 -144px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__blockquote_icon {
background: url(icons_hidpi.png) no-repeat 0 -168px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {
background: url(icons_hidpi.png) no-repeat 0 -192px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__copy_icon, .cke_ltr.cke_hidpi .cke_button__copy_icon {
background: url(icons_hidpi.png) no-repeat 0 -216px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {
background: url(icons_hidpi.png) no-repeat 0 -240px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__cut_icon, .cke_ltr.cke_hidpi .cke_button__cut_icon {
background: url(icons_hidpi.png) no-repeat 0 -264px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {
background: url(icons_hidpi.png) no-repeat 0 -288px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__paste_icon, .cke_ltr.cke_hidpi .cke_button__paste_icon {
background: url(icons_hidpi.png) no-repeat 0 -312px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__horizontalrule_icon {
background: url(icons_hidpi.png) no-repeat 0 -336px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__image_icon {
background: url(icons_hidpi.png) no-repeat 0 -360px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {
background: url(icons_hidpi.png) no-repeat 0 -384px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__indent_icon, .cke_ltr.cke_hidpi .cke_button__indent_icon {
background: url(icons_hidpi.png) no-repeat 0 -408px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {
background: url(icons_hidpi.png) no-repeat 0 -432px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__outdent_icon, .cke_ltr.cke_hidpi .cke_button__outdent_icon {
background: url(icons_hidpi.png) no-repeat 0 -456px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {
background: url(icons_hidpi.png) no-repeat 0 -480px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__anchor_icon, .cke_ltr.cke_hidpi .cke_button__anchor_icon {
background: url(icons_hidpi.png) no-repeat 0 -504px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__link_icon {
background: url(icons_hidpi.png) no-repeat 0 -528px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__unlink_icon {
background: url(icons_hidpi.png) no-repeat 0 -552px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {
background: url(icons_hidpi.png) no-repeat 0 -576px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon, .cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {
background: url(icons_hidpi.png) no-repeat 0 -600px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {
background: url(icons_hidpi.png) no-repeat 0 -624px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__numberedlist_icon, .cke_ltr.cke_hidpi .cke_button__numberedlist_icon {
background: url(icons_hidpi.png) no-repeat 0 -648px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__maximize_icon {
background: url(icons_hidpi.png) no-repeat 0 -672px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {
background: url(icons_hidpi.png) no-repeat 0 -696px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__pastetext_icon, .cke_ltr.cke_hidpi .cke_button__pastetext_icon {
background: url(icons_hidpi.png) no-repeat 0 -720px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {
background: url(icons_hidpi.png) no-repeat 0 -744px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__pastefromword_icon, .cke_ltr.cke_hidpi .cke_button__pastefromword_icon {
background: url(icons_hidpi.png) no-repeat 0 -768px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__removeformat_icon {
background: url(icons_hidpi.png) no-repeat 0 -792px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {
background: url(icons_hidpi.png) no-repeat 0 -816px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__source_icon, .cke_ltr.cke_hidpi .cke_button__source_icon {
background: url(icons_hidpi.png) no-repeat 0 -840px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__specialchar_icon {
background: url(icons_hidpi.png) no-repeat 0 -864px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__scayt_icon {
background: url(icons_hidpi.png) no-repeat 0 -888px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__table_icon {
background: url(icons_hidpi.png) no-repeat 0 -912px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {
background: url(icons_hidpi.png) no-repeat 0 -936px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__redo_icon, .cke_ltr.cke_hidpi .cke_button__redo_icon {
background: url(icons_hidpi.png) no-repeat 0 -960px !important;
background-size: 16px !important;
}
.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {
background: url(icons_hidpi.png) no-repeat 0 -984px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_ltr .cke_button__undo_icon, .cke_ltr.cke_hidpi .cke_button__undo_icon {
background: url(icons_hidpi.png) no-repeat 0 -1008px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__spellchecker_icon {
background: url(icons_hidpi.png) no-repeat 0 -1032px !important;
background-size: 16px !important;
}
.cke_hidpi .cke_button__fastimage_icon {
background: url(icons_hidpi.png) no-repeat 0 -2112px !important;
} |
reference/www.arduino.cc/en/Reference/ClientPrint.html | enurseitov/robotrack-working-copy | <!DOCTYPE html>
<!--html5-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<!-- Mirrored from www.arduino.cc/en/Reference/ClientPrint by HTTrack Website Copier/3.x [XR&CO'2010], Wed, 17 Jun 2015 14:23:38 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8" />
<title>Arduino - ClientPrint </title>
<link rel="shortcut icon" type="image/x-icon" href="../favicon.png" />
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<link rel="stylesheet" href="../../fonts/fonts.css" type="text/css" />
<link rel="stylesheet" href="../../css/arduino-icons.css">
<link rel="stylesheet" href="../../css/animation.css"><!--[if IE 7]>
<link rel="stylesheet" href="//arduino.cc/css/arduino-icons-ie7.css"><![endif]-->
<!--[if gte IE 9]><!-->
<link rel='stylesheet' href='../../css/foundation2.css' type='text/css' />
<!--<![endif]-->
<!--[if IE 8]>
<link rel='stylesheet' href='//arduino.cc/css/foundation_ie8.css' type='text/css' />
<![endif]-->
<link rel='stylesheet' href='../../css/arduino_code_highlight.css' type='text/css' />
<link rel="stylesheet" type="text/css" media="screen" href="../../css/typeplate.css">
<link rel='stylesheet' href='../pub/skins/arduinoWide_SSO/css/arduinoWide_SSO.css' type='text/css' />
<link rel='stylesheet' href='../../css/common.css' type='text/css' />
<link rel="stylesheet" href="../../css/download_page.css" />
<link href="https://plus.google.com/114839908922424087554" rel="publisher" />
<!-- embedded JS and CSS from PmWiki plugins -->
<!--HeaderText--><style type='text/css'><!--
ul, ol, pre, dl, p { margin-top:0px; margin-bottom:0px; }
code { white-space: nowrap; }
.vspace { margin-top:1.33em; }
.indent { margin-left:40px; }
.outdent { margin-left:40px; text-indent:-40px; }
a.createlinktext { text-decoration:none; border-bottom:1px dotted gray; }
a.createlink { text-decoration:none; position:relative; top:-0.5em;
font-weight:bold; font-size:smaller; border-bottom:none; }
img { border:0px; }
span.anchor {
float: left;
font-size: 10px;
margin-left: -10px;
width: 10px;
position:relative; top:-0.1em;
text-align: center;
}
span.anchor a { text-decoration: none; }
span.anchor a:hover { text-decoration: underline; }
ol.toc { text-indent:-20px; list-style: none; }
ol.toc ol.toc { text-indent:-40px; }
div.tocfloat { font-size: smaller; margin-bottom: 10px;
border-top: 1px dotted #555555; border-bottom: 1px dotted #555555;
padding-top: 5px; padding-bottom: 5px;
width: 38%; float: right; margin-left: 10px; clear: right;
margin-right:-13px; padding-right: 13px; padding-left: 13px;
background-color: #eeeeee; }
div.toc { font-size: smaller;
padding: 5px; border: 1px dotted #cccccc;
background: #f7f7f7;
margin-bottom: 10px; }
div.toc p { background-color: #f9f6d6;
margin-top:-5px; padding-top: 5px;
margin-left:-5px; padding-left: 5px;
margin-right:-5px; padding-right: 5px;
padding-bottom: 3px;
border-bottom: 1px dotted #cccccc; }.editconflict { color:green;
font-style:italic; margin-top:1.33em; margin-bottom:1.33em; }
table.markup { border: 2px dotted #ccf; width:90%; }
td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
td.markup1 { border-bottom: 1px solid #ccf; }
div.faq { margin-left:2em; }
div.faq p.question { margin: 1em 0 0.75em -2em; font-weight:bold; }
div.faq hr { margin-left: -2em; }
.frame
{ border:1px solid #cccccc; padding:4px; background-color:#f9f9f9; }
.lfloat { float:left; margin-right:0.5em; }
.rfloat { float:right; margin-left:0.5em; }
a.varlink { text-decoration:none; }
--></style><script type="text/javascript">
function toggle(obj) {
var elstyle = document.getElementById(obj).style;
var text = document.getElementById(obj + "tog");
if (elstyle.display == 'none') {
elstyle.display = 'block';
text.innerHTML = "hide";
} else {
elstyle.display = 'none';
text.innerHTML = "show";
}
}
</script> <meta name='robots' content='index,follow' />
<script src="http://arduino.cc/js/vendor/custom.modernizr.js"></script>
<!-- do not remove none of those lines, comments embedding in pages will break! -->
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js" type="text/javascript"></script>
<script src="http://arduino.cc/en/pub/js/newsletter_subscribe_popup.js" type="text/javascript"></script>
<script src="https://checkout.stripe.com/checkout.js" type="text/javascript"></script>
<script src="https://www.arduino.cc/en/pub/js/software_download.js" type="text/javascript"></script><!-- keep https! -->
<link rel='stylesheet' href='../../../code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.min.css' type='text/css' />
</head>
<body>
<div id="menuWings" class="fixed"></div>
<div id="page">
<script>
var userAgent = (navigator.userAgent || navigator.vendor || window.opera).toLowerCase();
if(userAgent.indexOf('mac')>0){
$("head").append('<style type="text/css">@-moz-document url-prefix() {h1 a, h2 a, h3 a, h4 a, h5 a, h1 a:hover, h2 a:hover, th a, th a:hover, h3 a:hover, h4 a:hover, h5 a:hover, #wikitext h2 a:hover, #wikitext h3 a:hover, #wikitext h4 a:hover {padding-bottom: 0.5em!important;} #pageheader .search input{font-family: "TyponineSans Regular 18";} #pagefooter .monospace{margin-top: -4px;} #navWrapper ul.left > li{margin-top: -2px; padding-bottom: 2px;}#navWrapper ul.right > li{margin-top: -5px; padding-bottom: 5px;}#navWrapper ul.right > li ul{margin-top: 4px;} .slider-container .fixed-caption p{padding:8px 0 14px 0}}</style>');
}
</script>
<!--[if IE]>
<link rel='stylesheet' href='https://id.arduino.cc//css/ie-monospace.css' type='text/css' />
<![endif]-->
<div id="menuWings" class="fixed"></div>
<!--[if IE 8]>
<div class="alert-box panel ie8alert">
<p><strong>Arduino.cc offers limited compatibility for Internet Explorer 8. Get a modern browser as Chrome, Firefox or Safari.</strong></p>
<a href="" class="close">×</a>
</div>
<![endif]-->
<div id="pageheader">
<div class="row" class="contain-to-grid">
<div class="small-6 large-8 eight columns">
<div class="title"><a href="http://www.arduino.cc/">Arduino</a></div>
</div>
<div class="small-6 large-4 four columns search">
<div class="row collapse">
<form method="GET" action="http://www.google.com/search">
<div class="small-12 twelve columns">
<i class="icon-search-2"></i>
<input type="hidden" name="ie" value="UTF-8">
<input type="hidden" name="oe" value="UTF-8">
<input type="text" name="q" size="25" maxlength="255" value="" placeholder="Search the Arduino Website">
<input type="submit" name="btnG" VALUE="search">
<input type="hidden" name="domains" value="http://www.arduino.cc">
<input type="hidden" name="sitesearch" value="http://www.arduino.cc">
</div>
</form> </div>
</div>
</div>
<!--[if gte IE 9]><!-->
<div id="navWrapper" class="sticky">
<!--<![endif]-->
<!--[if IE 8]>
<div id="navWrapper">
<![endif]-->
<nav class="top-bar" data-options="is_hover:true" >
<ul class="title-area">
<li class="name"></li>
</ul>
<section class="top-bar-section">
<ul class="left">
<li id="navLogo">
<a href="http://www.arduino.cc/">
<img src="../../img/logo_46.png" alt="userpicture" />
</a>
</li>
<li id="navHome"><a href="http://www.arduino.cc/">Home</a></li>
<li><a href="http://store.arduino.cc/">Buy</a></li>
<li><a href="http://www.arduino.cc/en/Main/Software">Download</a></li>
<li class="has-dropdown"><a href="#">Products</a>
<ul class="dropdown">
<li><a href="http://www.arduino.cc/en/Main/Products">Arduino</a></li>
<li><a href="http://www.arduino.cc/en/ArduinoAtHeart/Products">AtHeart</a></li>
<li><a href="http://www.arduino.cc/en/ArduinoCertified/Products">Certified</a></li>
</ul>
</li>
<li class="has-dropdown active"><a href="#">Learning</a>
<ul class="dropdown">
<li><a href="../Guide/HomePage.html">Getting started</a></li>
<li><a href="http://www.arduino.cc/en/Tutorial/HomePage">Examples</a></li>
<li><a href="HomePage.html">Reference</a></li>
<li><a href="http://playground.arduino.cc/">Playground</a></li>
</ul>
</li>
<li><a href="http://forum.arduino.cc/">Forum</a></li>
<li class="has-dropdown"><a href="#">Support</a>
<ul class="dropdown">
<li><a href="../Main/FAQ.html">FAQ</a></li>
<li><a href="http://www.arduino.cc/en/ContactUs">Contact Us</a></li>
</ul>
</li>
<li><a href="http://blog.arduino.cc/">Blog</a></li>
</ul>
<ul class="right">
<li><a href="https://id.arduino.cc/auth/login/?returnurl=http%3A%2F%2Fwww.arduino.cc%2Fen%2FReference%2FClientPrint" class="cart">LOG IN</a></li>
<li><a href="https://id.arduino.cc/auth/signup" class="cart">SIGN UP</a></li>
</ul>
</section>
</nav>
</div>
</div>
<br class="clear"/>
<div id="pagetext">
<!--PageText-->
<div id='wikitext'>
<p><strong>Reference</strong> <a class='wikilink' href='HomePage.html'>Language</a> | <a class='wikilink' href='Libraries.html'>Libraries</a> | <a class='wikilink' href='Comparison.html'>Comparison</a> | <a class='wikilink' href='Changes.html'>Changes</a>
</p>
<p class='vspace'></p><p><a class='wikilink' href='Ethernet.html'>Ethernet</a> : <em>Client</em> class
</p>
<p class='vspace'></p><h2>print()</h2>
<h4>Description</h4>
<p>Print data to the server that a client is connected to. Prints numbers as a sequence of digits, each an ASCII character (e.g. the number 123 is sent as the three characters '1', '2', '3').
</p>
<p class='vspace'></p><h4>Syntax</h4>
<p><em>client</em>.print(data) <br /><em>client</em>.print(data, BASE)
</p>
<p class='vspace'></p><h4>Parameters</h4>
<p>data: the data to print (char, byte, int, long, or string)
</p>
<p class='vspace'></p><p>BASE (optional): the base in which to print numbers: DEC for decimal (base 10), OCT for octal (base 8), HEX for hexadecimal (base 16).<br />
</p>
<p class='vspace'></p><h4>Returns</h4>
<p>byte: returns the number of bytes written, though reading that number is optional<br /><br /><a class='wikilink' href='HomePage.html'>Reference Home</a>
</p>
<p class='vspace'></p><p><em>Corrections, suggestions, and new documentation should be posted to the <a class='urllink' href='http://arduino.cc/forum/index.php/board,23.0.html' rel='nofollow'>Forum</a>.</em>
</p>
<p class='vspace'></p><p>The text of the Arduino reference is licensed under a
<a class='urllink' href='http://creativecommons.org/licenses/by-sa/3.0/' rel='nofollow'>Creative Commons Attribution-ShareAlike 3.0 License</a>. Code samples in the reference are released into the public domain.
</p>
</div>
<!-- AddThis Button Style BEGIN -->
<style>
.addthis_toolbox {
margin: 2em 0 1em;
}
.addthis_toolbox img {
float: left;
height: 25px;
margin-right: 10px;
width: auto;
}
.addthis_toolbox .social-container {
float: left;
height: 27px;
width: auto;
}
.addthis_toolbox .social-container .social-content {
float: left;
margin-top: 2px;
max-width: 0;
overflow: hidden;
-moz-transition: max-width .3s ease-out;
-webkit-transition: max-width .3s ease-out;
-o-transition: max-width .3s ease-out;
transition: max-width .3s ease-out;
}
.addthis_toolbox .social-container:hover .social-content {
max-width: 100px;
-moz-transition: max-width .2s ease-in;
-webkit-transition: max-width .2s ease-in;
-o-transition: max-width .2s ease-in;
transition: max-width .2s ease-in;
}
.addthis_toolbox .social-container .social-content a {
float: left;
margin-right: 5px;
}
.addthis_toolbox h3 {
font-size: 24px;
text-align: left;
}
</style>
<!-- AddThis Button Style END -->
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style">
<h3>Share</h3>
<!-- FACEBOOK -->
<div class="social-container">
<img src="../pub/skins/arduinoWide_SSO/img/facebook.png" />
<div class="social-content">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
</div>
</div>
<!-- TWITTER -->
<div class="social-container">
<img src="../pub/skins/arduinoWide_SSO/img/twitter.png">
<div class="social-content">
<a class="addthis_button_tweet"></a>
</div>
</div>
<!-- PINTEREST -->
<div class="social-container">
<img src="../pub/skins/arduinoWide_SSO/img/pinterest.png">
<div class="social-content">
<a class="addthis_button_pinterest_pinit" pi:pinit:url="//www.addthis.com/features/pinterest" pi:pinit:media="//www.addthis.com/cms-content/images/features/pinterest-lg.png"></a>
</div>
</div>
<!-- G+ -->
<div class="social-container">
<img src="../pub/skins/arduinoWide_SSO/img/gplus.png">
<div class="social-content">
<a class="addthis_button_google_plusone" g:plusone:size="medium"></a>
</div>
</div>
<script type="text/javascript">var addthis_config = {"data_track_addressbar":false};</script>
<script type="text/javascript" src="http://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-50573fab238b0d34"></script>
</div>
<!-- AddThis Button END -->
</div> <!-- eof pagetext -->
</div> <!-- eof page -->
<!--PageFooterFmt-->
<div id="pagefooter">
<div id="newsletterModal" class="reveal-modal small">
<form action="http://www.arduino.cc/subscribe.php" method="post" name="sendy-subscribe-form" id="sendy-subscribe-form" class="form-popup">
<div class="modalHeader">
<h3 style="line-height: 1.8rem;" class="modal-header-alt">This link has expired. <br>Please re-subscribe to our Newsletters.</h3>
<h3 class="modal-header-main">Subscribe to our Newsletters</h3>
</div>
<div class="modalBody" id="newsletterModalBody">
<div id="newsletterEmailField" class="row" style="padding-left: 0">
<div class="large-2 columns">
<label for="email" class="newsletter-form-label inline">Email</label>
</div>
<div class="large-10 columns" style="padding-left: 0">
<input placeholder="Enter your email address" type="email" name="email" class="subscribe-form-input" />
<p id="emailMissing" class="newsletterPopupError">Please enter a valid email to subscribe</p>
</div>
</div>
<div style="margin-left:20px">
<div style="margin-bottom:0.3em">
<input style="display:none" type="checkbox" checked name="list[]" value="arduino_newsletter_id" id="worldwide" class="newsletter-form-checkbox" />
<label for="worldwide"></label>
<div style="display:inline-block" class="newsletter-form-label">Arduino Newsletter</div>
</div>
<div>
<input style="display:none" type="checkbox" checked name="list[]" value="arduino_store_newsletter_id" id="store" class="newsletter-form-checkbox" />
<label for="store"></label>
<div style="display:inline-block" class="newsletter-form-label">Arduino Store Newsletter</div>
</div>
</div>
<div>
<p class="newsletterPopupError2" id="newsletterSubscribeStatus"></p>
</div>
</div>
<div class="row modalFooter">
<div class="form-buttons-row">
<button type="button" value="Cancel" class="popup-form-button white cancel-modal close-reveal-modal">Cancel</button>
<button type="submit" name="Subscribe" id="subscribe-submit-btn" class="popup-form-button">Next</button>
</div>
</div>
</form>
<!-- step 2, confirm popup -->
<div class="confirm-popup" style="margin-bottom:1em">
<div class="modalHeader">
<h3>Confirm your email address</h3>
</div>
<div class="modalBody" id="newsletterModalBody" style="padding-right:1em;margin-bottom:0">
<p style="margin-bottom:1em;font-size:15px">
We need to confirm your email address.<br>
To complete the subscription, please click the link in the
email we just sent you.
</p>
<p style="margin-bottom:1em;font-size:15px">
Thank you for subscribing!
</p>
<p style="margin-bottom:1em;font-size:15px">
Arduino<br>
via Egeo 16<br>
Torino, 10131<br>
Italy<br>
</p>
</div>
<div class="row modalFooter">
<div class="form-buttons-row">
<button name="Ok" class="popup-form-button" id="close-confirm-popup">Ok</button>
</div>
</div>
</div>
</div>
<div id="pagefooter" class="pagefooter">
<div class="row">
<div class="large-8 eight columns">
<div class="large-4 four columns newsletter-box">
<!-- Begin Sendy Signup Form -->
<h6>Newsletter</h6>
<div>
<input type="email" name="email" class="email" id="sendy-EMAIL" placeholder="Enter your email to sign up">
<i class="icon-right-small"></i>
<input value="Subscribe" name="subscribe" id="sendy-subscribe" class="newsletter-button">
</div>
<!--End sendy_embed_signup-->
</div>
<div class="clearfix"></div>
<ul class="inline-list">
<li class="monospace">©2015 Arduino</li>
<li><a href="http://www.arduino.cc/en/Main/CopyrightNotice">Copyright Notice</a></li>
<li><a href='http://www.arduino.cc/en/Main/ContactUs'>Contact us</a></li>
<li><a href='http://www.arduino.cc/en/Main/AboutUs'>About us</a></li>
<li><a href='http://www.arduino.cc/Careers'>Careers</a></li>
</ul>
</div>
<div class="large-4 four columns">
<ul id="arduinoSocialLinks" class="arduino-social-links">
<li>
<a href="https://twitter.com/arduino">
<img src="../../img/twitter.png" />
</a>
</li>
<li>
<a href="https://www.facebook.com/official.arduino">
<img src="../../img/facebook.png" />
</a>
</li>
<li>
<a href="https://plus.google.com/+Arduino">
<img src="../../img/gplus.png" />
</a>
</li>
<li>
<a href="https://www.flickr.com/photos/arduino_cc">
<img src="../../img/flickr.png" />
</a>
</li>
<li>
<a href="https://youtube.com/arduinoteam">
<img src="../../img/youtube.png" />
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--/PageFooterFmt-->
<!--[if gte IE 9]><!-->
<script src="http://arduino.cc/js/foundation.min.js"></script>
<script src="http://arduino.cc/js/foundation.topbar.custom.js"></script>
<script>
$(document).foundation();
</script>
<!--<![endif]-->
<!--[if IE 8]>
<script src="//arduino.cc/js/foundation_ie8.min.js"></script>
<script src="//arduino.cc/js/ie8/jquery.foundation.orbit.js"></script>
<script src="//arduino.cc/js/ie8/jquery.foundation.alerts.js"></script>
<script src="//arduino.cc/js/app.js"></script>
<script>
$(window).load(function(){
$("#featured").orbit();
});
</script>
<![endif]-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-22581631-3']);
_gaq.push(['_setDomainName', 'arduino.cc']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script>
$(window).load(function(){
$('a').each (function () {
href = $(this).attr ('href');
if (href !== undefined && href.substring (0, 4) == 'http' && href.indexOf ('http://www.arduino.cc/en/Arduino/Cc') == -1)
$(this).attr ('target', '_blank');
});
});
</script>
</body>
<!-- Mirrored from www.arduino.cc/en/Reference/ClientPrint by HTTrack Website Copier/3.x [XR&CO'2010], Wed, 17 Jun 2015 14:23:38 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
</html>
|
doc/classes/Origami/Annotation/RichMedia/Presentation.html | cheapbytz/borderless-origami-pdf | <?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" xml:lang="en" lang="en">
<head>
<title>Class: Origami::Annotation::RichMedia::Presentation</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" />
<script type="text/javascript">
// <![CDATA[
function popupCode( url ) {
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
}
function toggleCode( id ) {
if ( document.getElementById )
elem = document.getElementById( id );
else if ( document.all )
elem = eval( "document.all." + id );
else
return false;
elemStyle = elem.style;
if ( elemStyle.display != "block" ) {
elemStyle.display = "block"
} else {
elemStyle.display = "none"
}
return true;
}
// Make codeblocks hidden by default
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
// ]]>
</script>
</head>
<body>
<div id="classHeader">
<table class="header-table">
<tr class="top-aligned-row">
<td><strong>Class</strong></td>
<td class="class-name-in-header">Origami::Annotation::RichMedia::Presentation</td>
</tr>
<tr class="top-aligned-row">
<td><strong>In:</strong></td>
<td>
<a href="../../../../files/origami/annotations_rb.html">
origami/annotations.rb
</a>
<br />
</td>
</tr>
<tr class="top-aligned-row">
<td><strong>Parent:</strong></td>
<td>
Dictionary
</td>
</tr>
</table>
</div>
<!-- banner header -->
<div id="bodyContent">
<div id="contextContent">
</div>
</div>
<!-- if includes -->
<div id="includes">
<h3 class="section-bar">Included Modules</h3>
<div id="includes-list">
<span class="include-name"><a href="../../Configurable.html">Configurable</a></span>
</div>
</div>
<div id="section">
<div id="constants-list">
<h3 class="section-bar">Constants</h3>
<div class="name-list">
<table summary="Constants">
<tr class="top-aligned-row context-row">
<td class="context-item-name">WINDOWED</td>
<td>=</td>
<td class="context-item-value">:Windowed</td>
</tr>
<tr class="top-aligned-row context-row">
<td class="context-item-name">EMBEDDED</td>
<td>=</td>
<td class="context-item-value">:Embedded</td>
</tr>
</table>
</div>
</div>
<!-- if method_list -->
</div>
<div id="validator-badges">
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
</div>
</body>
</html> |
qt_help/tutorial/Sintassi_ST_eng.html | MECTsrl/mect_plugins |
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1252"/>
<title>ST language syntax</title>
<style type="text/css">
@page { size: 21.59cm 27.94cm; margin-right: 2cm; margin-top: 2.5cm; margin-bottom: 1.5cm }
p { margin-bottom: 0.21cm; direction: ltr; color: #000000; orphans: 0; widows: 0 }
p.western { font-family: "Arial", "Times New Roman", serif; font-size: 10pt; so-language: it-IT }
h3.western { font-family: "Liberation Sans", "Arial", sans-serif; so-language: it-IT }
a:link { color: #0000ff }
a.cjk:visited { so-language: zh-CN }
</style>
</head>
<body>
<h3 class="western">ST language syntax</h3>
<p class="western">It is possible to have a guide of the syntax used in ST language.</p>
<p class="western"><img src="Sintassi_ST_1.png" name="Immagine 4" align="bottom" width="574" height="364" border="0"/></p>
<p class="western">Or by pressing <strong>right mouse key</strong> inside a program.</p>
<p class="western"><img src="Sintassi_ST_2.png" align="bottom" width="414" height="423" border="0"/></p>
<p class="western">For example, if you select “IF”, the syntax structure of this statement is shown.</p>
<p class="western"><strong>Fore more details see ATCMControl Engineering help.</strong></p>
<br/>
</body>
</html> |
samplecenter/basic/window/Resize.html | yonghuang/fastui | <!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" />
<title>
<ul>
<li>
窗体尺寸调节示例。
</li>
</ul></title>
<script src="../../../src/fastDev-import.js"></script>
<script type="text/javascript">
// 宽高尺寸等比调节
function showRatioWindow() {
// 比例为宽高比
fastDev.create("Window", {
height : 100,
width : 100 * 16 / 9,
resizeRatio : 16 / 9
});
}
// 限制最大最小尺寸
function showLimitWindow() {
// 最大最小宽高支持数字,百分比(相对于当前窗口),px等单位
fastDev.create("Window", {
maxWidth : "300px",
maxHeight : "50%",
minWidth : "120px",
minHeight : 45,
width : "173px",
height : "123px"
});
}
// 定义可调节尺寸的方向
function showHandleWindow() {
// n(北)、ne(东北)、e(东)、se(东南)、s(南)、sw(西南)、w(西)、nw(西北)、all(全部)
fastDev.create("Window", {
resizeDirection : "all",
title : "全方位尺寸调节"
});
}
// 禁用Resize功能
function showNoResizeWindow() {
fastDev.create("Window", {
allowResize : false
});
}
</script>
</head>
<body>
<div style="margin: 10px">
<div class="ui-layout-text">
尺寸调节
</div>
<div>
<input itype="Button" text="宽高尺寸等比调节" onclick="showRatioWindow()"/>
</div>
<br />
<div>
<input itype="Button" text="限制最大最小尺寸" onclick="showLimitWindow()"/>
</div>
<br />
<div>
<input itype="Button" text="定义可调节尺寸的方向" onclick="showHandleWindow()"/>
</div>
<br />
<div>
<input itype="Button" text="禁用Resize功能" onclick="showNoResizeWindow()"/>
</div>
</div>
</body>
</html>
|
doxygen/html/utils_8h.html | rousseau-lium/XenC | <!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.11"/>
<title>XenC: include/kenlm/util/double-conversion/utils.h File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">XenC
 <span id="projectnumber">1.0</span>
</div>
<div id="projectbrief">Open-source tool for data selection in NLP</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</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>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="dir_5417fc49d29c4cfca6bc3f52c9c7deba.html">kenlm</a></li><li class="navelem"><a class="el" href="dir_9ec25de6763e2dc47109730f881b7e3e.html">util</a></li><li class="navelem"><a class="el" href="dir_5fd0dc67f55ed56e6f450361f3921d3b.html">double-conversion</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> |
<a href="#namespaces">Namespaces</a> |
<a href="#define-members">Macros</a> |
<a href="#func-members">Functions</a> |
<a href="#var-members">Variables</a> </div>
<div class="headertitle">
<div class="title">utils.h File Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#include <stdlib.h></code><br />
<code>#include <string.h></code><br />
<code>#include <assert.h></code><br />
<code>#include <stdint.h></code><br />
</div><div class="textblock"><div class="dynheader">
Include dependency graph for utils.h:</div>
<div class="dyncontent">
<div class="center"><img src="utils_8h__incl.png" border="0" usemap="#include_2kenlm_2util_2double-conversion_2utils_8h" alt=""/></div>
<map name="include_2kenlm_2util_2double-conversion_2utils_8h" id="include_2kenlm_2util_2double-conversion_2utils_8h">
</map>
</div>
</div><div class="textblock"><div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dyncontent">
<div class="center"><img src="utils_8h__dep__incl.png" border="0" usemap="#include_2kenlm_2util_2double-conversion_2utils_8hdep" alt=""/></div>
<map name="include_2kenlm_2util_2double-conversion_2utils_8hdep" id="include_2kenlm_2util_2double-conversion_2utils_8hdep">
<area shape="rect" id="node2" href="bignum-dtoa_8h.html" title="include/kenlm/util\l/double-conversion/bignum\l-dtoa.h" alt="" coords="5,92,187,144"/>
<area shape="rect" id="node3" href="bignum_8h.html" title="include/kenlm/util\l/double-conversion/bignum.h" alt="" coords="210,99,403,137"/>
<area shape="rect" id="node4" href="diy-fp_8h.html" title="include/kenlm/util\l/double-conversion/diy-fp.h" alt="" coords="427,99,608,137"/>
<area shape="rect" id="node7" href="double-conversion_8h.html" title="include/kenlm/util\l/double-conversion/double\l-conversion.h" alt="" coords="633,92,810,144"/>
<area shape="rect" id="node8" href="fast-dtoa_8h.html" title="include/kenlm/util\l/double-conversion/fast\l-dtoa.h" alt="" coords="834,92,993,144"/>
<area shape="rect" id="node9" href="fixed-dtoa_8h.html" title="include/kenlm/util\l/double-conversion/fixed\l-dtoa.h" alt="" coords="1017,92,1183,144"/>
<area shape="rect" id="node10" href="strtod_8h.html" title="include/kenlm/util\l/double-conversion/strtod.h" alt="" coords="1208,99,1390,137"/>
<area shape="rect" id="node5" href="cached-powers_8h.html" title="include/kenlm/util\l/double-conversion/cached\l-powers.h" alt="" coords="326,192,506,244"/>
<area shape="rect" id="node6" href="ieee_8h.html" title="include/kenlm/util\l/double-conversion/ieee.h" alt="" coords="530,199,704,237"/>
</map>
</div>
</div>
<p><a href="utils_8h_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classdouble__conversion_1_1_vector.html">double_conversion::Vector< T ></a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classdouble__conversion_1_1_string_builder.html">double_conversion::StringBuilder</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr class="memitem:namespacedouble__conversion"><td class="memItemLeft" align="right" valign="top">  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacedouble__conversion.html">double_conversion</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="define-members"></a>
Macros</h2></td></tr>
<tr class="memitem:a1dfb2cb545fa51edb2760047aa4ce45f"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="utils_8h.html#a1dfb2cb545fa51edb2760047aa4ce45f">ASSERT</a>(condition)    (assert(condition))</td></tr>
<tr class="separator:a1dfb2cb545fa51edb2760047aa4ce45f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:add09d39ec888c2d7e12877586f29368d"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="utils_8h.html#add09d39ec888c2d7e12877586f29368d">UNIMPLEMENTED</a>()   (abort())</td></tr>
<tr class="separator:add09d39ec888c2d7e12877586f29368d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad8fee49eb2770153a2dd95953f9b74e5"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="utils_8h.html#ad8fee49eb2770153a2dd95953f9b74e5">UNREACHABLE</a>()    (abort())</td></tr>
<tr class="separator:ad8fee49eb2770153a2dd95953f9b74e5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af60c14e9c588537ba3fd925be39e29cd"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="utils_8h.html#af60c14e9c588537ba3fd925be39e29cd">UINT64_2PART_C</a>(a, b)   (((static_cast<uint64_t>(a) << 32) + 0x##b##u))</td></tr>
<tr class="separator:af60c14e9c588537ba3fd925be39e29cd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f00183ae427b2e71b739a86afaf4d54"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="utils_8h.html#a5f00183ae427b2e71b739a86afaf4d54">ARRAY_SIZE</a>(a) </td></tr>
<tr class="separator:a5f00183ae427b2e71b739a86afaf4d54"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8a33c52fbcec82e9f80752504cef5ec7"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="utils_8h.html#a8a33c52fbcec82e9f80752504cef5ec7">DISALLOW_COPY_AND_ASSIGN</a>(TypeName) </td></tr>
<tr class="separator:a8a33c52fbcec82e9f80752504cef5ec7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acfd97435e2829938f396946b00559b71"><td class="memItemLeft" align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="utils_8h.html#acfd97435e2829938f396946b00559b71">DISALLOW_IMPLICIT_CONSTRUCTORS</a>(TypeName)</td></tr>
<tr class="separator:acfd97435e2829938f396946b00559b71"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:a8fcbedaa7b8db4ff4c6c37cb52ebb738"><td class="memTemplParams" colspan="2">template<typename T > </td></tr>
<tr class="memitem:a8fcbedaa7b8db4ff4c6c37cb52ebb738"><td class="memTemplItemLeft" align="right" valign="top">static T </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="namespacedouble__conversion.html#a8fcbedaa7b8db4ff4c6c37cb52ebb738">double_conversion::Max</a> (T a, T b)</td></tr>
<tr class="separator:a8fcbedaa7b8db4ff4c6c37cb52ebb738"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a94fc7999ec1907245f51992efe70d097"><td class="memTemplParams" colspan="2">template<typename T > </td></tr>
<tr class="memitem:a94fc7999ec1907245f51992efe70d097"><td class="memTemplItemLeft" align="right" valign="top">static T </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="namespacedouble__conversion.html#a94fc7999ec1907245f51992efe70d097">double_conversion::Min</a> (T a, T b)</td></tr>
<tr class="separator:a94fc7999ec1907245f51992efe70d097"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2773753c702fd8d42f8249990f73cb62"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacedouble__conversion.html#a2773753c702fd8d42f8249990f73cb62">double_conversion::StrLength</a> (const char *string)</td></tr>
<tr class="separator:a2773753c702fd8d42f8249990f73cb62"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a18244d6d2e60e0f097fabae206477963"><td class="memTemplParams" colspan="2">template<class Dest , class Source > </td></tr>
<tr class="memitem:a18244d6d2e60e0f097fabae206477963"><td class="memTemplItemLeft" align="right" valign="top">Dest </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="namespacedouble__conversion.html#a18244d6d2e60e0f097fabae206477963">double_conversion::BitCast</a> (const Source &source)</td></tr>
<tr class="separator:a18244d6d2e60e0f097fabae206477963"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a240fadea2eaf5a7d52d766d8b424427a"><td class="memTemplParams" colspan="2">template<class Dest , class Source > </td></tr>
<tr class="memitem:a240fadea2eaf5a7d52d766d8b424427a"><td class="memTemplItemLeft" align="right" valign="top">Dest </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="namespacedouble__conversion.html#a240fadea2eaf5a7d52d766d8b424427a">double_conversion::BitCast</a> (Source *source)</td></tr>
<tr class="separator:a240fadea2eaf5a7d52d766d8b424427a"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="var-members"></a>
Variables</h2></td></tr>
<tr class="memitem:a0eb9c6ce32a4965e51a34613bcb4eb2b"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacedouble__conversion.html#a0eb9c6ce32a4965e51a34613bcb4eb2b">double_conversion::kCharSize</a> = sizeof(char)</td></tr>
<tr class="separator:a0eb9c6ce32a4965e51a34613bcb4eb2b"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Macro Definition Documentation</h2>
<a class="anchor" id="a5f00183ae427b2e71b739a86afaf4d54"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define ARRAY_SIZE</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">a</td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<b>Value:</b><div class="fragment"><div class="line">((<span class="keyword">sizeof</span>(a) / <span class="keyword">sizeof</span>(*(a))) / \</div><div class="line"> static_cast<<span class="keywordtype">size_t</span>>(!(<span class="keyword">sizeof</span>(a) % <span class="keyword">sizeof</span>(*(a)))))</div></div><!-- fragment -->
</div>
</div>
<a class="anchor" id="a1dfb2cb545fa51edb2760047aa4ce45f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define ASSERT</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">condition</td><td>)</td>
<td>   (assert(condition))</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a8a33c52fbcec82e9f80752504cef5ec7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define DISALLOW_COPY_AND_ASSIGN</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">TypeName</td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<b>Value:</b><div class="fragment"><div class="line">TypeName(<span class="keyword">const</span> TypeName&); \</div><div class="line"> void operator=(<span class="keyword">const</span> TypeName&)</div></div><!-- fragment -->
</div>
</div>
<a class="anchor" id="acfd97435e2829938f396946b00559b71"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define DISALLOW_IMPLICIT_CONSTRUCTORS</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">TypeName</td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<b>Value:</b><div class="fragment"><div class="line">TypeName(); <a class="code" href="utils_8h.html#a8a33c52fbcec82e9f80752504cef5ec7">\</a></div><div class="line"><a class="code" href="utils_8h.html#a8a33c52fbcec82e9f80752504cef5ec7"> DISALLOW_COPY_AND_ASSIGN</a>(TypeName)</div><div class="ttc" id="utils_8h_html_a8a33c52fbcec82e9f80752504cef5ec7"><div class="ttname"><a href="utils_8h.html#a8a33c52fbcec82e9f80752504cef5ec7">DISALLOW_COPY_AND_ASSIGN</a></div><div class="ttdeci">#define DISALLOW_COPY_AND_ASSIGN(TypeName) </div><div class="ttdef"><b>Definition:</b> utils.h:112</div></div>
</div><!-- fragment -->
</div>
</div>
<a class="anchor" id="af60c14e9c588537ba3fd925be39e29cd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define UINT64_2PART_C</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">a, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"> </td>
<td class="paramname">b </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td>   (((static_cast<uint64_t>(a) << 32) + 0x##b##u))</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="add09d39ec888c2d7e12877586f29368d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define UNIMPLEMENTED</td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td>   (abort())</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ad8fee49eb2770153a2dd95953f9b74e5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define UNREACHABLE</td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td>   (abort())</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Fri Mar 18 2016 17:22:37 for XenC by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|
templates/default/authentification.html | LRoffic/SupportMe | {include file="default/menu.html"}
<div class="container">
<div class="well">
<h1>{$lang.viewticketlist}</h1>
<form method="post" id="emailauth">
<div class="form-group">
<label for="email">{$lang.emailAdress} :</label>
<span style="color: red;" class="glyphicon glyphicon-asterisk"></span>
<input type="email" class="form-control" name="email" required="true" />
</div>
<div class="form-group">
<label for="password">{$lang.codeMail} :</label>
<span style="color: red;" class="glyphicon glyphicon-asterisk"></span>
<input type="password" class="form-control" name="password" required="true" />
</div>
{if isset($siteconfig) && $siteconfig.recaptcha eq "e"}
<div class="form-group">
<label for="captcha">{$lang.captcha} :</label>
<span style="color: red;" class="glyphicon glyphicon-asterisk"></span>
<script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k={$siteconfig.recaptcha_key}"></script>
<noscript>
<iframe src="http://www.google.com/recaptcha/api/noscript?k={$siteconfig.recaptcha_key}" height="300" width="500" frameborder="0"></iframe><br>
<textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
<input type="hidden" name="recaptcha_response_field" value="manual_challenge" />
</noscript>
</div>
{/if}
<input type="submit" class="btn btn-lg btn-block btn-info" value="{$lang.signin}" />
</form>
</div>
</div>
{include file="default/footer.html"} |
PlexByte.MoCap/PlexByte.MoCap.Interactions/Doc/html/class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task-members.html | christiansax/MoCap | <!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.11"/>
<title>My Project: 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="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">My Project
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Packages</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>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespace_plex_byte.html">PlexByte</a></li><li class="navelem"><a class="el" href="namespace_plex_byte_1_1_mo_cap.html">MoCap</a></li><li class="navelem"><a class="el" href="namespace_plex_byte_1_1_mo_cap_1_1_interactions.html">Interactions</a></li><li class="navelem"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">Task</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">PlexByte.MoCap.Interactions.Task Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a12136bc5d5722e10c4a20b4e9ab40788">AddExpense</a>(decimal pExpenseValue)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#aa152325c4d018f68b8dcbe1ef4c46497">AddSubTask</a>(ITask pTask)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#ab8d71506e5343bc302bb661a5131449b">AddTimeslice</a>(int pDuration)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a754524cdae030db2de7d38cae665ed7e">Budget</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a982a30703b7b2c3258adad8e09a1ea29">BudgetUsed</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#ae0cb74071fbffd9fa7cd1dba842b6715">ChangeIsActive</a>(bool pActive)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a47eac360e6cf4cd6b84f7445ee4a6a33">ChangeOwner</a>(IUser pUser)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a42cc4439fb4ab6d4e11f8764b217b46d">ChangeState</a>(InteractionState pState)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a0d4c6a5a630e50b403c7e767d970206f">Completed</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#ad09e75c883291d7bf2a5be651c2e48f5">CreatedDateTime</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a8fbe07ee1d4f0d20465aa6eb78dd5959">Creator</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#ad232b867da717b3f823363d627b24009">DueDateTime</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a84a9a89d90c83269366f70ea3e6cc2b9">Duration</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a0f087ca6c9a9af79cddb8c409f810526">DurationCurrent</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a7855e576032a285a50f918098e030c7f">EndDateTime</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a56373e896c8d387f53b89c820b78686c">Id</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a1e0a8c220a72fc6189fa7081e6279a67">InteractionId</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a4e3e7f12d9ebbef619979f8aa1debaa9">IsActive</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a84fdfe29a8cd9889cd2eb0d2216d01d1">Modified</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#aea629926c184e80ae57914422f5fcb4c">ModifiedDateTime</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#ab74ee9d89534254215ae13eb91e12227">OnComplete</a>(InteractionEventArgs pEventArgs)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#ae9e732dc2f41a35a77dd8e143c8cf9c7">OnModify</a>(InteractionEventArgs pEventArgs)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a9784fcd7276f0b4111d7a7f8ef64e34e">OnProgressUpdated</a>(InteractionEventArgs e)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a94296d62be4af091fd6a5e9a8a0fde8a">OnStateChanged</a>(InteractionEventArgs pEventArgs)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a3cdc15c2ceb9683e5b19d76462a5fb21">Owner</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a4b3325d26ed2025dd44f597a428cfdd0">Priority</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a557416cee8b3425c49f40fc07435719e">Progress</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a7a8fb4764f97d4221d9c01f36737350e">ProgressUpdate</a>(object sender, InteractionEventArgs e)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a018dbc01193478565a41d56409618e9a">ProgressUpdated</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a5827bb9ca244149e76780756ce196057">ProjectId</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a3b4287e83b9825d68a583ad68ec60b65">StartDateTime</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#ade847c2f68b897a4eae7463134aadaa1">State</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#ad95c06276af6eb715b37421f1a121cc8">StateChanged</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#adc2d20b794d9621f0f9496d753376a92">SubTasks</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a57a0376ee5adf1aa90a555a5e3e1a90e">Task</a>(string pId, string pText, IUser pCreator)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#ad7b0d80dfd8588bcae2b8b90404b279f">Task</a>(string pId, string pText, IUser pCreator, DateTime pStartDt, DateTime pEndDt, DateTime pDueDt)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a7646af76da19c1b8f96d216ae76f6ed8">Task</a>(string pId, string pText, string pTitle, IUser pCreator, DateTime pStartDt, DateTime pEndDt, DateTime pDueDt, decimal pBudget, int pDuration, int pPriority, InteractionState pState, decimal pBudgetUsed, int pTimeUsed, List< ITask > pSubTask, int pProgress)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#ad80addfa475e483ae816bbd1bd199bf9">Text</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#afc2aa1b0a8699fe0a607b452eb5461c3">Title</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#a8d56efe5c3efeb4df5f291cac8a57128">Type</a></td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html#af28b4349816bcd4d60c0746e7b7425d4">UdateProgress</a>(int pProgress)</td><td class="entry"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_interactions_1_1_task.html">PlexByte.MoCap.Interactions.Task</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|
doc/html/class_squad_leader_command-members.html | kidaa/Awakening-Core3 | <!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.3.1"/>
<title>Core3: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Core3
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.3.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">SquadLeaderCommand Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a250b9f30d705ff9db8763145cd3c64c1">accuracyBonus</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a556964805e24a7436413b2f9008f0436">accuracySkillMod</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#a382e7d5c966efada9522d8813ebf298a">action</a></td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#aebfcf5f8f1ea9d882f7a7a87907ec4ba">actionCostMultiplier</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#a6380b6e53adf1ba9bbb736cb5b7fc7ce">actionCRC</a></td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#aff3d5c708f2d342169ad3466391c3910">addDotEffect</a>(DotEffect dotEffect)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aeba5f30530fcb890302b3bb8029197f6">addInvalidLocomotion</a>(int l)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a0ab37b0c86817d413a421d7a0304f338">addSkillMod</a>(const String &skillMod, const int value)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#af63b5030420b48d98a32de247b0f55dc">addStateEffect</a>(StateEffect stateEffect)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a87de733e49a13e2c859a1849db15cf67">addToCombatQueue</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a6b6c65d46c961ff4c0484c4f20ff1611">addToQueue</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ad36956897e8bfdc03caacd55ccc539a4">admin</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#abe8137dd3b82e8caee52b84263c90660">animationCRC</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a34a08db9d8525d4ee1fd0389db57b0b7">applyEffect</a>(CreatureObject *creature, uint8 effectType, uint32 mod)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#ac948865b2164bb8ffd1d46b6c2981d8f">areaAction</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#abd3c8dc3b25cb8644fa9f85a507a0cd4">areaRange</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a2a6ca76131e03a59ec15db78afbf2c9b">attackType</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a0a634d994fe3d1b8436a0e11cc9c0ab1">blindStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#a017515c0bf48eab0d99944fbacd0ad94">calculateGroupModifier</a>(GroupObject *group)</td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a7866b9ae1d44b09e1f3fbf0bbc3be536">characterAbility</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#ae555c97fd39804fd21669e5425ab8ea2">checkGroupLeader</a>(CreatureObject *player, GroupObject *group)</td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1045fbe728bfd6c600e2e214ebb21406">checkInvalidLocomotions</a>(CreatureObject *creature)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a4f92f6905053c95feee0a3b18ef0adc1">checkStateMask</a>(CreatureObject *creature)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#acecfccfbb6b84b8a3f71cbadf67e40d5">CombatQueueCommand</a>(const String &name, ZoneProcessServer *server)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a774f066eaafb8019d58b243b4d14688d">combatSpam</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#acbede18884c11e5a07a988ff02e5a10a">commandGroup</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a9164efa493abe6d3be46caa537301cf2">coneAction</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a4b7efb149d918f7c64948c9d4557d77c">coneAngle</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a8afc74cb9c22b3168734a8309a160e2e">cooldown</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#adb86ea0dba0fd52e289fc90b4bcf5471">damage</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a0185bde574f3f7b47e54957a706c7c59">damageMultiplier</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a62c2c8136a98656cc72f19fd91e4c9e4">defaultPriority</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a96f636391fb548b521dd8661b43c8ad5">defaultTime</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ae9fc7de3fa8f13f36b54511bb3313d87">disabled</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a4ec4557da87f7f2f2c89635c0b4b2441">dizzyStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ad6028342db12dfd0ed5bc4b793fe3e5c">doCombatAction</a>(CreatureObject *creature, const uint64 &target, const UnicodeString &arguments="", ManagedReference< WeaponObject * > weapon=NULL)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#ae5dbe375322747e82bc3ebf8d7163c0d">doQueueCommand</a>(CreatureObject *creature, const uint64 &target, const UnicodeString &arguments)</td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a86b12060d8a942ac7a7319eb8331f3ce">dotDamageOfHit</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a470762476c47012ef35d666c14e9d8bf">dotDuration</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a4cc595dc8dbb9abf5c77b3b12ea007af">dotEffects</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a572592c425cb5ea0ea750ffa81aeda5b">dotPool</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a67033de394b9bd640061e2b41221aa16">dotPotency</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a49cfcb02c46eae3051fa3a0d0ede5270">dotStrength</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a648018c562cb769d9f8b7b57ce737024">dotType</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#aeb6be6f3d11def633c53e3777d7235d3">durationStateTime</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ad9ca6dde8c24b7c19d3f199427bc2c83">effectString</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a6f5bcbba6c1e3605ffd54c57297dd418">forceCost</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a62f22e1698a233b4a55cb3b93b2b7920">forceCostMultiplier</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ac6bcbc2c480605f1d41ebeb7b054946a">FRONT</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a8434ab9cdcb60a0e0c3b79d99ea8c9f3">GENERALERROR</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#af488f1ef0216b9984174a63ca2436700">getAccuracyBonus</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a32200dd89e456f459d6cc1cd7c62d8d7">getAccuracySkillMod</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#a5322631586535d379c92f2b3a0c2e6df">getAction</a>() const </td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a30781941b6e9bea799df27485964957b">getActionCostMultiplier</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#af375638948e00cbc79b3a5e96eb931e0">getAnimationCRC</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a5b6ba4d1dc286e5f4cac4ff62c42d692">getAreaRange</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#afd9e91bfd64d696454714ad772d6ee41">getAttackType</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a4f07aa43c56a48d7defb93952687c96a">getBlindChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ac9fb813e49fdd81f0f8cf83f577184f1">getCharacterAbility</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#adb423dfd634dbdc9b4ffc66782ca30fe">getCombatSpam</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a4d02e00013ce91296028de2f50069329">getCommandDuration</a>(CreatureObject *object, const UnicodeString &arguments)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#abf81d98b541e7c08374f968aaad9cde3">getCommandGroup</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#ad6feeaa1266e65dc15a4743c40977049">getConeAngle</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a2ea917d7d865b4548b9ec7595bc89433">getDamage</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a10bf1cd77bead7f26db42c394cfbb07a">getDamageMultiplier</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a957c26acde17ed68557a9e29c2dcede7">getDefaultPriority</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ad3fce071e9617b34a0b30d7a0a240f1c">getDefaultTime</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a51734a65ba9b8e97a1d080ae635e3f91">getDizzyChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#ab01e59f14e10a80d6ab864037e054538">getDotDuration</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a67de6315073b542771051a30e8b28ad4">getDotEffect</a>(uint64 type)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a8fe4c9d4d1cfe2efe86da0027a65ccfe">getDotEffects</a>()</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a944c691c15494fe1c2827baada51c174">getDotPool</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#adb04e305d321710774a941f6f5d75a5b">getDotPotency</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a8c74a9ae1128d558724cb6fabe8baf1f">getDotStrength</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a13c713f692d4d3ba456be820cd9d66cf">getDotType</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a8532824cdd8a8eb7ae2e5db98be49959">getDurationStateTime</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a2b1c4b59c5610c3a254c65c38f5356a5">getEffectString</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#acb71e34f634cb924b29cc76f08bb15b1">getForceCost</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a365025199b34c773a088922505fc5ac7">getForceCostMultiplier</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ab7e328df957585d5d87a135a54f192e6">getHealthCostMultiplier</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a68aabaad090901af262bbc7991189b50">getIntimidateChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a63f93024901e84300181a9fe1dd2400b">getKnockdownChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#af3daeb2405e33fe3f260f868de072ed8">getMaxRange</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a6cd0e77a1159bcc834e008f2182f645b">getMindCostMultiplier</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#afbd63086121372382472a0e9d3c47f8a">getNameCRC</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a183f6bef5abfd43f0a633c1619c871fb">getNextAttackDelayChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a9e019db89d5d353d33cd0d27e7dc04b0">getPoolsToDamage</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a15e83fe46377c4adf517415ea6553cf4">getPostureDownChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a95e1b87fe34f75a0859a6944d3e594f7">getPostureUpChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aed9455620c42f01ecffefac95f4c29a4">getQueueCommandName</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a740e5cf5bcfd184988b5230d164c32ca">getRange</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ae542b5f30c92a074f2796c24dfa46a86">getSkillMod</a>(int index, String &skillMod)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1a1b2e9c04459e9597469a5ba58a4ab7">getSkillModSize</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#af20632cbf8546613578fcebceeb07540">getSpeed</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a8317df999ba4ee5a32ef5972c1ea3e49">getSpeedMultiplier</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a2a5232d2ce31c2a7283ddecc56cba9e0">getStateEffect</a>(uint64 type)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#ab6b54036a10ff20c1bfcf1ed0f5c41f1">getStateEffects</a>()</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ad13200cc9d86c468a117e7aab06484b2">getStateMask</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a0140ece6a43b8d0a91952db471dbbe61">getStunChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ae0625a0b2ec52ec71fa1aa388bbd3bb1">getSyntax</a>() const </td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ade1ed7f353e7d2fc2df98eea29e0c3e3">getTargetType</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a14bece1eae9d2b55280c461ebebd0744">getTrails</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#acc4eccd9e29e787e37a529f2f53b779c">handleBuff</a>(SceneObject *creature, ManagedObject *object, int64 param)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a22498e69e3651f0fbbaa37e8e8daab44">hasCombatSpam</a>()</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a34c0a077c8c3ae64ec23d0c7abad781d">healthCostMultiplier</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a4ccdfb3dc7dffe69e4160ca2544af916">IMMEDIATE</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#a4d716fa071a1264dce605952b53d4ecd">inflictHAM</a>(CreatureObject *player, int health, int action, int mind)</td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a9d22318a492ca394a7c062505838377f">INSUFFICIENTHAM</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aec92ef3c13daec29232fd1f14f5df89b">INSUFFICIENTPERMISSION</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a0cc9682be2f14d1386fcaaa5c892d5f9">intimidateStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a5349733d0c0ec84bd0d2bf654f81c72f">INVALIDLOCOMOTION</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a970aa46aab0a10828fe45aa846b79a40">invalidLocomotion</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a0a4a84c90d5a9c3a80d52386c8d0c46d">INVALIDPARAMETERS</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a7c214ae0c5729e3edc6554121ccb0f61">INVALIDSTATE</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a46ec04d345ff426cde0bdb8dd63397a6">INVALIDSYNTAX</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1cb8815a7624dd8bd181950d7a748bf1">INVALIDTARGET</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#afc459f7595d765766944b16a13966ab3">INVALIDWEAPON</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a6ef535a6282fa8510b5253ab55bd2c1f">isAreaAction</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a0e8d189cd1c1290025eeabfcbcb3694f">isCombatCommand</a>()</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#afa5496c400c3dcc69388326684258d40">isConeAction</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a86676d71f0c5d03c14017269e5de78eb">isDisabled</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a73b3af59d6587e8070e503deff86db5e">isDotDamageOfHit</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#a01ca090a652ba00fa32ecd2efba421c5">isSquadLeaderCommand</a>()</td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a36e282da7a7fc6e0e46376e29ccd240d">isWearingArmor</a>(CreatureObject *creo)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a7a3d3d3f2cbc8284b46cf02d57804516">knockdownStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a48c2623b54868324f8d3817029f0b1cf">maxRangeToTarget</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#aedc5f15c4138de629d15e54df52f9788">mindCostMultiplier</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a0d8e1b60e830d42ee881e168d3fd0a62">name</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a52d98f8441d55ad98b219c1a250385d3">nameCRC</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#afa16ecc0a418b89d99450e49736fb7b3">nextAttackDelayChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a870493a775b4dd5c77db7364feba8238">NOJEDIARMOR</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a61cf7f5c522494a6bd50328efd57ee1a">NOKNEELING</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a78116a3e3454208ad791c5847dd88145">NOPRONE</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#af62d1c3e32b5ced7ac93eedfa35843cf">NORMAL</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ab46aed30eadb11cc83b5dabbe8c77ebb">onComplete</a>(uint32 actioncntr, CreatureObject *creature, float commandDuration)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ab743f9da4076acd498cac33bd7d0d87f">onFail</a>(uint32 actioncntr, CreatureObject *creature, uint32 errorNumber)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a50137363429e07e6916e374e7b09348c">onLocomotionFail</a>(CreatureObject *creature, uint32 actioncntr)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aaccbac3683d65967b188a2cb02e27266">onStateFail</a>(CreatureObject *creature, uint32 actioncntr)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a77355f2bed612a5304644cc0df4bb929">poolsToDamage</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a455a3511812b55e431af38ad4d746309">postureDownStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a82e12701eaf97c3aecb75dfd727f3d00">postureUpStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aee543b3c03c6499283504b04241e46a2">QueueCommand</a>(const String &skillname, ZoneProcessServer *serv)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#adef8cfd693f19f158716eb399057f6b1">range</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a04074ecdb676b92738efdbd908b9c8a8">requiresAdmin</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#acfeaf62a4255d1bf27396bbff293e580">sendCombatSpam</a>(CreatureObject *player)</td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aab0d7c550040a4e8811e270c57ff90a4">server</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a0cd7f00e15e54fbff9ce37bf28f0ecd6">setAccuracyBonus</a>(int accuracyBonus)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a8c5c0904ce4525d5b1534b4a51e06fdb">setAccuracySkillMod</a>(String acc)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#a8425bdd57477b8c879c4e08d2404a2c8">setAction</a>(String action)</td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#aec525d3d1c89ecb0ed51b326ee764f77">setActionCostMultiplier</a>(float f)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a94435de52a05b3b5d519c9c2f6764a89">setAddToCombatQueue</a>(bool state)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a538e5409f7f033b670e844f5c11503aa">setAddToCombatQueue</a>(int state)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a139d71703b06fdf6bdc807da10a0969e">setAnimationCRC</a>(uint32 animationCRC)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a84593385278db7564c0e01ac80cdcd3c">setAreaAction</a>(bool b)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a6249c26d0f67995a550ecfbc89de6a01">setAreaRange</a>(int i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#abfb9fdc1d857d13dd9a7345c01f8c7a1">setAttackType</a>(uint8 attackType)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a80d93dc11a17a0e7ed99586039d79599">setBlindStateChance</a>(int blindStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ac7e00b0996c74ef9d533cca4e14d3406">setCharacterAbility</a>(const String &ability)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#aa13b67fe6f530913d0ea0c0f6ddbe03d">setCombatSpam</a>(String combatSpam)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a16c82a11bd6db08f30adb40799ce46ff">setCommandGroup</a>(int val)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#aa1030342ea959bdfae0a377b2a8af1de">setCommandMessage</a>(CreatureObject *creature, String message)</td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a994173fd6b25d46cc2462f18e99254a2">setConeAction</a>(bool b)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#abf8a2b6189d53fe40686ca461e3b2c3f">setConeAngle</a>(int i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ade8869123366143c5620446c44d3b7ff">setDamage</a>(float dm)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a96069eb0d6e692062fc3b6d6756cfeda">setDamageMultiplier</a>(float damageMultiplier)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a970ef46896ca1c95dfd9fbc0f4e66430">setDefaultPriority</a>(const String &priority)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a39c088fb8808327a68b835178386ee37">setDefaultPriority</a>(const int priority)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aae1bacdabf0deed3e8602f1c9a16f3ca">setDefaultTime</a>(float time)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ab2da68a4cd081031f996b97384bdefe0">setDisabled</a>(bool state)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aefbacbb8e4e61020f774828c66246f88">setDisabled</a>(int state)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a2813de9ff98e9acdc30af98bce81d980">setDizzyStateChance</a>(int dizzyStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ad881e2f1bbb882fc0a16ed92ae37dfb8">setDotDamageOfHit</a>(bool b)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#ac6b8337049ce40a7f08a0b46ea90ccb7">setDotDuration</a>(uint32 i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a76ba9bb782dca9e04028e09ce740979a">setDotEffects</a>(VectorMap< uint64, DotEffect > dotEffects)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a1a65f02b1986deb2d3b1798c37363562">setDotPool</a>(uint8 c)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a96f83535da0bc2993f7b7e79190be039">setDotPotency</a>(float f)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#ac904a576ffb39da4d2cdd3a5bc6f5a02">setDotStrength</a>(uint32 i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ac24b88c7293655f1807b237ec93aacbd">setDotType</a>(uint64 l)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a3f13ca3e7eb630166fec6f7d238b13c2">setDurationStateTime</a>(int i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a6a00277a7ab6735cb5484bbb8e760949">setEffectString</a>(String s)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a32ce04675697f6c601d97be57e1e39f1">setForceCost</a>(float f)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a7cbd19461c331f007db3254329ed5e52">setForceCostMultiplier</a>(float f)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a603012079ace1eb56713c7f55e58a5da">setHealthCostMultiplier</a>(float f)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#af99e322b2663acf92dc64876675b63f3">setIntimidateStateChance</a>(int intimidateStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a77282bd031eae09182e700ad4e2748ed">setInvalidLocomotions</a>(const String &lStr)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a08ea3ed31c57393ac89bcc687b671eb4">setKnockdownStateChance</a>(int knockdownStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a405e02cfa947f370c3b7f31601e0d1b1">setMaxRange</a>(float r)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#aee667720cd3092eff9204d262360aa2c">setMindCostMultiplier</a>(float f)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a7fac530a0ce1817aea19b7f895799b10">setNextAttackDelayChance</a>(int i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a3ca36540f218bae77d8a2df95eabc41e">setPoolsToDamage</a>(int poolsToDamage)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a02527b44fa6a77be84069b0d54b2af10">setPostureDownStateChance</a>(int postureDownStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a252c7a7f68596e66ee0536349af87905">setPostureUpStateChance</a>(int postureUpStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#af539aea8b9740a71d90086763e1b2c0d">setRange</a>(int i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a6b854326f51f8c3af577422e2cb45365">setSpeed</a>(float speedd)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a3adab009947ce273525938e85bbb09a5">setSpeedMultiplier</a>(float speedMultiplier)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a7dcd5267cd33e17ac6182595ff904eba">setStateEffects</a>(VectorMap< uint64, StateEffect > stateEffects)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a38aa3c7e82142f193481c2b87d87e2fd">setStateMask</a>(uint64 mask)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a08a193b328b03a1a3d510b95f40b538c">setStunStateChance</a>(int stunStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1e4d815d23394279258da799d7d82233">setTargetType</a>(int num)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#aadc17bf73732ba01c724be6b24a2049a">setTrails</a>(uint8 trails)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#a3b48570f07c1fd8d18a393f6454062a4">shoutCommand</a>(CreatureObject *player, GroupObject *group)</td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ab1b70afc3b44821c44eb4ee4538c47bd">skillMods</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a10ecb71b0ff0420c132f2d0ac18e1bbd">speed</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a47a1f6e40b1a3d091ea05e790c668ec0">speedMultiplier</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_squad_leader_command.html#a8b5aaea69f2a7d43ac1eb6fb705e9881">SquadLeaderCommand</a>(const String &name, ZoneProcessServer *server)</td><td class="entry"><a class="el" href="class_squad_leader_command.html">SquadLeaderCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ab0d1f4c7584c20ffba9dfd47cd230763">stateEffects</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a875d5d990878fbc3a7517d422000f1a2">stateMask</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a8a107ca895e7b2043006577d925a46c9">stateSpam</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#ab509b0514e0acbba882abf8bab329b78">stunStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#afd765e7bc64680a59d6628ba9151c83c">SUCCESS</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a368162c56262fe72b81590f174e145ae">targetType</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ae0519be3ffdbfcc7c876d1429dffe511">TOOFAR</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a7039e32c1bd23b9a3b5ae06fb0c0002b">trails</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aa418bcad148c8c133cf29f4cba994cc1">~QueueCommand</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Oct 15 2013 17:29:39 for Core3 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.3.1
</small></address>
</body>
</html>
|
jung-io/src/main/java/edu/uci/ics/jung/io/package.html | drzhonghao/grapa | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<!--
@(#)package.html
Copyright (c) 2003-2015 The JUNG Authors.
All Rights Reserved.
License text: https://github.com/jrtom/jung/blob/master/LICENSE
-->
</head>
<body>
<p>Interfaces and classes for reading and writing graphs in various (file)
formats. Current formats fully or partially supported include:
<ul>
<li>GraphML format
<li>Pajek NET format
</ul>
</body>
</html>
|
doc/html/class_default_attack_command.html | kidaa/Awakening-Core3 | <!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.3.1"/>
<title>Core3: DefaultAttackCommand Class 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" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Core3
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.3.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="class_default_attack_command-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">DefaultAttackCommand Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="_default_attack_command_8h_source.html">DefaultAttackCommand.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for DefaultAttackCommand:</div>
<div class="dyncontent">
<div class="center">
<img src="class_default_attack_command.png" usemap="#DefaultAttackCommand_map" alt=""/>
<map id="DefaultAttackCommand_map" name="DefaultAttackCommand_map">
<area href="class_combat_queue_command.html" alt="CombatQueueCommand" shape="rect" coords="178,112,524,136"/>
<area href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html" alt="server::zone::objects::creature::commands::QueueCommand" shape="rect" coords="178,56,524,80"/>
</map>
</div></div>
<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:a70376065a15230180e725e6521264e72"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_default_attack_command.html#a70376065a15230180e725e6521264e72">DefaultAttackCommand</a> (const String &<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a0d8e1b60e830d42ee881e168d3fd0a62">name</a>, <a class="el" href="classserver_1_1zone_1_1_zone_process_server.html">ZoneProcessServer</a> *<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aab0d7c550040a4e8811e270c57ff90a4">server</a>)</td></tr>
<tr class="separator:a70376065a15230180e725e6521264e72"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a41e9d0afbee299a7372db8dd5934751f"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_default_attack_command.html#a41e9d0afbee299a7372db8dd5934751f">doQueueCommand</a> (<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a> *creature, const uint64 &target, const UnicodeString &arguments)</td></tr>
<tr class="separator:a41e9d0afbee299a7372db8dd5934751f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_class_combat_queue_command"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_class_combat_queue_command')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td></tr>
<tr class="memitem:acecfccfbb6b84b8a3f71cbadf67e40d5 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#acecfccfbb6b84b8a3f71cbadf67e40d5">CombatQueueCommand</a> (const String &<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a0d8e1b60e830d42ee881e168d3fd0a62">name</a>, <a class="el" href="classserver_1_1zone_1_1_zone_process_server.html">ZoneProcessServer</a> *<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aab0d7c550040a4e8811e270c57ff90a4">server</a>)</td></tr>
<tr class="separator:acecfccfbb6b84b8a3f71cbadf67e40d5 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad6028342db12dfd0ed5bc4b793fe3e5c inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ad6028342db12dfd0ed5bc4b793fe3e5c">doCombatAction</a> (<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a> *creature, const uint64 &target, const UnicodeString &arguments="", ManagedReference< <a class="el" href="classserver_1_1zone_1_1objects_1_1tangible_1_1weapon_1_1_weapon_object.html">WeaponObject</a> * > weapon=NULL)</td></tr>
<tr class="separator:ad6028342db12dfd0ed5bc4b793fe3e5c inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4d02e00013ce91296028de2f50069329 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a4d02e00013ce91296028de2f50069329">getCommandDuration</a> (<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a> *object, const UnicodeString &arguments)</td></tr>
<tr class="separator:a4d02e00013ce91296028de2f50069329 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab01e59f14e10a80d6ab864037e054538 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint32 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ab01e59f14e10a80d6ab864037e054538">getDotDuration</a> () const </td></tr>
<tr class="separator:ab01e59f14e10a80d6ab864037e054538 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a13c713f692d4d3ba456be820cd9d66cf inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint64 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a13c713f692d4d3ba456be820cd9d66cf">getDotType</a> () const </td></tr>
<tr class="separator:a13c713f692d4d3ba456be820cd9d66cf inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a944c691c15494fe1c2827baada51c174 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint8 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a944c691c15494fe1c2827baada51c174">getDotPool</a> () const </td></tr>
<tr class="separator:a944c691c15494fe1c2827baada51c174 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8c74a9ae1128d558724cb6fabe8baf1f inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint32 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a8c74a9ae1128d558724cb6fabe8baf1f">getDotStrength</a> () const </td></tr>
<tr class="separator:a8c74a9ae1128d558724cb6fabe8baf1f inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adb04e305d321710774a941f6f5d75a5b inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#adb04e305d321710774a941f6f5d75a5b">getDotPotency</a> () const </td></tr>
<tr class="separator:adb04e305d321710774a941f6f5d75a5b inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab7e328df957585d5d87a135a54f192e6 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ab7e328df957585d5d87a135a54f192e6">getHealthCostMultiplier</a> () const </td></tr>
<tr class="separator:ab7e328df957585d5d87a135a54f192e6 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a30781941b6e9bea799df27485964957b inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a30781941b6e9bea799df27485964957b">getActionCostMultiplier</a> () const </td></tr>
<tr class="separator:a30781941b6e9bea799df27485964957b inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6cd0e77a1159bcc834e008f2182f645b inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a6cd0e77a1159bcc834e008f2182f645b">getMindCostMultiplier</a> () const </td></tr>
<tr class="separator:a6cd0e77a1159bcc834e008f2182f645b inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a740e5cf5bcfd184988b5230d164c32ca inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a740e5cf5bcfd184988b5230d164c32ca">getRange</a> () const </td></tr>
<tr class="separator:a740e5cf5bcfd184988b5230d164c32ca inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a32200dd89e456f459d6cc1cd7c62d8d7 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">String </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a32200dd89e456f459d6cc1cd7c62d8d7">getAccuracySkillMod</a> () const </td></tr>
<tr class="separator:a32200dd89e456f459d6cc1cd7c62d8d7 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4f07aa43c56a48d7defb93952687c96a inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a4f07aa43c56a48d7defb93952687c96a">getBlindChance</a> () const </td></tr>
<tr class="separator:a4f07aa43c56a48d7defb93952687c96a inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a10bf1cd77bead7f26db42c394cfbb07a inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a10bf1cd77bead7f26db42c394cfbb07a">getDamageMultiplier</a> () const </td></tr>
<tr class="separator:a10bf1cd77bead7f26db42c394cfbb07a inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af488f1ef0216b9984174a63ca2436700 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#af488f1ef0216b9984174a63ca2436700">getAccuracyBonus</a> () const </td></tr>
<tr class="separator:af488f1ef0216b9984174a63ca2436700 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a51734a65ba9b8e97a1d080ae635e3f91 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a51734a65ba9b8e97a1d080ae635e3f91">getDizzyChance</a> () const </td></tr>
<tr class="separator:a51734a65ba9b8e97a1d080ae635e3f91 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a68aabaad090901af262bbc7991189b50 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a68aabaad090901af262bbc7991189b50">getIntimidateChance</a> () const </td></tr>
<tr class="separator:a68aabaad090901af262bbc7991189b50 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a63f93024901e84300181a9fe1dd2400b inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a63f93024901e84300181a9fe1dd2400b">getKnockdownChance</a> () const </td></tr>
<tr class="separator:a63f93024901e84300181a9fe1dd2400b inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a15e83fe46377c4adf517415ea6553cf4 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a15e83fe46377c4adf517415ea6553cf4">getPostureDownChance</a> () const </td></tr>
<tr class="separator:a15e83fe46377c4adf517415ea6553cf4 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a95e1b87fe34f75a0859a6944d3e594f7 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a95e1b87fe34f75a0859a6944d3e594f7">getPostureUpChance</a> () const </td></tr>
<tr class="separator:a95e1b87fe34f75a0859a6944d3e594f7 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8317df999ba4ee5a32ef5972c1ea3e49 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a8317df999ba4ee5a32ef5972c1ea3e49">getSpeedMultiplier</a> () const </td></tr>
<tr class="separator:a8317df999ba4ee5a32ef5972c1ea3e49 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af20632cbf8546613578fcebceeb07540 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#af20632cbf8546613578fcebceeb07540">getSpeed</a> () const </td></tr>
<tr class="separator:af20632cbf8546613578fcebceeb07540 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0140ece6a43b8d0a91952db471dbbe61 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a0140ece6a43b8d0a91952db471dbbe61">getStunChance</a> () const </td></tr>
<tr class="separator:a0140ece6a43b8d0a91952db471dbbe61 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6ef535a6282fa8510b5253ab55bd2c1f inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a6ef535a6282fa8510b5253ab55bd2c1f">isAreaAction</a> () const </td></tr>
<tr class="separator:a6ef535a6282fa8510b5253ab55bd2c1f inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afa5496c400c3dcc69388326684258d40 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#afa5496c400c3dcc69388326684258d40">isConeAction</a> () const </td></tr>
<tr class="separator:afa5496c400c3dcc69388326684258d40 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a73b3af59d6587e8070e503deff86db5e inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a73b3af59d6587e8070e503deff86db5e">isDotDamageOfHit</a> () const </td></tr>
<tr class="separator:a73b3af59d6587e8070e503deff86db5e inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad6feeaa1266e65dc15a4743c40977049 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ad6feeaa1266e65dc15a4743c40977049">getConeAngle</a> () const </td></tr>
<tr class="separator:ad6feeaa1266e65dc15a4743c40977049 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5b6ba4d1dc286e5f4cac4ff62c42d692 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a5b6ba4d1dc286e5f4cac4ff62c42d692">getAreaRange</a> () const </td></tr>
<tr class="separator:a5b6ba4d1dc286e5f4cac4ff62c42d692 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8532824cdd8a8eb7ae2e5db98be49959 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a8532824cdd8a8eb7ae2e5db98be49959">getDurationStateTime</a> () const </td></tr>
<tr class="separator:a8532824cdd8a8eb7ae2e5db98be49959 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a365025199b34c773a088922505fc5ac7 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a365025199b34c773a088922505fc5ac7">getForceCostMultiplier</a> () const </td></tr>
<tr class="separator:a365025199b34c773a088922505fc5ac7 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acb71e34f634cb924b29cc76f08bb15b1 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#acb71e34f634cb924b29cc76f08bb15b1">getForceCost</a> () const </td></tr>
<tr class="separator:acb71e34f634cb924b29cc76f08bb15b1 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a183f6bef5abfd43f0a633c1619c871fb inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a183f6bef5abfd43f0a633c1619c871fb">getNextAttackDelayChance</a> () const </td></tr>
<tr class="separator:a183f6bef5abfd43f0a633c1619c871fb inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a80d93dc11a17a0e7ed99586039d79599 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a80d93dc11a17a0e7ed99586039d79599">setBlindStateChance</a> (int <a class="el" href="class_combat_queue_command.html#a0a634d994fe3d1b8436a0e11cc9c0ab1">blindStateChance</a>)</td></tr>
<tr class="separator:a80d93dc11a17a0e7ed99586039d79599 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a96069eb0d6e692062fc3b6d6756cfeda inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a96069eb0d6e692062fc3b6d6756cfeda">setDamageMultiplier</a> (float <a class="el" href="class_combat_queue_command.html#a0185bde574f3f7b47e54957a706c7c59">damageMultiplier</a>)</td></tr>
<tr class="separator:a96069eb0d6e692062fc3b6d6756cfeda inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0cd7f00e15e54fbff9ce37bf28f0ecd6 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a0cd7f00e15e54fbff9ce37bf28f0ecd6">setAccuracyBonus</a> (int <a class="el" href="class_combat_queue_command.html#a250b9f30d705ff9db8763145cd3c64c1">accuracyBonus</a>)</td></tr>
<tr class="separator:a0cd7f00e15e54fbff9ce37bf28f0ecd6 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a603012079ace1eb56713c7f55e58a5da inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a603012079ace1eb56713c7f55e58a5da">setHealthCostMultiplier</a> (float f)</td></tr>
<tr class="separator:a603012079ace1eb56713c7f55e58a5da inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec525d3d1c89ecb0ed51b326ee764f77 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#aec525d3d1c89ecb0ed51b326ee764f77">setActionCostMultiplier</a> (float f)</td></tr>
<tr class="separator:aec525d3d1c89ecb0ed51b326ee764f77 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aee667720cd3092eff9204d262360aa2c inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#aee667720cd3092eff9204d262360aa2c">setMindCostMultiplier</a> (float f)</td></tr>
<tr class="separator:aee667720cd3092eff9204d262360aa2c inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7cbd19461c331f007db3254329ed5e52 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a7cbd19461c331f007db3254329ed5e52">setForceCostMultiplier</a> (float f)</td></tr>
<tr class="separator:a7cbd19461c331f007db3254329ed5e52 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a32ce04675697f6c601d97be57e1e39f1 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a32ce04675697f6c601d97be57e1e39f1">setForceCost</a> (float f)</td></tr>
<tr class="separator:a32ce04675697f6c601d97be57e1e39f1 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2813de9ff98e9acdc30af98bce81d980 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a2813de9ff98e9acdc30af98bce81d980">setDizzyStateChance</a> (int <a class="el" href="class_combat_queue_command.html#a4ec4557da87f7f2f2c89635c0b4b2441">dizzyStateChance</a>)</td></tr>
<tr class="separator:a2813de9ff98e9acdc30af98bce81d980 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af99e322b2663acf92dc64876675b63f3 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#af99e322b2663acf92dc64876675b63f3">setIntimidateStateChance</a> (int <a class="el" href="class_combat_queue_command.html#a0cc9682be2f14d1386fcaaa5c892d5f9">intimidateStateChance</a>)</td></tr>
<tr class="separator:af99e322b2663acf92dc64876675b63f3 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a08ea3ed31c57393ac89bcc687b671eb4 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a08ea3ed31c57393ac89bcc687b671eb4">setKnockdownStateChance</a> (int <a class="el" href="class_combat_queue_command.html#a7a3d3d3f2cbc8284b46cf02d57804516">knockdownStateChance</a>)</td></tr>
<tr class="separator:a08ea3ed31c57393ac89bcc687b671eb4 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a02527b44fa6a77be84069b0d54b2af10 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a02527b44fa6a77be84069b0d54b2af10">setPostureDownStateChance</a> (int <a class="el" href="class_combat_queue_command.html#a455a3511812b55e431af38ad4d746309">postureDownStateChance</a>)</td></tr>
<tr class="separator:a02527b44fa6a77be84069b0d54b2af10 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a252c7a7f68596e66ee0536349af87905 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a252c7a7f68596e66ee0536349af87905">setPostureUpStateChance</a> (int <a class="el" href="class_combat_queue_command.html#a82e12701eaf97c3aecb75dfd727f3d00">postureUpStateChance</a>)</td></tr>
<tr class="separator:a252c7a7f68596e66ee0536349af87905 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7fac530a0ce1817aea19b7f895799b10 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a7fac530a0ce1817aea19b7f895799b10">setNextAttackDelayChance</a> (int i)</td></tr>
<tr class="separator:a7fac530a0ce1817aea19b7f895799b10 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3f13ca3e7eb630166fec6f7d238b13c2 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a3f13ca3e7eb630166fec6f7d238b13c2">setDurationStateTime</a> (int i)</td></tr>
<tr class="separator:a3f13ca3e7eb630166fec6f7d238b13c2 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac6b8337049ce40a7f08a0b46ea90ccb7 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ac6b8337049ce40a7f08a0b46ea90ccb7">setDotDuration</a> (uint32 i)</td></tr>
<tr class="separator:ac6b8337049ce40a7f08a0b46ea90ccb7 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac24b88c7293655f1807b237ec93aacbd inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ac24b88c7293655f1807b237ec93aacbd">setDotType</a> (uint64 l)</td></tr>
<tr class="separator:ac24b88c7293655f1807b237ec93aacbd inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1a65f02b1986deb2d3b1798c37363562 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a1a65f02b1986deb2d3b1798c37363562">setDotPool</a> (uint8 c)</td></tr>
<tr class="separator:a1a65f02b1986deb2d3b1798c37363562 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac904a576ffb39da4d2cdd3a5bc6f5a02 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ac904a576ffb39da4d2cdd3a5bc6f5a02">setDotStrength</a> (uint32 i)</td></tr>
<tr class="separator:ac904a576ffb39da4d2cdd3a5bc6f5a02 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a96f83535da0bc2993f7b7e79190be039 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a96f83535da0bc2993f7b7e79190be039">setDotPotency</a> (float f)</td></tr>
<tr class="separator:a96f83535da0bc2993f7b7e79190be039 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abf8a2b6189d53fe40686ca461e3b2c3f inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#abf8a2b6189d53fe40686ca461e3b2c3f">setConeAngle</a> (int i)</td></tr>
<tr class="separator:abf8a2b6189d53fe40686ca461e3b2c3f inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad881e2f1bbb882fc0a16ed92ae37dfb8 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ad881e2f1bbb882fc0a16ed92ae37dfb8">setDotDamageOfHit</a> (bool b)</td></tr>
<tr class="separator:ad881e2f1bbb882fc0a16ed92ae37dfb8 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a84593385278db7564c0e01ac80cdcd3c inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a84593385278db7564c0e01ac80cdcd3c">setAreaAction</a> (bool b)</td></tr>
<tr class="separator:a84593385278db7564c0e01ac80cdcd3c inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a994173fd6b25d46cc2462f18e99254a2 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a994173fd6b25d46cc2462f18e99254a2">setConeAction</a> (bool b)</td></tr>
<tr class="separator:a994173fd6b25d46cc2462f18e99254a2 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6249c26d0f67995a550ecfbc89de6a01 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a6249c26d0f67995a550ecfbc89de6a01">setAreaRange</a> (int i)</td></tr>
<tr class="separator:a6249c26d0f67995a550ecfbc89de6a01 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6a00277a7ab6735cb5484bbb8e760949 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a6a00277a7ab6735cb5484bbb8e760949">setEffectString</a> (String s)</td></tr>
<tr class="separator:a6a00277a7ab6735cb5484bbb8e760949 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3adab009947ce273525938e85bbb09a5 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a3adab009947ce273525938e85bbb09a5">setSpeedMultiplier</a> (float <a class="el" href="class_combat_queue_command.html#a47a1f6e40b1a3d091ea05e790c668ec0">speedMultiplier</a>)</td></tr>
<tr class="separator:a3adab009947ce273525938e85bbb09a5 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6b854326f51f8c3af577422e2cb45365 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a6b854326f51f8c3af577422e2cb45365">setSpeed</a> (float speedd)</td></tr>
<tr class="separator:a6b854326f51f8c3af577422e2cb45365 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a08a193b328b03a1a3d510b95f40b538c inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a08a193b328b03a1a3d510b95f40b538c">setStunStateChance</a> (int <a class="el" href="class_combat_queue_command.html#ab509b0514e0acbba882abf8bab329b78">stunStateChance</a>)</td></tr>
<tr class="separator:a08a193b328b03a1a3d510b95f40b538c inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af375638948e00cbc79b3a5e96eb931e0 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint32 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#af375638948e00cbc79b3a5e96eb931e0">getAnimationCRC</a> () const </td></tr>
<tr class="separator:af375638948e00cbc79b3a5e96eb931e0 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2b1c4b59c5610c3a254c65c38f5356a5 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">String </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a2b1c4b59c5610c3a254c65c38f5356a5">getEffectString</a> () const </td></tr>
<tr class="separator:a2b1c4b59c5610c3a254c65c38f5356a5 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adb423dfd634dbdc9b4ffc66782ca30fe inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">String </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#adb423dfd634dbdc9b4ffc66782ca30fe">getCombatSpam</a> () const </td></tr>
<tr class="separator:adb423dfd634dbdc9b4ffc66782ca30fe inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9e019db89d5d353d33cd0d27e7dc04b0 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a9e019db89d5d353d33cd0d27e7dc04b0">getPoolsToDamage</a> () const </td></tr>
<tr class="separator:a9e019db89d5d353d33cd0d27e7dc04b0 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab6b54036a10ff20c1bfcf1ed0f5c41f1 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">VectorMap< uint64, <a class="el" href="class_state_effect.html">StateEffect</a> > * </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ab6b54036a10ff20c1bfcf1ed0f5c41f1">getStateEffects</a> ()</td></tr>
<tr class="separator:ab6b54036a10ff20c1bfcf1ed0f5c41f1 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8fe4c9d4d1cfe2efe86da0027a65ccfe inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">VectorMap< uint64, <a class="el" href="class_dot_effect.html">DotEffect</a> > * </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a8fe4c9d4d1cfe2efe86da0027a65ccfe">getDotEffects</a> ()</td></tr>
<tr class="separator:a8fe4c9d4d1cfe2efe86da0027a65ccfe inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a139d71703b06fdf6bdc807da10a0969e inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a139d71703b06fdf6bdc807da10a0969e">setAnimationCRC</a> (uint32 <a class="el" href="class_combat_queue_command.html#abe8137dd3b82e8caee52b84263c90660">animationCRC</a>)</td></tr>
<tr class="separator:a139d71703b06fdf6bdc807da10a0969e inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa13b67fe6f530913d0ea0c0f6ddbe03d inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#aa13b67fe6f530913d0ea0c0f6ddbe03d">setCombatSpam</a> (String <a class="el" href="class_combat_queue_command.html#a774f066eaafb8019d58b243b4d14688d">combatSpam</a>)</td></tr>
<tr class="separator:aa13b67fe6f530913d0ea0c0f6ddbe03d inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3ca36540f218bae77d8a2df95eabc41e inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a3ca36540f218bae77d8a2df95eabc41e">setPoolsToDamage</a> (int <a class="el" href="class_combat_queue_command.html#a77355f2bed612a5304644cc0df4bb929">poolsToDamage</a>)</td></tr>
<tr class="separator:a3ca36540f218bae77d8a2df95eabc41e inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7dcd5267cd33e17ac6182595ff904eba inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a7dcd5267cd33e17ac6182595ff904eba">setStateEffects</a> (VectorMap< uint64, <a class="el" href="class_state_effect.html">StateEffect</a> > <a class="el" href="class_combat_queue_command.html#ab0d1f4c7584c20ffba9dfd47cd230763">stateEffects</a>)</td></tr>
<tr class="separator:a7dcd5267cd33e17ac6182595ff904eba inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af63b5030420b48d98a32de247b0f55dc inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#af63b5030420b48d98a32de247b0f55dc">addStateEffect</a> (<a class="el" href="class_state_effect.html">StateEffect</a> stateEffect)</td></tr>
<tr class="separator:af63b5030420b48d98a32de247b0f55dc inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2a5232d2ce31c2a7283ddecc56cba9e0 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_state_effect.html">StateEffect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a2a5232d2ce31c2a7283ddecc56cba9e0">getStateEffect</a> (uint64 type)</td></tr>
<tr class="separator:a2a5232d2ce31c2a7283ddecc56cba9e0 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a76ba9bb782dca9e04028e09ce740979a inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a76ba9bb782dca9e04028e09ce740979a">setDotEffects</a> (VectorMap< uint64, <a class="el" href="class_dot_effect.html">DotEffect</a> > <a class="el" href="class_combat_queue_command.html#a4cc595dc8dbb9abf5c77b3b12ea007af">dotEffects</a>)</td></tr>
<tr class="separator:a76ba9bb782dca9e04028e09ce740979a inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2ea917d7d865b4548b9ec7595bc89433 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a2ea917d7d865b4548b9ec7595bc89433">getDamage</a> () const </td></tr>
<tr class="separator:a2ea917d7d865b4548b9ec7595bc89433 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ade8869123366143c5620446c44d3b7ff inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ade8869123366143c5620446c44d3b7ff">setDamage</a> (float dm)</td></tr>
<tr class="separator:ade8869123366143c5620446c44d3b7ff inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aff3d5c708f2d342169ad3466391c3910 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#aff3d5c708f2d342169ad3466391c3910">addDotEffect</a> (<a class="el" href="class_dot_effect.html">DotEffect</a> dotEffect)</td></tr>
<tr class="separator:aff3d5c708f2d342169ad3466391c3910 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a67de6315073b542771051a30e8b28ad4 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_dot_effect.html">DotEffect</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a67de6315073b542771051a30e8b28ad4">getDotEffect</a> (uint64 type)</td></tr>
<tr class="separator:a67de6315073b542771051a30e8b28ad4 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af539aea8b9740a71d90086763e1b2c0d inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#af539aea8b9740a71d90086763e1b2c0d">setRange</a> (int i)</td></tr>
<tr class="separator:af539aea8b9740a71d90086763e1b2c0d inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8c5c0904ce4525d5b1534b4a51e06fdb inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a8c5c0904ce4525d5b1534b4a51e06fdb">setAccuracySkillMod</a> (String acc)</td></tr>
<tr class="separator:a8c5c0904ce4525d5b1534b4a51e06fdb inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a22498e69e3651f0fbbaa37e8e8daab44 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a22498e69e3651f0fbbaa37e8e8daab44">hasCombatSpam</a> ()</td></tr>
<tr class="separator:a22498e69e3651f0fbbaa37e8e8daab44 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0e8d189cd1c1290025eeabfcbcb3694f inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a0e8d189cd1c1290025eeabfcbcb3694f">isCombatCommand</a> ()</td></tr>
<tr class="separator:a0e8d189cd1c1290025eeabfcbcb3694f inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aadafbdef80f38eee66ab0d97d4338848 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#aadafbdef80f38eee66ab0d97d4338848">isSquadLeaderCommand</a> ()</td></tr>
<tr class="separator:aadafbdef80f38eee66ab0d97d4338848 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a34a08db9d8525d4ee1fd0389db57b0b7 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a34a08db9d8525d4ee1fd0389db57b0b7">applyEffect</a> (<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a> *creature, uint8 effectType, uint32 mod)</td></tr>
<tr class="separator:a34a08db9d8525d4ee1fd0389db57b0b7 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afd9e91bfd64d696454714ad772d6ee41 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint8 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#afd9e91bfd64d696454714ad772d6ee41">getAttackType</a> () const </td></tr>
<tr class="separator:afd9e91bfd64d696454714ad772d6ee41 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abfb9fdc1d857d13dd9a7345c01f8c7a1 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#abfb9fdc1d857d13dd9a7345c01f8c7a1">setAttackType</a> (uint8 <a class="el" href="class_combat_queue_command.html#a2a6ca76131e03a59ec15db78afbf2c9b">attackType</a>)</td></tr>
<tr class="separator:abfb9fdc1d857d13dd9a7345c01f8c7a1 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a14bece1eae9d2b55280c461ebebd0744 inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint8 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a14bece1eae9d2b55280c461ebebd0744">getTrails</a> () const </td></tr>
<tr class="separator:a14bece1eae9d2b55280c461ebebd0744 inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aadc17bf73732ba01c724be6b24a2049a inherit pub_methods_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#aadc17bf73732ba01c724be6b24a2049a">setTrails</a> (uint8 <a class="el" href="class_combat_queue_command.html#a7039e32c1bd23b9a3b5ae06fb0c0002b">trails</a>)</td></tr>
<tr class="separator:aadc17bf73732ba01c724be6b24a2049a inherit pub_methods_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td></tr>
<tr class="memitem:aee543b3c03c6499283504b04241e46a2 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aee543b3c03c6499283504b04241e46a2">QueueCommand</a> (const String &skillname, <a class="el" href="classserver_1_1zone_1_1_zone_process_server.html">ZoneProcessServer</a> *serv)</td></tr>
<tr class="separator:aee543b3c03c6499283504b04241e46a2 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa418bcad148c8c133cf29f4cba994cc1 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aa418bcad148c8c133cf29f4cba994cc1">~QueueCommand</a> ()</td></tr>
<tr class="separator:aa418bcad148c8c133cf29f4cba994cc1 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1045fbe728bfd6c600e2e214ebb21406 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1045fbe728bfd6c600e2e214ebb21406">checkInvalidLocomotions</a> (<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a> *creature)</td></tr>
<tr class="separator:a1045fbe728bfd6c600e2e214ebb21406 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaccbac3683d65967b188a2cb02e27266 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aaccbac3683d65967b188a2cb02e27266">onStateFail</a> (<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a> *creature, uint32 actioncntr)</td></tr>
<tr class="separator:aaccbac3683d65967b188a2cb02e27266 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50137363429e07e6916e374e7b09348c inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a50137363429e07e6916e374e7b09348c">onLocomotionFail</a> (<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a> *creature, uint32 actioncntr)</td></tr>
<tr class="separator:a50137363429e07e6916e374e7b09348c inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae0625a0b2ec52ec71fa1aa388bbd3bb1 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">virtual String </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ae0625a0b2ec52ec71fa1aa388bbd3bb1">getSyntax</a> () const </td></tr>
<tr class="separator:ae0625a0b2ec52ec71fa1aa388bbd3bb1 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab743f9da4076acd498cac33bd7d0d87f inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ab743f9da4076acd498cac33bd7d0d87f">onFail</a> (uint32 actioncntr, <a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a> *creature, uint32 errorNumber)</td></tr>
<tr class="separator:ab743f9da4076acd498cac33bd7d0d87f inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab46aed30eadb11cc83b5dabbe8c77ebb inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ab46aed30eadb11cc83b5dabbe8c77ebb">onComplete</a> (uint32 actioncntr, <a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a> *creature, float commandDuration)</td></tr>
<tr class="separator:ab46aed30eadb11cc83b5dabbe8c77ebb inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a77282bd031eae09182e700ad4e2748ed inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a77282bd031eae09182e700ad4e2748ed">setInvalidLocomotions</a> (const String &lStr)</td></tr>
<tr class="separator:a77282bd031eae09182e700ad4e2748ed inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeba5f30530fcb890302b3bb8029197f6 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aeba5f30530fcb890302b3bb8029197f6">addInvalidLocomotion</a> (int l)</td></tr>
<tr class="separator:aeba5f30530fcb890302b3bb8029197f6 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4f92f6905053c95feee0a3b18ef0adc1 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a4f92f6905053c95feee0a3b18ef0adc1">checkStateMask</a> (<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a> *creature)</td></tr>
<tr class="separator:a4f92f6905053c95feee0a3b18ef0adc1 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a38aa3c7e82142f193481c2b87d87e2fd inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a38aa3c7e82142f193481c2b87d87e2fd">setStateMask</a> (uint64 mask)</td></tr>
<tr class="separator:a38aa3c7e82142f193481c2b87d87e2fd inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aae1bacdabf0deed3e8602f1c9a16f3ca inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aae1bacdabf0deed3e8602f1c9a16f3ca">setDefaultTime</a> (float time)</td></tr>
<tr class="separator:aae1bacdabf0deed3e8602f1c9a16f3ca inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1e4d815d23394279258da799d7d82233 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1e4d815d23394279258da799d7d82233">setTargetType</a> (int num)</td></tr>
<tr class="separator:a1e4d815d23394279258da799d7d82233 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab2da68a4cd081031f996b97384bdefe0 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ab2da68a4cd081031f996b97384bdefe0">setDisabled</a> (bool state)</td></tr>
<tr class="separator:ab2da68a4cd081031f996b97384bdefe0 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aefbacbb8e4e61020f774828c66246f88 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aefbacbb8e4e61020f774828c66246f88">setDisabled</a> (int state)</td></tr>
<tr class="separator:aefbacbb8e4e61020f774828c66246f88 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a94435de52a05b3b5d519c9c2f6764a89 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a94435de52a05b3b5d519c9c2f6764a89">setAddToCombatQueue</a> (bool state)</td></tr>
<tr class="separator:a94435de52a05b3b5d519c9c2f6764a89 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a538e5409f7f033b670e844f5c11503aa inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a538e5409f7f033b670e844f5c11503aa">setAddToCombatQueue</a> (int state)</td></tr>
<tr class="separator:a538e5409f7f033b670e844f5c11503aa inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a16c82a11bd6db08f30adb40799ce46ff inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a16c82a11bd6db08f30adb40799ce46ff">setCommandGroup</a> (int val)</td></tr>
<tr class="separator:a16c82a11bd6db08f30adb40799ce46ff inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a405e02cfa947f370c3b7f31601e0d1b1 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a405e02cfa947f370c3b7f31601e0d1b1">setMaxRange</a> (float r)</td></tr>
<tr class="separator:a405e02cfa947f370c3b7f31601e0d1b1 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac7e00b0996c74ef9d533cca4e14d3406 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ac7e00b0996c74ef9d533cca4e14d3406">setCharacterAbility</a> (const String &ability)</td></tr>
<tr class="separator:ac7e00b0996c74ef9d533cca4e14d3406 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a970ef46896ca1c95dfd9fbc0f4e66430 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a970ef46896ca1c95dfd9fbc0f4e66430">setDefaultPriority</a> (const String &priority)</td></tr>
<tr class="separator:a970ef46896ca1c95dfd9fbc0f4e66430 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a39c088fb8808327a68b835178386ee37 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a39c088fb8808327a68b835178386ee37">setDefaultPriority</a> (const int priority)</td></tr>
<tr class="separator:a39c088fb8808327a68b835178386ee37 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad13200cc9d86c468a117e7aab06484b2 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">uint64 </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ad13200cc9d86c468a117e7aab06484b2">getStateMask</a> ()</td></tr>
<tr class="separator:ad13200cc9d86c468a117e7aab06484b2 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a04074ecdb676b92738efdbd908b9c8a8 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a04074ecdb676b92738efdbd908b9c8a8">requiresAdmin</a> ()</td></tr>
<tr class="separator:a04074ecdb676b92738efdbd908b9c8a8 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ade1ed7f353e7d2fc2df98eea29e0c3e3 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ade1ed7f353e7d2fc2df98eea29e0c3e3">getTargetType</a> ()</td></tr>
<tr class="separator:ade1ed7f353e7d2fc2df98eea29e0c3e3 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afbd63086121372382472a0e9d3c47f8a inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">uint32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#afbd63086121372382472a0e9d3c47f8a">getNameCRC</a> ()</td></tr>
<tr class="separator:afbd63086121372382472a0e9d3c47f8a inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af3daeb2405e33fe3f260f868de072ed8 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#af3daeb2405e33fe3f260f868de072ed8">getMaxRange</a> ()</td></tr>
<tr class="separator:af3daeb2405e33fe3f260f868de072ed8 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aed9455620c42f01ecffefac95f4c29a4 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">String & </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aed9455620c42f01ecffefac95f4c29a4">getQueueCommandName</a> ()</td></tr>
<tr class="separator:aed9455620c42f01ecffefac95f4c29a4 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac9fb813e49fdd81f0f8cf83f577184f1 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">String & </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ac9fb813e49fdd81f0f8cf83f577184f1">getCharacterAbility</a> ()</td></tr>
<tr class="separator:ac9fb813e49fdd81f0f8cf83f577184f1 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad3fce071e9617b34a0b30d7a0a240f1c inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ad3fce071e9617b34a0b30d7a0a240f1c">getDefaultTime</a> ()</td></tr>
<tr class="separator:ad3fce071e9617b34a0b30d7a0a240f1c inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a957c26acde17ed68557a9e29c2dcede7 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a957c26acde17ed68557a9e29c2dcede7">getDefaultPriority</a> ()</td></tr>
<tr class="separator:a957c26acde17ed68557a9e29c2dcede7 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a86676d71f0c5d03c14017269e5de78eb inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a86676d71f0c5d03c14017269e5de78eb">isDisabled</a> ()</td></tr>
<tr class="separator:a86676d71f0c5d03c14017269e5de78eb inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a87de733e49a13e2c859a1849db15cf67 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a87de733e49a13e2c859a1849db15cf67">addToCombatQueue</a> ()</td></tr>
<tr class="separator:a87de733e49a13e2c859a1849db15cf67 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1a1b2e9c04459e9597469a5ba58a4ab7 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1a1b2e9c04459e9597469a5ba58a4ab7">getSkillModSize</a> ()</td></tr>
<tr class="separator:a1a1b2e9c04459e9597469a5ba58a4ab7 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae542b5f30c92a074f2796c24dfa46a86 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ae542b5f30c92a074f2796c24dfa46a86">getSkillMod</a> (int index, String &skillMod)</td></tr>
<tr class="separator:ae542b5f30c92a074f2796c24dfa46a86 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abf81d98b541e7c08374f968aaad9cde3 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#abf81d98b541e7c08374f968aaad9cde3">getCommandGroup</a> ()</td></tr>
<tr class="separator:abf81d98b541e7c08374f968aaad9cde3 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0ab37b0c86817d413a421d7a0304f338 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a0ab37b0c86817d413a421d7a0304f338">addSkillMod</a> (const String &skillMod, const int value)</td></tr>
<tr class="separator:a0ab37b0c86817d413a421d7a0304f338 inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a36e282da7a7fc6e0e46376e29ccd240d inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a36e282da7a7fc6e0e46376e29ccd240d">isWearingArmor</a> (<a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a> *creo)</td></tr>
<tr class="separator:a36e282da7a7fc6e0e46376e29ccd240d inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acc4eccd9e29e787e37a529f2f53b779c inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#acc4eccd9e29e787e37a529f2f53b779c">handleBuff</a> (<a class="el" href="classserver_1_1zone_1_1objects_1_1scene_1_1_scene_object.html">SceneObject</a> *creature, ManagedObject *object, int64 param)</td></tr>
<tr class="separator:acc4eccd9e29e787e37a529f2f53b779c inherit pub_methods_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td colspan="2" onclick="javascript:toggleInherit('pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command')"><img src="closed.png" alt="-"/> Static Public Attributes inherited from <a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td></tr>
<tr class="memitem:a4ccdfb3dc7dffe69e4160ca2544af916 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a4ccdfb3dc7dffe69e4160ca2544af916">IMMEDIATE</a> = 0</td></tr>
<tr class="separator:a4ccdfb3dc7dffe69e4160ca2544af916 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac6bcbc2c480605f1d41ebeb7b054946a inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ac6bcbc2c480605f1d41ebeb7b054946a">FRONT</a> = 1</td></tr>
<tr class="separator:ac6bcbc2c480605f1d41ebeb7b054946a inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af62d1c3e32b5ced7ac93eedfa35843cf inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#af62d1c3e32b5ced7ac93eedfa35843cf">NORMAL</a> = 2</td></tr>
<tr class="separator:af62d1c3e32b5ced7ac93eedfa35843cf inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afd765e7bc64680a59d6628ba9151c83c inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#afd765e7bc64680a59d6628ba9151c83c">SUCCESS</a> = 0</td></tr>
<tr class="separator:afd765e7bc64680a59d6628ba9151c83c inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8434ab9cdcb60a0e0c3b79d99ea8c9f3 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a8434ab9cdcb60a0e0c3b79d99ea8c9f3">GENERALERROR</a> = 1</td></tr>
<tr class="separator:a8434ab9cdcb60a0e0c3b79d99ea8c9f3 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5349733d0c0ec84bd0d2bf654f81c72f inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a5349733d0c0ec84bd0d2bf654f81c72f">INVALIDLOCOMOTION</a> = 2</td></tr>
<tr class="separator:a5349733d0c0ec84bd0d2bf654f81c72f inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7c214ae0c5729e3edc6554121ccb0f61 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a7c214ae0c5729e3edc6554121ccb0f61">INVALIDSTATE</a> = 3</td></tr>
<tr class="separator:a7c214ae0c5729e3edc6554121ccb0f61 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1cb8815a7624dd8bd181950d7a748bf1 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1cb8815a7624dd8bd181950d7a748bf1">INVALIDTARGET</a> = 4</td></tr>
<tr class="separator:a1cb8815a7624dd8bd181950d7a748bf1 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afc459f7595d765766944b16a13966ab3 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#afc459f7595d765766944b16a13966ab3">INVALIDWEAPON</a> = 5</td></tr>
<tr class="separator:afc459f7595d765766944b16a13966ab3 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae0519be3ffdbfcc7c876d1429dffe511 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ae0519be3ffdbfcc7c876d1429dffe511">TOOFAR</a> = 6</td></tr>
<tr class="separator:ae0519be3ffdbfcc7c876d1429dffe511 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9d22318a492ca394a7c062505838377f inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a9d22318a492ca394a7c062505838377f">INSUFFICIENTHAM</a> = 7</td></tr>
<tr class="separator:a9d22318a492ca394a7c062505838377f inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0a4a84c90d5a9c3a80d52386c8d0c46d inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a0a4a84c90d5a9c3a80d52386c8d0c46d">INVALIDPARAMETERS</a> = 8</td></tr>
<tr class="separator:a0a4a84c90d5a9c3a80d52386c8d0c46d inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a78116a3e3454208ad791c5847dd88145 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a78116a3e3454208ad791c5847dd88145">NOPRONE</a> = 9</td></tr>
<tr class="separator:a78116a3e3454208ad791c5847dd88145 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61cf7f5c522494a6bd50328efd57ee1a inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a61cf7f5c522494a6bd50328efd57ee1a">NOKNEELING</a> = 10</td></tr>
<tr class="separator:a61cf7f5c522494a6bd50328efd57ee1a inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec92ef3c13daec29232fd1f14f5df89b inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aec92ef3c13daec29232fd1f14f5df89b">INSUFFICIENTPERMISSION</a> = 11</td></tr>
<tr class="separator:aec92ef3c13daec29232fd1f14f5df89b inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a870493a775b4dd5c77db7364feba8238 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a870493a775b4dd5c77db7364feba8238">NOJEDIARMOR</a> = 12</td></tr>
<tr class="separator:a870493a775b4dd5c77db7364feba8238 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a46ec04d345ff426cde0bdb8dd63397a6 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memItemLeft" align="right" valign="top">static const int </td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a46ec04d345ff426cde0bdb8dd63397a6">INVALIDSYNTAX</a> = 13</td></tr>
<tr class="separator:a46ec04d345ff426cde0bdb8dd63397a6 inherit pub_static_attribs_classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_class_combat_queue_command"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_class_combat_queue_command')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td></tr>
<tr class="memitem:adb86ea0dba0fd52e289fc90b4bcf5471 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#adb86ea0dba0fd52e289fc90b4bcf5471">damage</a></td></tr>
<tr class="separator:adb86ea0dba0fd52e289fc90b4bcf5471 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0185bde574f3f7b47e54957a706c7c59 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a0185bde574f3f7b47e54957a706c7c59">damageMultiplier</a></td></tr>
<tr class="separator:a0185bde574f3f7b47e54957a706c7c59 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a250b9f30d705ff9db8763145cd3c64c1 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a250b9f30d705ff9db8763145cd3c64c1">accuracyBonus</a></td></tr>
<tr class="separator:a250b9f30d705ff9db8763145cd3c64c1 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a47a1f6e40b1a3d091ea05e790c668ec0 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a47a1f6e40b1a3d091ea05e790c668ec0">speedMultiplier</a></td></tr>
<tr class="separator:a47a1f6e40b1a3d091ea05e790c668ec0 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a10ecb71b0ff0420c132f2d0ac18e1bbd inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a10ecb71b0ff0420c132f2d0ac18e1bbd">speed</a></td></tr>
<tr class="separator:a10ecb71b0ff0420c132f2d0ac18e1bbd inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a77355f2bed612a5304644cc0df4bb929 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a77355f2bed612a5304644cc0df4bb929">poolsToDamage</a></td></tr>
<tr class="separator:a77355f2bed612a5304644cc0df4bb929 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a34c0a077c8c3ae64ec23d0c7abad781d inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a34c0a077c8c3ae64ec23d0c7abad781d">healthCostMultiplier</a></td></tr>
<tr class="separator:a34c0a077c8c3ae64ec23d0c7abad781d inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aebfcf5f8f1ea9d882f7a7a87907ec4ba inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#aebfcf5f8f1ea9d882f7a7a87907ec4ba">actionCostMultiplier</a></td></tr>
<tr class="separator:aebfcf5f8f1ea9d882f7a7a87907ec4ba inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aedc5f15c4138de629d15e54df52f9788 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#aedc5f15c4138de629d15e54df52f9788">mindCostMultiplier</a></td></tr>
<tr class="separator:aedc5f15c4138de629d15e54df52f9788 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62f22e1698a233b4a55cb3b93b2b7920 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a62f22e1698a233b4a55cb3b93b2b7920">forceCostMultiplier</a></td></tr>
<tr class="separator:a62f22e1698a233b4a55cb3b93b2b7920 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f5bcbba6c1e3605ffd54c57297dd418 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a6f5bcbba6c1e3605ffd54c57297dd418">forceCost</a></td></tr>
<tr class="separator:a6f5bcbba6c1e3605ffd54c57297dd418 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7a3d3d3f2cbc8284b46cf02d57804516 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a7a3d3d3f2cbc8284b46cf02d57804516">knockdownStateChance</a></td></tr>
<tr class="separator:a7a3d3d3f2cbc8284b46cf02d57804516 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a455a3511812b55e431af38ad4d746309 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a455a3511812b55e431af38ad4d746309">postureDownStateChance</a></td></tr>
<tr class="separator:a455a3511812b55e431af38ad4d746309 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a82e12701eaf97c3aecb75dfd727f3d00 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a82e12701eaf97c3aecb75dfd727f3d00">postureUpStateChance</a></td></tr>
<tr class="separator:a82e12701eaf97c3aecb75dfd727f3d00 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4ec4557da87f7f2f2c89635c0b4b2441 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a4ec4557da87f7f2f2c89635c0b4b2441">dizzyStateChance</a></td></tr>
<tr class="separator:a4ec4557da87f7f2f2c89635c0b4b2441 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0a634d994fe3d1b8436a0e11cc9c0ab1 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a0a634d994fe3d1b8436a0e11cc9c0ab1">blindStateChance</a></td></tr>
<tr class="separator:a0a634d994fe3d1b8436a0e11cc9c0ab1 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab509b0514e0acbba882abf8bab329b78 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ab509b0514e0acbba882abf8bab329b78">stunStateChance</a></td></tr>
<tr class="separator:ab509b0514e0acbba882abf8bab329b78 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0cc9682be2f14d1386fcaaa5c892d5f9 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a0cc9682be2f14d1386fcaaa5c892d5f9">intimidateStateChance</a></td></tr>
<tr class="separator:a0cc9682be2f14d1386fcaaa5c892d5f9 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afa16ecc0a418b89d99450e49736fb7b3 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#afa16ecc0a418b89d99450e49736fb7b3">nextAttackDelayChance</a></td></tr>
<tr class="separator:afa16ecc0a418b89d99450e49736fb7b3 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb6be6f3d11def633c53e3777d7235d3 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#aeb6be6f3d11def633c53e3777d7235d3">durationStateTime</a></td></tr>
<tr class="separator:aeb6be6f3d11def633c53e3777d7235d3 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a470762476c47012ef35d666c14e9d8bf inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint32 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a470762476c47012ef35d666c14e9d8bf">dotDuration</a></td></tr>
<tr class="separator:a470762476c47012ef35d666c14e9d8bf inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a648018c562cb769d9f8b7b57ce737024 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint64 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a648018c562cb769d9f8b7b57ce737024">dotType</a></td></tr>
<tr class="separator:a648018c562cb769d9f8b7b57ce737024 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a572592c425cb5ea0ea750ffa81aeda5b inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint8 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a572592c425cb5ea0ea750ffa81aeda5b">dotPool</a></td></tr>
<tr class="separator:a572592c425cb5ea0ea750ffa81aeda5b inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a49cfcb02c46eae3051fa3a0d0ede5270 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint32 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a49cfcb02c46eae3051fa3a0d0ede5270">dotStrength</a></td></tr>
<tr class="separator:a49cfcb02c46eae3051fa3a0d0ede5270 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a67033de394b9bd640061e2b41221aa16 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a67033de394b9bd640061e2b41221aa16">dotPotency</a></td></tr>
<tr class="separator:a67033de394b9bd640061e2b41221aa16 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a86b12060d8a942ac7a7319eb8331f3ce inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a86b12060d8a942ac7a7319eb8331f3ce">dotDamageOfHit</a></td></tr>
<tr class="separator:a86b12060d8a942ac7a7319eb8331f3ce inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adef8cfd693f19f158716eb399057f6b1 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#adef8cfd693f19f158716eb399057f6b1">range</a></td></tr>
<tr class="separator:adef8cfd693f19f158716eb399057f6b1 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a556964805e24a7436413b2f9008f0436 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">String </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a556964805e24a7436413b2f9008f0436">accuracySkillMod</a></td></tr>
<tr class="separator:a556964805e24a7436413b2f9008f0436 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac948865b2164bb8ffd1d46b6c2981d8f inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ac948865b2164bb8ffd1d46b6c2981d8f">areaAction</a></td></tr>
<tr class="separator:ac948865b2164bb8ffd1d46b6c2981d8f inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9164efa493abe6d3be46caa537301cf2 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a9164efa493abe6d3be46caa537301cf2">coneAction</a></td></tr>
<tr class="separator:a9164efa493abe6d3be46caa537301cf2 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4b7efb149d918f7c64948c9d4557d77c inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a4b7efb149d918f7c64948c9d4557d77c">coneAngle</a></td></tr>
<tr class="separator:a4b7efb149d918f7c64948c9d4557d77c inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abd3c8dc3b25cb8644fa9f85a507a0cd4 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#abd3c8dc3b25cb8644fa9f85a507a0cd4">areaRange</a></td></tr>
<tr class="separator:abd3c8dc3b25cb8644fa9f85a507a0cd4 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a774f066eaafb8019d58b243b4d14688d inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">String </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a774f066eaafb8019d58b243b4d14688d">combatSpam</a></td></tr>
<tr class="separator:a774f066eaafb8019d58b243b4d14688d inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8a107ca895e7b2043006577d925a46c9 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">String </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a8a107ca895e7b2043006577d925a46c9">stateSpam</a></td></tr>
<tr class="separator:a8a107ca895e7b2043006577d925a46c9 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abe8137dd3b82e8caee52b84263c90660 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint32 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#abe8137dd3b82e8caee52b84263c90660">animationCRC</a></td></tr>
<tr class="separator:abe8137dd3b82e8caee52b84263c90660 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad9ca6dde8c24b7c19d3f199427bc2c83 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">String </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ad9ca6dde8c24b7c19d3f199427bc2c83">effectString</a></td></tr>
<tr class="separator:ad9ca6dde8c24b7c19d3f199427bc2c83 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab0d1f4c7584c20ffba9dfd47cd230763 inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">VectorMap< uint64, <a class="el" href="class_state_effect.html">StateEffect</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#ab0d1f4c7584c20ffba9dfd47cd230763">stateEffects</a></td></tr>
<tr class="separator:ab0d1f4c7584c20ffba9dfd47cd230763 inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4cc595dc8dbb9abf5c77b3b12ea007af inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">VectorMap< uint64, <a class="el" href="class_dot_effect.html">DotEffect</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a4cc595dc8dbb9abf5c77b3b12ea007af">dotEffects</a></td></tr>
<tr class="separator:a4cc595dc8dbb9abf5c77b3b12ea007af inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2a6ca76131e03a59ec15db78afbf2c9b inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint8 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a2a6ca76131e03a59ec15db78afbf2c9b">attackType</a></td></tr>
<tr class="separator:a2a6ca76131e03a59ec15db78afbf2c9b inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7039e32c1bd23b9a3b5ae06fb0c0002b inherit pro_attribs_class_combat_queue_command"><td class="memItemLeft" align="right" valign="top">uint8 </td><td class="memItemRight" valign="bottom"><a class="el" href="class_combat_queue_command.html#a7039e32c1bd23b9a3b5ae06fb0c0002b">trails</a></td></tr>
<tr class="separator:a7039e32c1bd23b9a3b5ae06fb0c0002b inherit pro_attribs_class_combat_queue_command"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock">
<p>Definition at line <a class="el" href="_default_attack_command_8h_source.html#l00051">51</a> of file <a class="el" href="_default_attack_command_8h_source.html">DefaultAttackCommand.h</a>.</p>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a70376065a15230180e725e6521264e72"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">DefaultAttackCommand::DefaultAttackCommand </td>
<td>(</td>
<td class="paramtype">const String & </td>
<td class="paramname"><em>name</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classserver_1_1zone_1_1_zone_process_server.html">ZoneProcessServer</a> * </td>
<td class="paramname"><em>server</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="_default_attack_command_8h_source.html#l00054">54</a> of file <a class="el" href="_default_attack_command_8h_source.html">DefaultAttackCommand.h</a>.</p>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a41e9d0afbee299a7372db8dd5934751f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int DefaultAttackCommand::doQueueCommand </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1_creature_object.html">CreatureObject</a> * </td>
<td class="paramname"><em>creature</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const uint64 & </td>
<td class="paramname"><em>target</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const UnicodeString & </td>
<td class="paramname"><em>arguments</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Reimplemented from <a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a833e25691f9f7ea158519db34b47c0f6">server::zone::objects::creature::commands::QueueCommand</a>.</p>
<p>Definition at line <a class="el" href="_default_attack_command_8h_source.html#l00057">57</a> of file <a class="el" href="_default_attack_command_8h_source.html">DefaultAttackCommand.h</a>.</p>
<p>References <a class="el" href="_queue_command_8cpp_source.html#l00060">server::zone::objects::creature::commands::QueueCommand::checkInvalidLocomotions()</a>, <a class="el" href="_queue_command_8h_source.html#l00170">server::zone::objects::creature::commands::QueueCommand::checkStateMask()</a>, <a class="el" href="_combat_queue_command_8h_source.html#l00134">CombatQueueCommand::doCombatAction()</a>, <a class="el" href="_queue_command_8h_source.html#l00104">server::zone::objects::creature::commands::QueueCommand::GENERALERROR</a>, <a class="el" href="_queue_command_8h_source.html#l00105">server::zone::objects::creature::commands::QueueCommand::INVALIDLOCOMOTION</a>, <a class="el" href="_queue_command_8h_source.html#l00106">server::zone::objects::creature::commands::QueueCommand::INVALIDSTATE</a>, and <a class="el" href="server_2zone_2objects_2scene_2_scene_object_8cpp_source.html#l02431">server::zone::objects::scene::SceneObject::isAiAgent()</a>.</p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>/Users/victor/git/Core3Mda/MMOCoreORB/src/server/zone/objects/creature/commands/<a class="el" href="_default_attack_command_8h_source.html">DefaultAttackCommand.h</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Oct 15 2013 17:29:25 for Core3 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.3.1
</small></address>
</body>
</html>
|
main/tools/myCubWebGui/zino-ui-1.4/themes/silver/zino.tooltip.css | apaikan/myCub | /*!
* ZinoUI v1.4 (http://zinoui.com)
* Copyright 2012-2013 Dimitar Ivanov. All Rights Reserved.
*
* Zino UI commercial licenses may be obtained at http://zinoui.com/license
* If you do not own a commercial license, this file shall be governed by the
* GNU General Public License (GPL) version 3.
* For GPL requirements, please review: http://www.gnu.org/copyleft/gpl.html
*/
.zui-tooltip{
background: #efefef; /* Old browsers */
background: -moz-linear-gradient(top, #efefef 0%, #e3e3e3 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#efefef), color-stop(100%,#e3e3e3)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #efefef 0%,#e3e3e3 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #efefef 0%,#e3e3e3 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #efefef 0%,#e3e3e3 100%); /* IE10+ */
background: linear-gradient(to bottom, #efefef 0%,#e3e3e3 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#e3e3e3',GradientType=0 ); /* IE6-9 */
border: 1px solid #C5C5C5;
color: #444;
display: none;
font: normal 12px Arial, sans-serif;
padding: 5px;
position: absolute;
top: 0;
left: 0;
width: auto;
height: auto;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
max-width: 300px;
} |
site/online/docs/graphics.txt.html | joerabelo/geraldo | <?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.4.1: http://docutils.sourceforge.net/" />
<title>Graphics Reference</title>
<style type="text/css">
/*
:Author: David Goodger
:Contact: goodger@users.sourceforge.net
:Date: $Date: 2005-12-18 01:56:14 +0100 (Sun, 18 Dec 2005) $
:Revision: $Revision: 4224 $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
customize this style sheet.
*/
/* used to remove borders from tables and images */
.borderless, table.borderless td, table.borderless th {
border: 0 }
table.borderless td, table.borderless th {
/* Override padding for "table.docutils td" with "! important".
The right padding separates the table cells. */
padding: 0 0.5em 0 0 ! important }
.first {
/* Override more specific margin styles with "! important". */
margin-top: 0 ! important }
.last, .with-subtitle {
margin-bottom: 0 ! important }
.hidden {
display: none }
a.toc-backref {
text-decoration: none ;
color: black }
blockquote.epigraph {
margin: 2em 5em ; }
dl.docutils dd {
margin-bottom: 0.5em }
/* Uncomment (and remove this text!) to get bold-faced definition list terms
dl.docutils dt {
font-weight: bold }
*/
div.abstract {
margin: 2em 5em }
div.abstract p.topic-title {
font-weight: bold ;
text-align: center }
div.admonition, div.attention, div.caution, div.danger, div.error,
div.hint, div.important, div.note, div.tip, div.warning {
margin: 2em ;
border: medium outset ;
padding: 1em }
div.admonition p.admonition-title, div.hint p.admonition-title,
div.important p.admonition-title, div.note p.admonition-title,
div.tip p.admonition-title {
font-weight: bold ;
font-family: sans-serif }
div.attention p.admonition-title, div.caution p.admonition-title,
div.danger p.admonition-title, div.error p.admonition-title,
div.warning p.admonition-title {
color: red ;
font-weight: bold ;
font-family: sans-serif }
/* Uncomment (and remove this text!) to get reduced vertical space in
compound paragraphs.
div.compound .compound-first, div.compound .compound-middle {
margin-bottom: 0.5em }
div.compound .compound-last, div.compound .compound-middle {
margin-top: 0.5em }
*/
div.dedication {
margin: 2em 5em ;
text-align: center ;
font-style: italic }
div.dedication p.topic-title {
font-weight: bold ;
font-style: normal }
div.figure {
margin-left: 2em ;
margin-right: 2em }
div.footer, div.header {
clear: both;
font-size: smaller }
div.line-block {
display: block ;
margin-top: 1em ;
margin-bottom: 1em }
div.line-block div.line-block {
margin-top: 0 ;
margin-bottom: 0 ;
margin-left: 1.5em }
div.sidebar {
margin-left: 1em ;
border: medium outset ;
padding: 1em ;
background-color: #ffffee ;
width: 40% ;
float: right ;
clear: right }
div.sidebar p.rubric {
font-family: sans-serif ;
font-size: medium }
div.system-messages {
margin: 5em }
div.system-messages h1 {
color: red }
div.system-message {
border: medium outset ;
padding: 1em }
div.system-message p.system-message-title {
color: red ;
font-weight: bold }
div.topic {
margin: 2em }
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
margin-top: 0.4em }
h1.title {
text-align: center }
h2.subtitle {
text-align: center }
hr.docutils {
width: 75% }
img.align-left {
clear: left }
img.align-right {
clear: right }
ol.simple, ul.simple {
margin-bottom: 1em }
ol.arabic {
list-style: decimal }
ol.loweralpha {
list-style: lower-alpha }
ol.upperalpha {
list-style: upper-alpha }
ol.lowerroman {
list-style: lower-roman }
ol.upperroman {
list-style: upper-roman }
p.attribution {
text-align: right ;
margin-left: 50% }
p.caption {
font-style: italic }
p.credits {
font-style: italic ;
font-size: smaller }
p.label {
white-space: nowrap }
p.rubric {
font-weight: bold ;
font-size: larger ;
color: maroon ;
text-align: center }
p.sidebar-title {
font-family: sans-serif ;
font-weight: bold ;
font-size: larger }
p.sidebar-subtitle {
font-family: sans-serif ;
font-weight: bold }
p.topic-title {
font-weight: bold }
pre.address {
margin-bottom: 0 ;
margin-top: 0 ;
font-family: serif ;
font-size: 100% }
pre.literal-block, pre.doctest-block {
margin-left: 2em ;
margin-right: 2em ;
background-color: #eeeeee }
span.classifier {
font-family: sans-serif ;
font-style: oblique }
span.classifier-delimiter {
font-family: sans-serif ;
font-weight: bold }
span.interpreted {
font-family: sans-serif }
span.option {
white-space: nowrap }
span.pre {
white-space: pre }
span.problematic {
color: red }
span.section-subtitle {
/* font-size relative to parent (h1..h6 element) */
font-size: 80% }
table.citation {
border-left: solid 1px gray;
margin-left: 1px }
table.docinfo {
margin: 2em 4em }
table.docutils {
margin-top: 0.5em ;
margin-bottom: 0.5em }
table.footnote {
border-left: solid 1px black;
margin-left: 1px }
table.docutils td, table.docutils th,
table.docinfo td, table.docinfo th {
padding-left: 0.5em ;
padding-right: 0.5em ;
vertical-align: top }
table.docutils th.field-name, table.docinfo th.docinfo-name {
font-weight: bold ;
text-align: left ;
white-space: nowrap ;
padding-left: 0 }
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
font-size: 100% }
tt.docutils {
background-color: #eeeeee }
ul.auto-toc {
list-style-type: none }
</style>
</head>
<body>
<div class="document" id="graphics-reference">
<h1 class="title">Graphics Reference</h1>
<p>Graphics elements are the way you have to draw images ad shapes on the band
canvas.</p>
<p>They can be useful also to make customized borders in bands.</p>
<div class="section">
<h2><a id="graphic" name="graphic">Graphic</a></h2>
<p>This is the basic graphic class. You should use it only when inheriting to
create your own graphic class, never use it directly.</p>
<p>Its rect area is based on <strong>left-width-top-height</strong> dimensions.</p>
<p>Path: <strong>geraldo.graphics.Graphic</strong></p>
<p><strong>Attributes</strong></p>
<ul class="simple">
<li><strong>visible</strong> - Default: True</li>
<li><strong>stroke</strong> - Default: True</li>
<li><strong>stroke_color</strong> - Default: reportlab.lib.colors.black</li>
<li><strong>stroke_width</strong> - Default: 1</li>
<li><strong>fill</strong> - Default: False</li>
<li><strong>fill_color</strong> - Default: reportlab.lib.colors.black</li>
</ul>
<p><strong>Rendering attributes</strong></p>
<p>They are read-only attributes you can use in render time.</p>
<ul class="simple">
<li><strong>instance</strong> - current object being rendered</li>
<li><strong>generator</strong> - generator instance</li>
<li><strong>report</strong> - report instance this element is in</li>
<li><strong>band</strong> - band this element is in</li>
<li><strong>page</strong> - current page</li>
</ul>
<p><strong>Methods</strong></p>
<ul>
<li><p class="first"><strong>set_rect(**kwargs)</strong></p>
<blockquote>
<p>Used to generator set the hard rectangle when rendering pages. Override it
to set your own rule if you need.</p>
</blockquote>
</li>
</ul>
</div>
<div class="section">
<h2><a id="fixed" name="fixed">Fixed</a></h2>
<p>Path: <strong>geraldo.graphics.Fixed</strong></p>
<p>In the same way of Graphic class, you should use this just to inhert and create
your own graphic. This is a graphic with rect with <strong>left-right-top-bottom</strong>
dimensioning.</p>
</div>
<div class="section">
<h2><a id="rect" name="rect">Rect</a></h2>
<p>Path: <strong>geraldo.Rect</strong></p>
<p>A rectangle with square borders on the canvas.</p>
<p><strong>Example of use</strong></p>
<blockquote>
<pre class="doctest-block">
>>> Rect(left=1*cm, top=0.5*cm, width=10*cm, height=0.5*cm, fill=True, fill_color=yellow)
</pre>
</blockquote>
<p><strong>Attributes</strong></p>
<ul class="simple">
<li><strong>left</strong> - Required</li>
<li><strong>width</strong> - Required</li>
<li><strong>top</strong> - Required</li>
<li><strong>height</strong> - Required</li>
</ul>
</div>
<div class="section">
<h2><a id="roundrect" name="roundrect">RoundRect</a></h2>
<p>Path: <strong>geraldo.RoundRect</strong></p>
<p>A rectangle with rounded borders on the canvas.</p>
<p><strong>Example of use</strong></p>
<blockquote>
<pre class="doctest-block">
>>> RoundRect(left=1*cm, top=0.5*cm, width=10*cm, height=0.5*cm, stroke=True, stroke_width=3, stroke_color=blue)
</pre>
</blockquote>
<p><strong>Attributes</strong></p>
<ul>
<li><p class="first"><strong>left</strong> - Required</p>
</li>
<li><p class="first"><strong>width</strong> - Required</p>
</li>
<li><p class="first"><strong>top</strong> - Required</p>
</li>
<li><p class="first"><strong>height</strong> - Required</p>
</li>
<li><p class="first"><strong>radius</strong> - Required</p>
<blockquote>
<p>Inform the radius number for the round corners.</p>
</blockquote>
</li>
</ul>
</div>
<div class="section">
<h2><a id="line" name="line">Line</a></h2>
<p>Path: <strong>geraldo.Line</strong></p>
<p><strong>Example of use</strong></p>
<blockquote>
<pre class="doctest-block">
>>> Line(left=1*cm, top=0.5*cm, right=10*cm, bottom=0.5*cm)
</pre>
</blockquote>
<p><strong>Attributes</strong></p>
<ul class="simple">
<li><strong>left</strong> - Required</li>
<li><strong>width</strong> - Required</li>
<li><strong>right</strong> - Required</li>
<li><strong>bottom</strong> - Required</li>
</ul>
</div>
<div class="section">
<h2><a id="circle" name="circle">Circle</a></h2>
<p>Path: <strong>geraldo.Circle</strong></p>
<p><strong>Example of use</strong></p>
<blockquote>
<pre class="doctest-block">
>>> Circle(left_center=6*cm, top_center=3.5*cm, radius=3*cm)
</pre>
</blockquote>
<p><strong>Attributes</strong></p>
<ul class="simple">
<li><strong>left_center</strong> - Required</li>
<li><strong>top_center</strong> - Required</li>
<li><strong>radius</strong> - Required</li>
</ul>
</div>
<div class="section">
<h2><a id="arc" name="arc">Arc</a></h2>
<p>Path: <strong>geraldo.Arc</strong></p>
<p><strong>Example of use</strong></p>
<blockquote>
<pre class="doctest-block">
>>> Arc(left=1*cm, top=0.5*cm, right=10*cm, bottom=0.5*cm, extent=50, start_angle=5)
</pre>
</blockquote>
<p><strong>Attributes</strong></p>
<ul class="simple">
<li><strong>left</strong> - Required</li>
<li><strong>width</strong> - Required</li>
<li><strong>right</strong> - Required</li>
<li><strong>bottom</strong> - Required</li>
<li><strong>start_angle</strong> - Default: 0</li>
<li><strong>extent</strong> - Default: 90</li>
</ul>
</div>
<div class="section">
<h2><a id="ellipse" name="ellipse">Ellipse</a></h2>
<p>Path: <strong>geraldo.Ellipse</strong></p>
<p><strong>Example of use</strong></p>
<blockquote>
<pre class="doctest-block">
>>> Ellipse(left=1*cm, top=0.5*cm, right=10*cm, bottom=0.5*cm)
</pre>
</blockquote>
<p><strong>Attributes</strong></p>
<ul class="simple">
<li><strong>left</strong> - Required</li>
<li><strong>width</strong> - Required</li>
<li><strong>right</strong> - Required</li>
<li><strong>bottom</strong> - Required</li>
</ul>
</div>
<div class="section">
<h2><a id="image" name="image">Image</a></h2>
<p>Path: <strong>geraldo.Image</strong></p>
<p><strong>Example of use</strong></p>
<blockquote>
<pre class="doctest-block">
>>> Image(left=1*cm, top=0.5*cm, right=10*cm, bottom=0.5*cm, filename='path/to/file.jpg')
</pre>
</blockquote>
<p><strong>Attributes</strong></p>
<ul>
<li><p class="first"><strong>left</strong> - Required</p>
</li>
<li><p class="first"><strong>width</strong> - Required</p>
</li>
<li><p class="first"><strong>top</strong> - Required</p>
</li>
<li><p class="first"><strong>height</strong> - Required</p>
</li>
<li><p class="first"><strong>filename</strong> - Required</p>
<blockquote>
<p>You can inform a filename path or a Python Imaging Library Image instance.
Then you have to have this library installed.</p>
</blockquote>
</li>
<li><p class="first"><strong>get_image</strong> - Default: None</p>
<blockquote>
<p>You should inform a function or lambda object to this attribute when you
want to work with Images or Charts based on object values or logic.</p>
</blockquote>
</li>
</ul>
</div>
</div>
</body>
</html>
|
doc/javadoc/internal/gate/persist/package-summary.html | liuhongchao/GATE_Developer_7.0 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_24) on Thu Feb 09 13:44:07 GMT 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
gate.persist (GATE JavaDoc (including private members))
</TITLE>
<META NAME="date" CONTENT="2012-02-09">
<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="gate.persist (GATE JavaDoc (including private members))";
}
}
</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> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../gate/jape/parser/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../gate/security/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?gate/persist/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
<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 gate.persist
</H2>
<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="../../gate/persist/GateAwareObjectInputStream.html" title="class in gate.persist">GateAwareObjectInputStream</A></B></TD>
<TD>An ObjectInputStream that attempts to resolve the classes of objects
loaded from the stream via the GateClassLoader if they cannot be
found by the usual means.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../gate/persist/LuceneDataStoreImpl.html" title="class in gate.persist">LuceneDataStoreImpl</A></B></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../gate/persist/SerialDataStore.html" title="class in gate.persist">SerialDataStore</A></B></TD>
<TD>A data store based on Java serialisation.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../gate/persist/TestPersist.html" title="class in gate.persist">TestPersist</A></B></TD>
<TD>Persistence test class</TD>
</TR>
</TABLE>
<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>Exception Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../gate/persist/PersistenceException.html" title="class in gate.persist">PersistenceException</A></B></TD>
<TD>This exception indicates failure during persistence operations.</TD>
</TR>
</TABLE>
<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> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../gate/jape/parser/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../gate/security/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?gate/persist/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A>
<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>
|
src/components/sidemenu/sidemenu.component.html | LukeDS-it/ng-synchronicity-II | <div class="syn-menu theme-{{theme}}" [ngClass]="{opened: opened}">
<div class="header">
<img src="back.png" class="btn-back" (click)="toggle()" [synShortcut]="shortcut" />
<span class="h1">{{appName}}</span>
</div>
<div class="syn-menu-content">
<ng-content></ng-content>
</div>
</div> |
NdefLibrary/doc/html/functions_t.html | andijakl/ndef-nfc | <!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.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>NFC / NDEF Library for Proximity APIs: Class Members</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="NdefLibraryLogo.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">NFC / NDEF Library for Proximity APIs
 <span id="projectnumber">4.1.0</span>
</div>
<div id="projectbrief">Easily parse and create NDEF records with the Windows Proximity APIs / Near Field Communication NFC.</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
<div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div>
<h3><a id="index_t"></a>- t -</h3><ul>
<li>TelNumber
: <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_tel_record.html#a6c37873232ce4e687d70a6a952693eff">NdefLibrary.Ndef.NdefTelRecord</a>
</li>
<li>Text
: <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_text_record.html#a65f1018f1d6f18abf60e72dc1d7289cb">NdefLibrary.Ndef.NdefTextRecord</a>
</li>
<li>TextEncoding
: <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_text_record.html#a0465a13b4ad2fe49f135b0498181b4f2">NdefLibrary.Ndef.NdefTextRecord</a>
</li>
<li>TextEncodingType
: <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_text_record.html#a8f686f9a44d2ca3e33bb6278b8a106ca">NdefLibrary.Ndef.NdefTextRecord</a>
</li>
<li>TextType
: <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_text_record.html#a14c3c7e26a133d53ab7381064956d078">NdefLibrary.Ndef.NdefTextRecord</a>
</li>
<li>Title()
: <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_sp_record.html#aa27970b4b0e7724090e382e90069012e">NdefLibrary.Ndef.NdefSpRecord</a>
</li>
<li>TitleCount()
: <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_sp_record.html#a9e684641ba235500423c2aea7023cd49">NdefLibrary.Ndef.NdefSpRecord</a>
</li>
<li>Titles
: <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_sp_record.html#a4ef6dde332e02bfec765158e1b0cc993">NdefLibrary.Ndef.NdefSpRecord</a>
</li>
<li>ToByteArray()
: <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_bt_secure_simple_pairing_record_1_1_bt_class_of_device.html#a06750f503da3a1889e0151839e35d8e8">NdefLibrary.Ndef.NdefBtSecureSimplePairingRecord.BtClassOfDevice</a>
, <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_bt_secure_simple_pairing_record_1_1_bt_service_classes.html#ac6268639f959642e34dcefc322950741">NdefLibrary.Ndef.NdefBtSecureSimplePairingRecord.BtServiceClasses</a>
, <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_message.html#af258125a5276def7227db8977cdbb261">NdefLibrary.Ndef.NdefMessage</a>
</li>
<li>Type
: <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_record.html#ab898bd728196b4c255f2c2fbead68e24">NdefLibrary.Ndef.NdefRecord</a>
, <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_smart_uri_record.html#a86fd3acfa27b08ca66f3a92419d1cef2">NdefLibrary.Ndef.NdefSmartUriRecord</a>
</li>
<li>TypeNameFormat
: <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_record.html#aaf90a19b1fd91617319996635247e9bc">NdefLibrary.Ndef.NdefRecord</a>
</li>
<li>TypeNameFormatType
: <a class="el" href="class_ndef_library_1_1_ndef_1_1_ndef_record.html#ae8b72bae8f27a524d56bb048bb5fac7d">NdefLibrary.Ndef.NdefRecord</a>
</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Wed Aug 16 2017 15:07:47 for NFC / NDEF Library for Proximity APIs by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.13
</small></address>
</body>
</html>
|
packages/build/FAKE/docs/apidocs/fake-roundhousehelper.html | jeremyabbott/doctoralsurvey | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>RoundhouseHelper - FAKE - F# Make</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Steffen Forkmann, Mauricio Scheffer, Colin Bull">
<script src="https://code.jquery.com/jquery-1.8.0.js"></script>
<script src="https://code.jquery.com/ui/1.8.23/jquery-ui.js"></script>
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="http://fsharp.github.io/FAKE/content/style.css" />
<script type="text/javascript" src="http://fsharp.github.io/FAKE/content/tips.js"></script>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li><a href="http://fsharp.org">fsharp.org</a></li>
<li><a href="http://github.com/fsharp/fake">github page</a></li>
</ul>
<h3 class="muted"><a href="http://fsharp.github.io/FAKE/index.html">FAKE - F# Make</a></h3>
</div>
<hr />
<div class="row">
<div class="span9" id="main">
<h1>RoundhouseHelper</h1>
<div class="xmldoc">
<p>Contains tasks to run <a href="http://projectroundhouse.org/">RoundhousE</a> database migrations.</p>
</div>
<!-- Render nested types and modules, if there are any -->
<h2>Nested types and modules</h2>
<div>
<table class="table table-bordered type-list">
<thead>
<tr><td>Type</td><td>Description</td></tr>
</thead>
<tbody>
<tr>
<td class="type-name">
<a href="fake-roundhousehelper-roundhouseparams.html">RoundhouseParams</a>
</td>
<td class="xmldoc"><p>Parameter type to configure the RoundhousE runner</p>
</td>
</tr>
</tbody>
</table>
</div>
<h3>Functions and values</h3>
<table class="table table-bordered member-list">
<thead>
<tr><td>Function or value</td><td>Description</td></tr>
</thead>
<tbody>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '591', 591)" onmouseover="showTip(event, '591', 591)">
Roundhouse setParams
</code>
<div class="tip" id="591">
<strong>Signature:</strong> setParams:(RoundhouseParams -> RoundhouseParams) -> unit<br />
</div>
</td>
<td class="xmldoc">
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/RoundhouseHelper.fs#L238-238" class="github-link">
<img src="../content/img/github.png" class="normal" />
<img src="../content/img/github-blue.png" class="hover" />
</a>
<p>This task to can be used to run <a href="http://projectroundhouse.org/">RoundhousE</a> for database migrations.</p>
<h2>Parameters</h2>
<ul>
<li><code>setParams</code> - Function used to overwrite the Roundhouse default parameters.</li>
</ul>
<h2>Sample</h2>
<table class="pre"><tr><td class="lines"><pre class="fssnip"><span class="l">1: </span>
<span class="l">2: </span>
<span class="l">3: </span>
<span class="l">4: </span>
<span class="l">5: </span>
</pre></td>
<td class="snippet"><pre class="fssnip highlighted"><code lang="fsharp"><span class="i">Roundhouse</span> (<span class="k">fun</span> <span class="i">p</span> <span class="k">-></span> { <span class="i">p</span> <span class="k">with</span>
<span class="i">SqlFilesDirectory</span> <span class="o">=</span> <span class="s">".\database"</span>
<span class="i">ServerDatabase</span> <span class="o">=</span> <span class="s">"(local)"</span>
<span class="i">DatabaseName</span> <span class="o">=</span> <span class="s">"atxc"</span>
<span class="i">WarnOnOneTimeScriptChanges</span> <span class="o">=</span> <span class="k">true</span> })
</code></pre></td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '592', 592)" onmouseover="showTip(event, '592', 592)">
RoundhouseDefaults
</code>
<div class="tip" id="592">
<strong>Signature:</strong> RoundhouseParams<br />
</div>
</td>
<td class="xmldoc">
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/RoundhouseHelper.fs#L121-121" class="github-link">
<img src="../content/img/github.png" class="normal" />
<img src="../content/img/github-blue.png" class="hover" />
</a>
<p>Roundhouse default parameters - tries to locate rh.exe in any subfolder.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="span3">
<a href="http://fsharp.github.io/FAKE/index.html">
<img src="http://fsharp.github.io/FAKE/pics/logo.png" style="width:140px;height:140px;margin:10px 0px 0px 35px;border-style:none;" />
</a>
<ul class="nav nav-list" id="menu">
<li class="nav-header">FAKE - F# Make</li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/index.html">Home page</a></li>
<li class="divider"></li>
<li><a href="https://www.nuget.org/packages/FAKE">Get FAKE - F# Make via NuGet</a></li>
<li><a href="http://github.com/fsharp/fake">Source Code on GitHub</a></li>
<li><a href="http://github.com/fsharp/fake/blob/master/License.txt">License (Apache 2)</a></li>
<li><a href="http://fsharp.github.io/FAKE/RELEASE_NOTES.html">Release Notes</a></li>
<li><a href="http://fsharp.github.io/FAKE//contributing.html">Contributing to FAKE - F# Make</a></li>
<li><a href="http://fsharp.github.io/FAKE/users.html">Who is using FAKE?</a></li>
<li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li>
<li class="nav-header">Tutorials</li>
<li><a href="http://fsharp.github.io/FAKE/gettingstarted.html">Getting started</a></li>
<li><a href="http://fsharp.github.io/FAKE/cache.html">Build script caching</a></li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/nuget.html">NuGet package restore</a></li>
<li><a href="http://fsharp.github.io/FAKE/fxcop.html">Using FxCop in a build</a></li>
<li><a href="http://fsharp.github.io/FAKE/assemblyinfo.html">Generating AssemblyInfo</a></li>
<li><a href="http://fsharp.github.io/FAKE/create-nuget-package.html">Create NuGet packages</a></li>
<li><a href="http://fsharp.github.io/FAKE/specifictargets.html">Running specific targets</a></li>
<li><a href="http://fsharp.github.io/FAKE/commandline.html">Running FAKE from command line</a></li>
<li><a href="http://fsharp.github.io/FAKE/parallel-build.html">Running targets in parallel</a></li>
<li><a href="http://fsharp.github.io/FAKE/fsc.html">Using the F# compiler from FAKE</a></li>
<li><a href="http://fsharp.github.io/FAKE/customtasks.html">Creating custom tasks</a></li>
<li><a href="http://fsharp.github.io/FAKE/soft-dependencies.html">Soft dependencies</a></li>
<li><a href="http://fsharp.github.io/FAKE/teamcity.html">TeamCity integration</a></li>
<li><a href="http://fsharp.github.io/FAKE/canopy.html">Running canopy tests</a></li>
<li><a href="http://fsharp.github.io/FAKE/octopusdeploy.html">Octopus Deploy</a></li>
<li><a href="http://fsharp.github.io/FAKE/typescript.html">TypeScript support</a></li>
<li><a href="http://fsharp.github.io/FAKE/azurewebjobs.html">Azure WebJobs support</a></li>
<li><a href="http://fsharp.github.io/FAKE/azurecloudservices.html">Azure Cloud Services support</a></li>
<li><a href="http://fsharp.github.io/FAKE/fluentmigrator.html">FluentMigrator support</a></li>
<li><a href="http://fsharp.github.io/FAKE/androidpublisher.html">Android publisher</a></li>
<li><a href="http://fsharp.github.io/FAKE/watch.html">File Watcher</a></li>
<li><a href="http://fsharp.github.io/FAKE/wix.html">WiX Setup Generation</a></li>
<li><a href="http://fsharp.github.io/FAKE/chocolatey.html">Using Chocolatey</a></li>
<li><a href="http://fsharp.github.io/FAKE/slacknotification.html">Using Slack</a></li>
<li><a href="http://fsharp.github.io/FAKE/sonarcube.html">Using SonarQube</a></li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/deploy.html">Fake.Deploy</a></li>
<li><a href="http://fsharp.github.io/FAKE/iis.html">Fake.IIS</a></li>
<li class="nav-header">Reference</li>
<li><a href="http://fsharp.github.io/FAKE/apidocs/index.html">API Reference</a></li>
</ul>
</div>
</div>
</div>
<a href="http://github.com/fsharp/fake"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
</body>
</html>
|
list/acanthite.html | frank29259/mineral | <!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Acanthite</title>
<link href="../w3.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="w3-row">
<div class="w3-col" style="width:20%"><p>20%</p></div>
<div class="w3-col" style="width:60%"><p>60%</p></div>
<div class="w3-col" style="width:20%"><p>20%</p></div>
</div>
</body>
</html>
|
doc/api/manager.js.html | freezedev/lyria | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>DocStrap Source: audio/manager.js</title>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/sunlight.default.css">
<link type="text/css" rel="stylesheet" href="styles/site.cerulean.css">
</head>
<body>
<div class="container-fluid">
<div class="navbar navbar-fixed-top navbar-inverse">
<div class="navbar-inner">
<a class="brand" href="index.html">DocStrap</a>
<ul class="nav">
<li class="dropdown">
<a href="modules.list.html" class="dropdown-toggle" data-toggle="dropdown">Modules<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li>
<a href="animation.html">lyria/animation</a>
</li>
<li>
<a href="audio.html">lyria/audio</a>
</li>
<li>
<a href="checkpoints.html">lyria/checkpoints</a>
</li>
<li>
<a href="component.html">lyria/component</a>
</li>
<li>
<a href="constants.html">lyria/constants</a>
</li>
<li>
<a href="game.html">lyria/game</a>
</li>
<li>
<a href="gameobject.html">lyria/gameobject</a>
</li>
<li>
<a href="language.html">lyria/language</a>
</li>
<li>
<a href="layer.html">lyria/layer</a>
</li>
<li>
<a href="log.html">lyria/log</a>
</li>
<li>
<a href="language_.html">lyria/mixin/language</a>
</li>
<li>
<a href="prefab.html">lyria/prefab</a>
</li>
<li>
<a href="manager.html">lyria/prefab/manager</a>
</li>
<li>
<a href="preloader.html">lyria/preloader</a>
</li>
<li>
<a href="resource.html">lyria/resource</a>
</li>
<li>
<a href="scene.html">lyria/scene</a>
</li>
<li>
<a href="director_.html">lyria/scene/director</a>
</li>
<li>
<a href="connector.html">lyria/template/connector</a>
</li>
<li>
<a href="engine.html">lyria/template/engine</a>
</li>
<li>
<a href="tween.html">lyria/tween</a>
</li>
<li>
<a href="video.html">lyria/video</a>
</li>
<li>
<a href="viewport.html">lyria/viewport</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="events.list.html" class="dropdown-toggle" data-toggle="dropdown">Events<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li>
<a href="director_.html#event:render">render</a>
</li>
<li>
<a href="director_.html#event:update">update</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<div id="main">
<h1 class="page-title">Source: audio/manager.js</h1>
<section>
<article>
<pre class="sunlight-highlight-javascript linenums">define(['jquery', 'clamp', '../log', '../audio', 'mixedice', 'eventmap'], function($, clamp, Log, Audio, mixedice, EventMap) {
'use strict';
var AudioManager = function() {
mixedice([this, AudioManager.prototype], new EventMap());
this.audioFiles = {};
};
var volume = 1;
// default
Object.defineProperty(AudioManager, 'volume', {
get : function() {
return volume;
},
set : function(value) {
volume = clamp(value, 0, 1);
}
});
/**
*
* @param {Object} options
* @param {String} options.type ['music', 'sound']
* @param {String} options id
* @param {Boolean} options loop
* @param {Number} options volume
* @param {Array} options paths paths to audio file with defined fallbacks
*
*/
AudioManager.prototype.add = function(options) {
options = $.extend({
'id' : '',
'type' : 'sound',
'loop' : false,
'volume' : 1.0,
'paths' : []
}, options);
// set volume in relation to current max volume
options.volume *= volume;
if (options.id === '') {
Log.e('AudioManager.add: No id was given for new audio object');
return;
}
this.audioFiles[options.id] = new Audio(options);
this.trigger('added', options.id, this.audioFiles[options.id]);
return this.audioFiles[options];
};
AudioManager.prototype.play = function(id, loop) {
if (!this.audioFiles[id]) {
Log.e('AudioManager.play: No audio element found under id ' + id);
return;
}
$('#' + id).off('ended');
$('#' + id).on('ended', {
'audioFile' : this.audioFiles[id],
'audioManager' : this,
'id' : id
}, function(event) {
if (event.data.audioFile.attr('loop') > 0 || event.data.audioFile.attr('loop') === -1) {
event.data.audioFile.play();
event.data.audioManager.trigger('loopEnded', event.data.id, event.data.audioFile);
} else {
event.data.audioManager.trigger('ended', event.data.id, event.data.audioFile);
}
});
this.audioFiles[id].play(loop);
this.trigger('play', id, this.audioFiles[id]);
};
AudioManager.prototype.pause = function(id) {
if (!this.audioFiles[id]) {
Log.e('AudioManager.pause: No audio element found under id ' + id);
return;
}
this.audioFiles[id].pause();
this.trigger('paused', id, this.audioFiles[id]);
};
AudioManager.prototype.stop = function(id) {
if (!this.audioFiles[id]) {
Log.e('AudioManager.stop: No audio element found under id ' + id);
return;
}
this.audioFiles[id].stop();
// ended event should be triggered automatically
};
AudioManager.prototype.volume = function(id, volume) {
if (!this.audioFiles[id]) {
Log.e('AudioManager.volume: No audio element found under id ' + id);
return;
}
if (volume) {
this.audioFiles[id].volume = clamp(volume, 0, 1);
} else {
return this.audioFiles[id].volume;
}
};
return AudioManager;
});
</pre>
</article>
</section>
</div>
<div class="clearfix"></div>
<footer>
<span class="copyright">
DocStrap Copyright © 2012-2013 The contributors to the JSDoc3 and DocStrap projects.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.2.2</a>
on Sun Jan 26 2014 20:12:44 GMT+0100 (MEZ) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>
<br clear="both">
</div>
</div>
<script src="scripts/sunlight.js"></script>
<script src="scripts/sunlight.javascript.js"></script>
<script src="scripts/sunlight-plugin.doclinks.js"></script>
<script src="scripts/sunlight-plugin.linenumbers.js"></script>
<script src="scripts/sunlight-plugin.menu.js"></script>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/jquery.scrollTo.js"></script>
<script src="scripts/jquery.localScroll.js"></script>
<script src="scripts/bootstrap-dropdown.js"></script>
<script src="scripts/toc.js"></script>
<script> Sunlight.highlightAll({lineNumbers:true, showMenu: true, enableDoclinks :true}); </script>
<script>
$( function () {
$( "#toc" ).toc( {
selectors : "h1,h2,h3,h4",
showAndHide : false,
scrollTo : 60
} );
$( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" );
$( "#main span[id^='toc']" ).addClass( "toc-shim" );
} );
</script>
</body>
</html>
|
html/MWAIT.html | gh0std4ncer/x86doc | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
<title>MWAIT—Monitor Wait</title>
</head>
<body>
<h1 id="mwait-monitor-wait">MWAIT—Monitor Wait</h1>
<table>
<tr>
<td>Opcode</td>
<td>Instruction</td>
<td>Op/En</td>
<td>64-Bit Mode</td>
<td>Compat/Leg Mode</td>
<td>Description</td>
</tr>
<tr>
<td>0F 01 C9</td>
<td>MWAIT</td>
<td>NP</td>
<td>Valid</td>
<td>Valid</td>
<td>A hint that allow the processor to stop instruction execution and enter an implementation-dependent optimized state until occurrence of a class of events.</td>
</tr>
</table>
<h2 id="instruction-operand-encoding">Instruction Operand Encoding</h2>
<table>
<tr>
<td>Op/En</td>
<td>Operand 1</td>
<td>Operand 2</td>
<td>Operand 3</td>
<td>Operand 4</td>
</tr>
<tr>
<td>NP</td>
<td>NA</td>
<td>NA</td>
<td>NA</td>
<td>NA</td>
</tr>
</table>
<h2 id="description">Description</h2>
<p>MWAIT instruction provides hints to allow the processor to enter an implementation-dependent optimized state. There are two principal targeted usages: address-range monitor and advanced power management. Both usages of MWAIT require the use of the MONITOR instruction.</p>
<p>CPUID.01H:ECX.MONITOR[bit 3] indicates the availability of MONITOR and MWAIT in the processor. When set, MWAIT may be executed only at privilege level 0 (use at any other privilege level results in an invalid-opcode exception). The operating system or system BIOS may disable this instruction by using the IA32_MISC_ENABLE MSR; disabling MWAIT clears the CPUID feature flag and causes execution to generate an invalid-opcode exception.</p>
<p>This instruction’s operation is the same in non-64-bit modes and 64-bit mode.</p>
<p>ECX specifies optional extensions for the MWAIT instruction. EAX may contain hints such as the preferred optimized state the processor should enter. The first processors to implement MWAIT supported only the zero value for EAX and ECX. Later processors allowed setting ECX[0] to enable masked interrupts as break events for MWAIT (see below). Software can use the CPUID instruction to determine the extensions and hints supported by the processor.</p>
<h2 id="mwait-for-address-range-monitoring">MWAIT for Address Range Monitoring</h2>
<p>For address-range monitoring, the MWAIT instruction operates with the MONITOR instruction. The two instructions allow the definition of an address at which to wait (MONITOR) and a implementation-dependent-optimized operation to commence at the wait address (MWAIT). The execution of MWAIT is a hint to the processor that it can enter an implementation-dependent-optimized state while waiting for an event or a store operation to the address range armed by MONITOR.</p>
<p>The following cause the processor to exit the implementation-dependent-optimized state: a store to the address range armed by the MONITOR instruction, an NMI or SMI, a debug exception, a machine check exception, the BINIT# signal, the INIT# signal, and the RESET# signal. Other implementation-dependent events may also cause the processor to exit the implementation-dependent-optimized state.</p>
<p>In addition, an external interrupt causes the processor to exit the implementation-dependent-optimized state either (1) if the interrupt would be delivered to software (e.g., as it would be if HLT had been executed instead of MWAIT); or (2) if ECX[0] = 1. Software can execute MWAIT with ECX[0] = 1 only if CPUID.05H:ECX[bit 1] = 1. (Implementation-specific conditions may result in an interrupt causing the processor to exit the implementationdependent-optimized state even if interrupts are masked and ECX[0] = 0.)</p>
<p>Following exit from the implementation-dependent-optimized state, control passes to the instruction following the MWAIT instruction. A pending interrupt that is not masked (including an NMI or an SMI) may be delivered before execution of that instruction. Unlike the HLT instruction, the MWAIT instruction does not support a restart at the MWAIT instruction following the handling of an SMI.</p>
<p>If the preceding MONITOR instruction did not successfully arm an address range or if the MONITOR instruction has not been executed prior to executing MWAIT, then the processor will not enter the implementation-dependent-optimized state. Execution will resume at the instruction following the MWAIT.</p>
<h2 id="mwait-for-power-management">MWAIT for Power Management</h2>
<p>MWAIT accepts a hint and optional extension to the processor that it can enter a specified target C state while waiting for an event or a store operation to the address range armed by MONITOR. Support for MWAIT extensions for power management is indicated by CPUID.05H:ECX[bit 0] reporting 1.</p>
<p>EAX and ECX are used to communicate the additional information to the MWAIT instruction, such as the kind of optimized state the processor should enter. ECX specifies optional extensions for the MWAIT instruction. EAX may contain hints such as the preferred optimized state the processor should enter. Implementation-specific conditions may cause a processor to ignore the hint and enter a different optimized state. Future processor implementations may implement several optimized “waiting” states and will select among those states based on the hint argument.</p>
<p>Table 3-67 describes the meaning of ECX and EAX registers for MWAIT extensions.</p>
<h3 id="table-3-67-mwait-extension-register-ecx-">Table 3-67. MWAIT Extension Register (ECX)</h3>
<table>
<tr>
<td>Bits</td>
<td>Description</td>
</tr>
<tr>
<td>Treat interrupts as break events even if masked (e.g., even if EFLAGS.IF=0). May be set only if CPUID.05H:ECX[bit 1] = 1.</td>
<td>0</td>
</tr>
<tr>
<td>Reserved</td>
<td>31: 1 MWAIT Hints Register (EAX)</td>
</tr>
<tr>
<td>Bits</td>
<td>Description</td>
</tr>
<tr>
<td>Sub C-state within a C-state, indicated by bits [7:4]</td>
<td>3 : 0</td>
</tr>
<tr>
<td>Target C-state*Value of 0 means C1; 1 means C2 and so on Value of 01111B means C0</td>
<td>7 : 4</td>
</tr>
</table>
<p>Note: Target C states for MWAIT extensions are processor-specific C-states, not ACPI C-states</p>
<table>
<tr>
<td>31: 8</td>
<td>Reserved</td>
</tr>
</table>
<p>Note that if MWAIT is used to enter any of the C-states that are numerically higher than C1, a store to the address range armed by the MONITOR instruction will cause the processor to exit MWAIT only if the store was originated by other processor agents. A store from non-processor agent might not cause the processor to exit MWAIT in such cases.</p>
<p>For additional details of MWAIT extensions, see Chapter 14, “Power and Thermal Management,” of <em>Intel® 64 and</em> <em>IA-32 Architectures Software Developer’s Manual, Volume 3A.</em></p>
<h2 id="operation">Operation</h2>
<pre>(* MWAIT takes the argument in EAX as a hint extension and is architected to take the argument in ECX as an instruction extension
MWAIT EAX, ECX *)
{
WHILE ( (“Monitor Hardware is in armed state”)) {
implementation_dependent_optimized_state(EAX, ECX); }
Set the state of Monitor Hardware as triggered;
}
</pre>
<h2 id="intel-c-c-compiler-intrinsic-equivalent">Intel C/C++ Compiler Intrinsic Equivalent</h2>
<table>
<tr>
<td>MWAIT:</td>
<td>void _mm_mwait(unsigned extensions, unsigned hints)</td>
</tr>
</table>
<h2 id="example">Example</h2>
<p>MONITOR/MWAIT instruction pair must be coded in the same loop because execution of the MWAIT instruction will trigger the monitor hardware. It is not a proper usage to execute MONITOR once and then execute MWAIT in a loop. Setting up MONITOR without executing MWAIT has no adverse effects.</p>
<p>Typically the MONITOR/MWAIT pair is used in a sequence, such as:</p>
<p>EAX = Logical Address(Trigger) ECX = 0 (*Hints *) EDX = 0 (* Hints *)</p>
<p>IF ( !trigger_store_happened) {MONITOR EAX, ECX, EDX IF ( !trigger_store_happened ) {MWAIT EAX, ECX }}</p>
<p>The above code sequence makes sure that a triggering store does not happen between the first check of the trigger and the execution of the monitor instruction. Without the second check that triggering store would go un-noticed. Typical usage of MONITOR and MWAIT would have the above code sequence within a loop.</p>
<h2 id="numeric-exceptions">Numeric Exceptions</h2>
<p>None</p>
<h2 id="protected-mode-exceptions">Protected Mode Exceptions</h2>
<table>
<tr>
<td>#GP(0)</td>
<td>If ECX[31:1] ≠ 0. If ECX[0] = 1 and CPUID.05H:ECX[bit 1] = 0.</td>
</tr>
<tr>
<td>#UD</td>
<td>If CPUID.01H:ECX.MONITOR[bit 3] = 0. If current privilege level is not 0.</td>
</tr>
</table>
<h2 id="real-address-mode-exceptions">Real Address Mode Exceptions</h2>
<table>
<tr>
<td>#GP</td>
<td>If ECX[31:1] ≠ 0. If ECX[0] = 1 and CPUID.05H:ECX[bit 1] = 0.</td>
</tr>
<tr>
<td>#UD</td>
<td>If CPUID.01H:ECX.MONITOR[bit 3] = 0.</td>
</tr>
</table>
<h2 id="virtual-8086-mode-exceptions">Virtual 8086 Mode Exceptions</h2>
<table>
<tr>
<td>#UD</td>
<td>The MWAIT instruction is not recognized in virtual-8086 mode (even if CPUID.01H:ECX.MONITOR[bit 3] = 1).</td>
</tr>
</table>
<h2 id="compatibility-mode-exceptions">Compatibility Mode Exceptions</h2>
<p>Same exceptions as in protected mode.</p>
<h2 id="64-bit-mode-exceptions">64-Bit Mode Exceptions</h2>
<table>
<tr>
<td>#GP(0)</td>
<td>If RCX[63:1] ≠ 0. If RCX[0] = 1 and CPUID.05H:ECX[bit 1] = 0.</td>
</tr>
<tr>
<td>#UD</td>
<td>If the current privilege level is not 0. If CPUID.01H:ECX.MONITOR[bit 3] = 0.</td>
</tr>
</table>
</body>
</html>
|
index.html | cesarpinera/trajectories | <html>
<head>
<title>Trajectories analysis</title>
<script type="text/javascript" src="js/jquery-1.9.1.js"></script>
<script type="text/javascript" src="js/data.js"></script>
<script type="text/javascript" src="js/trajectories.js"></script>
<script type="text/javascript" src="js/kmeans.js"></script>
<script type="text/javascript" src="js/sources.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?v=3.5&sensor=false"></script>
<script type="text/javascript" src="js/gmap3.js"></script>
<script type="text/javascript" src="js/StyledMarker.js"></script>
</script>
</head>
<body>
<div>
<h1>Geolife Trajectories Clustering Analysis</h1>
<p><b>Author: </b>Cesar Pinera</p>
<p><b>Email: </b>cesar.pinera@pdx.edu</p>
<h2>Introduction</h2>
<p>This is an exercise on the application of an unsupervised learning algorithm to a real-world problem that I have encountered professionally in the past. For this I have selected a freely available dataset called <a href="http://research.microsoft.com/en-us/downloads/b16d359d-d164-469e-9fd4-daa38f2b2e13/">Geolife Trajectories</a>, which contains <i>trajectories</i> of a almost two hundred volunteers for a span of five years. The resulting dataset contains the coordinates, as obtained by GPS units, that have been taken as samples during the course of those trajectories.</p>
<h2>GPS Trajectories</h2>
<p>In order to provide computer systems with a personalized and less artificial means of interaction with users, it is necessary to provide them with some manner of <i>context</i> which is relevant to the user, but that it has not been explicitly declared, but <i>learned</i>. This implies that the computer system does not have a complete model of the user <i>a priori</i>, but the model needs to be developed as the interaction proceeds.</p>
<p>An important aspect of the user's context is location. People tend to follow patterns which are repeatable subject to prediction - an approximation, by necessity, yet still useful. Yet coordinates are still an abstraction, and in our daily lives rarely do we think in terms of absolute coordinates, bur rather of <i>places</i>. By identifying the actual places that a user tends to visit, we can then add the place itself - not the coordinate, which has an arbitrary resolution - to the context that would be potentially used to further improve the interaction between users and computer systems.</p>
<p>Thus the need for an analysis of the coordinates obtained by means of GPS units, which will allow us to project those coordinates to places that are meaningful to people. Further analysis could even attempt to match those coordinates to known places in a database of known <i>Points of Interest (POIs)</i>, so that the attributes of those POIs will also be incorporated into the context of the user, the benefits of which could go as far as to infer intent and other aspects of human behavior.</p>
<h2>Coordinate Clustering</h2>
<p>The sequences of coordinates that form the trajectories as obtained by GPS units are too raw to be able to match them against POIs or to find patterns that would allow us to infer repeatability. This is due to the resolution of the coordinates themselves: ignoring for the moment the accuracy of each coordinate - and assuming a perfect accuracy every time-, the area of the POI has to be taken into consideration, areas that most likely will not have regular shapes. Thus, it would require an almost perfect database of all the shapes of the POIs on a map to be able to unequivocally match all the coordinates. Such databases are being developed (e.g. Google Maps), yet they focus mostly on public places -commerces, public buildings, attractions, etc.- while leaving behind the sheer majority of private POIs, such as houses. Clearly, we must find an alternate solution that will approximate the identification of POIs due to the lack of a complete POI database.</p>
<p>What follows is an experiment on the application of an unsupervised clustering algorithm, <i>viz.</i> k-means, which will reduce the raw coordinates into clusters, with the expectation that the centroids of the clusters can be assumed to be POIs themselves, even if those POIs do not necessarily match an external POI database - yet matching can also be attempted and considered as part of the context when available.</p>
<h2>Raw dataset</h2>
<p>I have made a selection of one individual in the Geolife Trajectories to visualize her raw trajectories. The decision to show only one person's trajectories is twofold: first, the argument for the repeatability of a person's movements to be applicable to another person is a <i>non sequitur</i> in our current model, and second, the number of coordinates may be overwhelming to current browsers. See an <a href="data/20081023025304.plt"> example of a raw trajectory</a>.</p>
<input type="button" id="rawbutton" value="Visualize Raw Coordinates"><i>This process may take several minutes to complete</i><input type="button" id="clearraw" value="Clear">
<div id="rawmap"></div>
<cite>Raw coordinates for the trajectories of a single subject</cite>
<h2>Application of the k-means clustering algorithm</h2>
<p>The following is a live computation and rendering of the k-means clustering algorithm on the trajectories for the selected subject. Please bear in mind that the visualization of all the coordinates (over 170,000) on the map is heavy for modern browsers. It is highly recommended to limit the number of coordinates added to the map. However, all the coordinates are used to compute the clusters, regardless of their inclusion on the map.</p>
<p>Recommended values:</p>
<ul>
<li><i>k</i>: 8</li>
<li>Coordinates to show: 200</li>
</ul>
<p>An attempt to match the clusters with known POIs will be made, using Google's lookup. Click on the cluster marker for more information.</p>
<form>
Number of clusters <i>k</i>: <input id="k" type="text" value="8">
Coordinates to show on map (per cluster): <input id="maxcoord" type="text" value="200">
<input id="cluster" type="button" value="Cluster">
<input id="clearcluster" type="button" value="Clear">
</form>
<div id="map"></div>
<cite>Clustered coordinates. Note the coordinates in the same color as the cluster markers. Click on the markers for POI matching.</cite>
<h2>Implementation details</h2>
<p>This web page includes the JavaScript code required to analyze, cluster and visualize the trajectories in the dataset, as described above. The code is organized as follows:</p>
<ul>
<li><p>The k-means clustering algorithm is implemented in <a href="js/kmeans.js">kmeans.js</a>. This is an adaptation of existing work. See the file for the attribution.</p></li>
<li><p>The data reading functions (loading and parsing of the Geolife Trajectories dataset) is implemented in <a href="js/data.js">data.js</a>. This is an adaptation of existing work. See the file for the attribution.</p></li>
<li><p>The flow of this web page, including event handling, visualization and on-demand data loading is implemented in <a href="js/trajectories.js">trajectories.js</a></p></li>
<li><p>An index to the raw datasource files for a single subject, implemented in <a href="js/sources.js">sources.js</a></p></li>
<li><p>Additional image files and common JavaScript libraries (e.g. JQuery, GMaps)</p></li>
</ul>
<h2>Next steps</h2>
<p>Due to time constraints, the scope of this project is limited to the execution and visual analysis of the results of the clustering using the k-means algorithm. Further analysis could include:
<ul>
<li><p>Automatic determination of the number of clusters <i>k</i>. Work has been done in this space, as in <a href="http://books.nips.cc/papers/files/nips16/NIPS2003_AA36.pdf">"Learning the k in k-means"</a>, by G. Hamerly and C. Elkan, by means of statistical analysis of Gaussian distribution of the distances between the elements of each cluster and the cluster's centroid.</p></li>
<li><p>Application of alternate clustering algorithms, such as <a href="http://en.wikipedia.org/wiki/DBSCAN">Density-based spatial clustering of applications with noise (DBSCAN)</a>, that will be able to better handle noise in the dataset (GPS readings are never perfect) and that would find clusters with arbitrary shapes.</p></li>
<li><p>Removing some of the noise in the dataset and limiting the coordinates to a pre-defined area, dropping those that are outside, in order to remove or limit the influence of trajectories that are real but infrequent, such as a trip to a different Country.</p></li>
</ul>
</p>
<h2>Attribution for the Geolife Dataset</h2>
<ul>
<li><cite>Yu Zheng, Lizhu Zhang, Xing Xie, Wei-Ying Ma. Mining interesting locations and travel sequences from GPS trajectories. In Proceedings of International conference on World Wild Web (WWW 2009), Madrid Spain. ACM Press: 791-800.</cite></li>
<li><cite>Yu Zheng, Quannan Li, Yukun Chen, Xing Xie, Wei-Ying Ma. Understanding Mobility Based on GPS Data. In Proceedings of ACM conference on Ubiquitous Computing (UbiComp 2008), Seoul, Korea. ACM Press: 312-321.</cite></li>
<li><cite>Yu Zheng, Xing Xie, Wei-Ying Ma, GeoLife: A Collaborative Social Networking Service among User, location and trajectory. Invited paper, in IEEE Data Engineering Bulletin. 33, 2, 2010, pp. 32-40.</cite></li>
</div>
<div><small><i>Last modified date: 2013-12-06</i></small></div>
</body>
</html> |
docs/notes/views/index.html | executive-consultants-of-los-angeles/rsum |
<!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>Views — rsum 0.0.2 documentation</title>
<link rel="stylesheet" href="../../_static/alabaster.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.0.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</script>
<script type="text/javascript" src="../../_static/jquery.js"></script>
<script type="text/javascript" src="../../_static/underscore.js"></script>
<script type="text/javascript" src="../../_static/doctools.js"></script>
<link rel="index" title="Index" href="../../genindex.html" />
<link rel="search" title="Search" href="../../search.html" />
<link rel="next" title="templates" href="../templates/index.html" />
<link rel="prev" title="home.models.section" href="../models/section.html" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
</head>
<body>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="views">
<h1>Views<a class="headerlink" href="#views" title="Permalink to this headline">¶</a></h1>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper"><div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="../../index.html">Documentation overview</a><ul>
<li><a href="../home.html">notes for the home app</a><ul>
<li>Previous: <a href="../models/section.html" title="previous chapter">home.models.section</a></li>
<li>Next: <a href="../templates/index.html" title="next chapter">templates</a></li>
</ul></li>
</ul></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<form class="search" action="../../search.html" method="get">
<div><input type="text" name="q" /></div>
<div><input type="submit" value="Go" /></div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
©2018, Gahan Corporation.
|
Powered by <a href="http://sphinx-doc.org/">Sphinx 1.6.6</a>
& <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.10</a>
|
<a href="../../_sources/notes/views/index.rst.txt"
rel="nofollow">Page source</a>
</div>
</body>
</html> |
blog/tags/index.html | galihazizif/galihazizif.github.io | <!DOCTYPE html>
<html>
<head>
<title>Tags — rempoah</title>
<meta charset="utf-8">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index, follow">
<link href="https://rempoah.com/components/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="https://rempoah.com/css/style.css" rel="stylesheet" type="text/css" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="apple-touch-startup-image" href="https://rempoah.com/images/favicon.ico">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="google-site-verification" content="FACK7yWXzvuvAmLcgqxpPpxz303DQ33SXyqEZjfrjzU" />
<link rel="shortcut icon" sizes="76x76" href="https://rempoah.com/images/favicon.ico">
<link rel="stylesheet" href="https://rempoah.com/components/highlightjs/styles/github.css" />
<link rel="alternate" type="application/atom+xml" href="https://rempoah.com/atom.xml" title="rempoah activity feed" />
<style>
/** quick fix because bootstrap <pre> has a background-color. */
.navbar{
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
border-top: 3px orange solid;
border-bottom: 1px solid # ;
color: #000;
}
@media(max-width: 980px){
.mainContent{
margin-top: 3.5em;
}
}
footer.container{
border-top: 2px solid orange !important;
}
pre code { background-color: inherit; }
</style>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-2431568460858731",
enable_page_level_ads: true
});
</script>
</head>
<body>
<header>
<nav class="navbar navbar-inverse navbar-fixed-top" style="">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://rempoah.com/">rempoah</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="https://rempoah.com/blog">Posts Archive</a></li>
<li><a href="https://rempoah.com/blog/categories">Categories</a></li>
<li><a href="https://rempoah.com/blog/tags">Tags</a></li>
<li><a href="https://rempoah.com/about">About</a></li>
</ul>
</div>
</div>
</nav>
</header>
<div class="mainContent container">
<div class="row">
<div class="col-md-8">
<h2>Tags</h2>
<div>
<a href="https://rempoah.com/blog/tags/Membuat%20Buku%20Wannabe">Membuat Buku Wannabe</a>
</div> </div>
<div class="col-md-4">
<div class="row">
<div class="col-md-12">
<div class="alert alert-warning">
Manusia tidak luput dari kesalahan, begitu pula saya.
Jika terdapat kesalahan dalam tulisan, sudilah untuk menghubungi saya, kritik dan saran akan saya terima dengan baik.
<a class="btn btn-sm btn-warning" href="https://rempoah.com/about">Hubungi Saya</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- right -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-2431568460858731"
data-ad-slot="1675998895"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div id="disqus_thread"></div>
</div>
</div>
</div>
<footer class="container">
© 2019 <strong>rempoah</strong> | sebuah coretan virtual
<span class="pull-right">hosted on <a href="https://github.com">github.com</a></span>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="https://rempoah.com/components/jquery/jquery.min.js"><\/script>')</script>
<script src="https://rempoah.com/components/bootstrap/js/bootstrap.min.js"></script>
<script src="https://rempoah.com/components/highlightjs/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
(function (d, w, c) {
(w[c] = w[c] || []).push(function() {
try {
w.yaCounter45234441 = new Ya.Metrika({
id:45234441,
clickmap:true,
trackLinks:true,
accurateTrackBounce:true
});
} catch(e) { }
});
var n = d.getElementsByTagName("script")[0],
s = d.createElement("script"),
f = function () { n.parentNode.insertBefore(s, n); };
s.type = "text/javascript";
s.async = true;
s.src = "https://mc.yandex.ru/metrika/watch.js";
if (w.opera == "[object Opera]") {
d.addEventListener("DOMContentLoaded", f, false);
} else { f(); }
})(document, window, "yandex_metrika_callbacks");
</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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-103438755-1', 'auto');
ga('send', 'pageview');
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/45234441" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
</body>
</html>
|
frame_packages/java_libs/spring-2.5.6-src/src/org/springframework/ejb/config/package.html | codeApeFromChina/resource | <html>
<body>
Support package for EJB/J2EE-related configuration,
with XML schema being the primary configuration format.
</body>
</html>
|
packages/FAKE/docs/apidocs/fake-git-filestatus-filestatus.html | CumpsD/FS-SignalR | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>FileStatus - FAKE - F# Make</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Steffen Forkmann, Mauricio Scheffer, Colin Bull">
<script src="https://code.jquery.com/jquery-1.8.0.js"></script>
<script src="https://code.jquery.com/ui/1.8.23/jquery-ui.js"></script>
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="http://fsharp.github.io/FAKE/content/style.css" />
<script type="text/javascript" src="http://fsharp.github.io/FAKE/content/tips.js"></script>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li><a href="http://fsharp.org">fsharp.org</a></li>
<li><a href="http://github.com/fsharp/fake">github page</a></li>
</ul>
<h3 class="muted"><a href="http://fsharp.github.io/FAKE/index.html">FAKE - F# Make</a></h3>
</div>
<hr />
<div class="row">
<div class="span9" id="main">
<h1>FileStatus</h1>
<div class="xmldoc">
<p>A type which represents a file status in git.</p>
</div>
<h3>Union Cases</h3>
<table class="table table-bordered member-list">
<thead>
<tr><td>Union Case</td><td>Description</td></tr>
</thead>
<tbody>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '1657', 1657)" onmouseover="showTip(event, '1657', 1657)">
Added
</code>
<div class="tip" id="1657">
<strong>Signature:</strong> <br />
</div>
</td>
<td class="xmldoc">
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/Git/FileStatus.fs#L11-11" class="github-link">
<img src="../content/img/github.png" class="normal" />
<img src="../content/img/github-blue.png" class="hover" />
</a>
</td>
</tr>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '1658', 1658)" onmouseover="showTip(event, '1658', 1658)">
Deleted
</code>
<div class="tip" id="1658">
<strong>Signature:</strong> <br />
</div>
</td>
<td class="xmldoc">
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/Git/FileStatus.fs#L13-13" class="github-link">
<img src="../content/img/github.png" class="normal" />
<img src="../content/img/github-blue.png" class="hover" />
</a>
</td>
</tr>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '1659', 1659)" onmouseover="showTip(event, '1659', 1659)">
Modified
</code>
<div class="tip" id="1659">
<strong>Signature:</strong> <br />
</div>
</td>
<td class="xmldoc">
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/Git/FileStatus.fs#L12-12" class="github-link">
<img src="../content/img/github.png" class="normal" />
<img src="../content/img/github-blue.png" class="hover" />
</a>
</td>
</tr>
</tbody>
</table>
<h3>Static members</h3>
<table class="table table-bordered member-list">
<thead>
<tr><td>Static member</td><td>Description</td></tr>
</thead>
<tbody>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '1660', 1660)" onmouseover="showTip(event, '1660', 1660)">
Parse
</code>
<div class="tip" id="1660">
<strong>Signature:</strong> string -> FileStatus<br />
</div>
</td>
<td class="xmldoc">
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/Git/FileStatus.fs#L15-15" class="github-link">
<img src="../content/img/github.png" class="normal" />
<img src="../content/img/github-blue.png" class="hover" />
</a>
</td>
</tr>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '1661', 1661)" onmouseover="showTip(event, '1661', 1661)">
Parse
</code>
<div class="tip" id="1661">
<strong>Signature:</strong> string -> FileStatus<br />
</div>
</td>
<td class="xmldoc">
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/Git/FileStatus.fs#L15-15" class="github-link">
<img src="../content/img/github.png" class="normal" />
<img src="../content/img/github-blue.png" class="hover" />
</a>
</td>
</tr>
</tbody>
</table>
</div>
<div class="span3">
<a href="http://fsharp.github.io/FAKE/index.html">
<img src="http://fsharp.github.io/FAKE/pics/logo.png" style="width:140px;height:140px;margin:10px 0px 0px 35px;border-style:none;" />
</a>
<ul class="nav nav-list" id="menu">
<li class="nav-header">FAKE - F# Make</li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/index.html">Home page</a></li>
<li class="divider"></li>
<li><a href="https://www.nuget.org/packages/FAKE">Get FAKE - F# Make via NuGet</a></li>
<li><a href="http://github.com/fsharp/fake">Source Code on GitHub</a></li>
<li><a href="http://github.com/fsharp/fake/blob/master/License.txt">License (Apache 2)</a></li>
<li><a href="http://fsharp.github.io/FAKE/RELEASE_NOTES.html">Release Notes</a></li>
<li><a href="http://fsharp.github.io/FAKE//contributing.html">Contributing to FAKE - F# Make</a></li>
<li><a href="http://fsharp.github.io/FAKE/users.html">Who is using FAKE?</a></li>
<li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li>
<li class="nav-header">Tutorials</li>
<li><a href="http://fsharp.github.io/FAKE/gettingstarted.html">Getting started</a></li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/nuget.html">NuGet package restore</a></li>
<li><a href="http://fsharp.github.io/FAKE/fxcop.html">Using FxCop in a build</a></li>
<li><a href="http://fsharp.github.io/FAKE/assemblyinfo.html">Generating AssemblyInfo</a></li>
<li><a href="http://fsharp.github.io/FAKE/create-nuget-package.html">Create NuGet packages</a></li>
<li><a href="http://fsharp.github.io/FAKE/specifictargets.html">Running specific targets</a></li>
<li><a href="http://fsharp.github.io/FAKE/commandline.html">Running FAKE from command line</a></li>
<li><a href="http://fsharp.github.io/FAKE/fsc.html">Using the F# compiler from FAKE</a></li>
<li><a href="http://fsharp.github.io/FAKE/customtasks.html">Creating custom tasks</a></li>
<li><a href="http://fsharp.github.io/FAKE/teamcity.html">TeamCity integration</a></li>
<li><a href="http://fsharp.github.io/FAKE/canopy.html">Running canopy tests</a></li>
<li><a href="http://fsharp.github.io/FAKE/octopusdeploy.html">Octopus Deploy</a></li>
<li><a href="http://fsharp.github.io/FAKE/typescript.html">TypeScript support</a></li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/deploy.html">Fake.Deploy</a></li>
<li class="nav-header">Reference</li>
<li><a href="http://fsharp.github.io/FAKE/apidocs/index.html">API Reference</a></li>
</ul>
</div>
</div>
</div>
<a href="http://github.com/fsharp/fake"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
</body>
</html>
|
ref/dir_8h.html | sp1187/libdragon | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.9.1"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>libdragon: dir.h File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">libdragon
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.1 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search','.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#nested-classes">Data Structures</a> |
<a href="#func-members">Functions</a> </div>
<div class="headertitle">
<div class="title">dir.h File Reference<div class="ingroups"><a class="el" href="group__system.html">newlib Interface Hooks</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p>Directory handling.
<a href="#details">More...</a></p>
<p><a href="dir_8h_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Data Structures</h2></td></tr>
<tr class="memitem:structdir__t"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="group__system.html#structdir__t">dir_t</a></td></tr>
<tr class="memdesc:structdir__t"><td class="mdescLeft"> </td><td class="mdescRight">Directory entry structure. <a href="group__system.html#structdir__t">More...</a><br /></td></tr>
<tr class="separator:structdir__t"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="define-members"></a>
Macros</h2></td></tr>
<tr><td colspan="2"><div class="groupHeader">Directory entry type definitions</div></td></tr>
<tr class="memitem:ga9973595cf6775b1b29d7274ab4c0d623"><td class="memItemLeft" align="right" valign="top">
#define </td><td class="memItemRight" valign="bottom"><a class="el" href="group__system.html#ga9973595cf6775b1b29d7274ab4c0d623">DT_REG</a>   1</td></tr>
<tr class="memdesc:ga9973595cf6775b1b29d7274ab4c0d623"><td class="mdescLeft"> </td><td class="mdescRight">Regular file. <br /></td></tr>
<tr class="separator:ga9973595cf6775b1b29d7274ab4c0d623"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga1dcee67486bc4238096ecb61e2d9ffd1"><td class="memItemLeft" align="right" valign="top">
#define </td><td class="memItemRight" valign="bottom"><a class="el" href="group__system.html#ga1dcee67486bc4238096ecb61e2d9ffd1">DT_DIR</a>   2</td></tr>
<tr class="memdesc:ga1dcee67486bc4238096ecb61e2d9ffd1"><td class="mdescLeft"> </td><td class="mdescRight">Directory. <br /></td></tr>
<tr class="separator:ga1dcee67486bc4238096ecb61e2d9ffd1"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:gaf069d9aae45f54cadde63548780ca64a"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__system.html#gaf069d9aae45f54cadde63548780ca64a">dir_findfirst</a> (const char *const path, <a class="el" href="group__system.html#structdir__t">dir_t</a> *dir)</td></tr>
<tr class="memdesc:gaf069d9aae45f54cadde63548780ca64a"><td class="mdescLeft"> </td><td class="mdescRight">Find the first file in a directory. <a href="group__system.html#gaf069d9aae45f54cadde63548780ca64a">More...</a><br /></td></tr>
<tr class="separator:gaf069d9aae45f54cadde63548780ca64a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ga9f45aada2a3237bc3c59c8ceb3d88d20"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="group__system.html#ga9f45aada2a3237bc3c59c8ceb3d88d20">dir_findnext</a> (const char *const path, <a class="el" href="group__system.html#structdir__t">dir_t</a> *dir)</td></tr>
<tr class="memdesc:ga9f45aada2a3237bc3c59c8ceb3d88d20"><td class="mdescLeft"> </td><td class="mdescRight">Find the next file in a directory. <a href="group__system.html#ga9f45aada2a3237bc3c59c8ceb3d88d20">More...</a><br /></td></tr>
<tr class="separator:ga9f45aada2a3237bc3c59c8ceb3d88d20"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Directory handling. </p>
</div></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Fri Nov 19 2021 20:55:45 for libdragon by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.1
</small></address>
</body>
</html>
|
frame_packages/java_libs/spring-2.5.6-src/docs/api/org/springframework/core/style/package-use.html | codeApeFromChina/resource | <!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_07) on Fri Oct 31 18:27:06 CET 2008 -->
<TITLE>
Uses of Package org.springframework.core.style (Spring Framework API 2.5)
</TITLE>
<META NAME="date" CONTENT="2008-10-31">
<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 Package org.springframework.core.style (Spring Framework API 2.5)";
}
}
</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/springframework/core/style/package-use.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
<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 Package<br>org.springframework.core.style</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../org/springframework/core/style/package-summary.html">org.springframework.core.style</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.springframework.core.style"><B>org.springframework.core.style</B></A></TD>
<TD>Support for styling values as Strings, with ToStringCreator as central class. </TD>
</TR>
</TABLE>
<P>
<A NAME="org.springframework.core.style"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Classes in <A HREF="../../../../org/springframework/core/style/package-summary.html">org.springframework.core.style</A> used by <A HREF="../../../../org/springframework/core/style/package-summary.html">org.springframework.core.style</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../org/springframework/core/style/class-use/ToStringCreator.html#org.springframework.core.style"><B>ToStringCreator</B></A></B>
<BR>
Utility class that builds pretty-printing <code>toString()</code> methods
with pluggable styling conventions.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../org/springframework/core/style/class-use/ToStringStyler.html#org.springframework.core.style"><B>ToStringStyler</B></A></B>
<BR>
A strategy interface for pretty-printing <code>toString()</code> methods.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../org/springframework/core/style/class-use/ValueStyler.html#org.springframework.core.style"><B>ValueStyler</B></A></B>
<BR>
Strategy that encapsulates value String styling algorithms
according to Spring conventions.</TD>
</TR>
</TABLE>
<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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/springframework/core/style/package-use.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
<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 © 2002-2008 <a href=http://www.springframework.org/ target=_top>The Spring Framework</a>.</i>
<!-- Begin LoopFuse code -->
<script src=http://loopfuse.net/webrecorder/js/listen.js type=text/javascript>
</script>
<script type=text/javascript>
_lf_cid = LF_48be82fa;
_lf_remora();
</script>
<!-- End LoopFuse code -->
</BODY>
</HTML>
|
app/templates/dialog-mail-compose.html | bitshares/web_wallet |
<div class="modal-header bg-danger">
<h3 class="modal-title" translate>mail.compose</h3>
</div>
<div class="modal-body">
<form class="form-horizontal" role="form" name="compose">
<div class="row">
<div class="col-xs-9">
<!--from-->
<div class="form-group">
<label for="sender" class="col-xs-2 control-label" translate>mail.sender</label>
<div class="col-sm-10">
<div class="btn-group" dropdown is-open="status.isopen">
<button type="button" id="sender" class="form-control btn btn-primary dropdown-toggle" dropdown-toggle>{{email.sender}} <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu">
<li ng-repeat="account in my_mail_accounts">
<a ng-click="email.sender = account.name; status.isopen = false">{{account.name}}</a>
</li>
</ul>
</div>
</div>
</div>
<!--to-->
<div class="form-group">
<label for="recipient" class="col-xs-2 control-label" translate>mail.recipient</label>
<div class="col-sm-9">
<input autofocus type="text" id="recipient" ng-model="email.recipient" class="form-control" placeholder="{{ 'mail.recipient' | translate }}">
</div>
<!--arrow-->
<div class="col-sm-1">
<i class="fa {{
receives_mail ? 'fa-check valid' :
(found ? 'fa-times invalid' : 'fa-arrow-right')
}}"></i>
</div>
</div>
</div>
<div class="col-xs-3">
<div class="pull-right">
<identicon account="{{email.recipient}}" size="100"/>
</div>
</div>
</div><!--row-->
<input type="text" class="form-control" ng-model="email.subject" placeholder="{{ 'mail.subject' | translate }}">
<textarea class="form-control" rows="5" ng-model="email.body" placeholder="{{ 'mail.body' | translate }}"></textarea>
</form>
<span class="alert alert-danger"
ng-show="email.error">{{email.error}}</span>
<span class="alert alert-danger"
ng-show="found && !receives_mail" translate>mail.no_recipient_mail_servers</span>
<div class="modal-footer">
<button class="btn btn-primary" ng-click="ok()" ng-disabled="!found || !receives_mail">OK</button>
<button class="btn btn-warning" ng-click="cancel()">Cancel</button>
</div> |
src/app/layout/fullstack/fullstack.component.html | vfw4444/portfoliosite | <div>
<h2 class="text-muted"><b>Full Stack Development</b></h2>
<hr>
<div class="row">
<div class="col-xl-3 col-lg-3 text-xs-center" *ngFor="let item of imagesItems">
<div class="">
<img class="img-fluid mx-auto d-block" [src]="item.imagePath" alt="item.label">
<div class="">
<p class="image-text">{{item.label}}</p>
</div>
</div>
</div>
</div>
<!-- /.row -->
</div> |
docs/apidocs/org/apache/hadoop/hbase/rest/provider/package-frame.html | wanhao/IRIndex | <!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 Fri Jan 10 21:36:55 UTC 2014 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
org.apache.hadoop.hbase.rest.provider (HBase 0.94.16 API)
</TITLE>
<META NAME="date" CONTENT="2014-01-10">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<FONT size="+1" CLASS="FrameTitleFont">
<A HREF="../../../../../../org/apache/hadoop/hbase/rest/provider/package-summary.html" target="classFrame">org.apache.hadoop.hbase.rest.provider</A></FONT>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont">
Classes</FONT>
<FONT CLASS="FrameItemFont">
<BR>
<A HREF="JAXBContextResolver.html" title="class in org.apache.hadoop.hbase.rest.provider" target="classFrame">JAXBContextResolver</A></FONT></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|
dist/assets/vacacioneschollo.html | rocacua/DIW09 | <!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=es> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=es> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=es> <![endif]-->
<!--[if gt IE 8]><!--> <html class=no-js lang=es> <!--<![endif]-->
<head>
<meta charset=utf-8>
<!--[if IE]>
<meta http-equiv=x-ua-compatible content="ie=edge,chrome=1">
<![endif]-->
<meta name=viewport content="width=device-width, initial-scale=1">
<title>PandaWeb</title>
<meta name=description content="PandaWeb - Desarrollo web - Textos">
<link rel=author href=humans.txt />
<link rel="shortcut icon" type=image/ico href=../favicon.ico />
<noscript><link async rel=stylesheet href=../css/blueimp-gallery.min.css><link rel=stylesheet href../=css/bootstrap-image-gallery.min.css><link href=../css/bootstrap.min.css rel=stylesheet media=screen></noscript>
<script type="text/javascript" src="../js/load2.min.js" async=async></script>
<!--[if lt IE 9]>
<script src=https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js></script>
<script src=https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js></script>
<![endif]-->
</head>
<body>
<!--[if lt IE 8]>
<p class=browserupgrade>You are using an <strong>outdated</strong> browser. Please <a href=http://browsehappy.com/>upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id=encabezado>
<a href=../ title=PandaWeb class=logo></a>
<header>
<h1>PandaWeb</h1>
<p>Desarrollo web a medida. Únete al panda.</p>
</header>
<div class=socialmedia>
<a href=http://www.facebook.com/ricardo.ocana title=Facebook target=_blank>
<i class="sprite sprite-icono-5-facebook_24"></i>
</a>
<a href=https://plus.google.com/u/0/104133531421014499988/posts title=Google+ target=_blank>
<i class="sprite sprite-icono-6-google"></i>
</a>
<a href=https://twitter.com/Aiki_Panda title=Twitter target=_blank>
<i class="sprite sprite-icono-7-twitter"></i>
</a>
</div>
<nav>
<ul>
<li>
<i class="sprite sprite-icono-1-inicio"></i>
<a href=../index.html>Inicio</a>
</li>
<li>
<i class="sprite sprite-icono-2-presentacion"></i>
<a href=../presentacion.html>Presentación</a></li>
<li class=active>
<i class="sprite sprite-icono-3-porfolio"></i>
<a href=../porfolio.html>Porfolio</a>
</li>
<li>
<i class="sprite sprite-icono-4-contacto"></i>
<a href=../contacto.html>Contacto</a>
</li>
</ul>
</nav>
</div>
<div class=container>
<h2><a href=http://www.vacacioneschollo.com target=_blank>vacacioneschollo</a></h2>
<p>Venta de viajes online especialista en chollos.</p>
<p class=center-text>
<img src=../img/webs/vacacioneschollo-min.jpg alt=vacacioneschollo />
</p>
<p class=center-text><a href=../porfolio.html class="btn btn-default">Volver</a></p>
</div>
<footer class=principal>
<ul>
<li class=active>
<a href=../index.html>Inicio</a>
</li>
<li>
<a href=../presentacion.html>Presentación</a></li>
<li>
<a href=../porfolio.html>Porfolio</a>
</li>
<li>
<a href=../contacto.html>Contacto</a>
</li>
</ul>
<div class=socialmedia>
<a href=http://www.facebook.com/ricardo.ocana title=Facebook target=_blank>
<i class="sprite sprite-icono-5-facebook_24"></i>
</a>
<a href=https://plus.google.com/u/0/104133531421014499988/posts title=Google+ target=_blank>
<i class="sprite sprite-icono-6-google"></i>
</a>
<a href=https://twitter.com/Aiki_Panda title=Twitter target=_blank>
<i class="sprite sprite-icono-7-twitter"></i>
</a>
</div>
<p>
Copyright © 2016 | PandaWeb SL, CIF:B000000.
<a href=assets/documentacion.pdf title="Documentación del proceso de desarrollo de esta web."><i class="fa fa-file-pdf-o"></i> Documentación</a>
</p>
</footer>
<script src=http://code.jquery.com/jquery.js></script>
<script src=../js/bootstrap.min.js></script>
</body>
</html> |
framework/extra/tpl/apperror.html | liugene/api | <!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html" charset="utf-8" />
<meta name="LinkPHP" content="LiuJun" />
<title>操作失败</title>
<style>
body{
margin: 0 auto;
padding: 0;
background-color: #CDCDCD;
}
*{
font-size: 16px;
color: #666;
font-family: 'Helvetica Neue', 'STHeiti', '微软雅黑', 'Microsoft YaHei', Helvetica,Arial,sans-serif;;
}
#lp_error_body{
width: 100%;
height: auto;
background-color: #CDCDCD;
overflow: hidden;
}
.lp_error_center{
width: 980px;
height: 580px;
background-color: #E6E6E6;
margin: 80PX auto;
border-radius: 50px;
text-align: center;
}
.lp_error_top{
line-height: 80px;
width: 480px;
height: auto;
font-size: 18px;
margin: 0 auto;
}
.lp_error_top p{
font-size: 18px;
line-height: 30px;
}
.lp_error_top p a{
text-decoration: none;
}
.lp_error_list{
width: 960px;
text-align: left;
height: 380px;
margin: 0 auto;
border-radius: 10px;
text-align: center;
background-color: #CDCDCD;
overflow: hidden;
}
.lp_error_list p{
font-size: 32px;
margin-top: 80px;
}
.lp_return_index{
width: 120px;
height: 60px;
margin-top: 20px;
float: left;
border-radius: 10px;
background-color: #CDCDCD;
}
.lp_return_last{
width: 120px;
height: 60px;
margin-top: 20px;
float: right;
border-radius: 10px;
background-color: #CDCDCD;
}
</style>
</head>
<body>
<div id="lp_error_body">
<div class="lp_error_center">
<div class="lp_error_content">
<div class="lp_error_top">
<p></p>
</div>
<div class="lp_error_list">
<p> <?php echo $info ; ?> </p>
<div class="lp_error_top">
如果无法正常跳转点击此处
</div>
</div>
<div class="lp_error_top">
<div class="lp_return_index">
<p><a href="/">返回首页</a></p>
</div>
<div class="lp_return_last">
<p><a href="/">返回首页</a></p>
</div>
</div>
</div>
</div>
</div>
</body>
</html> |
surfers/mqs/byou.html | chicofilho/fst | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FST - Brad Young</title>
<meta name="description" content="Keep track of the statistics from Brad Young. Average heat score, heat wins, heat wins percentage, epic heats road to the final">
<meta name="author" content="">
<link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta property="og:title" content="Fantasy Surfing tips"/>
<meta property="og:image" content="https://fantasysurfingtips.com/img/just_waves.png"/>
<meta property="og:description" content="See how great Brad Young is surfing this year"/>
<!-- Bootstrap Core CSS - Uses Bootswatch Flatly Theme: https://bootswatch.com/flatly/ -->
<link href="https://fantasysurfingtips.com/css/bootstrap.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="https://fantasysurfingtips.com/css/freelancer.css" rel="stylesheet">
<link href="https://cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.css" rel="stylesheet" />
<!-- Custom Fonts -->
<link href="https://fantasysurfingtips.com/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.css">
<script src="https://code.jquery.com/jquery-2.x-git.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-ujs/1.2.1/rails.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.min.js"></script>
<script src="https://www.w3schools.com/lib/w3data.js"></script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-2675412311042802",
enable_page_level_ads: true
});
</script>
</head>
<body>
<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_GB/sdk.js#xfbml=1&version=v2.6";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- Navigation -->
<div w3-include-html="https://fantasysurfingtips.com/layout/header.html"></div>
<!-- Header -->
<div w3-include-html="https://fantasysurfingtips.com/layout/sponsor.html"></div>
<section >
<div class="container">
<div class="row">
<div class="col-sm-3 ">
<div class="col-sm-2 ">
</div>
<div class="col-sm-8 ">
<!-- <img src="http://fantasysurfingtips.com/img/surfers/byou.png" class="img-responsive" alt=""> -->
<h3 style="text-align:center;">Brad Young</h3>
<a href="https://twitter.com/share" class="" data-via="fansurfingtips"><i class="fa fa-twitter"></i> Share on Twitter</i></a> <br/>
<a class="fb-xfbml-parse-ignore" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Ffantasysurfingtips.com%2Fsurfers%2Fbyou&src=sdkpreparse"><i class="fa fa-facebook"></i> Share on Facebook</a>
</div>
<div class="col-sm-2 ">
</div>
</div>
<div class="col-sm-3 portfolio-item">
</div>
<div class="col-sm-3 portfolio-item">
<h6 style="text-align:center;">Avg Heat Score (FST DATA)</h6>
<h1 style="text-align:center;">3.7</h1>
</div>
</div>
<hr/>
<h4 style="text-align:center;" >Heat Stats (FST data)</h4>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h6 style="text-align:center;">Heats</h6>
<h2 style="text-align:center;">5</h2>
</div>
<div class="col-sm-4 portfolio-item">
<h6 style="text-align:center;">Heat wins</h6>
<h2 style="text-align:center;">0</h2>
</div>
<div class="col-sm-4 portfolio-item">
<h6 style="text-align:center;">HEAT WINS PERCENTAGE</h6>
<h2 style="text-align:center;">0.0%</h2>
</div>
</div>
<hr/>
<h4 style="text-align:center;">Avg Heat Score progression</h4>
<div id="avg_chart" style="height: 250px;"></div>
<hr/>
<h4 style="text-align:center;">Heat stats progression</h4>
<div id="heat_chart" style="height: 250px;"></div>
<hr/>
<style type="text/css">
.heats-all{
z-index: 3;
margin-left: 5px;
cursor: pointer;
}
</style>
<div class="container">
<div id="disqus_thread"></div>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
var disqus_config = function () {
this.page.url = "http://fantasysurfingtips.com/surfers/byou"; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = '3015'; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//fantasysurfingtips.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
</section>
<script type="text/javascript">
$('.heats-all').click(function(){
$('.heats-all-stat').css('display', 'none')
$('#'+$(this).attr('id')+'-stat').css('display', 'block')
});
$('.heats-2016').click(function(){
$('.heats-2016-stat').css('display', 'none')
$('#'+$(this).attr('id')+'-stat').css('display', 'block')
});
$('document').ready(function(){
new Morris.Line({
// ID of the element in which to draw the chart.
element: 'avg_chart',
// Chart data records -- each entry in this array corresponds to a point on
// the chart.
data: [],
// The name of the data record attribute that contains x-values.
xkey: 'year',
// A list of names of data record attributes that contain y-values.
ykeys: ['avg', 'avg_all'],
// Labels for the ykeys -- will be displayed when you hover over the
// chart.
labels: ['Avg score in year', 'Avg score FST DATA']
});
new Morris.Bar({
// ID of the element in which to draw the chart.
element: 'heat_chart',
// Chart data records -- each entry in this array corresponds to a point on
// the chart.
data: [],
// The name of the data record attribute that contains x-values.
xkey: 'year',
// A list of names of data record attributes that contain y-values.
ykeys: ['heats', 'wins', 'percs'],
// Labels for the ykeys -- will be displayed when you hover over the
// chart.
labels: ['Heats surfed', 'Heats won', 'Winning percentage']
});
});
</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>
<!-- Footer -->
<div w3-include-html="https://fantasysurfingtips.com/layout/footer.html"></div>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-74337819-1', 'auto'); // Replace with your property ID.
ga('send', 'pageview');
</script>
<script>
w3IncludeHTML();
</script>
<!-- jQuery -->
<script src="https://fantasysurfingtips.com/js/jquery.js"></script>
<script src="https://cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="https://fantasysurfingtips.com/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="https://fantasysurfingtips.com/js/classie.js"></script>
<script src="https://fantasysurfingtips.com/js/cbpAnimatedHeader.js"></script>
<!-- Contact Form JavaScript -->
<script src="https://fantasysurfingtips.com/js/jqBootstrapValidation.js"></script>
<script src="https://fantasysurfingtips.com/js/contact_me.js"></script>
<!-- Custom Theme JavaScript -->
<script src="https://fantasysurfingtips.com/js/freelancer.js"></script>
<script type="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<script type="https://cdn.datatables.net/1.10.12/js/dataTables.bootstrap.min.js"></script>
</body>
</html>
|
generated/javadoc/com/communote/server/persistence/note/package-summary.html | Communote/communote.github.io | <!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_162) on Sat Feb 02 18:57:41 CET 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>com.communote.server.persistence.note (Communote 3.5 API)</title>
<meta name="date" content="2019-02-02">
<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="com.communote.server.persistence.note (Communote 3.5 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../com/communote/server/persistence/messaging/config/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../com/communote/server/persistence/property/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/communote/server/persistence/note/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Package" class="title">Package com.communote.server.persistence.note</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../com/communote/server/persistence/note/NoteCreationSourceEnum.html" title="class in com.communote.server.persistence.note">NoteCreationSourceEnum</a></td>
<td class="colLast">
<div class="block">
Possible types of creation sources for user tagged items</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../com/communote/server/persistence/note/NoteStatusEnum.html" title="class in com.communote.server.persistence.note">NoteStatusEnum</a></td>
<td class="colLast">
<div class="block">
This enumeration holds all possible states of an UserTaggedItem</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 class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../com/communote/server/persistence/messaging/config/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../com/communote/server/persistence/property/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/communote/server/persistence/note/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2019 <a href="https://communote.github.io/">Communote team</a>. All rights reserved.</small></p>
</body>
</html>
|
tags/paper/page/1.html | colinwke/colinwke.github.io | <!DOCTYPE html><html><head><title>https://example.com/tags/paper.html</title><link rel="canonical" href="https://example.com/tags/paper.html"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://example.com/tags/paper.html" /></head></html> |
proyecto/www/settings.html | polieduco/practicaaplicada20172 | <template id="settings.html">
<ons-page >
<h style="text-align: center;"> Configuraciones de mi app. </h>
</ons-page>
</template> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.