code stringlengths 2 1.05M | repo_name stringlengths 5 101 | path stringlengths 4 991 | language stringclasses 3 values | license stringclasses 5 values | size int64 2 1.05M |
|---|---|---|---|---|---|
<!DOCTYPE html>
<html>
<head>
<title>
File Structure
</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<link href="res/stylesheet.css" rel="stylesheet" type="text/css"/>
<script src="../3rdparty/jQuery/jquery.js" type="text/javascript"></script>
<script src="../res/common.js" type="text/javascript"></script>
<script src="res/menu.js" type="text/javascript"></script>
</head>
<body ondragstart="return false;" ondrop="return false;">
<script type="text/javascript">
headerAndContentsMenu("File Structure", "..");
</script>
<p>
Files are organised as follows:
</p>
<pre><a href="https://github.com/opencor/opencor/tree/master/build">build</a> <em>// Where OpenCOR is built</em>
<a href="https://github.com/opencor/opencor/tree/master/cmake">cmake</a> <em>// Files used to build OpenCOR</em>
<a href="https://github.com/opencor/opencor/tree/master/distrib">distrib</a> <em>// Files used to package OpenCOR</em>
<a href="https://github.com/opencor/opencor/tree/master/doc">doc</a> <em>// User and developer documentations</em>
├─ <a href="https://github.com/opencor/opencor/tree/master/doc/3rdparty">3rdparty</a> <em>// <a href="thirdPartyLibraries.html">Third-party libraries</a> used for the documentation</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/doc/3rdparty/googleCodePrettify">googleCodePrettify</a> <em>// <a href="http://code.google.com/p/google-code-prettify/">Google Code Prettify</a></em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/doc/3rdparty/jQuery">jQuery</a> <em>// <a href="http://jquery.com/">jQuery</a></em>
│ └─ <a href="https://github.com/opencor/opencor/tree/master/doc/3rdparty/KaTeX">KaTeX</a> <em>// <a href="http://khan.github.io/KaTeX/">KaTeX</a></em>
├─ <a href="https://github.com/opencor/opencor/tree/master/doc/developer">developer</a> <em>// The developer documentation</em>
├─ <a href="https://github.com/opencor/opencor/tree/master/doc/downloads">downloads</a> <em>// Where the different releases of OpenCOR are stored</em>
├─ <a href="https://github.com/opencor/opencor/tree/master/doc/res">res</a> <em>// Resource files used by the documentation</em>
└─ <a href="https://github.com/opencor/opencor/tree/master/doc/user">user</a> <em>// The user documentation</em>
<a href="https://github.com/opencor/opencor/tree/master/formats">formats</a> <em>// Some sample formats for CellML export</em>
<a href="https://github.com/opencor/opencor/tree/master/i18n">i18n</a> <em>// Internationalisation files</em>
<a href="https://github.com/opencor/opencor/tree/master/models">models</a> <em>// Some sample CellML files</em>
<a href="https://github.com/opencor/opencor/tree/master/res">res</a> <em>// Resource files</em>
├─ <a href="https://github.com/opencor/opencor/tree/master/res/flags">flags</a> <em>// Part of <a href="http://www.printableworldflags.com/flag-icon/">Printable world flags</a></em>
└─ <a href="https://github.com/opencor/opencor/tree/master/res/oxygen">oxygen</a> <em>// Part of <a href="http://packages.ubuntu.com/utopic/oxygen-icon-theme">Oxygen</a></em>
<a href="https://github.com/opencor/opencor/tree/master/src">src</a> <em>// Source code files</em>
├─ <a href="https://github.com/opencor/opencor/tree/master/src/3rdparty">3rdparty</a> <em>// <a href="thirdPartyLibraries.html">Third-party libraries</a> statically linked to OpenCOR</em>
│ └─ <a href="https://github.com/opencor/opencor/tree/master/src/3rdparty/QtSingleApplication">QtSingleApplication</a> <em>// <a href="http://qt.gitorious.org/qt-solutions/qt-solutions/trees/master/qtsingleapplication/">QtSingleApplication</a></em>
├─ <a href="https://github.com/opencor/opencor/tree/master/src/misc">misc</a> <em>// Files that do not fit anywhere else</em>
├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins">plugins</a> <em>// Plugins supported by OpenCOR</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/api">api</a> <em>// Plugins to access various APIs</em>
│ │ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/api/CellMLAPI">CellMLAPI</a> <em>// The <a href="http://cellml-api.sourceforge.net/">CellML API</a> as a plugin</em>
│ │ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/api/SBMLAPI">SBMLAPI</a> <em>// <a href="http://sbml.org/Software/libSBML/">libSBML</a> as a plugin</em>
│ │ └─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/api/SEDMLAPI">SEDMLAPI</a> <em>// <a href="https://github.com/fbergmann/libSEDML/">libSEDML</a> as a plugin</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/dataStore">dataStore</a> <em>// Plugins to store and manipulate data</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/editing">editing</a> <em>// Plugins to edit files</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/miscellaneous">miscellaneous</a> <em>// Plugins for various things</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/organisation">organisation</a> <em>// Plugins to organise files</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/sample">sample</a> <em>// Sample plugins</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/simulation">simulation</a> <em>// Plugins to simulate files</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/solver">solver</a> <em>// Plugins to access various solvers</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/support">support</a> <em>// Plugins to support various <a href="thirdPartyLibraries.html">third-party libraries</a> and APIs</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/thirdParty">thirdParty</a> <em>// Plugins to access various <a href="thirdPartyLibraries.html">third-party libraries</a></em>
│ │ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/thirdParty/libgit2">libgit2</a> <em>// <a href="https://libgit2.github.com/">libgit2</a> as a plugin</em>
│ │ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/thirdParty/LLVM">LLVM</a> <em>// <a href="http://www.llvm.org/">LLVM</a> (incl. <a href="http://clang.llvm.org/">Clang</a>) as a plugin</em>
│ │ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/thirdParty/QScintilla">QScintilla</a> <em>// <a href="http://www.riverbankcomputing.co.uk/software/qscintilla/">QScintilla</a> as a plugin</em>
│ │ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/thirdParty/Qwt">Qwt</a> <em>// <a href="http://qwt.sourceforge.net/">Qwt</a> as a plugin</em>
│ │ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/thirdParty/SUNDIALS">SUNDIALS</a> <em>// Part of <a href="http://computation.llnl.gov/casc/sundials/">SUNDIALS</a> as a plugin</em>
│ │ └─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/thirdParty/zlib">zlib</a> <em>// <a href="http://www.zlib.net/">zlib</a> as a plugin</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/tool">tool</a> <em>// Plugins to access various tools</a></em>
│ └─ <a href="https://github.com/opencor/opencor/tree/master/src/plugins/widget">widget</a> <em>// Plugins to access various ad hoc widgets</em>
├─ <a href="https://github.com/opencor/opencor/tree/master/src/tests">tests</a> <em>// The main program for the tests</em>
│ ├─ <a href="https://github.com/opencor/opencor/tree/master/src/tests/res">res</a> <em>// Resource files</em>
│ └─ <a href="https://github.com/opencor/opencor/tree/master/src/tests/src">src</a> <em>// Source code files</em>
└─ <a href="https://github.com/opencor/opencor/tree/master/src/windows">windows</a> <em>// Windows <a href="http://en.wikipedia.org/wiki/Command-line_interface">CLI</a> version of OpenCOR</em></pre>
<script type="text/javascript">
copyright("..");
</script>
</body>
</html>
| Fairly/opencor | doc/developer/fileStructure.html | HTML | apache-2.0 | 9,709 |
<extend name="base" />
<block name="css">
<link rel="stylesheet" href="__PUBLIC__/bower_components/DataTables/media/css/jquery.dataTables.min.css">
<link rel="stylesheet" href="__PUBLIC__/bower_components/datatables-tabletools/css/dataTables.tableTools.css">
<link rel="stylesheet" href="__PUBLIC__/Common/DataTables.Editor/css/dataTables.editor.min.css">
<link rel="stylesheet" href="__PUBLIC__/bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.css">
</block>
<block name="content">
<div class="row">
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">定制项目</div>
<div style="margin:15px 15px 0px 15px">
<table id="table" class="table table-striped table-bordered" cellspacing="0" width="100%">
<thead>
<tr>
<th>加盟ID</th>
<th>姓名</th>
<th>性别</th>
<th>电话</th>
<th>公司名称</th>
<th>区域</th>
<th>联系地址</th>
<th>年销售额</th>
<th>状态</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</block>
<block name='script'>
<script src="__PUBLIC__/bower_components/DataTables/media/js/jquery.dataTables.min.js"></script>
<script src="__PUBLIC__/bower_components/datatables-tabletools/js/dataTables.tableTools.js"></script>
<script src="__PUBLIC__/Common/DataTables.Editor/js/dataTables.editor.min.js"></script>
<script src="__PUBLIC__/bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#cooperation').addClass('active');
$.fn.dataTable.TableTools.defaults.sSwfPath='__PUBLIC__/bower_components/datatables-tabletools/swf/copy_csv_xls_pdf.swf';
editor = new $.fn.dataTable.Editor( {
ajax: "{:U('Admin/Cooperation/crud')}",
table: "#table",
idSrc: "id",
fields: [
{
label: "是否处理",
name: "status",
type: "radio",
ipOpts: [
{ label: "已处理", value : 1},
{ label: "未处理", value : 0}
],
default: 0
}
]
} );
$('#table').dataTable({
dom: "Tfrtip",
searching: true,
lengthChange: false,
processing: true,
serverSide: true,
order: [[ 0, "desc" ]],
ajax: "{:U('Admin/Cooperation/index')}",
columns: [
{ "data": "id" , "orderable": true },
{ "data": "name" , "orderable": false },
{ "data": "sex" , "orderable": false, "render":
function (data, type, row) {
return row.sex == 1 ? '男' : '女'; }
},
{ "data": "telephone" , "orderable": false },
{ "data": "company" , "orderable": false },
{ "data": "pr_ci_co" , "orderable": false },
{ "data": "location" , "orderable": false },
{ "data": "shipments" , "orderable": false },
{ "data": "status" , "orderable": true, "render":
function (data, type, row) {
return row.status == 1 ? '已处理' : '未处理'; }
}
],
tableTools: {
sRowSelect: "single",
aButtons: [
"copy",
"print",
{
"sExtends": "collection",
"sButtonText": "Save",
"aButtons": [ "csv", "xls", "pdf" ]
},
{ sExtends: "editor_edit", editor: editor },
{ sExtends: "editor_remove", editor: editor }
]
}
});
$('input[type=search]').attr('placeholder', '姓名或电话');
});
</script>
</block>
| shaoxianhui/sst | Application/Admin/View/Page/cooperation.html | HTML | apache-2.0 | 4,145 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_03) on Mon Nov 19 21:41:22 CET 2007 -->
<TITLE>
Uses of Class org.springframework.scheduling.quartz.JobDetailBean (Spring Framework API 2.5)
</TITLE>
<META NAME="date" CONTENT="2007-11-19">
<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.springframework.scheduling.quartz.JobDetailBean (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"> <A HREF="../../../../../org/springframework/scheduling/quartz/JobDetailBean.html" title="class in org.springframework.scheduling.quartz"><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-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>
<a href="http://www.springframework.org/" target="_top">The Spring Framework</a></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/scheduling/quartz/\class-useJobDetailBean.html" target="_top"><B>FRAMES</B></A>
<A HREF="JobDetailBean.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.springframework.scheduling.quartz.JobDetailBean</B></H2>
</CENTER>
No usage of org.springframework.scheduling.quartz.JobDetailBean
<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/springframework/scheduling/quartz/JobDetailBean.html" title="class in org.springframework.scheduling.quartz"><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-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>
<a href="http://www.springframework.org/" target="_top">The Spring Framework</a></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/scheduling/quartz/\class-useJobDetailBean.html" target="_top"><B>FRAMES</B></A>
<A HREF="JobDetailBean.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-2007 <a href=http://www.springframework.org/ target=_top>The Spring Framework</a>.</i>
</BODY>
</HTML>
| mattxia/spring-2.5-analysis | docs/api/org/springframework/scheduling/quartz/class-use/JobDetailBean.html | HTML | apache-2.0 | 6,359 |
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html xmlns:wicket>
<body>
<wicket:panel>
<span wicket:id="feedback"/>
<form wicket:id="signInForm">
<table>
<tr>
<td align="right">Username:</td>
<td>
<input wicket:id="username" type="text" value="foo@goo.moo" size="30"/>
</td>
</tr>
<tr>
<td align="right">Password:</td>
<td>
<input wicket:id="password" type="password" value="password" size="30"/>
</td>
</tr>
<tr wicket:id="rememberMeRow">
<td></td>
<td> <input wicket:id="rememberMe" type="checkbox" /> Remember Me </td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" name="submit" value="Sign In"/>
<input type="reset" value="Reset"/>
</td>
</tr>
</table>
</form>
</wicket:panel>
</body>
</html>
| astubbs/wicket.get-portals2 | wicket-auth-roles/src/main/java/org/apache/wicket/authentication/panel/SignInPanel.html | HTML | apache-2.0 | 1,583 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<meta name="renderer" content="webkit">
<meta name="baidu-site-verification" content="YSJ9mJB7HA" />
<Meta name="Keywords" Content="腾驹达,猎头顾问,景素奇,万达,合作">
<Meta name="Description" Content="腾驹达猎头公司由知名人力资源专家景素奇先生于2003年创办,自成立之始,一改传统的猎头销售服务模式,走出了一条与众不同的成长发展之路。">
<Meta name="Robots" Content="All">
<title>[title]_【腾驹达猎头】</title>
<link rel="stylesheet" href="__PUBLIC__/test/css/test-body.css" type="text/css" media="screen" />
<link rel="stylesheet" href="__PUBLIC__/test/css/test-style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="__PUBLIC__/css/header.css" type="text/css" media="screen" />
<link rel="stylesheet" href="__PUBLIC__/css/footer.css" type="text/css" media="screen" />
<script src="//cdn.bootcss.com/jquery/2.1.4/jquery.min.js"></script>
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="__PUBLIC__/test/css/H-ui.reset.css">
<script src="http://cdn.bootcss.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script type="text/javascript">
function logout(){
if (confirm("您确定要退出吗?"))
top.location = "__APP__/Login/loginout";
return false;
}
/*
//防止复制
document.oncontextmenu=new Function('event.returnValue=false;');
document.onselectstart=new Function('event.returnValue=false;');
document.onkeydown = function(event){
if ((event.ctrlKey)&&(event.keyCode==115 || event.keyCode==83)){
event.returnValue=false;
return;
}
}
*/
</script>
<body>
<NOSCRIPT><IFRAME SRC=nono.htm></IFRAME></NOSCRIPT><!--防止保存网页-->
<!--[if lt IE 8]>
<div class="alert alert-danger">您正在使用 <strong>过时的</strong> 浏览器. 是时候 <a href="http://browsehappy.com/">更换一个更好的浏览器</a> 来提升用户体验,也可以升级IE到最新版本,技术支持电话:57280942</div>
<![endif]-->
<div id="nav-h26" class="w960 margin font">
<span>腾驹达网站群:
<a href="{$Think.config.Index}">腾驹达猎头网</a> | <a href="http://www.timehr.com" target="_blank">国际人力资本网</a> | <script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_1253888613'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s95.cnzz.com/z_stat.php%3Fid%3D1253888613%26show%3Dpic1' type='text/javascript'%3E%3C/script%3E"));</script>
</span>
<span class="align-right header-top"><i class="glyphicon glyphicon-user"></i> <notempty name="Think.session.yourname">欢迎!{$Think.session.yourname} <!-- <i class="glyphicon glyphicon-off"></i> <a href="#" onClick="logout();">流动工作站</a> | --> <i class="glyphicon glyphicon-off"></i> <a href="#" onClick="logout();">退出登录</a> </notempty> <!-- | <img src="__PUBLIC__/images/text.png" width="15" height="15" border="0" alt=""><a href="#" data-reveal-id="myModal">留言反馈</a> --></span><span class="clear"></span>
</div>
<div id="nav-h82">
<div class="w960 margin font">
<a href="{$Think.config.Index}/test.php/Kehu/index.html"><img src="__PUBLIC__/images/logo.png" width="135" height="82" border="0" alt="首页"></a>
<div class="align-right" id="nav-bottom">
<ul>
<li><a href="{:U('Kehu/index')}">职位管理</a></li>
<li><a href="{:U('Lsku/index')}">人才信息库</a></li>
<!--<li><a href="{:U('Mopai/index')}">人才摸排库</a></li>-->
<li><a href="{:U('Bopai/index')}">寻访中心</a></li>
<li><a href="{:U('List/index',array('pid'=>6))}">猎头资料</a></li>
<!-- <li><a href="__APP__/Ihone">通讯录</a></li> -->
<li><a href="{:U('Company/lists')}">公司资料</a></li>
<!-- <li><a href="{:U('Move/index')}">培训视频</a></li> -->
<li><a href="{:U('User/nav')}">个人信息</a></li>
<li><a href="{:U('Flow/index')}">流动工作站</a></li>
<li><a href="{:U('Xunfang/user_xunfang')}">寻访需求</a></li>
</ul>
</div>
</div>
</div>
<!-- <script type="text/javascript">
$(function(){
showimg();//加载第一屏
$(window).scroll(function(){
showimg();//显示当前滚动位置一下两屏且没有被加载的图片
});
});
function showimg(){
var vtop=$(document).scrollTop();//滚动条滚动的距离
var wheight=$(window).height();//窗口高度
$("img").each(function(){var truesrc=$(this).attr("truesrc");
if(truesrc&&$(this).offset().top<=(wheight+vtop)){ //如果truesrc存在且有值的时候加载。
$(this).attr("src",truesrc).removeAttr("truesrc"),
$(this).fadeOut(0).fadeIn(1000); //赋值真实图片地址并移除truesrc属性防止重复加载。
}
});
}
</script> --> | sunyang3721/tjd-timehr | test/Tpl/Public/header.html | HTML | apache-2.0 | 5,212 |
<!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_11) on Mon Apr 07 19:10:07 CEST 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>FxRefFactory (Ankor - Project 0.2-SNAPSHOT API)</title>
<meta name="date" content="2014-04-07">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="FxRefFactory (Ankor - Project 0.2-SNAPSHOT API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/FxRefFactory.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="../../../../../../at/irian/ankor/fx/binding/fxref/FxRefContextFactoryProvider.html" title="class in at.irian.ankor.fx.binding.fxref"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../at/irian/ankor/fx/binding/fxref/FxRefs.html" title="class in at.irian.ankor.fx.binding.fxref"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?at/irian/ankor/fx/binding/fxref/FxRefFactory.html" target="_top">Frames</a></li>
<li><a href="FxRefFactory.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">at.irian.ankor.fx.binding.fxref</div>
<h2 title="Interface FxRefFactory" class="title">Interface FxRefFactory</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Superinterfaces:</dt>
<dd><a href="../../../../../../at/irian/ankor/ref/RefFactory.html" title="interface in at.irian.ankor.ref">RefFactory</a></dd>
</dl>
<hr>
<br>
<pre>public interface <span class="strong">FxRefFactory</span>
extends <a href="../../../../../../at/irian/ankor/ref/RefFactory.html" title="interface in at.irian.ankor.ref">RefFactory</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../at/irian/ankor/fx/binding/fxref/FxRef.html" title="interface in at.irian.ankor.fx.binding.fxref">FxRef</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../at/irian/ankor/fx/binding/fxref/FxRefFactory.html#ref(java.lang.String)">ref</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> path)</code> </td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="ref(java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ref</h4>
<pre><a href="../../../../../../at/irian/ankor/fx/binding/fxref/FxRef.html" title="interface in at.irian.ankor.fx.binding.fxref">FxRef</a> ref(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> path)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../../at/irian/ankor/ref/RefFactory.html#ref(java.lang.String)">ref</a></code> in interface <code><a href="../../../../../../at/irian/ankor/ref/RefFactory.html" title="interface in at.irian.ankor.ref">RefFactory</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/FxRefFactory.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="../../../../../../at/irian/ankor/fx/binding/fxref/FxRefContextFactoryProvider.html" title="class in at.irian.ankor.fx.binding.fxref"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../at/irian/ankor/fx/binding/fxref/FxRefs.html" title="class in at.irian.ankor.fx.binding.fxref"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?at/irian/ankor/fx/binding/fxref/FxRefFactory.html" target="_top">Frames</a></li>
<li><a href="FxRefFactory.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 ======= -->
<p class="legalCopy"><small>Copyright © 2014. All rights reserved.</small></p>
</body>
</html>
| ankor-io/ankor-framework | website/ankorsite/static/javadoc/apidocs-0.2/at/irian/ankor/fx/binding/fxref/FxRefFactory.html | HTML | apache-2.0 | 8,186 |
<div class="no-gutter">
<div class="{{showDetail? 'col-md-4 hidden-xs hidden-sm':'col-xs-12 col-md-4'}} vertical-right-divider">
<router-outlet name="master"></router-outlet>
</div>
<div class="{{showDetail? 'col-xs-12 col-md-8': 'hidden'}}">
<router-outlet name="detail">
</router-outlet>
</div>
<div class="{{showDetail? 'hidden': 'hidden-xs hidden-sm col-md-8 container-no-items'}}">
<div *ngIf="currentRoute === 'workbaskets'" class="center-block no-detail">
<h3 class="grey">Select a workbasket</h3>
<svg-icon class="img-responsive empty-icon" src="./assets/icons/wb-empty.svg"></svg-icon>
</div>
<div *ngIf="currentRoute === 'classifications'" class="center-block no-detail">
<h3 class="grey">Select a classification</h3>
<svg-icon class="img-responsive empty-icon" src="./assets/icons/classification-empty.svg"></svg-icon>
</div>
<div *ngIf="currentRoute === 'tasks'" class="center-block no-detail">
<h3 class="grey">Select a Task</h3>
<span class="material-icons empty-icon md-20">done_all</span>
</div>
</div>
</div>
| BVier/Taskana | web/src/app/shared/master-and-detail/master-and-detail.component.html | HTML | apache-2.0 | 1,194 |
{% extends "base.html" %}
{% block content %}
<div class="jumbotron" >
<div class="container">
<div style="padding-top:10px">
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for msg in messages %}
<div class="alert alert-info">
<center>
{{ msg }}
</center>
</div>
{% endfor %}
{% endif %}
{% endwith %}
</div>
<center>
<h1>
<a href="/table">
<button style="height:75;width:500px;font-size:40px" class="btn btn-success">CREATE TABLE</button>
</a>
</h1>
Note: Creating table make take a few moments as it needs to become Active.
</center>
</div>
</div>
{% endblock %}
| awslabs/dynamodb-tictactoe-example-app | templates/table.html | HTML | apache-2.0 | 866 |
<ng-template #template>
<div class="modal-header">
<button type="button"
class="close"
aria-hidden="true"
(click)="cancel()">
<span class="pficon pficon-close"></span>
</button>
<h4 class="modal-title">{{ title }}</h4>
</div>
<div class="modal-body">
<p>{{ message }}</p>
<ng-template *ngIf="body"
[ngTemplateOutlet]="body"
[ngOutletContext]="{ modal: this }"></ng-template>
</div>
<div class="modal-footer">
<button type="button"
class="btn btn-default"
(click)="cancel()">
Cancel
</button>
<button type="button"
class="btn btn-primary"
(click)="ok()">
OK
</button>
</div>
</ng-template>
| kahboom/ipaas-client | src/app/common/modal/modal.component.html | HTML | apache-2.0 | 773 |
<!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="X-UA-Compatible" content="IE=Edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>pandas.Timestamp.time — pandas 0.24.0.dev0+81.g8d5032a8c.dirty documentation</title>
<link rel="stylesheet" href="../_static/nature.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript" id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="pandas.Timestamp.timestamp" href="pandas.Timestamp.timestamp.html" />
<link rel="prev" title="pandas.Timestamp.strptime" href="pandas.Timestamp.strptime.html" />
</head><body>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="pandas.Timestamp.timestamp.html" title="pandas.Timestamp.timestamp"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="pandas.Timestamp.strptime.html" title="pandas.Timestamp.strptime"
accesskey="P">previous</a> |</li>
<li class="nav-item nav-item-0"><a href="../index.html">pandas 0.24.0.dev0+81.g8d5032a8c.dirty documentation</a> »</li>
<li class="nav-item nav-item-1"><a href="../api.html" >API Reference</a> »</li>
<li class="nav-item nav-item-2"><a href="pandas.Timestamp.html" accesskey="U">pandas.Timestamp</a> »</li>
</ul>
</div>
<div class="content-wrapper">
<div class="content">
<div class="document">
<div class="sphinxsidebar">
<h3>Table Of Contents</h3>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="../whatsnew.html">What’s New</a></li>
<li class="toctree-l1"><a class="reference internal" href="../install.html">Installation</a></li>
<li class="toctree-l1"><a class="reference internal" href="../contributing.html">Contributing to pandas</a></li>
<li class="toctree-l1"><a class="reference internal" href="../overview.html">Package overview</a></li>
<li class="toctree-l1"><a class="reference internal" href="../10min.html">10 Minutes to pandas</a></li>
<li class="toctree-l1"><a class="reference internal" href="../tutorials.html">Tutorials</a></li>
<li class="toctree-l1"><a class="reference internal" href="../cookbook.html">Cookbook</a></li>
<li class="toctree-l1"><a class="reference internal" href="../dsintro.html">Intro to Data Structures</a></li>
<li class="toctree-l1"><a class="reference internal" href="../basics.html">Essential Basic Functionality</a></li>
<li class="toctree-l1"><a class="reference internal" href="../text.html">Working with Text Data</a></li>
<li class="toctree-l1"><a class="reference internal" href="../options.html">Options and Settings</a></li>
<li class="toctree-l1"><a class="reference internal" href="../indexing.html">Indexing and Selecting Data</a></li>
<li class="toctree-l1"><a class="reference internal" href="../advanced.html">MultiIndex / Advanced Indexing</a></li>
<li class="toctree-l1"><a class="reference internal" href="../computation.html">Computational tools</a></li>
<li class="toctree-l1"><a class="reference internal" href="../missing_data.html">Working with missing data</a></li>
<li class="toctree-l1"><a class="reference internal" href="../groupby.html">Group By: split-apply-combine</a></li>
<li class="toctree-l1"><a class="reference internal" href="../merging.html">Merge, join, and concatenate</a></li>
<li class="toctree-l1"><a class="reference internal" href="../reshaping.html">Reshaping and Pivot Tables</a></li>
<li class="toctree-l1"><a class="reference internal" href="../timeseries.html">Time Series / Date functionality</a></li>
<li class="toctree-l1"><a class="reference internal" href="../timedeltas.html">Time Deltas</a></li>
<li class="toctree-l1"><a class="reference internal" href="../categorical.html">Categorical Data</a></li>
<li class="toctree-l1"><a class="reference internal" href="../visualization.html">Visualization</a></li>
<li class="toctree-l1"><a class="reference internal" href="../style.html">Styling</a></li>
<li class="toctree-l1"><a class="reference internal" href="../io.html">IO Tools (Text, CSV, HDF5, …)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../enhancingperf.html">Enhancing Performance</a></li>
<li class="toctree-l1"><a class="reference internal" href="../sparse.html">Sparse data structures</a></li>
<li class="toctree-l1"><a class="reference internal" href="../gotchas.html">Frequently Asked Questions (FAQ)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../r_interface.html">rpy2 / R interface</a></li>
<li class="toctree-l1"><a class="reference internal" href="../ecosystem.html">pandas Ecosystem</a></li>
<li class="toctree-l1"><a class="reference internal" href="../comparison_with_r.html">Comparison with R / R libraries</a></li>
<li class="toctree-l1"><a class="reference internal" href="../comparison_with_sql.html">Comparison with SQL</a></li>
<li class="toctree-l1"><a class="reference internal" href="../comparison_with_sas.html">Comparison with SAS</a></li>
<li class="toctree-l1"><a class="reference internal" href="../comparison_with_stata.html">Comparison with Stata</a></li>
<li class="toctree-l1 current"><a class="reference internal" href="../api.html">API Reference</a><ul class="current">
<li class="toctree-l2"><a class="reference internal" href="../api.html#input-output">Input/Output</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#general-functions">General functions</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#series">Series</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#dataframe">DataFrame</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#panel">Panel</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#index">Index</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#numeric-index">Numeric Index</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#categoricalindex">CategoricalIndex</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#intervalindex">IntervalIndex</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#multiindex">MultiIndex</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#datetimeindex">DatetimeIndex</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#timedeltaindex">TimedeltaIndex</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#periodindex">PeriodIndex</a></li>
<li class="toctree-l2 current"><a class="reference internal" href="../api.html#scalars">Scalars</a><ul class="current">
<li class="toctree-l3"><a class="reference internal" href="../api.html#period">Period</a></li>
<li class="toctree-l3"><a class="reference internal" href="../api.html#id32">Attributes</a></li>
<li class="toctree-l3"><a class="reference internal" href="../api.html#id33">Methods</a></li>
<li class="toctree-l3"><a class="reference internal" href="../api.html#timestamp">Timestamp</a></li>
<li class="toctree-l3"><a class="reference internal" href="../api.html#properties">Properties</a></li>
<li class="toctree-l3 current"><a class="reference internal" href="../api.html#id34">Methods</a><ul class="current">
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.astimezone.html">pandas.Timestamp.astimezone</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.ceil.html">pandas.Timestamp.ceil</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.combine.html">pandas.Timestamp.combine</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.ctime.html">pandas.Timestamp.ctime</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.date.html">pandas.Timestamp.date</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.day_name.html">pandas.Timestamp.day_name</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.dst.html">pandas.Timestamp.dst</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.floor.html">pandas.Timestamp.floor</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.freq.html">pandas.Timestamp.freq</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.freqstr.html">pandas.Timestamp.freqstr</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.fromordinal.html">pandas.Timestamp.fromordinal</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.fromtimestamp.html">pandas.Timestamp.fromtimestamp</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.isocalendar.html">pandas.Timestamp.isocalendar</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.isoformat.html">pandas.Timestamp.isoformat</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.isoweekday.html">pandas.Timestamp.isoweekday</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.month_name.html">pandas.Timestamp.month_name</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.normalize.html">pandas.Timestamp.normalize</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.now.html">pandas.Timestamp.now</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.replace.html">pandas.Timestamp.replace</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.round.html">pandas.Timestamp.round</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.strftime.html">pandas.Timestamp.strftime</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.strptime.html">pandas.Timestamp.strptime</a></li>
<li class="toctree-l4 current"><a class="current reference internal" href="#">pandas.Timestamp.time</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.timestamp.html">pandas.Timestamp.timestamp</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.timetuple.html">pandas.Timestamp.timetuple</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.timetz.html">pandas.Timestamp.timetz</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.to_datetime64.html">pandas.Timestamp.to_datetime64</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.to_julian_date.html">pandas.Timestamp.to_julian_date</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.to_period.html">pandas.Timestamp.to_period</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.to_pydatetime.html">pandas.Timestamp.to_pydatetime</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.today.html">pandas.Timestamp.today</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.toordinal.html">pandas.Timestamp.toordinal</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.tz_convert.html">pandas.Timestamp.tz_convert</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.tz_localize.html">pandas.Timestamp.tz_localize</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.tzname.html">pandas.Timestamp.tzname</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.utcfromtimestamp.html">pandas.Timestamp.utcfromtimestamp</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.utcnow.html">pandas.Timestamp.utcnow</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.utcoffset.html">pandas.Timestamp.utcoffset</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.utctimetuple.html">pandas.Timestamp.utctimetuple</a></li>
<li class="toctree-l4"><a class="reference internal" href="pandas.Timestamp.weekday.html">pandas.Timestamp.weekday</a></li>
</ul>
</li>
<li class="toctree-l3"><a class="reference internal" href="../api.html#interval">Interval</a></li>
<li class="toctree-l3"><a class="reference internal" href="../api.html#id35">Properties</a></li>
<li class="toctree-l3"><a class="reference internal" href="../api.html#timedelta">Timedelta</a></li>
<li class="toctree-l3"><a class="reference internal" href="../api.html#id36">Properties</a></li>
<li class="toctree-l3"><a class="reference internal" href="../api.html#id37">Methods</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#frequencies">Frequencies</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#window">Window</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#groupby">GroupBy</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#resampling">Resampling</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#style">Style</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#id43">Plotting</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#general-utility-functions">General utility functions</a></li>
<li class="toctree-l2"><a class="reference internal" href="../api.html#extensions">Extensions</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../developer.html">Developer</a></li>
<li class="toctree-l1"><a class="reference internal" href="../internals.html">Internals</a></li>
<li class="toctree-l1"><a class="reference internal" href="../extending.html">Extending Pandas</a></li>
<li class="toctree-l1"><a class="reference internal" href="../release.html">Release Notes</a></li>
</ul>
<h3 style="margin-top: 1.5em;">Search</h3>
<form class="search" action="../search.html" method="get">
<input type="text" name="q" size="18"/>
<input type="submit" value="Go"/>
<input type="hidden" name="check_keywords" value="yes"/>
<input type="hidden" name="area" value="default"/>
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="pandas-timestamp-time">
<h1>pandas.Timestamp.time<a class="headerlink" href="#pandas-timestamp-time" title="Permalink to this headline">¶</a></h1>
<dl class="method">
<dt id="pandas.Timestamp.time">
<code class="descclassname">Timestamp.</code><code class="descname">time</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#pandas.Timestamp.time" title="Permalink to this definition">¶</a></dt>
<dd><p>Return time object with same time but with tzinfo=None.</p>
</dd></dl>
</div>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
</div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="pandas.Timestamp.timestamp.html" title="pandas.Timestamp.timestamp"
>next</a> |</li>
<li class="right" >
<a href="pandas.Timestamp.strptime.html" title="pandas.Timestamp.strptime"
>previous</a> |</li>
<li class="nav-item nav-item-0"><a href="../index.html">pandas 0.24.0.dev0+81.g8d5032a8c.dirty documentation</a> »</li>
<li class="nav-item nav-item-1"><a href="../api.html" >API Reference</a> »</li>
<li class="nav-item nav-item-2"><a href="pandas.Timestamp.html" >pandas.Timestamp</a> »</li>
</ul>
</div>
<style type="text/css">
.scrollToTop {
text-align: center;
font-weight: bold;
position: fixed;
bottom: 60px;
right: 40px;
display: none;
}
</style>
<a href="#" class="scrollToTop">Scroll To Top</a>
<script type="text/javascript">
$(document).ready(function() {
//Check to see if the window is top if not then display button
$(window).scroll(function() {
if ($(this).scrollTop() > 200) {
$('.scrollToTop').fadeIn();
} else {
$('.scrollToTop').fadeOut();
}
});
//Click event to scroll to top
$('.scrollToTop').click(function() {
$('html, body').animate({
scrollTop: 0
}, 500);
return false;
});
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-27880019-2']);
_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>
</body>
</html> | datapythonista/datapythonista.github.io | docs/new-pandas-doc/generated/pandas.Timestamp.time.html | HTML | apache-2.0 | 19,098 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index, follow" />
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,400;0,700;1,400&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,700;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://ptyagicodecamp.github.io/theme/stylesheet/style.min.css">
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
href="https://ptyagicodecamp.github.io/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="https://ptyagicodecamp.github.io/theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="https://ptyagicodecamp.github.io/theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="https://ptyagicodecamp.github.io/theme/font-awesome/css/solid.css">
<link href="https://ptyagicodecamp.github.io/static/custom.css" rel="stylesheet">
<link href="https://ptyagicodecamp.github.io/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="techLog Atom">
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon">
<link rel="icon" href="/images/favicon.ico" type="image/x-icon">
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-133714063-1', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#333333">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Microsoft EDGE -->
<meta name="msapplication-TileColor" content="#333333">
<meta name="author" content="Priyanka Tyagi" />
<meta name="description" content="Mobile engineering tech logger." />
<meta property="og:site_name" content="techLog"/>
<meta property="og:type" content="blog"/>
<meta property="og:title" content="techLog"/>
<meta property="og:description" content="Mobile engineering tech logger."/>
<meta property="og:locale" content="en_US"/>
<meta property="og:url" content="https://ptyagicodecamp.github.io"/>
<meta property="og:image" content="https://ptyagicodecamp.github.io/images/profile.jpg">
<title>techLog</title>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-6359982310050489",
enable_page_level_ads: true
});
</script>
</head>
<body class="light-theme">
<aside>
<div>
<a href="https://ptyagicodecamp.github.io">
<img src="https://ptyagicodecamp.github.io/images/profile.jpg" alt="techLog" title="techLog">
</a>
<h1>
<a href="https://ptyagicodecamp.github.io">techLog</a>
</h1>
<p>Explore | Android | Flutter | Software Engineering</p>
<nav>
<ul class="list">
<li>
<a target="_self" href="https://www.paypal.me/pritya" >Support</a>
</li>
<li>
<a target="_self" href="https://www.codementor.io/ptyagicodecamp" >Codementor</a>
</li>
</ul>
</nav>
<ul class="social">
<li>
<a class="sc-linkedin" href="https://www.linkedin.com/in/priyankatyagi" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a class="sc-github" href="https://github.com/ptyagicodecamp" target="_blank">
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a class="sc-medium" href="https://medium.com/@ptyagicodecamp" target="_blank">
<i class="fab fa-medium"></i>
</a>
</li>
<li>
<a class="sc-twitter" href="https://twitter.com/ptyagi13" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a class="sc-youtube" href="https://www.youtube.com/channel/UCO3_dbHasEnA2dr_U0EhMAA?view_as=subscriber" target="_blank">
<i class="fab fa-youtube"></i>
</a>
</li>
<li>
<a class="sc-codementor" href="https://www.codementor.io/ptyagicodecamp" target="_blank">
<i class="fab fa-codementor"></i>
</a>
</li>
</ul>
</div>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle ads-aside"
data-ad-client="ca-pub-6359982310050489"
data-ad-slot="8977779775"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</aside>
<main>
<nav>
<a href="https://ptyagicodecamp.github.io">Home</a>
<a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a>
<a href="https://ptyagicodecamp.github.io/feeds/all.atom.xml">Atom</a>
</nav>
<article>
<header>
<h2><a href="https://ptyagicodecamp.github.io/implementing-search-action-in-appbar.html#implementing-search-action-in-appbar">Implementing Search action in AppBar</a></h2>
<p>
Posted on February 06, 2019 in <a href="https://ptyagicodecamp.github.io/category/flutter.html">Flutter</a>
• Tagged with
<a href="https://ptyagicodecamp.github.io/tag/searchdelegate.html">SearchDelegate</a>, <a href="https://ptyagicodecamp.github.io/tag/searchappbar.html">SearchAppBar</a>, <a href="https://ptyagicodecamp.github.io/tag/cross-platform.html">cross-platform</a>, <a href="https://ptyagicodecamp.github.io/tag/flutter.html">flutter</a>, <a href="https://ptyagicodecamp.github.io/tag/code-recipes.html">code-recipes</a>, <a href="https://ptyagicodecamp.github.io/tag/android.html">android</a>, <a href="https://ptyagicodecamp.github.io/tag/android-studio.html">android Studio</a>, <a href="https://ptyagicodecamp.github.io/tag/ios.html">iOS</a>, <a href="https://ptyagicodecamp.github.io/tag/development.html">development</a>
</p>
</header>
<div>
<p>Implementing Search action in AppBar using Flutter for Android and iOS mobile apps.</p>
<br>
<a class="btn"
href="https://ptyagicodecamp.github.io/implementing-search-action-in-appbar.html#implementing-search-action-in-appbar">
Continue reading
</a>
</div>
<hr />
</article>
<article>
<header>
<h2><a href="https://ptyagicodecamp.github.io/bottomnavigationbar-with-menu-search-and-overflow-action-items.html#bottomnavigationbar-with-menu-search-and-overflow-action-items">BottomNavigationBar with menu, search and overflow action items</a></h2>
<p>
Posted on February 05, 2019 in <a href="https://ptyagicodecamp.github.io/category/flutter.html">Flutter</a>
• Tagged with
<a href="https://ptyagicodecamp.github.io/tag/bottom-appbar.html">Bottom AppBar</a>, <a href="https://ptyagicodecamp.github.io/tag/cross-platform.html">cross-platform</a>, <a href="https://ptyagicodecamp.github.io/tag/flutter.html">flutter</a>, <a href="https://ptyagicodecamp.github.io/tag/code-recipes.html">code-recipes</a>, <a href="https://ptyagicodecamp.github.io/tag/android.html">android</a>, <a href="https://ptyagicodecamp.github.io/tag/android-studio.html">android Studio</a>, <a href="https://ptyagicodecamp.github.io/tag/ios.html">iOS</a>, <a href="https://ptyagicodecamp.github.io/tag/development.html">development</a>
</p>
</header>
<div>
<p>Implement a BottomNavigationBar with menu, search and overflow action items.</p>
<br>
<a class="btn"
href="https://ptyagicodecamp.github.io/bottomnavigationbar-with-menu-search-and-overflow-action-items.html#bottomnavigationbar-with-menu-search-and-overflow-action-items">
Continue reading
</a>
</div>
<hr />
</article>
<article>
<header>
<h2><a href="https://ptyagicodecamp.github.io/flutter-code-recipe-for-appbar-widget.html#flutter-code-recipe-for-appbar-widget">Flutter code recipe for AppBar widget</a></h2>
<p>
Posted on February 02, 2019 in <a href="https://ptyagicodecamp.github.io/category/flutter.html">Flutter</a>
• Tagged with
<a href="https://ptyagicodecamp.github.io/tag/appbar.html">AppBar</a>, <a href="https://ptyagicodecamp.github.io/tag/cross-platform.html">cross-platform</a>, <a href="https://ptyagicodecamp.github.io/tag/flutter.html">flutter</a>, <a href="https://ptyagicodecamp.github.io/tag/code-recipes.html">code-recipes</a>, <a href="https://ptyagicodecamp.github.io/tag/android.html">android</a>, <a href="https://ptyagicodecamp.github.io/tag/android-studio.html">android Studio</a>, <a href="https://ptyagicodecamp.github.io/tag/ios.html">iOS</a>, <a href="https://ptyagicodecamp.github.io/tag/development.html">development</a>
</p>
</header>
<div>
<p>Implement a basic appBar with a title, actions, and an overflow dropdown menu.</p>
<br>
<a class="btn"
href="https://ptyagicodecamp.github.io/flutter-code-recipe-for-appbar-widget.html#flutter-code-recipe-for-appbar-widget">
Continue reading
</a>
</div>
<hr />
</article>
<article>
<header>
<h2><a href="https://ptyagicodecamp.github.io/flutter-code-recipe-for-animatedopacity-widget.html#flutter-code-recipe-for-animatedopacity-widget">Flutter code recipe for AnimatedOpacity widget</a></h2>
<p>
Posted on January 30, 2019 in <a href="https://ptyagicodecamp.github.io/category/flutter.html">Flutter</a>
• Tagged with
<a href="https://ptyagicodecamp.github.io/tag/animatedopacity.html">AnimatedOpacity</a>, <a href="https://ptyagicodecamp.github.io/tag/cross-platform.html">cross-platform</a>, <a href="https://ptyagicodecamp.github.io/tag/flutter.html">flutter</a>, <a href="https://ptyagicodecamp.github.io/tag/code-recipes.html">code-recipes</a>, <a href="https://ptyagicodecamp.github.io/tag/android.html">android</a>, <a href="https://ptyagicodecamp.github.io/tag/android-studio.html">android Studio</a>, <a href="https://ptyagicodecamp.github.io/tag/ios.html">iOS</a>, <a href="https://ptyagicodecamp.github.io/tag/development.html">development</a>
</p>
</header>
<div>
<p>AnimatedOpacity widget is used to achieve a smooth transition from one UI element to another.</p>
<br>
<a class="btn"
href="https://ptyagicodecamp.github.io/flutter-code-recipe-for-animatedopacity-widget.html#flutter-code-recipe-for-animatedopacity-widget">
Continue reading
</a>
</div>
<hr />
</article>
<article>
<header>
<h2><a href="https://ptyagicodecamp.github.io/flutter-code-recipe-for-hero-animation.html#flutter-code-recipe-for-hero-animation">Flutter code recipe for Hero animation</a></h2>
<p>
Posted on January 30, 2019 in <a href="https://ptyagicodecamp.github.io/category/flutter.html">Flutter</a>
• Tagged with
<a href="https://ptyagicodecamp.github.io/tag/hero-animation.html">hero-animation</a>, <a href="https://ptyagicodecamp.github.io/tag/cross-platform.html">cross-platform</a>, <a href="https://ptyagicodecamp.github.io/tag/flutter.html">flutter</a>, <a href="https://ptyagicodecamp.github.io/tag/code-recipes.html">code-recipes</a>, <a href="https://ptyagicodecamp.github.io/tag/android.html">android</a>, <a href="https://ptyagicodecamp.github.io/tag/android-studio.html">android Studio</a>, <a href="https://ptyagicodecamp.github.io/tag/ios.html">iOS</a>, <a href="https://ptyagicodecamp.github.io/tag/development.html">development</a>
</p>
</header>
<div>
<p>Navigating from one page to another using Hero animation.</p>
<br>
<a class="btn"
href="https://ptyagicodecamp.github.io/flutter-code-recipe-for-hero-animation.html#flutter-code-recipe-for-hero-animation">
Continue reading
</a>
</div>
<hr />
</article>
<article>
<header>
<h2><a href="https://ptyagicodecamp.github.io/managing-apps-lifecycle-using-lifecycle-aware-components-part-1.html#managing-apps-lifecycle-using-lifecycle-aware-components-part-1">Managing App's Lifecycle using "Lifecycle Aware components" (Part 1)</a></h2>
<p>
Posted on August 12, 2017 in <a href="https://ptyagicodecamp.github.io/category/development.html">Development</a>
• Tagged with
<a href="https://ptyagicodecamp.github.io/tag/android.html">android</a>, <a href="https://ptyagicodecamp.github.io/tag/android-architecture.html">android-architecture</a>, <a href="https://ptyagicodecamp.github.io/tag/architecture-components.html">architecture-components</a>
</p>
</header>
<div>
<p>This post is first part of 3 parts series about recently introduced architecture components.</p>
<br>
<a class="btn"
href="https://ptyagicodecamp.github.io/managing-apps-lifecycle-using-lifecycle-aware-components-part-1.html#managing-apps-lifecycle-using-lifecycle-aware-components-part-1">
Continue reading
</a>
</div>
<hr />
</article>
<article>
<header>
<h2><a href="https://ptyagicodecamp.github.io/how-to-start-using-custom-fonts-in-an-android-app-under-5-minutes.html#how-to-start-using-custom-fonts-in-an-android-app-under-5-minutes">How to start using custom fonts in an Android App under 5 minutes</a></h2>
<p>
Posted on July 26, 2017 in <a href="https://ptyagicodecamp.github.io/category/development.html">Development</a>
• Tagged with
<a href="https://ptyagicodecamp.github.io/tag/android.html">android</a>, <a href="https://ptyagicodecamp.github.io/tag/fonts.html">fonts</a>, <a href="https://ptyagicodecamp.github.io/tag/dev.html">dev</a>, <a href="https://ptyagicodecamp.github.io/tag/5-minutes-series.html">5-minutes-series</a>
</p>
</header>
<div>
<p>This post is part of the "under 5 minutes series". In this post I'll talk about how did I set up custom fonts to render text in TextView in an Android app.</p>
<br>
<a class="btn"
href="https://ptyagicodecamp.github.io/how-to-start-using-custom-fonts-in-an-android-app-under-5-minutes.html#how-to-start-using-custom-fonts-in-an-android-app-under-5-minutes">
Continue reading
</a>
</div>
<hr />
</article>
<article>
<header>
<h2><a href="https://ptyagicodecamp.github.io/how-did-i-set-up-multiple-flavors-for-an-android-app-under-5-minutes.html#how-did-i-set-up-multiple-flavors-for-an-android-app-under-5-minutes">How did I set up multiple flavors for an Android App under 5 minutes</a></h2>
<p>
Posted on July 18, 2017 in <a href="https://ptyagicodecamp.github.io/category/development.html">Development</a>
• Tagged with
<a href="https://ptyagicodecamp.github.io/tag/android.html">android</a>, <a href="https://ptyagicodecamp.github.io/tag/gradle.html">gradle</a>, <a href="https://ptyagicodecamp.github.io/tag/flavors.html">flavors</a>, <a href="https://ptyagicodecamp.github.io/tag/build-variants.html">build-variants</a>, <a href="https://ptyagicodecamp.github.io/tag/dev.html">dev</a>, <a href="https://ptyagicodecamp.github.io/tag/5-minutes-series.html">5-minutes-series</a>
</p>
</header>
<div>
<p>This post is part of the "under 5 minutes series". In this post I'll talk about how did I set up flavors for an Android app.</p>
<br>
<a class="btn"
href="https://ptyagicodecamp.github.io/how-did-i-set-up-multiple-flavors-for-an-android-app-under-5-minutes.html#how-did-i-set-up-multiple-flavors-for-an-android-app-under-5-minutes">
Continue reading
</a>
</div>
<hr />
</article>
<article>
<header>
<h2><a href="https://ptyagicodecamp.github.io/android-model-view-presenter-mvp-design-pattern.html#android-model-view-presenter-mvp-design-pattern">Android Model-View-Presenter (MVP) Design Pattern</a></h2>
<p>
Posted on July 13, 2017 in <a href="https://ptyagicodecamp.github.io/category/development.html">Development</a>
• Tagged with
<a href="https://ptyagicodecamp.github.io/tag/android.html">Android</a>, <a href="https://ptyagicodecamp.github.io/tag/android-design-pattern.html">Android Design Pattern</a>, <a href="https://ptyagicodecamp.github.io/tag/mvp.html">MVP</a>, <a href="https://ptyagicodecamp.github.io/tag/tips-tricks.html">Tips & Tricks</a>, <a href="https://ptyagicodecamp.github.io/tag/model-view-presenter.html">Model-View-Presenter</a>
</p>
</header>
<div>
<p>A Quick tour to Model-View-Presenter (MVP) Android Design Pattern.</p>
<br>
<a class="btn"
href="https://ptyagicodecamp.github.io/android-model-view-presenter-mvp-design-pattern.html#android-model-view-presenter-mvp-design-pattern">
Continue reading
</a>
</div>
<hr />
</article>
<article>
<header>
<h2><a href="https://ptyagicodecamp.github.io/requesting-audio-permission-at-runtime.html#requesting-audio-permission-at-runtime">Requesting Audio permission at Runtime</a></h2>
<p>
Posted on June 20, 2017 in <a href="https://ptyagicodecamp.github.io/category/development.html">Development</a>
• Tagged with
<a href="https://ptyagicodecamp.github.io/tag/android.html">android</a>, <a href="https://ptyagicodecamp.github.io/tag/runtime-permissions.html">runtime permissions</a>, <a href="https://ptyagicodecamp.github.io/tag/audio-recording.html">audio recording</a>, <a href="https://ptyagicodecamp.github.io/tag/dev.html">dev</a>
</p>
</header>
<div>
<p>This post will show how to request run-time permissions to enable audio recording in a recipe style.</p>
<br>
<a class="btn"
href="https://ptyagicodecamp.github.io/requesting-audio-permission-at-runtime.html#requesting-audio-permission-at-runtime">
Continue reading
</a>
</div>
</article>
<div class="pagination">
<a class="btn float-left" href="https://ptyagicodecamp.github.io/index7.html">
<i class="fa fa-angle-left"></i> Older Posts
</a>
<a class="btn float-right" href="https://ptyagicodecamp.github.io/index5.html">
Newer Posts <i class="fa fa-angle-right"></i>
</a>
</div>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle ads-responsive"
data-ad-client="ca-pub-6359982310050489"
data-ad-slot="8977779775"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<footer>
<p>
© 2021 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p>
<p>
Built with <a href="http://getpelican.com" target="_blank">Pelican</a> using <a href="http://bit.ly/flex-pelican" target="_blank">Flex</a> theme
</p><p>
<a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/"
target="_blank">
<img alt="Creative Commons License"
title="Creative Commons License"
style="border-width:0"
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
width="80"
height="15"/>
</a>
</p> </footer>
</main>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5cf387135c8761da" async="async"></script>
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "Blog",
"name": " techLog ",
"url" : "https://ptyagicodecamp.github.io",
"image": "https://ptyagicodecamp.github.io/images/profile.jpg",
"description": "Mobile engineering tech logger."
}
</script>
<a href="https://github.com/ptyagicodecamp" class="github-corner" aria-label="View source on Github">
<svg width="80"
height="80"
viewBox="0 0 250 250"
style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;"
aria-hidden="true">
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
<path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"
fill="currentColor"
style="transform-origin: 130px 106px;"
class="octo-arm">
</path>
<path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z"
fill="currentColor"
class="octo-body">
</path>
</svg>
</a>
<style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style>
</body>
</html> | ptyagicodecamp/ptyagicodecamp.github.io | index6.html | HTML | apache-2.0 | 23,059 |
<!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>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title>
</head>
<body>
<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://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</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 documentation" target="_blank"
href="http://openclover.org/documentation">
<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">
<a href="http://cardatechnologies.com" target="_top">
<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>
</a>
</div>
<div class="aui-page-header-main" >
<h1>
<a href="http://cardatechnologies.com" target="_top">
ABA Route Transit Number Validator 1.0.1-SNAPSHOT
</a>
</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.cardatechnologies.utils.validators.abaroutevalidator">
<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">
<div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li>
<li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li>
<li><a href="test-Test_AbaRouteValidator_13b.html">Class Test_AbaRouteValidator_13b</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_28769_good
</h1>
<table class="aui">
<thead>
<tr>
<th>Test</th>
<th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th>
<th><label title="When the test execution was started">Start time</label></th>
<th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th>
<th><label title="A failure or error message if the test is not successful.">Message</label></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_13b.html?line=37720#src-37720" >testAbaNumberCheck_28769_good</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:43:19
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </div>
<table class="aui aui-table-sortable">
<thead>
<tr>
<th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th>
<th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_28769_good</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=21746#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a>
</td>
<td>
<span class="sortValue">0.7352941</span>73.5%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="73.5% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:73.5%"></div></div></div> </td>
</tr>
</tbody>
</table>
</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://openclover.org">OpenClover</a> v 4.4.1
on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT.
</li>
</ul>
<ul>
<li>OpenClover is free and open-source software. </li>
</ul>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> | dcarda/aba.route.validator | target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_13b_testAbaNumberCheck_28769_good_gs2.html | HTML | apache-2.0 | 9,184 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="pl">
<head>
<!-- Generated by javadoc (1.8.0_111) on Mon Oct 16 21:56:28 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>GroovyTemplate (Play! API)</title>
<meta name="date" content="2017-10-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="GroovyTemplate (Play! API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":9,"i4":10,"i5":9,"i6":10,"i7":10,"i8":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/GroovyTemplate.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="../../play/templates/GroovyInlineTags.CALL.html" title="enum in play.templates"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../play/templates/GroovyTemplate.ExecutableTemplate.html" title="class in play.templates"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?play/templates/GroovyTemplate.html" target="_top">Frames</a></li>
<li><a href="GroovyTemplate.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><a href="#nested.class.summary">Nested</a> | </li>
<li><a href="#fields.inherited.from.class.play.templates.BaseTemplate">Field</a> | </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">play.templates</div>
<h2 title="Class GroovyTemplate" class="title">Class GroovyTemplate</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../play/templates/Template.html" title="class in play.templates">play.templates.Template</a></li>
<li>
<ul class="inheritance">
<li><a href="../../play/templates/BaseTemplate.html" title="class in play.templates">play.templates.BaseTemplate</a></li>
<li>
<ul class="inheritance">
<li>play.templates.GroovyTemplate</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">GroovyTemplate</span>
extends <a href="../../play/templates/BaseTemplate.html" title="class in play.templates">BaseTemplate</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../play/templates/GroovyTemplate.ExecutableTemplate.html" title="class in play.templates">GroovyTemplate.ExecutableTemplate</a></span></code>
<div class="block">Groovy template</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../play/templates/GroovyTemplate.TClassLoader.html" title="class in play.templates">GroovyTemplate.TClassLoader</a></span></code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="nested.classes.inherited.from.class.play.templates.BaseTemplate">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from class play.templates.<a href="../../play/templates/BaseTemplate.html" title="class in play.templates">BaseTemplate</a></h3>
<code><a href="../../play/templates/BaseTemplate.RawData.html" title="class in play.templates">BaseTemplate.RawData</a></code></li>
</ul>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="fields.inherited.from.class.play.templates.BaseTemplate">
<!-- -->
</a>
<h3>Fields inherited from class play.templates.<a href="../../play/templates/BaseTemplate.html" title="class in play.templates">BaseTemplate</a></h3>
<code><a href="../../play/templates/BaseTemplate.html#compiledSource">compiledSource</a>, <a href="../../play/templates/BaseTemplate.html#compiledTemplate">compiledTemplate</a>, <a href="../../play/templates/BaseTemplate.html#compiledTemplateName">compiledTemplateName</a>, <a href="../../play/templates/BaseTemplate.html#currentTemplate">currentTemplate</a>, <a href="../../play/templates/BaseTemplate.html#doBodyLines">doBodyLines</a>, <a href="../../play/templates/BaseTemplate.html#layout">layout</a>, <a href="../../play/templates/BaseTemplate.html#layoutData">layoutData</a>, <a href="../../play/templates/BaseTemplate.html#linesMatrix">linesMatrix</a>, <a href="../../play/templates/BaseTemplate.html#timestamp">timestamp</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="fields.inherited.from.class.play.templates.Template">
<!-- -->
</a>
<h3>Fields inherited from class play.templates.<a href="../../play/templates/Template.html" title="class in play.templates">Template</a></h3>
<code><a href="../../play/templates/Template.html#name">name</a>, <a href="../../play/templates/Template.html#source">source</a></code></li>
</ul>
</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="../../play/templates/GroovyTemplate.html#GroovyTemplate-java.lang.String-">GroovyTemplate</a></span>(java.lang.String source)</code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../play/templates/GroovyTemplate.html#GroovyTemplate-java.lang.String-java.lang.String-">GroovyTemplate</a></span>(java.lang.String name,
java.lang.String source)</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="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>protected java.lang.Throwable</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../play/templates/GroovyTemplate.html#cleanStackTrace-java.lang.Throwable-">cleanStackTrace</a></span>(java.lang.Throwable e)</code> </td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../play/templates/GroovyTemplate.html#compile--">compile</a></span>()</code> </td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>protected java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../play/templates/GroovyTemplate.html#internalRender-java.util.Map-">internalRender</a></span>(java.util.Map<java.lang.String,java.lang.Object> args)</code>
<div class="block">The internal rendering method - When one template calls another template,
this method is used.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>protected static boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../play/templates/GroovyTemplate.html#isSimpleParam-java.lang.Class-">isSimpleParam</a></span>(java.lang.Class type)</code> </td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../play/templates/GroovyTemplate.html#onCompileEnd--">onCompileEnd</a></span>()</code> </td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>static <T> void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../play/templates/GroovyTemplate.html#registerFormatter-java.lang.String-play.templates.SafeFormatter-">registerFormatter</a></span>(java.lang.String format,
<a href="../../play/templates/SafeFormatter.html" title="interface in play.templates">SafeFormatter</a> formatter)</code> </td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../play/templates/GroovyTemplate.html#render-java.util.Map-">render</a></span>(java.util.Map<java.lang.String,java.lang.Object> args)</code>
<div class="block">Starts the rendering process without modifying the args-map</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>protected groovy.lang.Binding</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../play/templates/GroovyTemplate.html#setUpBindingVariables-java.util.Map-">setUpBindingVariables</a></span>(java.util.Map<java.lang.String,java.lang.Object> args)</code> </td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>protected org.codehaus.groovy.control.CompilerConfiguration</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../play/templates/GroovyTemplate.html#setUpCompilerConfiguration--">setUpCompilerConfiguration</a></span>()</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.play.templates.BaseTemplate">
<!-- -->
</a>
<h3>Methods inherited from class play.templates.<a href="../../play/templates/BaseTemplate.html" title="class in play.templates">BaseTemplate</a></h3>
<code><a href="../../play/templates/BaseTemplate.html#loadFromCache--">loadFromCache</a>, <a href="../../play/templates/BaseTemplate.html#loadPrecompiled--">loadPrecompiled</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.play.templates.Template">
<!-- -->
</a>
<h3>Methods inherited from class play.templates.<a href="../../play/templates/Template.html" title="class in play.templates">Template</a></h3>
<code><a href="../../play/templates/Template.html#getName--">getName</a>, <a href="../../play/templates/Template.html#render--">render</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="GroovyTemplate-java.lang.String-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>GroovyTemplate</h4>
<pre>public GroovyTemplate(java.lang.String name,
java.lang.String source)</pre>
</li>
</ul>
<a name="GroovyTemplate-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>GroovyTemplate</h4>
<pre>public GroovyTemplate(java.lang.String source)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="registerFormatter-java.lang.String-play.templates.SafeFormatter-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>registerFormatter</h4>
<pre>public static <T> void registerFormatter(java.lang.String format,
<a href="../../play/templates/SafeFormatter.html" title="interface in play.templates">SafeFormatter</a> formatter)</pre>
</li>
</ul>
<a name="setUpCompilerConfiguration--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setUpCompilerConfiguration</h4>
<pre>protected org.codehaus.groovy.control.CompilerConfiguration setUpCompilerConfiguration()</pre>
</li>
</ul>
<a name="onCompileEnd--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onCompileEnd</h4>
<pre>protected void onCompileEnd()</pre>
</li>
</ul>
<a name="compile--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>compile</h4>
<pre>public void compile()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../play/templates/Template.html#compile--">compile</a></code> in class <code><a href="../../play/templates/Template.html" title="class in play.templates">Template</a></code></dd>
</dl>
</li>
</ul>
<a name="render-java.util.Map-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>render</h4>
<pre>public java.lang.String render(java.util.Map<java.lang.String,java.lang.Object> args)</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../play/templates/Template.html#render-java.util.Map-">Template</a></code></span></div>
<div class="block">Starts the rendering process without modifying the args-map</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="../../play/templates/Template.html#render-java.util.Map-">render</a></code> in class <code><a href="../../play/templates/Template.html" title="class in play.templates">Template</a></code></dd>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>args</code> - map containing data binding info</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the result of the complete rendering</dd>
</dl>
</li>
</ul>
<a name="setUpBindingVariables-java.util.Map-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setUpBindingVariables</h4>
<pre>protected groovy.lang.Binding setUpBindingVariables(java.util.Map<java.lang.String,java.lang.Object> args)</pre>
</li>
</ul>
<a name="internalRender-java.util.Map-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>internalRender</h4>
<pre>protected java.lang.String internalRender(java.util.Map<java.lang.String,java.lang.Object> args)</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../play/templates/Template.html#internalRender-java.util.Map-">Template</a></code></span></div>
<div class="block">The internal rendering method - When one template calls another template,
this method is used. The input args-map is constantly being modified, as different
templates "communicate" with each other by storing info in the map</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../play/templates/Template.html#internalRender-java.util.Map-">internalRender</a></code> in class <code><a href="../../play/templates/Template.html" title="class in play.templates">Template</a></code></dd>
</dl>
</li>
</ul>
<a name="cleanStackTrace-java.lang.Throwable-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cleanStackTrace</h4>
<pre>protected java.lang.Throwable cleanStackTrace(java.lang.Throwable e)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../play/templates/BaseTemplate.html#cleanStackTrace-java.lang.Throwable-">cleanStackTrace</a></code> in class <code><a href="../../play/templates/BaseTemplate.html" title="class in play.templates">BaseTemplate</a></code></dd>
</dl>
</li>
</ul>
<a name="isSimpleParam-java.lang.Class-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>isSimpleParam</h4>
<pre>protected static boolean isSimpleParam(java.lang.Class type)</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/GroovyTemplate.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="../../play/templates/GroovyInlineTags.CALL.html" title="enum in play.templates"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../play/templates/GroovyTemplate.ExecutableTemplate.html" title="class in play.templates"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?play/templates/GroovyTemplate.html" target="_top">Frames</a></li>
<li><a href="GroovyTemplate.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><a href="#nested.class.summary">Nested</a> | </li>
<li><a href="#fields.inherited.from.class.play.templates.BaseTemplate">Field</a> | </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 ======= -->
<p class="legalCopy"><small><a href="http://guillaume.bort.fr">Guillaume Bort</a> & <a href="http://www.zenexity.fr">zenexity</a> - Distributed under <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache 2 licence</a>, without any warrantly</small></p>
</body>
</html>
| play1-maven-plugin/play1-maven-plugin.github.io | external-apidocs/com/google/code/maven-play-plugin/org/playframework/play/1.4.5/play/templates/GroovyTemplate.html | HTML | apache-2.0 | 22,187 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_67) on Wed Oct 08 15:57:23 PDT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.apache.hadoop.hbase.protobuf.generated.FSProtos.HBaseVersionFileContent (HBase 0.98.7-hadoop2 API)</title>
<meta name="date" content="2014-10-08">
<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 org.apache.hadoop.hbase.protobuf.generated.FSProtos.HBaseVersionFileContent (HBase 0.98.7-hadoop2 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">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/apache/hadoop/hbase/protobuf/generated/class-use/FSProtos.HBaseVersionFileContent.html" target="_top">Frames</a></li>
<li><a href="FSProtos.HBaseVersionFileContent.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.apache.hadoop.hbase.protobuf.generated.FSProtos.HBaseVersionFileContent" class="title">Uses of Class<br>org.apache.hadoop.hbase.protobuf.generated.FSProtos.HBaseVersionFileContent</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</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="#org.apache.hadoop.hbase.protobuf.generated">org.apache.hadoop.hbase.protobuf.generated</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.hadoop.hbase.protobuf.generated">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a> in <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.protobuf.generated</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.protobuf.generated</a> with type parameters of type <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></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>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static com.google.protobuf.Parser<<a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a>></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#PARSER">PARSER</a></strong></code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.protobuf.generated</a> that return <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</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="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.Builder.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.Builder.html#build()">build</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.Builder.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.Builder.html#buildPartial()">buildPartial</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#getDefaultInstance()">getDefaultInstance</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#getDefaultInstanceForType()">getDefaultInstanceForType</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.Builder.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.Builder.html#getDefaultInstanceForType()">getDefaultInstanceForType</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">ClusterStatusProtos.ClusterStatusOrBuilder.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ClusterStatusProtos.ClusterStatusOrBuilder.html#getHbaseVersion()">getHbaseVersion</a></strong>()</code>
<div class="block"><code>optional .HBaseVersionFileContent hbase_version = 1;</code></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">ClusterStatusProtos.ClusterStatus.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ClusterStatusProtos.ClusterStatus.html#getHbaseVersion()">getHbaseVersion</a></strong>()</code>
<div class="block"><code>optional .HBaseVersionFileContent hbase_version = 1;</code></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">ClusterStatusProtos.ClusterStatus.Builder.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ClusterStatusProtos.ClusterStatus.Builder.html#getHbaseVersion()">getHbaseVersion</a></strong>()</code>
<div class="block"><code>optional .HBaseVersionFileContent hbase_version = 1;</code></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#parseDelimitedFrom(java.io.InputStream)">parseDelimitedFrom</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</a> input)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#parseDelimitedFrom(java.io.InputStream,%20com.google.protobuf.ExtensionRegistryLite)">parseDelimitedFrom</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</a> input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#parseFrom(byte[])">parseFrom</a></strong>(byte[] data)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#parseFrom(byte[],%20com.google.protobuf.ExtensionRegistryLite)">parseFrom</a></strong>(byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#parseFrom(com.google.protobuf.ByteString)">parseFrom</a></strong>(com.google.protobuf.ByteString data)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#parseFrom(com.google.protobuf.ByteString,%20com.google.protobuf.ExtensionRegistryLite)">parseFrom</a></strong>(com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#parseFrom(com.google.protobuf.CodedInputStream)">parseFrom</a></strong>(com.google.protobuf.CodedInputStream input)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#parseFrom(com.google.protobuf.CodedInputStream,%20com.google.protobuf.ExtensionRegistryLite)">parseFrom</a></strong>(com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#parseFrom(java.io.InputStream)">parseFrom</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</a> input)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#parseFrom(java.io.InputStream,%20com.google.protobuf.ExtensionRegistryLite)">parseFrom</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</a> input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.protobuf.generated</a> that return types with arguments of type <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</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>com.google.protobuf.Parser<<a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a>></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#getParserForType()">getParserForType</a></strong>()</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.protobuf.generated</a> with parameters of type <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</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="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.Builder.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent.Builder</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.Builder.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.Builder.html#mergeFrom(org.apache.hadoop.hbase.protobuf.generated.FSProtos.HBaseVersionFileContent)">mergeFrom</a></strong>(<a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a> other)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ClusterStatusProtos.ClusterStatus.Builder.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ClusterStatusProtos.ClusterStatus.Builder</a></code></td>
<td class="colLast"><span class="strong">ClusterStatusProtos.ClusterStatus.Builder.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ClusterStatusProtos.ClusterStatus.Builder.html#mergeHbaseVersion(org.apache.hadoop.hbase.protobuf.generated.FSProtos.HBaseVersionFileContent)">mergeHbaseVersion</a></strong>(<a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a> value)</code>
<div class="block"><code>optional .HBaseVersionFileContent hbase_version = 1;</code></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.Builder.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent.Builder</a></code></td>
<td class="colLast"><span class="strong">FSProtos.HBaseVersionFileContent.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html#newBuilder(org.apache.hadoop.hbase.protobuf.generated.FSProtos.HBaseVersionFileContent)">newBuilder</a></strong>(<a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a> prototype)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ClusterStatusProtos.ClusterStatus.Builder.html" title="class in org.apache.hadoop.hbase.protobuf.generated">ClusterStatusProtos.ClusterStatus.Builder</a></code></td>
<td class="colLast"><span class="strong">ClusterStatusProtos.ClusterStatus.Builder.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/ClusterStatusProtos.ClusterStatus.Builder.html#setHbaseVersion(org.apache.hadoop.hbase.protobuf.generated.FSProtos.HBaseVersionFileContent)">setHbaseVersion</a></strong>(<a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">FSProtos.HBaseVersionFileContent</a> value)</code>
<div class="block"><code>optional .HBaseVersionFileContent hbase_version = 1;</code></div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/apache/hadoop/hbase/protobuf/generated/FSProtos.HBaseVersionFileContent.html" title="class in org.apache.hadoop.hbase.protobuf.generated">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/apache/hadoop/hbase/protobuf/generated/class-use/FSProtos.HBaseVersionFileContent.html" target="_top">Frames</a></li>
<li><a href="FSProtos.HBaseVersionFileContent.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 © 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
| gsoundar/mambo-ec2-deploy | packages/hbase-0.98.7-hadoop2/docs/devapidocs/org/apache/hadoop/hbase/protobuf/generated/class-use/FSProtos.HBaseVersionFileContent.html | HTML | apache-2.0 | 25,732 |
<!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_45) on Tue Dec 01 21:32:14 JST 2015 -->
<title>Uses of Class picklesjar.pickledbeans.ut.jp.then.期待値と合致するかを確認する</title>
<meta name="date" content="2015-12-01">
<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 picklesjar.pickledbeans.ut.jp.then.\u671F\u5F85\u5024\u3068\u5408\u81F4\u3059\u308B\u304B\u3092\u78BA\u8A8D\u3059\u308B";
}
}
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="../../../../../../picklesjar/pickledbeans/ut/jp/then/%E6%9C%9F%E5%BE%85%E5%80%A4%E3%81%A8%E5%90%88%E8%87%B4%E3%81%99%E3%82%8B%E3%81%8B%E3%82%92%E7%A2%BA%E8%AA%8D%E3%81%99%E3%82%8B.html" title="class in picklesjar.pickledbeans.ut.jp.then">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?picklesjar/pickledbeans/ut/jp/then/class-use/%E6%9C%9F%E5%BE%85%E5%80%A4%E3%81%A8%E5%90%88%E8%87%B4%E3%81%99%E3%82%8B%E3%81%8B%E3%82%92%E7%A2%BA%E8%AA%8D%E3%81%99%E3%82%8B.html" target="_top">Frames</a></li>
<li><a href="%E6%9C%9F%E5%BE%85%E5%80%A4%E3%81%A8%E5%90%88%E8%87%B4%E3%81%99%E3%82%8B%E3%81%8B%E3%82%92%E7%A2%BA%E8%AA%8D%E3%81%99%E3%82%8B.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 picklesjar.pickledbeans.ut.jp.then.期待値と合致するかを確認する" class="title">Uses of Class<br>picklesjar.pickledbeans.ut.jp.then.期待値と合致するかを確認する</h2>
</div>
<div class="classUseContainer">No usage of picklesjar.pickledbeans.ut.jp.then.期待値と合致するかを確認する</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="../../../../../../picklesjar/pickledbeans/ut/jp/then/%E6%9C%9F%E5%BE%85%E5%80%A4%E3%81%A8%E5%90%88%E8%87%B4%E3%81%99%E3%82%8B%E3%81%8B%E3%82%92%E7%A2%BA%E8%AA%8D%E3%81%99%E3%82%8B.html" title="class in picklesjar.pickledbeans.ut.jp.then">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?picklesjar/pickledbeans/ut/jp/then/class-use/%E6%9C%9F%E5%BE%85%E5%80%A4%E3%81%A8%E5%90%88%E8%87%B4%E3%81%99%E3%82%8B%E3%81%8B%E3%82%92%E7%A2%BA%E8%AA%8D%E3%81%99%E3%82%8B.html" target="_top">Frames</a></li>
<li><a href="%E6%9C%9F%E5%BE%85%E5%80%A4%E3%81%A8%E5%90%88%E8%87%B4%E3%81%99%E3%82%8B%E3%81%8B%E3%82%92%E7%A2%BA%E8%AA%8D%E3%81%99%E3%82%8B.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>
| PicklesJar/documents | javadoc/picklesjar/pickledbeans/ut/jp/then/class-use/期待値と合致するかを確認する.html | HTML | apache-2.0 | 5,421 |
<html>
<head>
<meta name="layout" content="_layout2/base-mapping-jpa.html"/>
<meta name="bread3" content="@MappedSuperclass" href="/docs/mapping/mapped-superclass"/>
<#assign mappedSuperclass = "true">
</head>
<body>
<h2>MappedSuperclass</h2>
<p>
We use <code>@MappedSuperclass</code> to have a bean that holds common properties. For example:
</p>
```java
@MappedSuperclass
public abstract class BaseDomain {
@Id
long id;
@Version
long version;
@WhenCreated
Instant whenCreated;
@WhenCreated
Instant whenModified;
// plus getters and setters ...
}
```
<p>
We then create <code>entity</code> beans that extend the <code>MappedSuperclass</code> bean.
</p>
```java
@Entity
public class Customer extends BaseDomain {
String name;
@ManyToOne
Address billingAddress;
...
}
```
</body>
</html>
| ebean-orm/avaje-ebeanorm-website | docs/mapping/jpa/mapped-superclass.html | HTML | apache-2.0 | 834 |
<!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_151) on Mon Jun 22 05:15:31 MST 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildfly.swarm.config.modcluster.proxy.ConfigurationSslSupplier (BOM: * : All 2.7.1.Final-SNAPSHOT API)</title>
<meta name="date" content="2020-06-22">
<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 org.wildfly.swarm.config.modcluster.proxy.ConfigurationSslSupplier (BOM: * : All 2.7.1.Final-SNAPSHOT API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/wildfly/swarm/config/modcluster/proxy/ConfigurationSslSupplier.html" title="interface in org.wildfly.swarm.config.modcluster.proxy">Class</a></li>
<li class="navBarCell1Rev">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><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.7.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/wildfly/swarm/config/modcluster/proxy/class-use/ConfigurationSslSupplier.html" target="_top">Frames</a></li>
<li><a href="ConfigurationSslSupplier.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Interface org.wildfly.swarm.config.modcluster.proxy.ConfigurationSslSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.modcluster.proxy.ConfigurationSslSupplier</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="../../../../../../../org/wildfly/swarm/config/modcluster/proxy/ConfigurationSslSupplier.html" title="interface in org.wildfly.swarm.config.modcluster.proxy">ConfigurationSslSupplier</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="#org.wildfly.swarm.config.modcluster">org.wildfly.swarm.config.modcluster</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config.modcluster">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/modcluster/proxy/ConfigurationSslSupplier.html" title="interface in org.wildfly.swarm.config.modcluster.proxy">ConfigurationSslSupplier</a> in <a href="../../../../../../../org/wildfly/swarm/config/modcluster/package-summary.html">org.wildfly.swarm.config.modcluster</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="../../../../../../../org/wildfly/swarm/config/modcluster/package-summary.html">org.wildfly.swarm.config.modcluster</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/modcluster/proxy/ConfigurationSslSupplier.html" title="interface in org.wildfly.swarm.config.modcluster.proxy">ConfigurationSslSupplier</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="../../../../../../../org/wildfly/swarm/config/modcluster/Proxy.html" title="type parameter in Proxy">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">Proxy.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/modcluster/Proxy.html#configurationSsl-org.wildfly.swarm.config.modcluster.proxy.ConfigurationSslSupplier-">configurationSsl</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/modcluster/proxy/ConfigurationSslSupplier.html" title="interface in org.wildfly.swarm.config.modcluster.proxy">ConfigurationSslSupplier</a> supplier)</code>
<div class="block">Configuration and runtime operations for mod_cluster subsystem.</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="../../../../../../../org/wildfly/swarm/config/modcluster/proxy/ConfigurationSslSupplier.html" title="interface in org.wildfly.swarm.config.modcluster.proxy">Class</a></li>
<li class="navBarCell1Rev">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><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.7.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/wildfly/swarm/config/modcluster/proxy/class-use/ConfigurationSslSupplier.html" target="_top">Frames</a></li>
<li><a href="ConfigurationSslSupplier.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 © 2020 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
| wildfly-swarm/wildfly-swarm-javadocs | 2.7.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/modcluster/proxy/class-use/ConfigurationSslSupplier.html | HTML | apache-2.0 | 7,940 |
<!DOCTYPE html>
<html itemscope lang="en-us">
<head><meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><meta name="generator" content="Hugo 0.57.2" />
<meta property="og:title" content="Andrew Clay Shafer" />
<meta name="twitter:title" content="Andrew Clay Shafer"/>
<meta itemprop="name" content="Andrew Clay Shafer"><meta property="og:description" content="just remember, I tried to tell you" />
<meta name="twitter:description" content="just remember, I tried to tell you" />
<meta itemprop="description" content="just remember, I tried to tell you"><meta name="twitter:site" content="@devopsdays">
<meta property="og:type" content="speaker" />
<meta property="og:url" content="/events/2018-chicago/speakers/andrew-clay-shafer/" /><meta name="twitter:creator" content="@devopsdayschi" /><meta name="twitter:label1" value="Event" />
<meta name="twitter:data1" value="devopsdays Chicago 2018" /><meta name="twitter:label2" value="Dates" />
<meta name="twitter:data2" value="August 28 - 29, 2018" /><meta property="og:image" content="https://www.devopsdays.org/img/sharing.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://www.devopsdays.org/img/sharing.jpg" />
<meta itemprop="image" content="https://www.devopsdays.org/img/sharing.jpg" />
<meta property="fb:app_id" content="1904065206497317" /><meta itemprop="wordCount" content="7">
<title>Andrew Clay Shafer - devopsdays Chicago 2018
</title>
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-9713393-1', 'auto');
ga('send', 'pageview');
ga('create', 'UA-74738648-1', 'auto', 'clientTracker');
ga('clientTracker.send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<link href="/css/site.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700" rel="stylesheet"><link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<link href="/events/index.xml" rel="alternate" type="application/rss+xml" title="DevOpsDays" />
<link href="/events/index.xml" rel="feed" type="application/rss+xml" title="DevOpsDays" />
<script src=/js/devopsdays-min.js></script></head>
<body lang="">
<nav class="navbar navbar-expand-md navbar-light">
<a class="navbar-brand" href="/">
<img src="/img/devopsdays-brain.png" height="30" class="d-inline-block align-top" alt="devopsdays Logo">
DevOpsDays
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto"><li class="nav-item global-navigation"><a class = "nav-link" href="/events">events</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/blog">blog</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/sponsor">sponsor</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/speaking">speaking</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/organizing">organizing</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/about">about</a></li></ul>
</div>
</nav>
<nav class="navbar event-navigation navbar-expand-md navbar-light">
<a href="/events/2018-chicago" class="nav-link">Chicago</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar2">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbar2">
<ul class="navbar-nav"><li class="nav-item active">
<a class="nav-link" href="/events/2018-chicago/location">location</a>
</li><li class="nav-item active">
<a class="nav-link" href="https://devopsdayschi2018.eventbrite.com/?aff=devopsdaysorg">registration</a>
</li><li class="nav-item active">
<a class="nav-link" href="/events/2018-chicago/program">program</a>
</li><li class="nav-item active">
<a class="nav-link" href="/events/2018-chicago/speakers">speakers</a>
</li><li class="nav-item active">
<a class="nav-link" href="/events/2018-chicago/sponsor">sponsor</a>
</li><li class="nav-item active">
<a class="nav-link" href="/events/2018-chicago/volunteer">volunteer</a>
</li><li class="nav-item active">
<a class="nav-link" href="/events/2018-chicago/contact">contact</a>
</li><li class="nav-item active">
<a class="nav-link" href="/events/2018-chicago/conduct">conduct</a>
</li></ul>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-md-12"><div class = "row">
<div class = "col-md-12 offset-md-1">
<h2 class="speaker-page">Andrew Clay Shafer</h2>
</div>
</div>
<div class = "row">
<div class = "col-md-4 offset-md-1">
<span class="speaker-page content-text">
<p>just remember, I tried to tell you</p>
</span>
<div class="speaker-bio-talks">
<h3>Andrew Clay Shafer at Chicago 2018</h3>
<ul class="list-group">
<a href = "https://www.devopsdays.org/events/2018-chicago/program/andrew-clay-shafer/" class= "list-group-item list-group-item-action">elemental devops</a>
</ul>
</div>
</div>
<div class = "col-md-3 offset-md-1"><img src = "/events/2018-chicago/speakers/andrew-clay-shafer.png" class="speaker-page" alt="Andrew Clay Shafer"/><br /><a href = "https://twitter.com/littleidea"><i class="fa fa-twitter fa-2x" aria-hidden="true"></i></a></div>
</div>
<div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Gold Sponsors</h4></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.morpheusdata.com"><img src = "/img/sponsors/morpheus_data.png" alt = "Morpheus Data" title = "Morpheus Data" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.servercentral.com/"><img src = "/img/sponsors/servercentral.png" alt = "ServerCentral" title = "ServerCentral" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://chef.io"><img src = "/img/sponsors/chef.png" alt = "Chef Software, Inc" title = "Chef Software, Inc" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.pagerduty.com/"><img src = "/img/sponsors/pagerduty.png" alt = "PagerDuty" title = "PagerDuty" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.dynatrace.com/"><img src = "/img/sponsors/dynatrace.png" alt = "Dynatrace" title = "Dynatrace" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.xmatters.com/"><img src = "/img/sponsors/xmatters.png" alt = "xMatters, Inc" title = "xMatters, Inc" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.datadoghq.com"><img src = "/img/sponsors/datadog.png" alt = "Datadog" title = "Datadog" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.herzum.com/"><img src = "/img/sponsors/herzum.png" alt = "Herzum" title = "Herzum" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.redhat.com"><img src = "/img/sponsors/redhat-before-20190528.png" alt = "Red Hat, Inc" title = "Red Hat, Inc" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.launchdarkly.com/"><img src = "/img/sponsors/launch-darkly.png" alt = "launch-darkly" title = "launch-darkly" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.sumologic.com/"><img src = "/img/sponsors/sumologic-before-20181203.png" alt = "SumoLogic" title = "SumoLogic" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.instana.com"><img src = "/img/sponsors/instana-before-20200127.png" alt = "Instana" title = "Instana" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.appdynamics.com/"><img src = "/img/sponsors/appdynamics-before-20190121.png" alt = "AppDynamics" title = "AppDynamics" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.servicenow.com/"><img src = "/img/sponsors/servicenow.png" alt = "ServiceNow" title = "ServiceNow" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.confluent.io/"><img src = "/img/sponsors/confluent.png" alt = "Confluent" title = "Confluent" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.splunk.com/"><img src = "/img/sponsors/splunk.png" alt = "Splunk" title = "Splunk" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://signalfx.com"><img src = "/img/sponsors/signalfx.png" alt = "SignalFX" title = "SignalFX" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.humio.com"><img src = "/img/sponsors/humio.png" alt = "Humio" title = "Humio" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.allstate.com"><img src = "/img/sponsors/allstate.png" alt = "Allstate" title = "Allstate" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://lightstep.com/"><img src = "/img/sponsors/lightstep-before-20200726.png" alt = "LightStep" title = "LightStep" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://overops.com/"><img src = "/img/sponsors/overops.png" alt = "OverOps" title = "OverOps" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.morningstar.com/"><img src = "/img/sponsors/morningstar.png" alt = "Morningstar" title = "Morningstar" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Silver Sponsors</h4></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.influxdata.com/"><img src = "/img/sponsors/influxdata.png" alt = "InfluxData" title = "InfluxData" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.signal.co/"><img src = "/img/sponsors/signal.png" alt = "Signal" title = "Signal" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://mesosphere.com/"><img src = "/img/sponsors/mesosphere.png" alt = "Mesosphere" title = "Mesosphere" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://kaizenops.io"><img src = "/img/sponsors/kaizenops-before-20181008.png" alt = "kaizenOps" title = "kaizenOps" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://rancher.com/"><img src = "/img/sponsors/rancher-before-20190812.png" alt = "rancher" title = "rancher" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.cmegroup.com"><img src = "/img/sponsors/cmegroup.png" alt = "CME Group" title = "CME Group" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.netapp.com/us/"><img src = "/img/sponsors/netapp.png" alt = "NetApp" title = "NetApp" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.activecampaign.com/"><img src = "/img/sponsors/activecampaign.png" alt = "ActiveCampaign" title = "ActiveCampaign" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.onemainfinancial.com/"><img src = "/img/sponsors/onemainfinancial.png" alt = "One Main Financial" title = "One Main Financial" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.isg-one.com/"><img src = "/img/sponsors/isg-one.png" alt = "ISG" title = "ISG" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.hyatt.com/"><img src = "/img/sponsors/hyatt.png" alt = "Hyatt Hotels Corporation" title = "Hyatt Hotels Corporation" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.nvisia.com/"><img src = "/img/sponsors/nvisia.png" alt = "NVISIA" title = "NVISIA" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://corptax.com/"><img src = "/img/sponsors/corptax.png" alt = "CSC Corptax" title = "CSC Corptax" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.cloudbolt.io"><img src = "/img/sponsors/cloudbolt.png" alt = "CloudBolt" title = "CloudBolt" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://saucelabs.com"><img src = "/img/sponsors/saucelabs.png" alt = "saucelabs" title = "saucelabs" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.github.com"><img src = "/img/sponsors/github.png" alt = "Github" title = "Github" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Bronze Sponsors</h4><a href = "/events/2018-chicago/sponsor" class="sponsor-cta"><i>Join as Bronze Sponsor!</i>
</a></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.mongodb.com"><img src = "/img/sponsors/mongodb.png" alt = "mongoDB" title = "mongoDB" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.coyote.com/"><img src = "/img/sponsors/coyote.png" alt = "Coyote Logistics" title = "Coyote Logistics" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Evening Event Sponsors</h4></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.ca.com/us.html"><img src = "/img/sponsors/ca.png" alt = "ca" title = "ca" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Lanyard Sponsors</h4></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.confluent.io/"><img src = "/img/sponsors/confluent.png" alt = "Confluent" title = "Confluent" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Meal Sponsors</h4><a href = "/events/2018-chicago/sponsor" class="sponsor-cta"><i>Join as Meal Sponsor!</i>
</a></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.hashicorp.com/"><img src = "/img/sponsors/hashicorp.png" alt = "Hashicorp" title = "Hashicorp" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.discover.com/"><img src = "/img/sponsors/discover.png" alt = "Discover" title = "Discover" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.microsoft.com/"><img src = "/img/sponsors/microsoft.png" alt = "Microsoft" title = "Microsoft" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.tempus.com/careers.html"><img src = "/img/sponsors/tempus.png" alt = "Tempus" title = "Tempus" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Video Sponsors</h4></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://spantree.net/"><img src = "/img/sponsors/spantree.png" alt = "Spantree" title = "Spantree" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Live Transcription Sponsors</h4></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://kaizenops.io"><img src = "/img/sponsors/kaizenops-before-20181008.png" alt = "kaizenOps" title = "kaizenOps" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Transportation Sponsors</h4></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.allstate.com"><img src = "/img/sponsors/allstate.png" alt = "Allstate" title = "Allstate" class="img-fluid"></a>
</div></div><div class="row cta-row">
<div class="col-md-12"><h4 class="sponsor-cta">Community Sponsors</h4><a href = "/events/2018-chicago/sponsor" class="sponsor-cta"><i>Join as Community Sponsor!</i>
</a></div>
</div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.arresteddevops.com"><img src = "/img/sponsors/arresteddevops.png" alt = "Arrested DevOps" title = "Arrested DevOps" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.cwdevs.com/"><img src = "/img/sponsors/cwdevs.png" alt = "Chicago Women Developers" title = "Chicago Women Developers" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.blacksintechnology.net"><img src = "/img/sponsors/blacksintechnology.png" alt = "Blacks in Technology" title = "Blacks in Technology" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://gdichicago.com/"><img src = "/img/sponsors/gdichicago.png" alt = "Girl Develop It Chicago" title = "Girl Develop It Chicago" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.womenwhocode.com/chicago"><img src = "/img/sponsors/wwcchicago.png" alt = "Women Who Code Chicago" title = "Women Who Code Chicago" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "http://www.oreilly.com"><img src = "/img/sponsors/oreilly-before-20190725.png" alt = "O'Reilly" title = "O'Reilly" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://chicago.chicktech.org/"><img src = "/img/sponsors/chicktech.png" alt = "ChickTech Chicago" title = "ChickTech Chicago" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://chicagotechevents.com/"><img src = "/img/sponsors/chicagotechevents.png" alt = "Chicago Tech Events" title = "Chicago Tech Events" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.linkedin.com/groups/12035722/profile"><img src = "/img/sponsors/chicago-innovation-roundtable.png" alt = "Chicago Innovation Roundtable" title = "Chicago Innovation Roundtable" class="img-fluid"></a>
</div><div class = "col-lg-1 col-md-2 col-4">
<a href = "https://www.digitalocean.com/"><img src = "/img/sponsors/digitalocean.png" alt = "2017-digitalocean" title = "2017-digitalocean" class="img-fluid"></a>
</div></div><br />
</div></div>
</div>
<nav class="navbar bottom navbar-light footer-nav-row" style="background-color: #bfbfc1;">
<div class = "row">
<div class = "col-md-12 footer-nav-background">
<div class = "row">
<div class = "col-md-6 col-lg-3 footer-nav-col">
<h3 class="footer-nav">@DEVOPSDAYS</h3>
<div>
<a class="twitter-timeline" data-dnt="true" href="https://twitter.com/devopsdays/lists/devopsdays" data-chrome="noheader" height="440"></a>
<script>
! function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0],
p = /^http:/.test(d.location) ? 'http' : 'https';
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.src = p + "://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
}
}(document, "script", "twitter-wjs");
</script>
</div>
</div>
<div class="col-md-6 col-lg-3 footer-nav-col footer-content">
<h3 class="footer-nav">BLOG</h3><a href = "https://www.devopsdays.org/blog/2019/05/10/10-years-of-devopsdays/"><h1 class = "footer-heading">10 years of devopsdays</h1></a><h2 class="footer-heading">by Kris Buytaert - 10 May, 2019</h2><p class="footer-content">It’s hard to believe but it is almost 10 years ago since #devopsdays happened for the first time in Gent. Back then there were almost 70 of us talking about topics that were of interest to both Operations and Development, we were exchanging our ideas and experiences `on how we were improving the quality of software delivery.
Our ideas got started on the crossroads of Open Source, Agile and early Cloud Adoption.</p><a href = "https://www.devopsdays.org/blog/"><h1 class = "footer-heading">Blogs</h1></a><h2 class="footer-heading">10 May, 2019</h2><p class="footer-content"></p><a href="https://www.devopsdays.org/blog/index.xml">Feed</a>
</div>
<div class="col-md-6 col-lg-3 footer-nav-col">
<h3 class="footer-nav">CFP OPEN</h3><a href = "/events/2019-campinas" class = "footer-content">Campinas</a><br /><a href = "/events/2019-macapa" class = "footer-content">Macapá</a><br /><a href = "/events/2019-shanghai" class = "footer-content">Shanghai</a><br /><a href = "/events/2019-recife" class = "footer-content">Recife</a><br /><a href = "/events/2020-charlotte" class = "footer-content">Charlotte</a><br /><a href = "/events/2020-prague" class = "footer-content">Prague</a><br /><a href = "/events/2020-tokyo" class = "footer-content">Tokyo</a><br /><a href = "/events/2020-salt-lake-city" class = "footer-content">Salt Lake City</a><br />
<br />Propose a talk at an event near you!<br />
</div>
<div class="col-md-6 col-lg-3 footer-nav-col">
<h3 class="footer-nav">About</h3>
devopsdays is a worldwide community conference series for anyone interested in IT improvement.<br /><br />
<a href="/about/" class = "footer-content">About devopsdays</a><br />
<a href="/privacy/" class = "footer-content">Privacy Policy</a><br />
<a href="/conduct/" class = "footer-content">Code of Conduct</a>
<br />
<br />
<a href="https://www.netlify.com">
<img src="/img/netlify-light.png" alt="Deploys by Netlify">
</a>
</div>
</div>
</div>
</div>
</nav>
<script>
$(document).ready(function () {
$("#share").jsSocials({
shares: ["email", {share: "twitter", via: 'devopsdayschi'}, "facebook", "linkedin"],
text: 'devopsdays Chicago - 2018',
showLabel: false,
showCount: false
});
});
</script>
</body>
</html>
| gomex/devopsdays-web | static/events/2018-chicago/speakers/andrew-clay-shafer/index.html | HTML | apache-2.0 | 26,616 |
<!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.12"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>fh-dotnet-sdk: packages/aerogear-windows-push.0.1.2/src/aerogear-windows-push/PushNotification.cs 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="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</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">fh-dotnet-sdk
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.12 -->
<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 -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('_push_notification_8cs.html','');});
</script>
<div id="doc-content">
<!-- 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="header">
<div class="summary">
<a href="#nested-classes">Classes</a> |
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<div class="title">PushNotification.cs File Reference</div> </div>
</div><!--header-->
<div class="contents">
<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="class_aero_gear_1_1_push_1_1_push_notification.html">AeroGear.Push.PushNotification</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Model object for the notification with the message and the user-data. <a href="class_aero_gear_1_1_push_1_1_push_notification.html#details">More...</a><br /></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:namespace_aero_gear_1_1_push"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aero_gear_1_1_push.html">AeroGear.Push</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="dir_93501a11e921083efbd154e0cdff5f10.html">packages</a></li><li class="navelem"><a class="el" href="dir_58970700078fc862b2b61f81761fc5ad.html">aerogear-windows-push.0.1.2</a></li><li class="navelem"><a class="el" href="dir_b26a54c1ca2da600aacdeb2e610fbf55.html">src</a></li><li class="navelem"><a class="el" href="dir_aeef0680aaf64cc4fe70490ac300e5e0.html">aerogear-windows-push</a></li><li class="navelem"><a class="el" href="_push_notification_8cs.html">PushNotification.cs</a></li>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li>
</ul>
</div>
</body>
</html>
| feedhenry/fh-dotnet-sdk | Documentations/html/_push_notification_8cs.html | HTML | apache-2.0 | 5,362 |
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>mPurpose - Multipurpose Feature Rich Bootstrap Template</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/icomoon-social.css">
<!--<link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">-->
<link rel="stylesheet" href="css/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="css/leaflet.ie.css" />
<![endif]-->
<link rel="stylesheet" href="css/main.css">
<script src="js/modernizr-2.6.2-respond-1.1.0.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<!-- Navigation & Logo-->
<div class="mainmenu-wrapper">
<div class="container">
<div class="menuextras">
<div class="extras">
<ul>
<li class="shopping-cart-items"><i class="glyphicon glyphicon-shopping-cart icon-white"></i> <a href="page-shopping-cart.html"><b>3 items</b></a></li>
<li>
<div class="dropdown choose-country">
<a class="#" data-toggle="dropdown" href="#"><img src="img/flags/gb.png" alt="Great Britain"> UK</a>
<ul class="dropdown-menu" role="menu">
<li role="menuitem"><a href="#"><img src="img/flags/us.png" alt="United States"> US</a></li>
<li role="menuitem"><a href="#"><img src="img/flags/de.png" alt="Germany"> DE</a></li>
<li role="menuitem"><a href="#"><img src="img/flags/es.png" alt="Spain"> ES</a></li>
</ul>
</div>
</li>
<li><a href="page-login.html">Login</a></li>
</ul>
</div>
</div>
<nav id="mainmenu" class="mainmenu">
<ul>
<li class="logo-wrapper"><a href="index.html"><img src="img/mPurpose-logo.png" alt="Multipurpose Twitter Bootstrap Template"></a></li>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="features.html">Features</a>
</li>
<li class="has-submenu active">
<a href="#">Pages +</a>
<div class="mainmenu-submenu">
<div class="mainmenu-submenu-inner">
<div>
<h4>Homepage</h4>
<ul>
<li><a href="index.html">Homepage (Sample 1)</a></li>
<li><a href="page-homepage-sample.html">Homepage (Sample 2)</a></li>
</ul>
<h4>Services & Pricing</h4>
<ul>
<li><a href="page-services-1-column.html">Services/Features (Rows)</a></li>
<li><a href="page-services-3-columns.html">Services/Features (3 Columns)</a></li>
<li><a href="page-services-4-columns.html">Services/Features (4 Columns)</a></li>
<li><a href="page-pricing.html">Pricing Table</a></li>
</ul>
<h4>Team & Open Vacancies</h4>
<ul>
<li><a href="page-team.html">Our Team</a></li>
<li><a href="page-vacancies.html">Open Vacancies (List)</a></li>
<li><a href="page-job-details.html">Open Vacancies (Job Details)</a></li>
</ul>
</div>
<div>
<h4>Our Work (Portfolio)</h4>
<ul>
<li><a href="page-portfolio-2-columns-1.html">Portfolio (2 Columns, Option 1)</a></li>
<li><a href="page-portfolio-2-columns-2.html">Portfolio (2 Columns, Option 2)</a></li>
<li><a href="page-portfolio-3-columns-1.html">Portfolio (3 Columns, Option 1)</a></li>
<li><a href="page-portfolio-3-columns-2.html">Portfolio (3 Columns, Option 2)</a></li>
<li><a href="page-portfolio-item.html">Portfolio Item (Project) Description</a></li>
</ul>
<h4>General Pages</h4>
<ul>
<li><a href="page-about-us.html">About Us</a></li>
<li><a href="page-contact-us.html">Contact Us</a></li>
<li><a href="page-faq.html">Frequently Asked Questions</a></li>
<li><a href="page-testimonials-clients.html">Testimonials & Clients</a></li>
<li><a href="page-events.html">Events</a></li>
<li><a href="page-404.html">404 Page</a></li>
<li><a href="page-sitemap.html">Sitemap</a></li>
<li><a href="page-login.html">Login</a></li>
<li><a href="page-register.html">Register</a></li>
<li><a href="page-password-reset.html">Password Reset</a></li>
<li><a href="page-terms-privacy.html">Terms & Privacy</a></li>
<li><a href="page-coming-soon.html">Coming Soon</a></li>
</ul>
</div>
<div>
<h4>eShop</h4>
<ul>
<li><a href="page-products-3-columns.html">Products listing (3 Columns)</a></li>
<li><a href="page-products-4-columns.html">Products listing (4 Columns)</a></li>
<li><a href="page-products-slider.html">Products Slider</a></li>
<li><a href="page-product-details.html">Product Details</a></li>
<li><a href="page-shopping-cart.html">Shopping Cart</a></li>
</ul>
<h4>Blog</h4>
<ul>
<li><a href="page-blog-posts.html">Blog Posts (List)</a></li>
<li><a href="page-blog-post-right-sidebar.html">Blog Single Post (Right Sidebar)</a></li>
<li><a href="page-blog-post-left-sidebar.html">Blog Single Post (Left Sidebar)</a></li>
<li><a href="page-news.html">Latest & Featured News</a></li>
</ul>
</div>
</div><!-- /mainmenu-submenu-inner -->
</div><!-- /mainmenu-submenu -->
</li>
<li>
<a href="credits.html">Credits</a>
</li>
</ul>
</nav>
</div>
</div>
<!-- Page Title -->
<div class="section section-breadcrumbs">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Blog Post (Left Sidebar)</h1>
</div>
</div>
</div>
</div>
<div class="section">
<div class="container">
<div class="row">
<!-- Sidebar -->
<div class="col-sm-4 blog-sidebar">
<h4>Search our Blog</h4>
<form>
<div class="input-group">
<input class="form-control input-md" id="appendedInputButtons" type="text">
<span class="input-group-btn">
<button class="btn btn-md" type="button">Search</button>
</span>
</div>
</form>
<h4>Recent Posts</h4>
<ul class="recent-posts">
<li><a href="#">Lorem ipsum dolor sit amet</a></li>
<li><a href="#">Sed sit amet metus sit</a></li>
<li><a href="#">Nunc et diam volutpat tellus ultrices</a></li>
<li><a href="#">Quisque sollicitudin cursus felis</a></li>
</ul>
<h4>Categories</h4>
<ul class="blog-categories">
<li><a href="#">Lorem ipsum</a></li>
<li><a href="#">Sed sit amet metus</a></li>
<li><a href="#">Nunc et diam </a></li>
<li><a href="#">Quisque</a></li>
</ul>
<h4>Archive</h4>
<ul>
<li><a href="#">January 2013</a></li>
<li><a href="#">February 2013</a></li>
<li><a href="#">March 2013</a></li>
<li><a href="#">April 2013</a></li>
<li><a href="#">May 2013</a></li>
</ul>
</div>
<!-- End Sidebar -->
<div class="col-sm-8">
<div class="blog-post blog-single-post">
<div class="single-post-title">
<h3>Post Title</h3>
</div>
<div class="single-post-info">
<i class="glyphicon glyphicon-time"></i>30 JAN, 2013 <a href="#" title="Show Comments"><i class="glyphicon glyphicon-comment"></i>11</a>
</div>
<div class="single-post-image">
<img src="img/blog-large.jpg" alt="Post Title">
</div>
<div class="single-post-content">
<h3>Lorem ipsum dolor sit amet</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse mattis, nulla id pretium malesuada, dui est laoreet risus, ac rhoncus eros diam id odio. Duis elementum ligula eu ipsum condimentum accumsan.
</p>
<p>
Vivamus euismod elit ac libero facilisis tristique. Duis mollis non ligula vel tincidunt. Nulla consectetur libero id nunc ornare, vel vulputate tellus mollis. Sed quis nulla magna. Integer rhoncus sem quis ultrices lobortis. Maecenas tempus nulla quis dolor vulputate egestas. Phasellus cursus tortor quis massa faucibus fermentum vel sit amet tortor. Phasellus vehicula lorem et tortor luctus, a dignissim lacus tempor. Aliquam volutpat molestie metus sit amet aliquam. Duis vestibulum quam tortor, sed ultrices orci sagittis nec.
</p>
<h3>Sed sit amet metus sit</h3>
<p>
Proin fermentum, purus id eleifend molestie, nisl arcu rutrum tellus, a luctus erat tortor ut augue. Vivamus feugiat nisi sit amet dignissim fermentum. Duis elementum mattis lacinia. Sed sit amet metus sit amet leo semper feugiat. Nulla vel orci nec neque interdum facilisis egestas vitae lorem. Phasellus elit ante, posuere at augue quis, porta vestibulum magna. Nullam non mattis odio. Donec eget velit leo. Nunc et diam volutpat tellus ultrices fringilla eu a neque. Integer lectus nunc, vestibulum a turpis vitae, malesuada lacinia nibh. In sit amet leo ut turpis convallis bibendum. Nullam nec purus sapien. Quisque sollicitudin cursus felis sit amet aliquam.
</p>
</div>
<!-- Comments -->
<div class="post-coments">
<h4>Comments (53)</h4>
<ul class="post-comments">
<li>
<div class="comment-wrapper">
<div class="comment-author"><img src="img/user1.jpg" alt="User Name"> User Name</div>
<p>
Morbi eleifend congue elit nec sagittis. Praesent aliquam lobortis tellus, nec consequat massa ornare vitae. Ut fermentum justo vel venenatis eleifend. Fusce id magna eros. Interdum et malesuada fames ac ante ipsum primis in faucibus.
</p>
<!-- Comment Controls -->
<div class="comment-actions">
<span class="comment-date">June 10th, 2013 3:16 pm</span>
<a href="#" data-toggle="tooltip" data-original-title="Vote Up" class="show-tooltip"><i class="glyphicon glyphicon-thumbs-up"></i></a>
<a href="#" data-toggle="tooltip" data-original-title="Vote Down" class="show-tooltip"><i class="glyphicon glyphicon-thumbs-down"></i></a>
<span class="label label-success">+8</span>
<a href="#" class="btn btn-micro btn-grey comment-reply-btn"><i class="glyphicon glyphicon-share-alt"></i> Reply</a>
</div>
</div>
</li>
<li>
<ul>
<li>
<div class="comment-wrapper">
<div class="comment-author"><img src="img/user2.jpg" alt="User Name"> User Name</div>
<p>
Vivamus euismod elit ac libero facilisis tristique. Duis mollis non ligula vel tincidunt. Nulla consectetur libero id nunc ornare, vel vulputate tellus mollis. Sed quis nulla magna.
</p>
<!-- Comment Controls -->
<div class="comment-actions">
<span class="comment-date">June 10th, 2013 3:16 pm</span>
<a href="#" data-toggle="tooltip" data-original-title="Vote Up" class="show-tooltip"><i class="glyphicon glyphicon-thumbs-up"></i></a>
<a href="#" data-toggle="tooltip" data-original-title="Vote Down" class="show-tooltip"><i class="glyphicon glyphicon-thumbs-down"></i></a>
<span class="label label-danger">-2</span>
<a href="#" class="btn btn-micro btn-grey comment-reply-btn"><i class="glyphicon glyphicon-share-alt"></i> Reply</a>
</div>
</div>
</li>
</ul>
</li>
<li>
<div class="comment-wrapper">
<div class="comment-author"><img src="img/user5.jpg" alt="User Name"> User Name</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vel magna lectus.
</p>
<!-- Comment Controls -->
<div class="comment-actions">
<span class="comment-date">June 10th, 2013 3:16 pm</span>
<a href="#" data-toggle="tooltip" data-original-title="Vote Up" class="show-tooltip"><i class="glyphicon glyphicon-thumbs-up"></i></a>
<a href="#" data-toggle="tooltip" data-original-title="Vote Down" class="show-tooltip"><i class="glyphicon glyphicon-thumbs-down"></i></a>
<span class="label label-success">+8</span>
<a href="#" class="btn btn-micro btn-grey comment-reply-btn"><i class="glyphicon glyphicon-share-alt"></i> Reply</a>
</div>
</div>
</li>
</ul>
<!-- Pagination -->
<div class="pagination-wrapper ">
<ul class="pagination pagination-sm">
<li class="disabled"><a href="#">Previous</a></li>
<li class="active"><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li><a href="#">Next</a></li>
</ul>
</div>
<!-- Comments Form -->
<h4>Leave a Comment</h4>
<div class="comment-form-wrapper">
<form class="">
<div class="form-group">
<label for="comment-name"><i class="glyphicon glyphicon-user"></i> <b>Your name</b></label>
<input class="form-control" id="comment-name" type="text" placeholder="">
</div>
<div class="form-group">
<label for="comment-email"><i class="glyphicon glyphicon-envelope"></i> <b>Your Email</b></label>
<input class="form-control" id="comment-email" type="text" placeholder="">
</div>
<div class="form-group">
<label for="comment-message"><i class="glyphicon glyphicon-comment"></i> <b>Your Message</b></label>
<textarea class="form-control" rows="5" id="comment-message"></textarea>
</div>
<div class="form-group">
<button type="submit" class="btn btn-large pull-right">Send</button>
</div>
<div class="clearfix"></div>
</form>
</div>
<!-- End Comment Form -->
</div>
<!-- End Comments -->
</div>
</div>
<!-- End Blog Post -->
</div>
</div>
</div>
<!-- Footer -->
<div class="footer">
<div class="container">
<div class="row">
<div class="col-footer col-md-3 col-xs-6">
<h3>Our Latest Work</h3>
<div class="portfolio-item">
<div class="portfolio-image">
<a href="page-portfolio-item.html"><img src="img/portfolio6.jpg" alt="Project Name"></a>
</div>
</div>
</div>
<div class="col-footer col-md-3 col-xs-6">
<h3>Navigate</h3>
<ul class="no-list-style footer-navigate-section">
<li><a href="page-blog-posts.html">Blog</a></li>
<li><a href="page-portfolio-3-columns-2.html">Portfolio</a></li>
<li><a href="page-products-3-columns.html">eShop</a></li>
<li><a href="page-services-3-columns.html">Services</a></li>
<li><a href="page-pricing.html">Pricing</a></li>
<li><a href="page-faq.html">FAQ</a></li>
</ul>
</div>
<div class="col-footer col-md-4 col-xs-6">
<h3>Contacts</h3>
<p class="contact-us-details">
<b>Address:</b> 123 Fake Street, LN1 2ST, London, United Kingdom<br/>
<b>Phone:</b> +44 123 654321<br/>
<b>Fax:</b> +44 123 654321<br/>
<b>Email:</b> <a href="mailto:getintoutch@yourcompanydomain.com">getintoutch@yourcompanydomain.com</a>
</p>
</div>
<div class="col-footer col-md-2 col-xs-6">
<h3>Stay Connected</h3>
<ul class="footer-stay-connected no-list-style">
<li><a href="#" class="facebook"></a></li>
<li><a href="#" class="twitter"></a></li>
<li><a href="#" class="googleplus"></a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="footer-copyright">© 2013 mPurpose. All rights reserved.</div>
</div>
</div>
</div>
</div>
<!-- Javascripts -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.9.1.min.js"><\/script>')</script>
<script src="js/bootstrap.min.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.js"></script>
<script src="js/jquery.fitvids.js"></script>
<script src="js/jquery.sequence-min.js"></script>
<script src="js/jquery.bxslider.js"></script>
<script src="js/main-menu.js"></script>
<script src="js/template.js"></script>
</body>
</html> | zhengchaoken/wali | Wali-UI/src/main/webapp/static/ui/sitemPurpose-master/page-blog-post-left-sidebar.html | HTML | apache-2.0 | 18,121 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>NmeaReaderFromInputStream xref</title>
<link type="text/css" rel="stylesheet" href="../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../apidocs/au/gov/amsa/ais/NmeaReaderFromInputStream.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="L1" href="#L1">1</a> <strong class="jxr_keyword">package</strong> au.gov.amsa.ais;
<a class="jxr_linenumber" name="L2" href="#L2">2</a>
<a class="jxr_linenumber" name="L3" href="#L3">3</a> <strong class="jxr_keyword">import</strong> java.io.InputStream;
<a class="jxr_linenumber" name="L4" href="#L4">4</a> <strong class="jxr_keyword">import</strong> java.io.InputStreamReader;
<a class="jxr_linenumber" name="L5" href="#L5">5</a> <strong class="jxr_keyword">import</strong> java.nio.charset.Charset;
<a class="jxr_linenumber" name="L6" href="#L6">6</a>
<a class="jxr_linenumber" name="L7" href="#L7">7</a> <strong class="jxr_keyword">import</strong> rx.functions.Func1;
<a class="jxr_linenumber" name="L8" href="#L8">8</a> <strong class="jxr_keyword">import</strong> au.gov.amsa.streams.Strings;
<a class="jxr_linenumber" name="L9" href="#L9">9</a> <strong class="jxr_keyword">import</strong> au.gov.amsa.util.nmea.NmeaReader;
<a class="jxr_linenumber" name="L10" href="#L10">10</a>
<a class="jxr_linenumber" name="L11" href="#L11">11</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../au/gov/amsa/ais/NmeaReaderFromInputStream.html">NmeaReaderFromInputStream</a> <strong class="jxr_keyword">implements</strong> <a href="../../../../au/gov/amsa/util/nmea/NmeaReader.html">NmeaReader</a> {
<a class="jxr_linenumber" name="L12" href="#L12">12</a>
<a class="jxr_linenumber" name="L13" href="#L13">13</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Func1<String, Boolean> NON_EMPTY = <strong class="jxr_keyword">new</strong> Func1<String, Boolean>() {
<a class="jxr_linenumber" name="L14" href="#L14">14</a> @Override
<a class="jxr_linenumber" name="L15" href="#L15">15</a> <strong class="jxr_keyword">public</strong> Boolean call(String s) {
<a class="jxr_linenumber" name="L16" href="#L16">16</a> <strong class="jxr_keyword">return</strong> s.trim().length() > 0;
<a class="jxr_linenumber" name="L17" href="#L17">17</a> }
<a class="jxr_linenumber" name="L18" href="#L18">18</a> };
<a class="jxr_linenumber" name="L19" href="#L19">19</a>
<a class="jxr_linenumber" name="L20" href="#L20">20</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> InputStream is;
<a class="jxr_linenumber" name="L21" href="#L21">21</a>
<a class="jxr_linenumber" name="L22" href="#L22">22</a> <strong class="jxr_keyword">public</strong> <a href="../../../../au/gov/amsa/ais/NmeaReaderFromInputStream.html">NmeaReaderFromInputStream</a>(InputStream is) {
<a class="jxr_linenumber" name="L23" href="#L23">23</a> <strong class="jxr_keyword">this</strong>.is = is;
<a class="jxr_linenumber" name="L24" href="#L24">24</a> }
<a class="jxr_linenumber" name="L25" href="#L25">25</a>
<a class="jxr_linenumber" name="L26" href="#L26">26</a> @Override
<a class="jxr_linenumber" name="L27" href="#L27">27</a> <strong class="jxr_keyword">public</strong> Iterable<String> read() {
<a class="jxr_linenumber" name="L28" href="#L28">28</a> <strong class="jxr_keyword">return</strong> <a href="../../../../au/gov/amsa/streams/Strings.html">Strings</a>
<a class="jxr_linenumber" name="L29" href="#L29">29</a> .split(Strings.from(<strong class="jxr_keyword">new</strong> InputStreamReader(is, Charset
<a class="jxr_linenumber" name="L30" href="#L30">30</a> .forName(<span class="jxr_string">"UTF-8"</span>))), <span class="jxr_string">"\n"</span>).filter(NON_EMPTY)
<a class="jxr_linenumber" name="L31" href="#L31">31</a> .toBlocking().toIterable();
<a class="jxr_linenumber" name="L32" href="#L32">32</a> }
<a class="jxr_linenumber" name="L33" href="#L33">33</a> }
</pre>
<hr/>
<div id="footer">Copyright © 2020. All rights reserved.</div>
</body>
</html>
| amsa-code/amsa-code.github.io | risky/xref/au/gov/amsa/ais/NmeaReaderFromInputStream.html | HTML | apache-2.0 | 4,473 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.6.0_27) on Thu Oct 17 21:44:59 EDT 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Uses of Class org.apache.solr.response.XMLWriter (Solr 4.5.1 API)</title>
<meta name="date" content="2013-10-17">
<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 org.apache.solr.response.XMLWriter (Solr 4.5.1 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/solr/response/XMLWriter.html" title="class in org.apache.solr.response">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="../../../../../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/apache/solr/response//class-useXMLWriter.html" target="_top">FRAMES</a></li>
<li><a href="XMLWriter.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.apache.solr.response.XMLWriter" class="title">Uses of Class<br>org.apache.solr.response.XMLWriter</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../org/apache/solr/response/XMLWriter.html" title="class in org.apache.solr.response">XMLWriter</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="#org.apache.solr.schema">org.apache.solr.schema</a></td>
<td class="colLast">
<div class="block">
<a href="../../../../../org/apache/solr/schema/IndexSchema.html" title="class in org.apache.solr.schema"><code>IndexSchema</code></a> and <a href="../../../../../org/apache/solr/schema/FieldType.html" title="class in org.apache.solr.schema"><code>FieldType</code></a> implementations for powering schema.xml</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.solr.schema">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/apache/solr/response/XMLWriter.html" title="class in org.apache.solr.response">XMLWriter</a> in <a href="../../../../../org/apache/solr/schema/package-summary.html">org.apache.solr.schema</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../org/apache/solr/schema/package-summary.html">org.apache.solr.schema</a> with parameters of type <a href="../../../../../org/apache/solr/response/XMLWriter.html" title="class in org.apache.solr.response">XMLWriter</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="strong">CurrencyField.</span><code><strong><a href="../../../../../org/apache/solr/schema/CurrencyField.html#write(org.apache.solr.response.XMLWriter, java.lang.String, org.apache.lucene.index.IndexableField)">write</a></strong>(<a href="../../../../../org/apache/solr/response/XMLWriter.html" title="class in org.apache.solr.response">XMLWriter</a> xmlWriter,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name,
<a href="http://lucene.apache.org/core/4_5_1/core/org/apache/lucene/index/IndexableField.html?is-external=true" title="class or interface in org.apache.lucene.index">IndexableField</a> field)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/solr/response/XMLWriter.html" title="class in org.apache.solr.response">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="../../../../../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/apache/solr/response//class-useXMLWriter.html" target="_top">FRAMES</a></li>
<li><a href="XMLWriter.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>
<i>Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
| kyosuke1008/summary-solr | docs/solr-core/org/apache/solr/response/class-use/XMLWriter.html | HTML | apache-2.0 | 7,640 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>Noted</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/bootstrap/css/bootstrap.css">
</head>
<body>
<div class="container">
<div class="panel col-lg-2">
<form method="get" action="http://localhost:3000/api/notebook">
<input type="hidden" name="notebook" value="global">
<button type="submit" class="btn btn-primary btn-small">Export Notebook</button>
</form>
</div>
</div>
<script src="/jquery/jquery-2.0.3.js"></script>
<script src="/bootstrap/js/bootstrap.js"></script>
</body>
</html> | daithiocrualaoich/noted | www/app/views/export.html | HTML | apache-2.0 | 697 |
<!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_151) on Wed Sep 05 03:08:44 MST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.wildfly.swarm.jsonp.detect (BOM: * : All 2.2.0.Final API)</title>
<meta name="date" content="2018-09-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../../org/wildfly/swarm/jsonp/detect/package-summary.html" target="classFrame">org.wildfly.swarm.jsonp.detect</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="JsonPPackageDetector.html" title="class in org.wildfly.swarm.jsonp.detect" target="classFrame">JsonPPackageDetector</a></li>
</ul>
</div>
</body>
</html>
| wildfly-swarm/wildfly-swarm-javadocs | 2.2.0.Final/apidocs/org/wildfly/swarm/jsonp/detect/package-frame.html | HTML | apache-2.0 | 985 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<link rel="stylesheet" type="text/css" href="../../../../../release/css/all.css"/>
<link rel="stylesheet" type="text/css" href="../../../../../src/css/71button.css"/>
<link rel="stylesheet" type="text/css" href="../../../../../src/css/81msg.css"/>
<link rel="stylesheet" type="text/css" href="../../../../../release/bootstrap/css/font-awesome.css"/>
</head>
<body>
<div style="z-index:20; color:#FF0000">我在私募生存的十二年</div>
<div id="msgMask"> </div>
<table class="msg" id="msgContainer">
<tr>
<td><div id="msgDialog">
<div id="msgTop">
<div id="msgTitle">输入对话框</div>
<div id="msgClose"></div>
</div>
<div id="msgMain" class="wfform">
<table cellpadding="0" cellspacing="0">
<tr>
<td class="td1">下一环节</td>
<td class="td2"><div class="node"><span>
<input type="radio" value="checked" name="wf_next_node"/><label>总经理审批</label>
</span><span>
<input type="radio" value="checked" name="wf_next_node"/><label>技术条款审核</label>
</span><span>
<input type="radio" value="checked" name="wf_next_node"/><label>商务条款审核</label>
</span></div></td>
</tr>
<tr>
<td class="td1">下一环节处理人</td>
<td class="td2"><div class="person">
<span>
<input type="checkbox" value="checked" name="wf_next_person"/><label>陈旭</label>
</span><span>
<input type="checkbox" value="checked" name="wf_next_person"/><label>刘晓青</label>
</span><span>
<input type="checkbox" value="checked" name="wf_next_person"/><label>顾伟</label>
</span><span>
<input type="checkbox" value="checked" name="wf_next_person"/><label>谭业贵</label>
</span></td>
</tr>
<tr>
<td class="td1">处理意见</td>
<td class="td2"><textarea name="wf_comment" class="comment"></textarea></td>
</tr>
</table>
</div>
<div id="msgFoot">
<button class="button blue" id="msg_ok">确认</button>
<button class="button gray" id="msg_cancel">取消</button>
</div>
</div>
</td>
</tr>
</table>
</body>
</html>
| ldjking/sharegrid | web/examples/xlib/2ui/30msg/30design/promot.html | HTML | apache-2.0 | 2,635 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_65) on Wed Sep 03 20:06:27 PDT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Row (HBase 0.98.6-hadoop2 API)</title>
<meta name="date" content="2014-09-03">
<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="Row (HBase 0.98.6-hadoop2 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Row.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/hadoop/hbase/client/ReversedScannerCallable.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../org/apache/hadoop/hbase/client/RowMutations.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/hadoop/hbase/client/Row.html" target="_top">Frames</a></li>
<li><a href="Row.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">org.apache.hadoop.hbase.client</div>
<h2 title="Interface Row" class="title">Interface Row</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Superinterfaces:</dt>
<dd><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="../../../../../org/apache/hadoop/hbase/client/Row.html" title="interface in org.apache.hadoop.hbase.client">Row</a>></dd>
</dl>
<dl>
<dt>All Known Implementing Classes:</dt>
<dd><a href="../../../../../org/apache/hadoop/hbase/client/Append.html" title="class in org.apache.hadoop.hbase.client">Append</a>, <a href="../../../../../org/apache/hadoop/hbase/client/Delete.html" title="class in org.apache.hadoop.hbase.client">Delete</a>, <a href="../../../../../org/apache/hadoop/hbase/client/Get.html" title="class in org.apache.hadoop.hbase.client">Get</a>, <a href="../../../../../org/apache/hadoop/hbase/client/Increment.html" title="class in org.apache.hadoop.hbase.client">Increment</a>, <a href="../../../../../org/apache/hadoop/hbase/client/Mutation.html" title="class in org.apache.hadoop.hbase.client">Mutation</a>, <a href="../../../../../org/apache/hadoop/hbase/client/Put.html" title="class in org.apache.hadoop.hbase.client">Put</a>, <a href="../../../../../org/apache/hadoop/hbase/client/RowMutations.html" title="class in org.apache.hadoop.hbase.client">RowMutations</a></dd>
</dl>
<hr>
<br>
<pre>@InterfaceAudience.Public
@InterfaceStability.Stable
public interface <span class="strong">Row</span>
extends <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="../../../../../org/apache/hadoop/hbase/client/Row.html" title="interface in org.apache.hadoop.hbase.client">Row</a>></pre>
<div class="block">Has a row.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </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>byte[]</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/client/Row.html#getRow()">getRow</a></strong>()</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Comparable">
<!-- -->
</a>
<h3>Methods inherited from interface java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a></h3>
<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Comparable.html?is-external=true#compareTo(T)" title="class or interface in java.lang">compareTo</a></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="getRow()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getRow</h4>
<pre>byte[] getRow()</pre>
<dl><dt><span class="strong">Returns:</span></dt><dd>The row.</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Row.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/hadoop/hbase/client/ReversedScannerCallable.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../org/apache/hadoop/hbase/client/RowMutations.html" title="class in org.apache.hadoop.hbase.client"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/hadoop/hbase/client/Row.html" target="_top">Frames</a></li>
<li><a href="Row.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 ======= -->
<p class="legalCopy"><small>Copyright © 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
| lshain/hbase-0.98.6-hadoop2 | docs/apidocs/org/apache/hadoop/hbase/client/Row.html | HTML | apache-2.0 | 9,142 |
<!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>
<title>OR-Tools</title>
<meta http-equiv="Content-Type" content="text/html;"/>
<meta charset="utf-8"/>
<!--<link rel='stylesheet' type='text/css' href="https://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic"/>-->
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="styleSheet.tmp.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="banner-container">
<div id="banner">
<span id="sfml">Google OR-Tools 9.2</span>
</div>
</div>
<div id="content" style="width: 100%; overflow: hidden;">
<div style="margin-left: 15px; margin-top: 5px; float: left; color: #145A32;">
<h2>Java Reference</h2>
<ul>
<li><a href="../java/namespacecom_1_1google_1_1ortools_1_1sat.html">CP-SAT</a></li>
<li><a href="../java/namespacecom_1_1google_1_1ortools_1_1graph.html">Graph</a></li>
<li><a href="../java/namespacecom_1_1google_1_1ortools_1_1algorithms.html">Knapsack solver</a></li>
<li><a href="../java/namespacecom_1_1google_1_1ortools_1_1linearsolver.html">Linear solver</a></li>
<li><a href="../java/namespacecom_1_1google_1_1ortools_1_1constraintsolver.html">Routing</a></li>
<li><a href="../java/namespacecom_1_1google_1_1ortools_1_1util.html">Util</a></li>
</ul>
</div>
<div id="content">
<div align="center">
<h1 style="color: #145A32;">Java Reference</h1>
</div>
<!-- Generated by Doxygen 1.9.2 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search",'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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
$(document).ready(function(){initNavTree('IntExpr_8java.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- 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="header">
<div class="summary">
<a href="#nested-classes">Classes</a> |
<a href="#namespaces">Packages</a> </div>
<div class="headertitle"><div class="title">IntExpr.java File Reference</div></div>
</div><!--header-->
<div class="contents">
<p><a href="IntExpr_8java_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 id="nested-classes" 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="classcom_1_1google_1_1ortools_1_1constraintsolver_1_1IntExpr.html">IntExpr</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">The class <a class="el" href="classcom_1_1google_1_1ortools_1_1constraintsolver_1_1IntExpr.html" title="The class IntExpr is the base of all integer expressions in constraint programming.">IntExpr</a> is the base of all integer expressions in<br />
constraint programming. <a href="classcom_1_1google_1_1ortools_1_1constraintsolver_1_1IntExpr.html#details">More...</a><br /></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 id="namespaces" name="namespaces"></a>
Packages</h2></td></tr>
<tr class="memitem:namespacecom_1_1google_1_1ortools_1_1constraintsolver"><td class="memItemLeft" align="right" valign="top">package  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacecom_1_1google_1_1ortools_1_1constraintsolver.html">com.google.ortools.constraintsolver</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table>
</div><!-- contents -->
</div><!-- doc-content -->
</div>
</div>
<div id="footer-container">
<div id="footer">
</div>
</div>
</body>
</html>
| google/or-tools | docs/java/IntExpr_8java.html | HTML | apache-2.0 | 5,650 |
</ul>
</div>
<center>
<form name="myform" id="upform" method="post" enctype="multipart/form-data" action = "upload">
<div id="yourBtn" onclick="getFile()">Send a file</div>
<input type="hidden" name="filenamebackup" value="nofile">
<input type="hidden" name="filesize" value="nullsize">
<div style="height: 0px;width: 0px; overflow:hidden;">
<input type="file" id="loadfile" value="Upload" name="myfile" onchange="extract(document.myform.myfile.value)">
</div>
</form>
</center>
</body>
</html> | BucketDevelopers/AndroidFileBroadcast | assets/third.html | HTML | apache-2.0 | 494 |
<!DOCTYPE html >
<html>
<head>
<title>FutureOutcome - ScalaTest 3.0.2 - org.scalatest.FutureOutcome</title>
<meta name="description" content="FutureOutcome - ScalaTest 3.0.2 - org.scalatest.FutureOutcome" />
<meta name="keywords" content="FutureOutcome ScalaTest 3.0.2 org.scalatest.FutureOutcome" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link href="../../lib/template.css" media="screen" type="text/css" rel="stylesheet" />
<link href="../../lib/diagrams.css" media="screen" type="text/css" rel="stylesheet" id="diagrams-css" />
<script type="text/javascript" src="../../lib/jquery.js" id="jquery-js"></script>
<script type="text/javascript" src="../../lib/jquery-ui.js"></script>
<script type="text/javascript" src="../../lib/template.js"></script>
<script type="text/javascript" src="../../lib/tools.tooltip.js"></script>
<script type="text/javascript">
if(top === self) {
var url = '../../index.html';
var hash = 'org.scalatest.FutureOutcome';
var anchor = window.location.hash;
var anchor_opt = '';
if (anchor.length >= 1)
anchor_opt = '@' + anchor.substring(1);
window.location.href = url + '#' + hash + anchor_opt;
}
</script>
</head>
<body class="type">
<!-- Top of doc.scalatest.org [javascript] -->
<script type="text/javascript">
var rnd = window.rnd || Math.floor(Math.random()*10e6);
var pid204546 = window.pid204546 || rnd;
var plc204546 = window.plc204546 || 0;
var abkw = window.abkw || '';
var absrc = 'http://ab167933.adbutler-ikon.com/adserve/;ID=167933;size=468x60;setID=204546;type=js;sw='+screen.width+';sh='+screen.height+';spr='+window.devicePixelRatio+';kw='+abkw+';pid='+pid204546+';place='+(plc204546++)+';rnd='+rnd+';click=CLICK_MACRO_PLACEHOLDER';
document.write('<scr'+'ipt src="'+absrc+'" type="text/javascript"></scr'+'ipt>');
</script>
<div id="definition">
<a href="FutureOutcome$.html" title="See companion object"><img alt="Class/Object" src="../../lib/class_to_object_big.png" /></a>
<p id="owner"><a href="../package.html" class="extype" name="org">org</a>.<a href="package.html" class="extype" name="org.scalatest">scalatest</a></p>
<h1><a href="FutureOutcome$.html" title="See companion object">FutureOutcome</a></h1><h3><span class="morelinks"><div>
Related Docs:
<a href="FutureOutcome$.html" title="See companion object">object FutureOutcome</a>
| <a href="package.html" class="extype" name="org.scalatest">package scalatest</a>
</div></span></h3><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
</div>
<h4 id="signature" class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">class</span>
</span>
<span class="symbol">
<span class="name">FutureOutcome</span><span class="result"> extends <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
</h4>
<div id="comment" class="fullcommenttop"><div class="comment cmt"><p>Wrapper class for <code>Future[Outcome]</code> that presents a more convenient API for
manipulation in <code>withFixture</code> methods in async styles.</p><p>This type serves as the result type of both test functions and <code>withFixture</code> methods
in ScalaTest's async styles. A <code>Future[Outcome]</code> is not used as this result type
for two reasons. First, <code>Outcome</code> treats exceptions specially, and as a result
methods on <code>Future</code> would usually not yield the desired <code>Future[Outcome]</code> result.
Only run-aborting exceptions should result in a failed <code>Future[Outcome]</code>. Any other thrown exception
other than <code>TestCanceledException</code> or <code>TestPendingException</code>
should result in a successful<code>Future</code> containing a <code>org.scalatest.Failed</code>.
A thrown <code>TestCanceledException</code> should result in a successful <code>Future</code>
containing an <code>org.scalatest.Canceled</code>; A thrown <code>TestPendingException</code> should result in
a successful <code>Future</code> containing a <code>org.scalatest.Pending</code>.
If manipulating a <code>Future[Outcome]</code> directly, by contrast, any thrown exception would result in
a failed <code>Future</code>.</p><p>Additionally, to be consistent with corresponding transformations in traditional testing styles,
methods registering callbacks should return a new future outcome that doesn't complete until
both the original future outcome has completed and the subsequent callback has completed execution.
Additionally, if the callback itself throws an exception, that exception should determine the result
of the future outcome returned by the callback registration method. This behavior is rather inconvenient
to obtain on the current <code>Future</code> API, so <code>FutureOutcome</code> provides well-named
methods that have this behavior.</p><p>Lastly, the <code>FutureOutcome</code> is intended to help prevent confusion by eliminating the need
to work with types like <code>scala.util.Success(org.scalatest.Failed)</code>. For this purpose a
<code>org.scalactic.Or</code> is used instead of a <code>scala.util.Try</code> to describe results
of <code>FutureOutcome</code>.</p><p>A <code>FutureOutcome</code> represents a computation that can result in an <code>Outcome</code> or an "abort." An abort means
that a run-aborting exception occurred during the computation. Any other, non-run-aborting exception will be represented
as an non-<code>Succeeded</code> <code>Outcome</code>: one of <code>Failed</code>, <code>Canceled</code>, or <code>Pending</code>.</p><p>The methods of <code>FutureOutcome</code> include the following callback registration methods:</p><ul><li><code>onSucceededThen</code> - registers a callback to be executed if the future outcome is <code>Succeeded</code>.</li><li><code>onFailedThen</code> - registers a callback to be executed if the future outcome is <code>Failed</code>.</li><li><code>onCanceledThen</code> - registers a callback to be executed if the future outcome is <code>Canceled</code>.</li><li><code>onPendingThen</code> - registers a callback to be executed if the future outcome is <code>Pending</code>.</li><li><code>onOutcomeThen</code> - registers a callback to be executed if the future outcome is actually an <code>Outcome</code>
and not an abort.</li><li><code>onAbortedThen</code> - registers a callback to be executed if the future outcome aborts.</li><li><code>onCompletedThen</code> - registers a callback to be executed upon completion no matter how the future outcome completes.</li></ul><p>The callback methods listed previously can be used to perform a side effect once a <code>FutureOutcome</code> completes. To change an
<code>Outcome</code> into a different <code>Outcome</code> asynchronously, use the <code>change</code> registration method, which takes a function
from <code>Outcome</code> to <code>Outcome</code>. The other methods on <code>FutureOutcome</code>, <code>isCompleted</code> and
<code>value</code>, allow you to poll a <code>FutureOutcome</code>. None of the methods on <code>FutureOutcome</code> block.
Lastly, because an implicit <a href="enablers/Futuristic.html"><code>Futuristic</code></a> instance is provided for
<code>FutureOutcome</code>, you can use <a href="CompleteLastly.html"><code>complete</code>-<code>lastly</code> syntax</a>
with <code>FutureOutcome</code>.</p></div><dl class="attributes block"> <dt>Source</dt><dd><a href="https://github.com/scalatest/scalatest/tree/release-3.0.2/scalatest//src/main/scala/org/scalatest/FutureOutcome.scala" target="_blank">FutureOutcome.scala</a></dd></dl><div class="toggleContainer block">
<span class="toggle">Linear Supertypes</span>
<div class="superTypes hiddenContent"><span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div>
</div></div>
<div id="mbrsel">
<div id="textfilter"><span class="pre"></span><span class="input"><input id="mbrsel-input" type="text" accesskey="/" /></span><span class="post"></span></div>
<div id="order">
<span class="filtertype">Ordering</span>
<ol>
<li class="alpha in"><span>Alphabetic</span></li>
<li class="inherit out"><span>By Inheritance</span></li>
</ol>
</div>
<div id="ancestors">
<span class="filtertype">Inherited<br />
</span>
<ol id="linearization">
<li class="in" name="org.scalatest.FutureOutcome"><span>FutureOutcome</span></li><li class="in" name="scala.AnyRef"><span>AnyRef</span></li><li class="in" name="scala.Any"><span>Any</span></li>
</ol>
</div><div id="ancestors">
<span class="filtertype"></span>
<ol>
<li class="hideall out"><span>Hide All</span></li>
<li class="showall in"><span>Show All</span></li>
</ol>
</div>
<div id="visbl">
<span class="filtertype">Visibility</span>
<ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol>
</div>
</div>
<div id="template">
<div id="allMembers">
<div id="constructors" class="members">
<h3>Instance Constructors</h3>
<ol><li name="org.scalatest.FutureOutcome#<init>" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="<init>(underlying:scala.concurrent.Future[org.scalatest.Outcome]):org.scalatest.FutureOutcome"></a>
<a id="<init>:FutureOutcome"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">new</span>
</span>
<span class="symbol">
<span class="name">FutureOutcome</span><span class="params">(<span name="underlying">underlying: <span class="extype" name="scala.concurrent.Future">Future</span>[<a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a>]</span>)</span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@<init>(underlying:scala.concurrent.Future[org.scalatest.Outcome]):org.scalatest.FutureOutcome" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
</li></ol>
</div>
<div id="values" class="values members">
<h3>Value Members</h3>
<ol><li name="scala.AnyRef#!=" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="!=(x$1:Any):Boolean"></a>
<a id="!=(Any):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $bang$eq" class="name">!=</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@!=(x$1:Any):Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.AnyRef###" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="##():Int"></a>
<a id="##():Int"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $hash$hash" class="name">##</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@##():Int" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.AnyRef#==" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="==(x$1:Any):Boolean"></a>
<a id="==(Any):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $eq$eq" class="name">==</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@==(x$1:Any):Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.Any#asInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="asInstanceOf[T0]:T0"></a>
<a id="asInstanceOf[T0]:T0"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">asInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Any.asInstanceOf.T0">T0</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@asInstanceOf[T0]:T0" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li name="org.scalatest.FutureOutcome#change" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="change(f:org.scalatest.Outcome=>org.scalatest.Outcome)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome"></a>
<a id="change((Outcome)⇒Outcome)(ExecutionContext):FutureOutcome"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">change</span><span class="params">(<span name="f">f: (<a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a>) ⇒ <a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="executionContext">executionContext: <span class="extype" name="scala.concurrent.ExecutionContext">ExecutionContext</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalatest.FutureOutcome">FutureOutcome</a></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@change(f:org.scalatest.Outcome=>org.scalatest.Outcome)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Registers a transformation function to be executed if this future completes with any
<code>Outcome</code> (<em>i.e.</em>, no run-aborting exception is thrown), returning
a new <code>FutureOutcome</code> representing the result of passing
this <code>FutureOutcome</code>'s <code>Outcome</code> result to the given transformation function.</code></code></code></em></code></p><div class="fullcomment"><div class="comment cmt"><p>Registers a transformation function to be executed if this future completes with any
<code>Outcome</code> (<em>i.e.</em>, no run-aborting exception is thrown), returning
a new <code>FutureOutcome</code> representing the result of passing
this <code>FutureOutcome</code>'s <code>Outcome</code> result to the given transformation function.</p><p>If the passed function completes abruptly with an exception, the resulting <code>FutureOutcome</code>
will be determined by the type of the thrown exception:</p><ul><li><code>TestPendingException</code> - <code>Good(Pending)</code></li><li><code>TestCanceledException</code> - <code>Good(Canceled(<the exception>))</code></li><li>Any non-run-aborting <code>Throwable</code> - <code>Good(Failed(<the exception>))</code></li><li>A run-aborting <code>Throwable</code> - <code>Bad(<the run-aborting exception>)</code></li></ul><p>For more information on <em>run-aborting</em> exceptions, see the <a href="Suite.html#errorHandling">Run-aborting exceptions</a> section
in the main Scaladoc for trait <code>Suite</code>.</p></div><dl class="paramcmts block"><dt class="param">f</dt><dd class="cmt"><p>a transformation function to execute if and when this <code>FutureOutcome</code> completes with an <code>Outcome</code></p></dd><dt class="param">executionContext</dt><dd class="cmt"><p>an execution context that provides a strategy for executing the transformation function</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>FutureOutcome</code> that will complete only after this <code>FutureOutcome</code>
has completed and, if this <code>FutureOutcome</code> completes with a valid
<code>Outcome</code>, the passed callback function has completed execution.</p></dd></dl></div>
</li><li name="scala.AnyRef#clone" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="clone():Object"></a>
<a id="clone():AnyRef"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">clone</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@clone():Object" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="defval" name="classOf[java.lang.CloneNotSupportedException]">...</span>
</span>)</span>
</dd></dl></div>
</li><li name="scala.AnyRef#eq" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="eq(x$1:AnyRef):Boolean"></a>
<a id="eq(AnyRef):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">eq</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@eq(x$1:AnyRef):Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#equals" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="equals(x$1:Any):Boolean"></a>
<a id="equals(Any):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">equals</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@equals(x$1:Any):Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.AnyRef#finalize" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="finalize():Unit"></a>
<a id="finalize():Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">finalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@finalize():Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="symbol">classOf[java.lang.Throwable]</span>
</span>)</span>
</dd></dl></div>
</li><li name="scala.AnyRef#getClass" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="getClass():Class[_]"></a>
<a id="getClass():Class[_]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">getClass</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.Class">Class</span>[_]</span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@getClass():Class[_]" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.AnyRef#hashCode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="hashCode():Int"></a>
<a id="hashCode():Int"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">hashCode</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@hashCode():Int" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="org.scalatest.FutureOutcome#isCompleted" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="isCompleted:Boolean"></a>
<a id="isCompleted:Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">isCompleted</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@isCompleted:Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Indicates whether this <code>FutureOutcome</code> has completed.</code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>FutureOutcome</code> has completed.</p><p>This method does not block.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p><code>true</code> if this <code>FutureOutcome</code> has completed; <code>false</code> otherwise.</p></dd></dl></div>
</li><li name="scala.Any#isInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="isInstanceOf[T0]:Boolean"></a>
<a id="isInstanceOf[T0]:Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@isInstanceOf[T0]:Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li name="scala.AnyRef#ne" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="ne(x$1:AnyRef):Boolean"></a>
<a id="ne(AnyRef):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">ne</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@ne(x$1:AnyRef):Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#notify" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="notify():Unit"></a>
<a id="notify():Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">notify</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@notify():Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#notifyAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="notifyAll():Unit"></a>
<a id="notifyAll():Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">notifyAll</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@notifyAll():Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="org.scalatest.FutureOutcome#onAbortedThen" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="onAbortedThen(callback:Throwable=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome"></a>
<a id="onAbortedThen((Throwable)⇒Unit)(ExecutionContext):FutureOutcome"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">onAbortedThen</span><span class="params">(<span name="callback">callback: (<span class="extype" name="scala.Throwable">Throwable</span>) ⇒ <span class="extype" name="scala.Unit">Unit</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="executionContext">executionContext: <span class="extype" name="scala.concurrent.ExecutionContext">ExecutionContext</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalatest.FutureOutcome">FutureOutcome</a></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@onAbortedThen(callback:Throwable=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Registers a callback function to be executed if this future completes because
a run-aborting exception was thrown, returning a new future that completes only after the
callback has finished execution.</p><div class="fullcomment"><div class="comment cmt"><p>Registers a callback function to be executed if this future completes because
a run-aborting exception was thrown, returning a new future that completes only after the
callback has finished execution.</p><p>The resulting <code>FutureOutcome</code> will have the same result as this <code>FutureOutcome</code>, unless
the callback completes abruptly with an exception. In that case, the resulting <code>FutureOutcome</code>
will be determined by the type of the thrown exception:</p><ul><li><code>TestPendingException</code> - <code>Good(Pending)</code></li><li><code>TestCanceledException</code> - <code>Good(Canceled(<the exception>))</code></li><li>Any non-run-aborting <code>Throwable</code> - <code>Good(Failed(<the exception>))</code></li><li>A run-aborting <code>Throwable</code> - <code>Bad(<the run-aborting exception>)</code></li></ul><p>For more information on <em>run-aborting</em> exceptions, see the <a href="Suite.html#errorHandling">Run-aborting exceptions</a> section
in the main Scaladoc for trait <code>Suite</code>.</p></div><dl class="paramcmts block"><dt class="param">callback</dt><dd class="cmt"><p>a side-effecting function to execute if and when this <code>FutureOutcome</code> completes with an abort.</p></dd><dt class="param">executionContext</dt><dd class="cmt"><p>an execution context that provides a strategy for executing the callback function</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>FutureOutcome</code> that will complete only after this <code>FutureOutcome</code>
has completed and, if this <code>FutureOutcome</code> completes abnormally with
a run-aborting exception, the passed callback function has completed execution.</p></dd></dl></div>
</li><li name="org.scalatest.FutureOutcome#onCanceledThen" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="onCanceledThen(callback:org.scalatest.exceptions.TestCanceledException=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome"></a>
<a id="onCanceledThen((TestCanceledException)⇒Unit)(ExecutionContext):FutureOutcome"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">onCanceledThen</span><span class="params">(<span name="callback">callback: (<a href="exceptions/TestCanceledException.html" class="extype" name="org.scalatest.exceptions.TestCanceledException">TestCanceledException</a>) ⇒ <span class="extype" name="scala.Unit">Unit</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="executionContext">executionContext: <span class="extype" name="scala.concurrent.ExecutionContext">ExecutionContext</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalatest.FutureOutcome">FutureOutcome</a></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@onCanceledThen(callback:org.scalatest.exceptions.TestCanceledException=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Registers a callback function to be executed if this future completes with
<code>Canceled</code>, returning a new future that completes only after the
callback has finished execution.</code></p><div class="fullcomment"><div class="comment cmt"><p>Registers a callback function to be executed if this future completes with
<code>Canceled</code>, returning a new future that completes only after the
callback has finished execution.</p><p>The resulting <code>FutureOutcome</code> will have the same result as this <code>FutureOutcome</code>, unless
the callback completes abruptly with an exception. In that case, the resulting <code>FutureOutcome</code>
will be determined by the type of the thrown exception:</p><ul><li><code>TestPendingException</code> - <code>Good(Pending)</code></li><li><code>TestCanceledException</code> - <code>Good(Canceled(<the exception>))</code></li><li>Any non-run-aborting <code>Throwable</code> - <code>Good(Failed(<the exception>))</code></li><li>A run-aborting <code>Throwable</code> - <code>Bad(<the run-aborting exception>)</code></li></ul><p>For more information on <em>run-aborting</em> exceptions, see the <a href="Suite.html#errorHandling">Run-aborting exceptions</a> section
in the main Scaladoc for trait <code>Suite</code>.</p></div><dl class="paramcmts block"><dt class="param">callback</dt><dd class="cmt"><p>a side-effecting function to execute if and when this <code>FutureOutcome</code> completes with <code>Canceled</code></p></dd><dt class="param">executionContext</dt><dd class="cmt"><p>an execution context that provides a strategy for executing the callback function</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>FutureOutcome</code> that will complete only after this <code>FutureOutcome</code>
has completed and, if this <code>FutureOutcome</code> completes with <code>Canceled</code>, the
passed callback function has completed execution.</p></dd></dl></div>
</li><li name="org.scalatest.FutureOutcome#onCompletedThen" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="onCompletedThen(callback:org.scalactic.Or[org.scalatest.Outcome,Throwable]=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome"></a>
<a id="onCompletedThen((Or[Outcome,Throwable])⇒Unit)(ExecutionContext):FutureOutcome"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">onCompletedThen</span><span class="params">(<span name="callback">callback: (<span class="extype" name="org.scalactic.Or">Or</span>[<a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a>, <span class="extype" name="scala.Throwable">Throwable</span>]) ⇒ <span class="extype" name="scala.Unit">Unit</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="executionContext">executionContext: <span class="extype" name="scala.concurrent.ExecutionContext">ExecutionContext</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalatest.FutureOutcome">FutureOutcome</a></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@onCompletedThen(callback:org.scalactic.Or[org.scalatest.Outcome,Throwable]=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Registers a callback function to be executed after this future completes, returning
a new future that completes only after the callback has finished execution.</p><div class="fullcomment"><div class="comment cmt"><p>Registers a callback function to be executed after this future completes, returning
a new future that completes only after the callback has finished execution.</p><p>The resulting <code>FutureOutcome</code> will have the same result as this <code>FutureOutcome</code>, unless
the callback completes abruptly with an exception. In that case, the resulting <code>FutureOutcome</code>
will be determined by the type of the thrown exception:</p><ul><li><code>TestPendingException</code> - <code>Good(Pending)</code></li><li><code>TestCanceledException</code> - <code>Good(Canceled(<the exception>))</code></li><li>Any non-run-aborting <code>Throwable</code> - <code>Good(Failed(<the exception>))</code></li><li>A run-aborting <code>Throwable</code> - <code>Bad(<the run-aborting exception>)</code></li></ul><p>For more information on <em>run-aborting</em> exceptions, see the <a href="Suite.html#errorHandling">Run-aborting exceptions</a> section
in the main Scaladoc for trait <code>Suite</code>.</p></div><dl class="paramcmts block"><dt class="param">callback</dt><dd class="cmt"><p>a side-effecting function to execute when this <code>FutureOutcome</code> completes</p></dd><dt class="param">executionContext</dt><dd class="cmt"><p>an execution context that provides a strategy for executing the callback function</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>FutureOutcome</code> that will complete only after this <code>FutureOutcome</code>
and, subsequently, the passed callback function have completed execution.</p></dd></dl></div>
</li><li name="org.scalatest.FutureOutcome#onFailedThen" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="onFailedThen(callback:Throwable=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome"></a>
<a id="onFailedThen((Throwable)⇒Unit)(ExecutionContext):FutureOutcome"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">onFailedThen</span><span class="params">(<span name="callback">callback: (<span class="extype" name="scala.Throwable">Throwable</span>) ⇒ <span class="extype" name="scala.Unit">Unit</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="executionContext">executionContext: <span class="extype" name="scala.concurrent.ExecutionContext">ExecutionContext</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalatest.FutureOutcome">FutureOutcome</a></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@onFailedThen(callback:Throwable=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Registers a callback function to be executed if this future completes with
<code>Failed</code>, returning a new future that completes only after the
callback has finished execution.</code></p><div class="fullcomment"><div class="comment cmt"><p>Registers a callback function to be executed if this future completes with
<code>Failed</code>, returning a new future that completes only after the
callback has finished execution.</p><p>The resulting <code>FutureOutcome</code> will have the same result as this <code>FutureOutcome</code>, unless
the callback completes abruptly with an exception. In that case, the resulting <code>FutureOutcome</code>
will be determined by the type of the thrown exception:</p><ul><li><code>TestPendingException</code> - <code>Good(Pending)</code></li><li><code>TestCanceledException</code> - <code>Good(Canceled(<the exception>))</code></li><li>Any non-run-aborting <code>Throwable</code> - <code>Good(Failed(<the exception>))</code></li><li>A run-aborting <code>Throwable</code> - <code>Bad(<the run-aborting exception>)</code></li></ul><p>For more information on <em>run-aborting</em> exceptions, see the <a href="Suite.html#errorHandling">Run-aborting exceptions</a> section
in the main Scaladoc for trait <code>Suite</code>.</p></div><dl class="paramcmts block"><dt class="param">callback</dt><dd class="cmt"><p>a side-effecting function to execute if and when this <code>FutureOutcome</code> completes with <code>Failed</code></p></dd><dt class="param">executionContext</dt><dd class="cmt"><p>an execution context that provides a strategy for executing the callback function</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>FutureOutcome</code> that will complete only after this <code>FutureOutcome</code>
has completed and, if this <code>FutureOutcome</code> completes with <code>Failed</code>, the
passed callback function has completed execution.</p></dd></dl></div>
</li><li name="org.scalatest.FutureOutcome#onOutcomeThen" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="onOutcomeThen(callback:org.scalatest.Outcome=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome"></a>
<a id="onOutcomeThen((Outcome)⇒Unit)(ExecutionContext):FutureOutcome"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">onOutcomeThen</span><span class="params">(<span name="callback">callback: (<a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a>) ⇒ <span class="extype" name="scala.Unit">Unit</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="executionContext">executionContext: <span class="extype" name="scala.concurrent.ExecutionContext">ExecutionContext</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalatest.FutureOutcome">FutureOutcome</a></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@onOutcomeThen(callback:org.scalatest.Outcome=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Registers a callback function to be executed if this future completes with any
<code>Outcome</code> (<em>i.e.</em>, no run-aborting exception is thrown), returning
a new future that completes only after the callback has finished execution.</em></code></p><div class="fullcomment"><div class="comment cmt"><p>Registers a callback function to be executed if this future completes with any
<code>Outcome</code> (<em>i.e.</em>, no run-aborting exception is thrown), returning
a new future that completes only after the callback has finished execution.</p><p>The resulting <code>FutureOutcome</code> will have the same result as this <code>FutureOutcome</code>, unless
the callback completes abruptly with an exception. In that case, the resulting <code>FutureOutcome</code>
will be determined by the type of the thrown exception:</p><ul><li><code>TestPendingException</code> - <code>Good(Pending)</code></li><li><code>TestCanceledException</code> - <code>Good(Canceled(<the exception>))</code></li><li>Any non-run-aborting <code>Throwable</code> - <code>Good(Failed(<the exception>))</code></li><li>A run-aborting <code>Throwable</code> - <code>Bad(<the run-aborting exception>)</code></li></ul><p>For more information on <em>run-aborting</em> exceptions, see the <a href="Suite.html#errorHandling">Run-aborting exceptions</a> section
in the main Scaladoc for trait <code>Suite</code>.</p></div><dl class="paramcmts block"><dt class="param">callback</dt><dd class="cmt"><p>a side-effecting function to execute if and when this <code>FutureOutcome</code> completes with an <code>Outcome</code>
(<em>i.e.</em>, not an abort)</p></dd><dt class="param">executionContext</dt><dd class="cmt"><p>an execution context that provides a strategy for executing the callback function</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>FutureOutcome</code> that will complete only after this <code>FutureOutcome</code>
has completed and, if this <code>FutureOutcome</code> completes with a valid
<code>Outcome</code>, the passed callback function has completed execution.</p></dd></dl></div>
</li><li name="org.scalatest.FutureOutcome#onPendingThen" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="onPendingThen(callback:=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome"></a>
<a id="onPendingThen(⇒Unit)(ExecutionContext):FutureOutcome"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">onPendingThen</span><span class="params">(<span name="callback">callback: ⇒ <span class="extype" name="scala.Unit">Unit</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="executionContext">executionContext: <span class="extype" name="scala.concurrent.ExecutionContext">ExecutionContext</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalatest.FutureOutcome">FutureOutcome</a></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@onPendingThen(callback:=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Registers a callback function to be executed if this future completes with
<code>Pending</code>, returning a new future that completes only after the
callback has finished execution.</code></p><div class="fullcomment"><div class="comment cmt"><p>Registers a callback function to be executed if this future completes with
<code>Pending</code>, returning a new future that completes only after the
callback has finished execution.</p><p>The resulting <code>FutureOutcome</code> will have the same result as this <code>FutureOutcome</code>, unless
the callback completes abruptly with an exception. In that case, the resulting <code>FutureOutcome</code>
will be determined by the type of the thrown exception:</p><ul><li><code>TestPendingException</code> - <code>Good(Pending)</code></li><li><code>TestCanceledException</code> - <code>Good(Canceled(<the exception>))</code></li><li>Any non-run-aborting <code>Throwable</code> - <code>Good(Failed(<the exception>))</code></li><li>A run-aborting <code>Throwable</code> - <code>Bad(<the run-aborting exception>)</code></li></ul><p>For more information on <em>run-aborting</em> exceptions, see the <a href="Suite.html#errorHandling">Run-aborting exceptions</a> section
in the main Scaladoc for trait <code>Suite</code>.</p></div><dl class="paramcmts block"><dt class="param">callback</dt><dd class="cmt"><p>a side-effecting function to execute if and when this <code>FutureOutcome</code> completes with <code>Pending</code></p></dd><dt class="param">executionContext</dt><dd class="cmt"><p>an execution context that provides a strategy for executing the callback function</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>FutureOutcome</code> that will complete only after this <code>FutureOutcome</code>
has completed and, if this <code>FutureOutcome</code> completes with <code>Pending</code>, the
passed callback function has completed execution.</p></dd></dl></div>
</li><li name="org.scalatest.FutureOutcome#onSucceededThen" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="onSucceededThen(callback:=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome"></a>
<a id="onSucceededThen(⇒Unit)(ExecutionContext):FutureOutcome"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">onSucceededThen</span><span class="params">(<span name="callback">callback: ⇒ <span class="extype" name="scala.Unit">Unit</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="executionContext">executionContext: <span class="extype" name="scala.concurrent.ExecutionContext">ExecutionContext</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalatest.FutureOutcome">FutureOutcome</a></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@onSucceededThen(callback:=>Unit)(implicitexecutionContext:scala.concurrent.ExecutionContext):org.scalatest.FutureOutcome" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Registers a callback function to be executed if this future completes with
<code>Succeeded</code>, returning a new future that completes only after the
callback has finished execution.</code></p><div class="fullcomment"><div class="comment cmt"><p>Registers a callback function to be executed if this future completes with
<code>Succeeded</code>, returning a new future that completes only after the
callback has finished execution.</p><p>The resulting <code>FutureOutcome</code> will have the same result as this <code>FutureOutcome</code>, unless
the callback completes abruptly with an exception. In that case, the resulting <code>FutureOutcome</code>
will be determined by the type of the thrown exception:</p><ul><li><code>TestPendingException</code> - <code>Good(Pending)</code></li><li><code>TestCanceledException</code> - <code>Good(Canceled(<the exception>))</code></li><li>Any non-run-aborting <code>Throwable</code> - <code>Good(Failed(<the exception>))</code></li><li>A run-aborting <code>Throwable</code> - <code>Bad(<the run-aborting exception>)</code></li></ul><p>For more information on <em>run-aborting</em> exceptions, see the <a href="Suite.html#errorHandling">Run-aborting exceptions</a> section
in the main Scaladoc for trait <code>Suite</code>.</p></div><dl class="paramcmts block"><dt class="param">callback</dt><dd class="cmt"><p>a side-effecting function to execute if and when this <code>FutureOutcome</code> completes with <code>Succeeded</code></p></dd><dt class="param">executionContext</dt><dd class="cmt"><p>an execution context that provides a strategy for executing the callback function</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>FutureOutcome</code> that will complete only after this <code>FutureOutcome</code>
has completed and, if this <code>FutureOutcome</code> completes with <code>Succeeded</code>, the
passed callback function has completed execution.</p></dd></dl></div>
</li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="synchronized[T0](x$1:=>T0):T0"></a>
<a id="synchronized[T0](⇒T0):T0"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@synchronized[T0](x$1:=>T0):T0" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="org.scalatest.FutureOutcome#toFuture" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="toFuture:scala.concurrent.Future[org.scalatest.Outcome]"></a>
<a id="toFuture:Future[Outcome]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">toFuture</span><span class="result">: <span class="extype" name="scala.concurrent.Future">Future</span>[<a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a>]</span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@toFuture:scala.concurrent.Future[org.scalatest.Outcome]" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Converts this <code>FutureOutcome</code> to a <code>Future[Outcome]</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>FutureOutcome</code> to a <code>Future[Outcome]</code>.
</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the underlying <code>Future[Outcome]</code></p></dd></dl></div>
</li><li name="scala.AnyRef#toString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="toString():String"></a>
<a id="toString():String"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">toString</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.String">String</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@toString():String" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="org.scalatest.FutureOutcome#value" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="value:Option[org.scalactic.Or[org.scalatest.Outcome,Throwable]]"></a>
<a id="value:Option[Or[Outcome,Throwable]]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">value</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="org.scalactic.Or">Or</span>[<a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a>, <span class="extype" name="scala.Throwable">Throwable</span>]]</span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@value:Option[org.scalactic.Or[org.scalatest.Outcome,Throwable]]" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Returns a value that indicates whether this <code>FutureOutcome</code> has completed,
and if so, indicates its result.</code></p><div class="fullcomment"><div class="comment cmt"><p>Returns a value that indicates whether this <code>FutureOutcome</code> has completed,
and if so, indicates its result.</p><p>If this <code>FutureOutcome</code> has not yet completed, this method will return
<code>None</code>. Otherwise, this method will return a <code>Some</code> that contains
either a <code>Good[Outcome]</code>, if this <code>FutureOutcome</code> completed with
a valid <code>Outcome</code> result, or if it completed with a thrown run-aborting
exception, a <code>Bad[Throwable]</code>.</p><p>For more information on <em>run-aborting</em> exceptions, see the <a href="Suite.html#errorHandling">Run-aborting exceptions</a> section
in the main Scaladoc for trait <code>Suite</code>.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a <code>Some</code> containing an <code>Or</code> value that indicates the result of this
<code>FutureOutcome</code> if it has completed; <code>None</code> otherwise.</p></dd></dl></div>
</li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="wait():Unit"></a>
<a id="wait():Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@wait():Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="defval" name="classOf[java.lang.InterruptedException]">...</span>
</span>)</span>
</dd></dl></div>
</li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="wait(x$1:Long,x$2:Int):Unit"></a>
<a id="wait(Long,Int):Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@wait(x$1:Long,x$2:Int):Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="defval" name="classOf[java.lang.InterruptedException]">...</span>
</span>)</span>
</dd></dl></div>
</li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="wait(x$1:Long):Unit"></a>
<a id="wait(Long):Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FutureOutcome@wait(x$1:Long):Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="defval" name="classOf[java.lang.InterruptedException]">...</span>
</span>)</span>
</dd></dl></div>
</li></ol>
</div>
</div>
<div id="inheritedMembers">
<div class="parent" name="scala.AnyRef">
<h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3>
</div><div class="parent" name="scala.Any">
<h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3>
</div>
</div>
<div id="groupedMembers">
<div class="group" name="Ungrouped">
<h3>Ungrouped</h3>
</div>
</div>
</div>
<div id="tooltip"></div>
<div id="footer"> </div>
</body>
</html>
| scalatest/scalatest-website | public/scaladoc/3.0.2/org/scalatest/FutureOutcome.html | HTML | apache-2.0 | 63,956 |
<!DOCTYPE html>
<html>
<head>
<title>UVLens SDK Test</title>
<!-- Include the SDK -->
<script src="UVLensSDK.js"></script>
<!-- The script which calls the sdk and shows the response -->
<script type='text/javascript'>
function getCurrentUV(){
var latitude = document.getElementById('latitude').value;
var longitude = document.getElementById('longitude').value;
document.getElementById('response').value = uvlens.getCurrentUV(latitude, longitude);
}
function getForecast(){
var latitude = document.getElementById('latitude').value;
var longitude = document.getElementById('longitude').value;
document.getElementById('response').value = uvlens.getForecast(latitude, longitude);
}
function getBurnTime(){
var latitude = document.getElementById('latitude').value;
var longitude = document.getElementById('longitude').value;
var skintype = document.getElementById('skinType').value;
document.getElementById('response').value = uvlens.getBurnTime(latitude, longitude, skintype);
}
function getUVMap() {
document.getElementById('response').value = uvlens.getUVMap();
}
function getUVMapForecast() {
document.getElementById('response').value = uvlens.getUVMapForecast();
}
</script>
</head>
<body>
<h1>UVLens SDK Test Site</h1>
<br>
Latitude: <textarea Id='latitude'></textarea>
Longitude: <textarea Id='longitude'></textarea>
Skin Type: <textarea Id='skinType'></textarea>
<br>
<br>
<br>
<button onclick="getCurrentUV()">Get Current UV</button>
<button onclick="getForecast()">Get Four Day Forecast</button>
<button onclick="getBurnTime()">Get Burn Time</button>
<button onclick="getUVMap()">Get UV Map</button>
<button onclick="getUVMapForecast()">Get UV Map Four Day Forecast</button>
<br>
<br>
<br>
Response: <textarea Id='response'></textarea>
</body>
</html> | uvlens/edu_sdk | SDKTestSite.html | HTML | apache-2.0 | 1,888 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.6"/>
<title>OpenNI 1.5.8: XnList.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 id="projectlogo"><img alt="Logo" src="OpenNILogo.bmp"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">OpenNI 1.5.8
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.6 -->
<div id="navrow1" 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="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<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_856524284ebe840938865dc061f982fb.html">Include</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">XnList.h</div> </div>
</div><!--header-->
<div class="contents">
<a href="_xn_list_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">* *</span></div>
<div class="line"><a name="l00003"></a><span class="lineno"> 3</span> <span class="comment">* OpenNI 1.x Alpha *</span></div>
<div class="line"><a name="l00004"></a><span class="lineno"> 4</span> <span class="comment">* Copyright (C) 2012 PrimeSense Ltd. *</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 file is part of OpenNI. *</span></div>
<div class="line"><a name="l00007"></a><span class="lineno"> 7</span> <span class="comment">* *</span></div>
<div class="line"><a name="l00008"></a><span class="lineno"> 8</span> <span class="comment">* Licensed under the Apache License, Version 2.0 (the "License"); *</span></div>
<div class="line"><a name="l00009"></a><span class="lineno"> 9</span> <span class="comment">* you may not use this file except in compliance with the License. *</span></div>
<div class="line"><a name="l00010"></a><span class="lineno"> 10</span> <span class="comment">* You may obtain a copy of the License at *</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">* http://www.apache.org/licenses/LICENSE-2.0 *</span></div>
<div class="line"><a name="l00013"></a><span class="lineno"> 13</span> <span class="comment">* *</span></div>
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span> <span class="comment">* Unless required by applicable law or agreed to in writing, software *</span></div>
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span> <span class="comment">* distributed under the License is distributed on an "AS IS" BASIS, *</span></div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span> <span class="comment">* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *</span></div>
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span> <span class="comment">* See the License for the specific language governing permissions and *</span></div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span> <span class="comment">* limitations under the License. *</span></div>
<div class="line"><a name="l00019"></a><span class="lineno"> 19</span> <span class="comment">* *</span></div>
<div class="line"><a name="l00020"></a><span class="lineno"> 20</span> <span class="comment">*****************************************************************************/</span></div>
<div class="line"><a name="l00021"></a><span class="lineno"> 21</span> <span class="preprocessor">#ifndef _XN_LIST_H</span></div>
<div class="line"><a name="l00022"></a><span class="lineno"> 22</span> <span class="preprocessor"></span><span class="preprocessor">#define _XN_LIST_H</span></div>
<div class="line"><a name="l00023"></a><span class="lineno"> 23</span> <span class="preprocessor"></span></div>
<div class="line"><a name="l00024"></a><span class="lineno"> 24</span> <span class="comment">//---------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00025"></a><span class="lineno"> 25</span> <span class="comment">// Includes</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="preprocessor">#include <<a class="code" href="_xn_data_types_8h.html">XnDataTypes.h</a>></span></div>
<div class="line"><a name="l00028"></a><span class="lineno"> 28</span> <span class="preprocessor">#include <<a class="code" href="_i_xn_node_allocator_8h.html">IXnNodeAllocator.h</a>></span></div>
<div class="line"><a name="l00029"></a><span class="lineno"> 29</span> <span class="preprocessor">#include <<a class="code" href="_xn_node_allocator_8h.html">XnNodeAllocator.h</a>></span></div>
<div class="line"><a name="l00030"></a><span class="lineno"> 30</span> <span class="preprocessor">#include <<a class="code" href="_xn_node_8h.html">XnNode.h</a>></span></div>
<div class="line"><a name="l00031"></a><span class="lineno"> 31</span> <span class="preprocessor">#include <<a class="code" href="_xn_status_codes_8h.html">XnStatusCodes.h</a>></span></div>
<div class="line"><a name="l00032"></a><span class="lineno"> 32</span> </div>
<div class="line"><a name="l00033"></a><span class="lineno"> 33</span> <span class="comment">//---------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00034"></a><span class="lineno"> 34</span> <span class="comment">// Types</span></div>
<div class="line"><a name="l00035"></a><span class="lineno"> 35</span> <span class="comment">//---------------------------------------------------------------------------</span></div>
<div class="line"><a name="l00036"></a><span class="lineno"> 36</span> </div>
<div class="line"><a name="l00040"></a><span class="lineno"><a class="line" href="class_xn_list.html"> 40</a></span> <span class="keyword">class </span><a class="code" href="class_xn_list.html">XnList</a></div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span> {</div>
<div class="line"><a name="l00042"></a><span class="lineno"> 42</span> <span class="keyword">public</span>:</div>
<div class="line"><a name="l00043"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html"> 43</a></span>  <span class="keyword">class </span><a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a></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="keyword">public</span>:</div>
<div class="line"><a name="l00046"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#a382b587beed8d937c718f0c76b8179b6"> 46</a></span>  <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="class_xn_list.html">XnList</a>;</div>
<div class="line"><a name="l00047"></a><span class="lineno"> 47</span> </div>
<div class="line"><a name="l00053"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#abae19fa52e2bf60a3b738db817ee626d"> 53</a></span>  <a class="code" href="class_xn_list_1_1_const_iterator.html#abae19fa52e2bf60a3b738db817ee626d">ConstIterator</a>(<span class="keyword">const</span> <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>& other) : <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>(other.<a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>) {}</div>
<div class="line"><a name="l00054"></a><span class="lineno"> 54</span> </div>
<div class="line"><a name="l00058"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#acd586ee44fef4cb0a9223e7921d336d4"> 58</a></span>  <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>& <a class="code" href="class_xn_list_1_1_const_iterator.html#acd586ee44fef4cb0a9223e7921d336d4">operator++</a>()</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>  <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a> = <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>-><a class="code" href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">Next</a>();</div>
<div class="line"><a name="l00061"></a><span class="lineno"> 61</span>  <span class="keywordflow">return</span> *<span class="keyword">this</span>;</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> </div>
<div class="line"><a name="l00067"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#a57b3101175e3faf7d137df4e75e09826"> 67</a></span>  <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> <a class="code" href="class_xn_list_1_1_const_iterator.html#a57b3101175e3faf7d137df4e75e09826">operator++</a>(<span class="keywordtype">int</span>)</div>
<div class="line"><a name="l00068"></a><span class="lineno"> 68</span>  {</div>
<div class="line"><a name="l00069"></a><span class="lineno"> 69</span>  <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> other(<a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>);</div>
<div class="line"><a name="l00070"></a><span class="lineno"> 70</span>  <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a> = <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>-><a class="code" href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">Next</a>();</div>
<div class="line"><a name="l00071"></a><span class="lineno"> 71</span>  <span class="keywordflow">return</span> other;</div>
<div class="line"><a name="l00072"></a><span class="lineno"> 72</span>  }</div>
<div class="line"><a name="l00073"></a><span class="lineno"> 73</span> </div>
<div class="line"><a name="l00077"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#a4421be013ef3e7e67c8049927da0e3aa"> 77</a></span>  <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>& <a class="code" href="class_xn_list_1_1_const_iterator.html#a4421be013ef3e7e67c8049927da0e3aa">operator--</a>()</div>
<div class="line"><a name="l00078"></a><span class="lineno"> 78</span>  {</div>
<div class="line"><a name="l00079"></a><span class="lineno"> 79</span>  <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a> = <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>-><a class="code" href="class_xn_node.html#a8854e1064d8fcaf973d08eaaffbeb9d0">Previous</a>();</div>
<div class="line"><a name="l00080"></a><span class="lineno"> 80</span>  <span class="keywordflow">return</span> *<span class="keyword">this</span>;</div>
<div class="line"><a name="l00081"></a><span class="lineno"> 81</span>  }</div>
<div class="line"><a name="l00082"></a><span class="lineno"> 82</span> </div>
<div class="line"><a name="l00086"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#a62a1c7b692de0ecbfb792d99daf0e256"> 86</a></span>  <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> <a class="code" href="class_xn_list_1_1_const_iterator.html#a62a1c7b692de0ecbfb792d99daf0e256">operator--</a>(<span class="keywordtype">int</span>)</div>
<div class="line"><a name="l00087"></a><span class="lineno"> 87</span>  {</div>
<div class="line"><a name="l00088"></a><span class="lineno"> 88</span>  <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> other = *<span class="keyword">this</span>;</div>
<div class="line"><a name="l00089"></a><span class="lineno"> 89</span>  --*<span class="keyword">this</span>;</div>
<div class="line"><a name="l00090"></a><span class="lineno"> 90</span>  <span class="keywordflow">return</span> other;</div>
<div class="line"><a name="l00091"></a><span class="lineno"> 91</span>  }</div>
<div class="line"><a name="l00092"></a><span class="lineno"> 92</span> </div>
<div class="line"><a name="l00098"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#aedbbed25fc1aea87ac47270696023826"> 98</a></span>  XnBool <a class="code" href="class_xn_list_1_1_const_iterator.html#aedbbed25fc1aea87ac47270696023826">operator==</a>(<span class="keyword">const</span> <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>& other)<span class="keyword"> const</span></div>
<div class="line"><a name="l00099"></a><span class="lineno"> 99</span> <span class="keyword"> </span>{</div>
<div class="line"><a name="l00100"></a><span class="lineno"> 100</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a> == other.<a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>;</div>
<div class="line"><a name="l00101"></a><span class="lineno"> 101</span>  }</div>
<div class="line"><a name="l00107"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#ae8ccc9f0778ad983efff57d35b40a84a"> 107</a></span>  XnBool <a class="code" href="class_xn_list_1_1_const_iterator.html#ae8ccc9f0778ad983efff57d35b40a84a">operator!=</a>(<span class="keyword">const</span> <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>& other)<span class="keyword"> const</span></div>
<div class="line"><a name="l00108"></a><span class="lineno"> 108</span> <span class="keyword"> </span>{</div>
<div class="line"><a name="l00109"></a><span class="lineno"> 109</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a> != other.<a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>;</div>
<div class="line"><a name="l00110"></a><span class="lineno"> 110</span>  }</div>
<div class="line"><a name="l00111"></a><span class="lineno"> 111</span> </div>
<div class="line"><a name="l00115"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#a37dfebb5e9ce517b44ada7655d716cea"> 115</a></span>  <span class="keyword">const</span> <a class="code" href="_xn_data_types_8h.html#ad012784342cc15723d747ff1872e06da">XnValue</a>& <a class="code" href="class_xn_list_1_1_const_iterator.html#a37dfebb5e9ce517b44ada7655d716cea">operator*</a>()<span class="keyword"> const</span></div>
<div class="line"><a name="l00116"></a><span class="lineno"> 116</span> <span class="keyword"> </span>{</div>
<div class="line"><a name="l00117"></a><span class="lineno"> 117</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>-><a class="code" href="class_xn_node.html#af5e4b592e06c8bafbedfcc3a16911839">Data</a>();</div>
<div class="line"><a name="l00118"></a><span class="lineno"> 118</span>  }</div>
<div class="line"><a name="l00119"></a><span class="lineno"> 119</span> </div>
<div class="line"><a name="l00120"></a><span class="lineno"> 120</span> </div>
<div class="line"><a name="l00124"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#a64545955faa228f42299ae77f4b87275"> 124</a></span>  <span class="keyword">const</span> <a class="code" href="class_xn_node.html">XnNode</a>* <a class="code" href="class_xn_list_1_1_const_iterator.html#a64545955faa228f42299ae77f4b87275">GetNode</a>()<span class="keyword"> const</span></div>
<div class="line"><a name="l00125"></a><span class="lineno"> 125</span> <span class="keyword"> </span>{</div>
<div class="line"><a name="l00126"></a><span class="lineno"> 126</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>;</div>
<div class="line"><a name="l00127"></a><span class="lineno"> 127</span>  }</div>
<div class="line"><a name="l00128"></a><span class="lineno"> 128</span> </div>
<div class="line"><a name="l00132"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#a345e5bdfad69edc258a54e595d44510d"> 132</a></span>  <a class="code" href="class_xn_node.html">XnNode</a>* <a class="code" href="class_xn_list_1_1_const_iterator.html#a345e5bdfad69edc258a54e595d44510d">GetNode</a>()</div>
<div class="line"><a name="l00133"></a><span class="lineno"> 133</span>  {</div>
<div class="line"><a name="l00134"></a><span class="lineno"> 134</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>;</div>
<div class="line"><a name="l00135"></a><span class="lineno"> 135</span>  }</div>
<div class="line"><a name="l00136"></a><span class="lineno"> 136</span> </div>
<div class="line"><a name="l00137"></a><span class="lineno"> 137</span>  <span class="keyword">protected</span>:</div>
<div class="line"><a name="l00143"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#af1579d07351c734fcfa5bcff0cb59123"> 143</a></span>  <a class="code" href="class_xn_list_1_1_const_iterator.html#af1579d07351c734fcfa5bcff0cb59123">ConstIterator</a>(<a class="code" href="class_xn_node.html">XnNode</a>* pNode) : <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>(pNode) {}</div>
<div class="line"><a name="l00144"></a><span class="lineno"> 144</span> </div>
<div class="line"><a name="l00146"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f"> 146</a></span>  <a class="code" href="class_xn_node.html">XnNode</a>* <a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>;</div>
<div class="line"><a name="l00147"></a><span class="lineno"> 147</span>  };</div>
<div class="line"><a name="l00148"></a><span class="lineno"> 148</span> </div>
<div class="line"><a name="l00152"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_iterator.html"> 152</a></span>  <span class="keyword">class </span><a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a> : <span class="keyword">public</span> <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a></div>
<div class="line"><a name="l00153"></a><span class="lineno"> 153</span>  {</div>
<div class="line"><a name="l00154"></a><span class="lineno"> 154</span>  <span class="keyword">public</span>:</div>
<div class="line"><a name="l00155"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_iterator.html#a382b587beed8d937c718f0c76b8179b6"> 155</a></span>  <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="class_xn_list.html">XnList</a>;</div>
<div class="line"><a name="l00156"></a><span class="lineno"> 156</span> </div>
<div class="line"><a name="l00162"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_iterator.html#ac05a55c1d71849977a4255ed4e68f56f"> 162</a></span>  <span class="keyword">inline</span> <a class="code" href="class_xn_list_1_1_iterator.html#ac05a55c1d71849977a4255ed4e68f56f">Iterator</a>(<span class="keyword">const</span> <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a>& other) : <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>(other) {}</div>
<div class="line"><a name="l00163"></a><span class="lineno"> 163</span> </div>
<div class="line"><a name="l00167"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_iterator.html#a615630cd92ed76be8615f216db0602ba"> 167</a></span>  <span class="keyword">inline</span> <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a>& <a class="code" href="class_xn_list_1_1_iterator.html#a615630cd92ed76be8615f216db0602ba">operator++</a>() </div>
<div class="line"><a name="l00168"></a><span class="lineno"> 168</span>  { </div>
<div class="line"><a name="l00169"></a><span class="lineno"> 169</span>  ++(*(<a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>*)<span class="keyword">this</span>);</div>
<div class="line"><a name="l00170"></a><span class="lineno"> 170</span>  <span class="keywordflow">return</span> (*<span class="keyword">this</span>);</div>
<div class="line"><a name="l00171"></a><span class="lineno"> 171</span>  }</div>
<div class="line"><a name="l00175"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_iterator.html#a78b66f8872a7f74cd69e8998e7f25a80"> 175</a></span>  <span class="keyword">inline</span> <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a> <a class="code" href="class_xn_list_1_1_iterator.html#a78b66f8872a7f74cd69e8998e7f25a80">operator++</a>(<span class="keywordtype">int</span>) </div>
<div class="line"><a name="l00176"></a><span class="lineno"> 176</span>  { </div>
<div class="line"><a name="l00177"></a><span class="lineno"> 177</span>  <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a> result = *<span class="keyword">this</span>;</div>
<div class="line"><a name="l00178"></a><span class="lineno"> 178</span>  ++*<span class="keyword">this</span>;</div>
<div class="line"><a name="l00179"></a><span class="lineno"> 179</span>  <span class="keywordflow">return</span> (result);</div>
<div class="line"><a name="l00180"></a><span class="lineno"> 180</span>  }</div>
<div class="line"><a name="l00181"></a><span class="lineno"> 181</span>  </div>
<div class="line"><a name="l00185"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_iterator.html#add831c0620ea6fb555ed1083f0160110"> 185</a></span>  <span class="keyword">inline</span> <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a>& <a class="code" href="class_xn_list_1_1_iterator.html#add831c0620ea6fb555ed1083f0160110">operator--</a>() </div>
<div class="line"><a name="l00186"></a><span class="lineno"> 186</span>  { </div>
<div class="line"><a name="l00187"></a><span class="lineno"> 187</span>  --(*(<a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>*)<span class="keyword">this</span>); </div>
<div class="line"><a name="l00188"></a><span class="lineno"> 188</span>  <span class="keywordflow">return</span> (*<span class="keyword">this</span>);</div>
<div class="line"><a name="l00189"></a><span class="lineno"> 189</span>  }</div>
<div class="line"><a name="l00193"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_iterator.html#ab2a6854a7b1739086ee9e12547730a66"> 193</a></span>  <span class="keyword">inline</span> <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a> <a class="code" href="class_xn_list_1_1_iterator.html#ab2a6854a7b1739086ee9e12547730a66">operator--</a>(<span class="keywordtype">int</span>)</div>
<div class="line"><a name="l00194"></a><span class="lineno"> 194</span>  { </div>
<div class="line"><a name="l00195"></a><span class="lineno"> 195</span>  <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a> result = *<span class="keyword">this</span>;</div>
<div class="line"><a name="l00196"></a><span class="lineno"> 196</span>  --*<span class="keyword">this</span>;</div>
<div class="line"><a name="l00197"></a><span class="lineno"> 197</span>  <span class="keywordflow">return</span> (result);</div>
<div class="line"><a name="l00198"></a><span class="lineno"> 198</span>  }</div>
<div class="line"><a name="l00199"></a><span class="lineno"> 199</span> </div>
<div class="line"><a name="l00203"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_iterator.html#a269995d8b89267d977542c8a317400a6"> 203</a></span>  <span class="keyword">inline</span> <a class="code" href="_xn_data_types_8h.html#ad012784342cc15723d747ff1872e06da">XnValue</a>& <a class="code" href="class_xn_list_1_1_iterator.html#a269995d8b89267d977542c8a317400a6">operator*</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> ((<a class="code" href="_xn_data_types_8h.html#ad012784342cc15723d747ff1872e06da">XnValue</a>&)**(<a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>*)<span class="keyword">this</span>); }</div>
<div class="line"><a name="l00204"></a><span class="lineno"> 204</span> </div>
<div class="line"><a name="l00205"></a><span class="lineno"> 205</span>  <span class="keyword">protected</span>:</div>
<div class="line"><a name="l00211"></a><span class="lineno"><a class="line" href="class_xn_list_1_1_iterator.html#af08167ac0e458ceb711c5fedf45f370c"> 211</a></span>  <span class="keyword">inline</span> <a class="code" href="class_xn_list_1_1_iterator.html#af08167ac0e458ceb711c5fedf45f370c">Iterator</a>(<a class="code" href="class_xn_node.html">XnNode</a>* pNode) : <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>(pNode) {}</div>
<div class="line"><a name="l00212"></a><span class="lineno"> 212</span>  };</div>
<div class="line"><a name="l00213"></a><span class="lineno"> 213</span> </div>
<div class="line"><a name="l00214"></a><span class="lineno"> 214</span> <span class="keyword">public</span>:</div>
<div class="line"><a name="l00218"></a><span class="lineno"><a class="line" href="class_xn_list.html#a5a9db947237cbb41aa0a5b8365f7ff36"> 218</a></span>  <a class="code" href="class_xn_list.html#a5a9db947237cbb41aa0a5b8365f7ff36">XnList</a>()</div>
<div class="line"><a name="l00219"></a><span class="lineno"> 219</span>  {</div>
<div class="line"><a name="l00220"></a><span class="lineno"> 220</span>  <span class="comment">//Default node allocator is XnNodeAllocator</span></div>
<div class="line"><a name="l00221"></a><span class="lineno"> 221</span>  <a class="code" href="class_xn_list.html#a309e34829dbb7bb2d8e89a7fbf30aa94">Init</a>(<a class="code" href="_xn_o_s_8h.html#a3e3a683dfb1848be011990ffa9f9c3c7">XN_NEW</a>(<a class="code" href="class_xn_node_allocator.html">XnNodeAllocator</a>));</div>
<div class="line"><a name="l00222"></a><span class="lineno"> 222</span>  <a class="code" href="class_xn_list.html#a019d2232e9ed27b1891ec65d19bbeb5d">m_bOwnsAllocator</a> = <a class="code" href="_xn_platform_8h.html#aa8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;</div>
<div class="line"><a name="l00223"></a><span class="lineno"> 223</span>  }</div>
<div class="line"><a name="l00224"></a><span class="lineno"> 224</span> </div>
<div class="line"><a name="l00228"></a><span class="lineno"><a class="line" href="class_xn_list.html#a40319bfb036bc85e484a18970b6a20de"> 228</a></span>  <span class="keyword">virtual</span> <a class="code" href="class_xn_list.html#a40319bfb036bc85e484a18970b6a20de">~XnList</a>()</div>
<div class="line"><a name="l00229"></a><span class="lineno"> 229</span>  {</div>
<div class="line"><a name="l00230"></a><span class="lineno"> 230</span>  <a class="code" href="class_xn_list.html#aaa198bf56a5557c435c3e186e026376f">Clear</a>();</div>
<div class="line"><a name="l00231"></a><span class="lineno"> 231</span> </div>
<div class="line"><a name="l00232"></a><span class="lineno"> 232</span>  <span class="comment">// Return base node to the pool</span></div>
<div class="line"><a name="l00233"></a><span class="lineno"> 233</span>  <a class="code" href="class_xn_list.html#abd1ed9a0b5a5a748ea4736368fa8eb82">m_pNodeAllocator</a>-><a class="code" href="class_i_ni_node_allocator.html#a21c78b7ca4dd34fbf067e2265ea9e3a4">Deallocate</a>(<a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>);</div>
<div class="line"><a name="l00234"></a><span class="lineno"> 234</span> </div>
<div class="line"><a name="l00235"></a><span class="lineno"> 235</span>  <span class="keywordflow">if</span> (<a class="code" href="class_xn_list.html#a019d2232e9ed27b1891ec65d19bbeb5d">m_bOwnsAllocator</a>)</div>
<div class="line"><a name="l00236"></a><span class="lineno"> 236</span>  {</div>
<div class="line"><a name="l00237"></a><span class="lineno"> 237</span>  <span class="comment">//We created the allocator in this object, so we must release it</span></div>
<div class="line"><a name="l00238"></a><span class="lineno"> 238</span>  <a class="code" href="_xn_o_s_8h.html#a3d1528ee0954a00d1989971b462d963f">XN_DELETE</a>(<a class="code" href="class_xn_list.html#abd1ed9a0b5a5a748ea4736368fa8eb82">m_pNodeAllocator</a>);</div>
<div class="line"><a name="l00239"></a><span class="lineno"> 239</span>  }</div>
<div class="line"><a name="l00240"></a><span class="lineno"> 240</span>  }</div>
<div class="line"><a name="l00241"></a><span class="lineno"> 241</span> </div>
<div class="line"><a name="l00249"></a><span class="lineno"><a class="line" href="class_xn_list.html#a98c587163e6a1f0e3bdf6ecf018caef0"> 249</a></span>  <a class="code" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> <a class="code" href="class_xn_list.html#a98c587163e6a1f0e3bdf6ecf018caef0">AddFirst</a>(<span class="keyword">const</span> <a class="code" href="_xn_data_types_8h.html#ad012784342cc15723d747ff1872e06da">XnValue</a>& value)</div>
<div class="line"><a name="l00250"></a><span class="lineno"> 250</span>  {</div>
<div class="line"><a name="l00251"></a><span class="lineno"> 251</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list.html#af43dc6fec93a0fe06318eddf3a59e307">Add</a>(<a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>, value);</div>
<div class="line"><a name="l00252"></a><span class="lineno"> 252</span>  }</div>
<div class="line"><a name="l00253"></a><span class="lineno"> 253</span> </div>
<div class="line"><a name="l00261"></a><span class="lineno"><a class="line" href="class_xn_list.html#a17ffd25009c9c1d4c7cefdbeca03ce2e"> 261</a></span>  <a class="code" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> <a class="code" href="class_xn_list.html#a17ffd25009c9c1d4c7cefdbeca03ce2e">AddLast</a>(<span class="keyword">const</span> <a class="code" href="_xn_data_types_8h.html#ad012784342cc15723d747ff1872e06da">XnValue</a>& value)</div>
<div class="line"><a name="l00262"></a><span class="lineno"> 262</span>  {</div>
<div class="line"><a name="l00263"></a><span class="lineno"> 263</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list.html#af43dc6fec93a0fe06318eddf3a59e307">Add</a>(<a class="code" href="class_xn_list.html#aae0612825e24c33e866520dac716558b">rbegin</a>().m_pCurrent, value);</div>
<div class="line"><a name="l00264"></a><span class="lineno"> 264</span>  }</div>
<div class="line"><a name="l00265"></a><span class="lineno"> 265</span> </div>
<div class="line"><a name="l00275"></a><span class="lineno"><a class="line" href="class_xn_list.html#ad22076e52a10c866d55375849eb28d89"> 275</a></span>  <a class="code" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> <a class="code" href="class_xn_list.html#ad22076e52a10c866d55375849eb28d89">AddAfter</a>(<a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> where, <span class="keyword">const</span> <a class="code" href="_xn_data_types_8h.html#ad012784342cc15723d747ff1872e06da">XnValue</a>& val)</div>
<div class="line"><a name="l00276"></a><span class="lineno"> 276</span>  {</div>
<div class="line"><a name="l00277"></a><span class="lineno"> 277</span>  <span class="keywordflow">if</span> (where == <a class="code" href="class_xn_list.html#a15defc46fc8453aa10278b7869042ae8">end</a>())</div>
<div class="line"><a name="l00278"></a><span class="lineno"> 278</span>  {</div>
<div class="line"><a name="l00279"></a><span class="lineno"> 279</span>  <span class="keywordflow">return</span> XN_STATUS_ILLEGAL_POSITION;</div>
<div class="line"><a name="l00280"></a><span class="lineno"> 280</span>  }</div>
<div class="line"><a name="l00281"></a><span class="lineno"> 281</span> </div>
<div class="line"><a name="l00282"></a><span class="lineno"> 282</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list.html#af43dc6fec93a0fe06318eddf3a59e307">Add</a>(where.<a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>, val);</div>
<div class="line"><a name="l00283"></a><span class="lineno"> 283</span>  }</div>
<div class="line"><a name="l00284"></a><span class="lineno"> 284</span> </div>
<div class="line"><a name="l00293"></a><span class="lineno"><a class="line" href="class_xn_list.html#ae56da04e68b36142b0f6d5cc5c7efd7b"> 293</a></span>  <a class="code" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> <a class="code" href="class_xn_list.html#ae56da04e68b36142b0f6d5cc5c7efd7b">AddBefore</a>(<a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> where, <span class="keyword">const</span> <a class="code" href="_xn_data_types_8h.html#ad012784342cc15723d747ff1872e06da">XnValue</a>& val)</div>
<div class="line"><a name="l00294"></a><span class="lineno"> 294</span>  {</div>
<div class="line"><a name="l00295"></a><span class="lineno"> 295</span>  <span class="keywordflow">if</span> (where == <a class="code" href="class_xn_list.html#a15defc46fc8453aa10278b7869042ae8">end</a>())</div>
<div class="line"><a name="l00296"></a><span class="lineno"> 296</span>  {</div>
<div class="line"><a name="l00297"></a><span class="lineno"> 297</span>  <span class="keywordflow">return</span> XN_STATUS_ILLEGAL_POSITION;</div>
<div class="line"><a name="l00298"></a><span class="lineno"> 298</span>  }</div>
<div class="line"><a name="l00299"></a><span class="lineno"> 299</span> </div>
<div class="line"><a name="l00300"></a><span class="lineno"> 300</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list.html#af43dc6fec93a0fe06318eddf3a59e307">Add</a>(where.<a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>-><a class="code" href="class_xn_node.html#a8854e1064d8fcaf973d08eaaffbeb9d0">Previous</a>(), val);</div>
<div class="line"><a name="l00301"></a><span class="lineno"> 301</span>  }</div>
<div class="line"><a name="l00302"></a><span class="lineno"> 302</span> </div>
<div class="line"><a name="l00303"></a><span class="lineno"> 303</span> </div>
<div class="line"><a name="l00311"></a><span class="lineno"><a class="line" href="class_xn_list.html#ab349b35dd1fa8f4356b1a19452126acc"> 311</a></span>  <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a> <a class="code" href="class_xn_list.html#ab349b35dd1fa8f4356b1a19452126acc">Find</a>(<span class="keyword">const</span> <a class="code" href="_xn_data_types_8h.html#ad012784342cc15723d747ff1872e06da">XnValue</a>& value)</div>
<div class="line"><a name="l00312"></a><span class="lineno"> 312</span>  {</div>
<div class="line"><a name="l00313"></a><span class="lineno"> 313</span>  <span class="keywordflow">if</span> (<a class="code" href="class_xn_list.html#aa044a41f572a1b95f4dd2b2e9a364eaa">IsEmpty</a>())</div>
<div class="line"><a name="l00314"></a><span class="lineno"> 314</span>  {</div>
<div class="line"><a name="l00315"></a><span class="lineno"> 315</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list.html#a15defc46fc8453aa10278b7869042ae8">end</a>();</div>
<div class="line"><a name="l00316"></a><span class="lineno"> 316</span>  }</div>
<div class="line"><a name="l00317"></a><span class="lineno"> 317</span> </div>
<div class="line"><a name="l00318"></a><span class="lineno"> 318</span>  <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a> iter = <a class="code" href="class_xn_list.html#ac5fbaef77ba86b8ebd7db9a81c574117">begin</a>();</div>
<div class="line"><a name="l00319"></a><span class="lineno"> 319</span>  <span class="keywordflow">for</span> (; iter != <a class="code" href="class_xn_list.html#a15defc46fc8453aa10278b7869042ae8">end</a>(); ++iter)</div>
<div class="line"><a name="l00320"></a><span class="lineno"> 320</span>  {</div>
<div class="line"><a name="l00321"></a><span class="lineno"> 321</span>  <span class="keywordflow">if</span> (*iter == value)</div>
<div class="line"><a name="l00322"></a><span class="lineno"> 322</span>  <span class="keywordflow">break</span>;</div>
<div class="line"><a name="l00323"></a><span class="lineno"> 323</span>  }</div>
<div class="line"><a name="l00324"></a><span class="lineno"> 324</span>  <span class="keywordflow">return</span> iter;</div>
<div class="line"><a name="l00325"></a><span class="lineno"> 325</span>  }</div>
<div class="line"><a name="l00326"></a><span class="lineno"> 326</span> </div>
<div class="line"><a name="l00327"></a><span class="lineno"> 327</span> </div>
<div class="line"><a name="l00335"></a><span class="lineno"><a class="line" href="class_xn_list.html#a99f5c5750433eeae9fb6d8d8f8c7256c"> 335</a></span>  <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> <a class="code" href="class_xn_list.html#a99f5c5750433eeae9fb6d8d8f8c7256c">Find</a>(<span class="keyword">const</span> <a class="code" href="_xn_data_types_8h.html#ad012784342cc15723d747ff1872e06da">XnValue</a>& value)<span class="keyword"> const</span></div>
<div class="line"><a name="l00336"></a><span class="lineno"> 336</span> <span class="keyword"> </span>{</div>
<div class="line"><a name="l00337"></a><span class="lineno"> 337</span>  <span class="keywordflow">if</span> (<a class="code" href="class_xn_list.html#aa044a41f572a1b95f4dd2b2e9a364eaa">IsEmpty</a>())</div>
<div class="line"><a name="l00338"></a><span class="lineno"> 338</span>  {</div>
<div class="line"><a name="l00339"></a><span class="lineno"> 339</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list.html#a15defc46fc8453aa10278b7869042ae8">end</a>();</div>
<div class="line"><a name="l00340"></a><span class="lineno"> 340</span>  }</div>
<div class="line"><a name="l00341"></a><span class="lineno"> 341</span> </div>
<div class="line"><a name="l00342"></a><span class="lineno"> 342</span>  <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> iter = <a class="code" href="class_xn_list.html#ac5fbaef77ba86b8ebd7db9a81c574117">begin</a>();</div>
<div class="line"><a name="l00343"></a><span class="lineno"> 343</span>  <span class="keywordflow">for</span> (; iter != <a class="code" href="class_xn_list.html#a15defc46fc8453aa10278b7869042ae8">end</a>(); ++iter)</div>
<div class="line"><a name="l00344"></a><span class="lineno"> 344</span>  {</div>
<div class="line"><a name="l00345"></a><span class="lineno"> 345</span>  <span class="keywordflow">if</span> (*iter == value)</div>
<div class="line"><a name="l00346"></a><span class="lineno"> 346</span>  <span class="keywordflow">break</span>;</div>
<div class="line"><a name="l00347"></a><span class="lineno"> 347</span>  }</div>
<div class="line"><a name="l00348"></a><span class="lineno"> 348</span>  <span class="keywordflow">return</span> iter;</div>
<div class="line"><a name="l00349"></a><span class="lineno"> 349</span>  }</div>
<div class="line"><a name="l00350"></a><span class="lineno"> 350</span> </div>
<div class="line"><a name="l00351"></a><span class="lineno"> 351</span> </div>
<div class="line"><a name="l00360"></a><span class="lineno"><a class="line" href="class_xn_list.html#a8c7e0d6b38fafce50bb4fda59cf9097d"> 360</a></span>  <a class="code" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> <a class="code" href="class_xn_list.html#a8c7e0d6b38fafce50bb4fda59cf9097d">Remove</a>(<a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> where, <a class="code" href="_xn_data_types_8h.html#ad012784342cc15723d747ff1872e06da">XnValue</a>& value)</div>
<div class="line"><a name="l00361"></a><span class="lineno"> 361</span>  {</div>
<div class="line"><a name="l00362"></a><span class="lineno"> 362</span>  value = *where;</div>
<div class="line"><a name="l00363"></a><span class="lineno"> 363</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list.html#a8c7e0d6b38fafce50bb4fda59cf9097d">Remove</a>(where);</div>
<div class="line"><a name="l00364"></a><span class="lineno"> 364</span>  }</div>
<div class="line"><a name="l00365"></a><span class="lineno"> 365</span> </div>
<div class="line"><a name="l00373"></a><span class="lineno"><a class="line" href="class_xn_list.html#a8b2535aebcc1ac479efb790fc0bd8fc2"> 373</a></span>  <span class="keyword">virtual</span> <a class="code" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> <a class="code" href="class_xn_list.html#a8b2535aebcc1ac479efb790fc0bd8fc2">Remove</a>(<a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> where)</div>
<div class="line"><a name="l00374"></a><span class="lineno"> 374</span>  {</div>
<div class="line"><a name="l00375"></a><span class="lineno"> 375</span>  <span class="comment">// Verify iterator is valid</span></div>
<div class="line"><a name="l00376"></a><span class="lineno"> 376</span>  <span class="keywordflow">if</span> (where == <a class="code" href="class_xn_list.html#a15defc46fc8453aa10278b7869042ae8">end</a>())</div>
<div class="line"><a name="l00377"></a><span class="lineno"> 377</span>  {</div>
<div class="line"><a name="l00378"></a><span class="lineno"> 378</span>  <span class="keywordflow">return</span> XN_STATUS_ILLEGAL_POSITION;</div>
<div class="line"><a name="l00379"></a><span class="lineno"> 379</span>  }</div>
<div class="line"><a name="l00380"></a><span class="lineno"> 380</span>  <span class="keywordflow">if</span> (<a class="code" href="class_xn_list.html#aa044a41f572a1b95f4dd2b2e9a364eaa">IsEmpty</a>())</div>
<div class="line"><a name="l00381"></a><span class="lineno"> 381</span>  {</div>
<div class="line"><a name="l00382"></a><span class="lineno"> 382</span>  <span class="keywordflow">return</span> XN_STATUS_IS_EMPTY;</div>
<div class="line"><a name="l00383"></a><span class="lineno"> 383</span>  }</div>
<div class="line"><a name="l00384"></a><span class="lineno"> 384</span> </div>
<div class="line"><a name="l00385"></a><span class="lineno"> 385</span>  <a class="code" href="class_xn_node.html">XnNode</a>* pToRemove = where.<a class="code" href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">m_pCurrent</a>;</div>
<div class="line"><a name="l00386"></a><span class="lineno"> 386</span> </div>
<div class="line"><a name="l00387"></a><span class="lineno"> 387</span>  <span class="comment">// Connect other nodes to bypass the one removed</span></div>
<div class="line"><a name="l00388"></a><span class="lineno"> 388</span>  pToRemove-><a class="code" href="class_xn_node.html#a8854e1064d8fcaf973d08eaaffbeb9d0">Previous</a>()-><a class="code" href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">Next</a>() = pToRemove-><a class="code" href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">Next</a>();</div>
<div class="line"><a name="l00389"></a><span class="lineno"> 389</span>  pToRemove-><a class="code" href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">Next</a>()-><a class="code" href="class_xn_node.html#a8854e1064d8fcaf973d08eaaffbeb9d0">Previous</a>() = pToRemove-><a class="code" href="class_xn_node.html#a8854e1064d8fcaf973d08eaaffbeb9d0">Previous</a>();</div>
<div class="line"><a name="l00390"></a><span class="lineno"> 390</span> </div>
<div class="line"><a name="l00391"></a><span class="lineno"> 391</span>  <span class="comment">// Return removed node to the pool</span></div>
<div class="line"><a name="l00392"></a><span class="lineno"> 392</span>  <a class="code" href="class_xn_list.html#abd1ed9a0b5a5a748ea4736368fa8eb82">m_pNodeAllocator</a>-><a class="code" href="class_i_ni_node_allocator.html#a21c78b7ca4dd34fbf067e2265ea9e3a4">Deallocate</a>(pToRemove);</div>
<div class="line"><a name="l00393"></a><span class="lineno"> 393</span> </div>
<div class="line"><a name="l00394"></a><span class="lineno"> 394</span>  <span class="keywordflow">return</span> <a class="code" href="_xn_status_8h.html#a92729089d8e28e740a3f8b5169c8f695">XN_STATUS_OK</a>;</div>
<div class="line"><a name="l00395"></a><span class="lineno"> 395</span>  }</div>
<div class="line"><a name="l00396"></a><span class="lineno"> 396</span> </div>
<div class="line"><a name="l00397"></a><span class="lineno"> 397</span> </div>
<div class="line"><a name="l00401"></a><span class="lineno"><a class="line" href="class_xn_list.html#aaa198bf56a5557c435c3e186e026376f"> 401</a></span>  <a class="code" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> <a class="code" href="class_xn_list.html#aaa198bf56a5557c435c3e186e026376f">Clear</a>()</div>
<div class="line"><a name="l00402"></a><span class="lineno"> 402</span>  {</div>
<div class="line"><a name="l00403"></a><span class="lineno"> 403</span>  <span class="keywordflow">while</span> (!<a class="code" href="class_xn_list.html#aa044a41f572a1b95f4dd2b2e9a364eaa">IsEmpty</a>())</div>
<div class="line"><a name="l00404"></a><span class="lineno"> 404</span>  <a class="code" href="class_xn_list.html#a8c7e0d6b38fafce50bb4fda59cf9097d">Remove</a>(<a class="code" href="class_xn_list.html#ac5fbaef77ba86b8ebd7db9a81c574117">begin</a>());</div>
<div class="line"><a name="l00405"></a><span class="lineno"> 405</span> </div>
<div class="line"><a name="l00406"></a><span class="lineno"> 406</span>  <span class="keywordflow">return</span> <a class="code" href="_xn_status_8h.html#a92729089d8e28e740a3f8b5169c8f695">XN_STATUS_OK</a>;</div>
<div class="line"><a name="l00407"></a><span class="lineno"> 407</span>  }</div>
<div class="line"><a name="l00408"></a><span class="lineno"> 408</span> </div>
<div class="line"><a name="l00412"></a><span class="lineno"><a class="line" href="class_xn_list.html#aa044a41f572a1b95f4dd2b2e9a364eaa"> 412</a></span>  XnBool <a class="code" href="class_xn_list.html#aa044a41f572a1b95f4dd2b2e9a364eaa">IsEmpty</a>()<span class="keyword"> const</span></div>
<div class="line"><a name="l00413"></a><span class="lineno"> 413</span> <span class="keyword"> </span>{</div>
<div class="line"><a name="l00414"></a><span class="lineno"> 414</span>  <span class="keywordflow">return</span> (<a class="code" href="class_xn_list.html#ac5fbaef77ba86b8ebd7db9a81c574117">begin</a>() == <a class="code" href="class_xn_list.html#a15defc46fc8453aa10278b7869042ae8">end</a>());</div>
<div class="line"><a name="l00415"></a><span class="lineno"> 415</span>  }</div>
<div class="line"><a name="l00416"></a><span class="lineno"> 416</span> </div>
<div class="line"><a name="l00420"></a><span class="lineno"><a class="line" href="class_xn_list.html#a1fde8766836ddd5d9ea68e13c5c3625a"> 420</a></span>  XnUInt32 <a class="code" href="class_xn_list.html#a1fde8766836ddd5d9ea68e13c5c3625a">Size</a>()<span class="keyword"> const</span></div>
<div class="line"><a name="l00421"></a><span class="lineno"> 421</span> <span class="keyword"> </span>{</div>
<div class="line"><a name="l00422"></a><span class="lineno"> 422</span>  XnUInt32 nSize = 0;</div>
<div class="line"><a name="l00423"></a><span class="lineno"> 423</span>  <span class="keywordflow">for</span> (<a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> iter = <a class="code" href="class_xn_list.html#ac5fbaef77ba86b8ebd7db9a81c574117">begin</a>(); iter != <a class="code" href="class_xn_list.html#a15defc46fc8453aa10278b7869042ae8">end</a>(); ++iter, ++nSize)</div>
<div class="line"><a name="l00424"></a><span class="lineno"> 424</span>  ;</div>
<div class="line"><a name="l00425"></a><span class="lineno"> 425</span> </div>
<div class="line"><a name="l00426"></a><span class="lineno"> 426</span>  <span class="keywordflow">return</span> nSize;</div>
<div class="line"><a name="l00427"></a><span class="lineno"> 427</span>  }</div>
<div class="line"><a name="l00428"></a><span class="lineno"> 428</span> </div>
<div class="line"><a name="l00432"></a><span class="lineno"><a class="line" href="class_xn_list.html#ac5fbaef77ba86b8ebd7db9a81c574117"> 432</a></span>  <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a> <a class="code" href="class_xn_list.html#ac5fbaef77ba86b8ebd7db9a81c574117">begin</a>()</div>
<div class="line"><a name="l00433"></a><span class="lineno"> 433</span>  {</div>
<div class="line"><a name="l00434"></a><span class="lineno"> 434</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a>(<a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>-><a class="code" href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">Next</a>());</div>
<div class="line"><a name="l00435"></a><span class="lineno"> 435</span>  }</div>
<div class="line"><a name="l00436"></a><span class="lineno"> 436</span> </div>
<div class="line"><a name="l00440"></a><span class="lineno"><a class="line" href="class_xn_list.html#a56e992b19551287df2f7cfb28880069f"> 440</a></span>  <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> <a class="code" href="class_xn_list.html#a56e992b19551287df2f7cfb28880069f">begin</a>()<span class="keyword"> const</span></div>
<div class="line"><a name="l00441"></a><span class="lineno"> 441</span> <span class="keyword"> </span>{</div>
<div class="line"><a name="l00442"></a><span class="lineno"> 442</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>(<a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>-><a class="code" href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">Next</a>());</div>
<div class="line"><a name="l00443"></a><span class="lineno"> 443</span>  }</div>
<div class="line"><a name="l00444"></a><span class="lineno"> 444</span> </div>
<div class="line"><a name="l00448"></a><span class="lineno"><a class="line" href="class_xn_list.html#a15defc46fc8453aa10278b7869042ae8"> 448</a></span>  <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a> <a class="code" href="class_xn_list.html#a15defc46fc8453aa10278b7869042ae8">end</a>()</div>
<div class="line"><a name="l00449"></a><span class="lineno"> 449</span>  {</div>
<div class="line"><a name="l00450"></a><span class="lineno"> 450</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a>(<a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>);</div>
<div class="line"><a name="l00451"></a><span class="lineno"> 451</span>  }</div>
<div class="line"><a name="l00452"></a><span class="lineno"> 452</span> </div>
<div class="line"><a name="l00456"></a><span class="lineno"><a class="line" href="class_xn_list.html#aa989ca16d1b77d89fb42408ca7094a7a"> 456</a></span>  <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> <a class="code" href="class_xn_list.html#aa989ca16d1b77d89fb42408ca7094a7a">end</a>()<span class="keyword"> const</span></div>
<div class="line"><a name="l00457"></a><span class="lineno"> 457</span> <span class="keyword"> </span>{</div>
<div class="line"><a name="l00458"></a><span class="lineno"> 458</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>(<a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>);</div>
<div class="line"><a name="l00459"></a><span class="lineno"> 459</span>  }</div>
<div class="line"><a name="l00460"></a><span class="lineno"> 460</span> </div>
<div class="line"><a name="l00464"></a><span class="lineno"><a class="line" href="class_xn_list.html#aae0612825e24c33e866520dac716558b"> 464</a></span>  <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a> <a class="code" href="class_xn_list.html#aae0612825e24c33e866520dac716558b">rbegin</a>()</div>
<div class="line"><a name="l00465"></a><span class="lineno"> 465</span>  {</div>
<div class="line"><a name="l00466"></a><span class="lineno"> 466</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a>(<a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>-><a class="code" href="class_xn_node.html#a8854e1064d8fcaf973d08eaaffbeb9d0">Previous</a>());</div>
<div class="line"><a name="l00467"></a><span class="lineno"> 467</span>  }</div>
<div class="line"><a name="l00468"></a><span class="lineno"> 468</span> </div>
<div class="line"><a name="l00472"></a><span class="lineno"><a class="line" href="class_xn_list.html#af437aca0d397839b8691bfe89ee0e8b7"> 472</a></span>  <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> <a class="code" href="class_xn_list.html#af437aca0d397839b8691bfe89ee0e8b7">rbegin</a>()<span class="keyword"> const</span></div>
<div class="line"><a name="l00473"></a><span class="lineno"> 473</span> <span class="keyword"> </span>{</div>
<div class="line"><a name="l00474"></a><span class="lineno"> 474</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>(<a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>-><a class="code" href="class_xn_node.html#a8854e1064d8fcaf973d08eaaffbeb9d0">Previous</a>());</div>
<div class="line"><a name="l00475"></a><span class="lineno"> 475</span>  }</div>
<div class="line"><a name="l00476"></a><span class="lineno"> 476</span> </div>
<div class="line"><a name="l00480"></a><span class="lineno"><a class="line" href="class_xn_list.html#a6fe609e35c64aa2272f62c0826054aa1"> 480</a></span>  <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a> <a class="code" href="class_xn_list.html#a6fe609e35c64aa2272f62c0826054aa1">rend</a>()</div>
<div class="line"><a name="l00481"></a><span class="lineno"> 481</span>  {</div>
<div class="line"><a name="l00482"></a><span class="lineno"> 482</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_iterator.html">Iterator</a>(<a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>);</div>
<div class="line"><a name="l00483"></a><span class="lineno"> 483</span>  }</div>
<div class="line"><a name="l00484"></a><span class="lineno"> 484</span> </div>
<div class="line"><a name="l00488"></a><span class="lineno"><a class="line" href="class_xn_list.html#a82b377026cf1e4bd028ae617b2b83129"> 488</a></span>  <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a> <a class="code" href="class_xn_list.html#a82b377026cf1e4bd028ae617b2b83129">rend</a>()<span class="keyword"> const</span></div>
<div class="line"><a name="l00489"></a><span class="lineno"> 489</span> <span class="keyword"> </span>{</div>
<div class="line"><a name="l00490"></a><span class="lineno"> 490</span>  <span class="keywordflow">return</span> <a class="code" href="class_xn_list_1_1_const_iterator.html">ConstIterator</a>(<a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>);</div>
<div class="line"><a name="l00491"></a><span class="lineno"> 491</span>  }</div>
<div class="line"><a name="l00492"></a><span class="lineno"> 492</span>  </div>
<div class="line"><a name="l00493"></a><span class="lineno"> 493</span> <span class="keyword">protected</span>:</div>
<div class="line"><a name="l00494"></a><span class="lineno"><a class="line" href="class_xn_list.html#af10fed00097fdf0381b1f99187ac5361"> 494</a></span>  <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="class_xn_list.html#af10fed00097fdf0381b1f99187ac5361">XnNodeManager</a>;</div>
<div class="line"><a name="l00495"></a><span class="lineno"> 495</span>  </div>
<div class="line"><a name="l00499"></a><span class="lineno"><a class="line" href="class_xn_list.html#ab3b9830b4e2266dd56911d63ced7c341"> 499</a></span>  <a class="code" href="class_xn_list.html#ab3b9830b4e2266dd56911d63ced7c341">XnList</a>(<a class="code" href="class_i_ni_node_allocator.html">INiNodeAllocator</a>* pNodeAllocator)</div>
<div class="line"><a name="l00500"></a><span class="lineno"> 500</span>  {</div>
<div class="line"><a name="l00501"></a><span class="lineno"> 501</span>  <a class="code" href="class_xn_list.html#a309e34829dbb7bb2d8e89a7fbf30aa94">Init</a>(pNodeAllocator);</div>
<div class="line"><a name="l00502"></a><span class="lineno"> 502</span>  <a class="code" href="class_xn_list.html#a019d2232e9ed27b1891ec65d19bbeb5d">m_bOwnsAllocator</a> = <a class="code" href="_xn_platform_8h.html#aa93f0eb578d23995850d61f7d61c55c1">FALSE</a>;</div>
<div class="line"><a name="l00503"></a><span class="lineno"> 503</span>  }</div>
<div class="line"><a name="l00504"></a><span class="lineno"> 504</span>  </div>
<div class="line"><a name="l00505"></a><span class="lineno"><a class="line" href="class_xn_list.html#a309e34829dbb7bb2d8e89a7fbf30aa94"> 505</a></span>  <span class="keywordtype">void</span> <a class="code" href="class_xn_list.html#a309e34829dbb7bb2d8e89a7fbf30aa94">Init</a>(<a class="code" href="class_i_ni_node_allocator.html">INiNodeAllocator</a>* pNodeAllocator)</div>
<div class="line"><a name="l00506"></a><span class="lineno"> 506</span>  {</div>
<div class="line"><a name="l00507"></a><span class="lineno"> 507</span>  <a class="code" href="class_xn_list.html#abd1ed9a0b5a5a748ea4736368fa8eb82">m_pNodeAllocator</a> = pNodeAllocator;</div>
<div class="line"><a name="l00508"></a><span class="lineno"> 508</span>  <span class="comment">// Allocate a node to act as base node.</span></div>
<div class="line"><a name="l00509"></a><span class="lineno"> 509</span>  <a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a> = <a class="code" href="class_xn_list.html#abd1ed9a0b5a5a748ea4736368fa8eb82">m_pNodeAllocator</a>-><a class="code" href="class_i_ni_node_allocator.html#a15f32e859fac18f2ce014b828d16f4d3">Allocate</a>();</div>
<div class="line"><a name="l00510"></a><span class="lineno"> 510</span>  <span class="keywordflow">if</span> (<a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a> == NULL)</div>
<div class="line"><a name="l00511"></a><span class="lineno"> 511</span>  {</div>
<div class="line"><a name="l00512"></a><span class="lineno"> 512</span>  <span class="comment">// OZOZ: Allocation failed in ctor...</span></div>
<div class="line"><a name="l00513"></a><span class="lineno"> 513</span>  }</div>
<div class="line"><a name="l00514"></a><span class="lineno"> 514</span> </div>
<div class="line"><a name="l00515"></a><span class="lineno"> 515</span>  <a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>-><a class="code" href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">Next</a>() = <a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>-><a class="code" href="class_xn_node.html#a8854e1064d8fcaf973d08eaaffbeb9d0">Previous</a>() = <a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>;</div>
<div class="line"><a name="l00516"></a><span class="lineno"> 516</span>  }</div>
<div class="line"><a name="l00517"></a><span class="lineno"> 517</span> </div>
<div class="line"><a name="l00526"></a><span class="lineno"><a class="line" href="class_xn_list.html#af43dc6fec93a0fe06318eddf3a59e307"> 526</a></span>  <a class="code" href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a> <a class="code" href="class_xn_list.html#af43dc6fec93a0fe06318eddf3a59e307">Add</a>(<a class="code" href="class_xn_node.html">XnNode</a>* pWhere, <span class="keyword">const</span> <a class="code" href="_xn_data_types_8h.html#ad012784342cc15723d747ff1872e06da">XnValue</a>& val)</div>
<div class="line"><a name="l00527"></a><span class="lineno"> 527</span>  {</div>
<div class="line"><a name="l00528"></a><span class="lineno"> 528</span>  <span class="comment">// Get a node from the pool for the entry</span></div>
<div class="line"><a name="l00529"></a><span class="lineno"> 529</span>  <a class="code" href="class_xn_node.html">XnNode</a>* pNewNode = <a class="code" href="class_xn_list.html#abd1ed9a0b5a5a748ea4736368fa8eb82">m_pNodeAllocator</a>-><a class="code" href="class_i_ni_node_allocator.html#a15f32e859fac18f2ce014b828d16f4d3">Allocate</a>();</div>
<div class="line"><a name="l00530"></a><span class="lineno"> 530</span>  <span class="keywordflow">if</span> (pNewNode == NULL)</div>
<div class="line"><a name="l00531"></a><span class="lineno"> 531</span>  {</div>
<div class="line"><a name="l00532"></a><span class="lineno"> 532</span>  <span class="keywordflow">return</span> XN_STATUS_ALLOC_FAILED;</div>
<div class="line"><a name="l00533"></a><span class="lineno"> 533</span>  }</div>
<div class="line"><a name="l00534"></a><span class="lineno"> 534</span>  <span class="comment">// push new node to position</span></div>
<div class="line"><a name="l00535"></a><span class="lineno"> 535</span>  pNewNode-><a class="code" href="class_xn_node.html#af5e4b592e06c8bafbedfcc3a16911839">Data</a>() = val;</div>
<div class="line"><a name="l00536"></a><span class="lineno"> 536</span>  pNewNode-><a class="code" href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">Next</a>() = pWhere-><a class="code" href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">Next</a>();</div>
<div class="line"><a name="l00537"></a><span class="lineno"> 537</span>  pNewNode-><a class="code" href="class_xn_node.html#a8854e1064d8fcaf973d08eaaffbeb9d0">Previous</a>() = pWhere;</div>
<div class="line"><a name="l00538"></a><span class="lineno"> 538</span>  pWhere-><a class="code" href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">Next</a>()-><a class="code" href="class_xn_node.html#a8854e1064d8fcaf973d08eaaffbeb9d0">Previous</a>() = pNewNode;</div>
<div class="line"><a name="l00539"></a><span class="lineno"> 539</span>  pWhere-><a class="code" href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">Next</a>() = pNewNode;</div>
<div class="line"><a name="l00540"></a><span class="lineno"> 540</span> </div>
<div class="line"><a name="l00541"></a><span class="lineno"> 541</span>  <span class="keywordflow">return</span> <a class="code" href="_xn_status_8h.html#a92729089d8e28e740a3f8b5169c8f695">XN_STATUS_OK</a>;</div>
<div class="line"><a name="l00542"></a><span class="lineno"> 542</span>  }</div>
<div class="line"><a name="l00543"></a><span class="lineno"> 543</span> </div>
<div class="line"><a name="l00544"></a><span class="lineno"> 544</span> </div>
<div class="line"><a name="l00546"></a><span class="lineno"><a class="line" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5"> 546</a></span>  <a class="code" href="class_xn_node.html">XnNode</a>* <a class="code" href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">m_pBase</a>;</div>
<div class="line"><a name="l00547"></a><span class="lineno"> 547</span>  </div>
<div class="line"><a name="l00548"></a><span class="lineno"><a class="line" href="class_xn_list.html#abd1ed9a0b5a5a748ea4736368fa8eb82"> 548</a></span>  <a class="code" href="class_i_ni_node_allocator.html">INiNodeAllocator</a>* <a class="code" href="class_xn_list.html#abd1ed9a0b5a5a748ea4736368fa8eb82">m_pNodeAllocator</a>;</div>
<div class="line"><a name="l00549"></a><span class="lineno"><a class="line" href="class_xn_list.html#a019d2232e9ed27b1891ec65d19bbeb5d"> 549</a></span>  XnBool <a class="code" href="class_xn_list.html#a019d2232e9ed27b1891ec65d19bbeb5d">m_bOwnsAllocator</a>;</div>
<div class="line"><a name="l00550"></a><span class="lineno"> 550</span> </div>
<div class="line"><a name="l00551"></a><span class="lineno"> 551</span> <span class="keyword">private</span>:</div>
<div class="line"><a name="l00552"></a><span class="lineno"> 552</span>  <a class="code" href="_xn_macros_8h.html#a6fc088d6b924da479545b99daea79849">XN_DISABLE_COPY_AND_ASSIGN</a>(<a class="code" href="class_xn_list.html">XnList</a>);</div>
<div class="line"><a name="l00553"></a><span class="lineno"> 553</span> };</div>
<div class="line"><a name="l00554"></a><span class="lineno"> 554</span> </div>
<div class="line"><a name="l00559"></a><span class="lineno"><a class="line" href="_xn_list_8h.html#a3712e1d4eca1eb4f01ab5b3d23880a7d"> 559</a></span> <span class="preprocessor">#define XN_DECLARE_LIST_WITH_TRANSLATOR_DECL(decl, Type, ClassName, Translator) \</span></div>
<div class="line"><a name="l00560"></a><span class="lineno"> 560</span> <span class="preprocessor"> class decl ClassName : public XnList \</span></div>
<div class="line"><a name="l00561"></a><span class="lineno"> 561</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00562"></a><span class="lineno"> 562</span> <span class="preprocessor"> public: \</span></div>
<div class="line"><a name="l00563"></a><span class="lineno"> 563</span> <span class="preprocessor"> class decl ConstIterator : public XnList::ConstIterator \</span></div>
<div class="line"><a name="l00564"></a><span class="lineno"> 564</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00565"></a><span class="lineno"> 565</span> <span class="preprocessor"> public: \</span></div>
<div class="line"><a name="l00566"></a><span class="lineno"> 566</span> <span class="preprocessor"> friend class ClassName; \</span></div>
<div class="line"><a name="l00567"></a><span class="lineno"> 567</span> <span class="preprocessor"> inline ConstIterator(const ConstIterator& other) : XnList::ConstIterator(other) {} \</span></div>
<div class="line"><a name="l00568"></a><span class="lineno"> 568</span> <span class="preprocessor"> inline ConstIterator& operator++() \</span></div>
<div class="line"><a name="l00569"></a><span class="lineno"> 569</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00570"></a><span class="lineno"> 570</span> <span class="preprocessor"> ++(*(XnList::ConstIterator*)this); \</span></div>
<div class="line"><a name="l00571"></a><span class="lineno"> 571</span> <span class="preprocessor"> return (*this); \</span></div>
<div class="line"><a name="l00572"></a><span class="lineno"> 572</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00573"></a><span class="lineno"> 573</span> <span class="preprocessor"> inline ConstIterator operator++(int) \</span></div>
<div class="line"><a name="l00574"></a><span class="lineno"> 574</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00575"></a><span class="lineno"> 575</span> <span class="preprocessor"> ConstIterator result = *this; \</span></div>
<div class="line"><a name="l00576"></a><span class="lineno"> 576</span> <span class="preprocessor"> ++*this; \</span></div>
<div class="line"><a name="l00577"></a><span class="lineno"> 577</span> <span class="preprocessor"> return result; \</span></div>
<div class="line"><a name="l00578"></a><span class="lineno"> 578</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00579"></a><span class="lineno"> 579</span> <span class="preprocessor"> inline ConstIterator& operator--() \</span></div>
<div class="line"><a name="l00580"></a><span class="lineno"> 580</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00581"></a><span class="lineno"> 581</span> <span class="preprocessor"> --(*(XnList::ConstIterator*)this); \</span></div>
<div class="line"><a name="l00582"></a><span class="lineno"> 582</span> <span class="preprocessor"> return (*this); \</span></div>
<div class="line"><a name="l00583"></a><span class="lineno"> 583</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00584"></a><span class="lineno"> 584</span> <span class="preprocessor"> inline ConstIterator operator--(int) \</span></div>
<div class="line"><a name="l00585"></a><span class="lineno"> 585</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00586"></a><span class="lineno"> 586</span> <span class="preprocessor"> ConstIterator result = *this; \</span></div>
<div class="line"><a name="l00587"></a><span class="lineno"> 587</span> <span class="preprocessor"> --*this; \</span></div>
<div class="line"><a name="l00588"></a><span class="lineno"> 588</span> <span class="preprocessor"> return result; \</span></div>
<div class="line"><a name="l00589"></a><span class="lineno"> 589</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00590"></a><span class="lineno"> 590</span> <span class="preprocessor"> inline Type const& operator*() const \</span></div>
<div class="line"><a name="l00591"></a><span class="lineno"> 591</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00592"></a><span class="lineno"> 592</span> <span class="preprocessor"> return Translator::GetFromValue(**((XnList::ConstIterator*)this)); \</span></div>
<div class="line"><a name="l00593"></a><span class="lineno"> 593</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00594"></a><span class="lineno"> 594</span> <span class="preprocessor"> inline Type const* operator->() const { return (&**this); } \</span></div>
<div class="line"><a name="l00595"></a><span class="lineno"> 595</span> <span class="preprocessor"> protected: \</span></div>
<div class="line"><a name="l00596"></a><span class="lineno"> 596</span> <span class="preprocessor"> inline ConstIterator(XnNode* pNode) : XnList::ConstIterator(pNode) {} \</span></div>
<div class="line"><a name="l00597"></a><span class="lineno"> 597</span> <span class="preprocessor"> inline ConstIterator(const XnList::ConstIterator& other) : \</span></div>
<div class="line"><a name="l00598"></a><span class="lineno"> 598</span> <span class="preprocessor"> XnList::ConstIterator(other) \</span></div>
<div class="line"><a name="l00599"></a><span class="lineno"> 599</span> <span class="preprocessor"> {} \</span></div>
<div class="line"><a name="l00600"></a><span class="lineno"> 600</span> <span class="preprocessor"> }; \</span></div>
<div class="line"><a name="l00601"></a><span class="lineno"> 601</span> <span class="preprocessor"> class decl Iterator : public ConstIterator \</span></div>
<div class="line"><a name="l00602"></a><span class="lineno"> 602</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00603"></a><span class="lineno"> 603</span> <span class="preprocessor"> public: \</span></div>
<div class="line"><a name="l00604"></a><span class="lineno"> 604</span> <span class="preprocessor"> friend class ClassName; \</span></div>
<div class="line"><a name="l00605"></a><span class="lineno"> 605</span> <span class="preprocessor"> Iterator(const Iterator& other) : ConstIterator(other) {} \</span></div>
<div class="line"><a name="l00606"></a><span class="lineno"> 606</span> <span class="preprocessor"> inline Iterator& operator++() \</span></div>
<div class="line"><a name="l00607"></a><span class="lineno"> 607</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00608"></a><span class="lineno"> 608</span> <span class="preprocessor"> ++(*(ConstIterator*)this); \</span></div>
<div class="line"><a name="l00609"></a><span class="lineno"> 609</span> <span class="preprocessor"> return (*this); \</span></div>
<div class="line"><a name="l00610"></a><span class="lineno"> 610</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00611"></a><span class="lineno"> 611</span> <span class="preprocessor"> inline Iterator operator++(int) \</span></div>
<div class="line"><a name="l00612"></a><span class="lineno"> 612</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00613"></a><span class="lineno"> 613</span> <span class="preprocessor"> Iterator result = *this; \</span></div>
<div class="line"><a name="l00614"></a><span class="lineno"> 614</span> <span class="preprocessor"> ++*this; \</span></div>
<div class="line"><a name="l00615"></a><span class="lineno"> 615</span> <span class="preprocessor"> return result; \</span></div>
<div class="line"><a name="l00616"></a><span class="lineno"> 616</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00617"></a><span class="lineno"> 617</span> <span class="preprocessor"> inline Iterator& operator--() \</span></div>
<div class="line"><a name="l00618"></a><span class="lineno"> 618</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00619"></a><span class="lineno"> 619</span> <span class="preprocessor"> --(*(ConstIterator*)this); \</span></div>
<div class="line"><a name="l00620"></a><span class="lineno"> 620</span> <span class="preprocessor"> return (*this); \</span></div>
<div class="line"><a name="l00621"></a><span class="lineno"> 621</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00622"></a><span class="lineno"> 622</span> <span class="preprocessor"> inline Iterator operator--(int) \</span></div>
<div class="line"><a name="l00623"></a><span class="lineno"> 623</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00624"></a><span class="lineno"> 624</span> <span class="preprocessor"> Iterator result = *this; \</span></div>
<div class="line"><a name="l00625"></a><span class="lineno"> 625</span> <span class="preprocessor"> --*this; \</span></div>
<div class="line"><a name="l00626"></a><span class="lineno"> 626</span> <span class="preprocessor"> return result; \</span></div>
<div class="line"><a name="l00627"></a><span class="lineno"> 627</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00628"></a><span class="lineno"> 628</span> <span class="preprocessor"> inline Type& operator*() const { return ((Type&)**(ConstIterator*)this); } \</span></div>
<div class="line"><a name="l00629"></a><span class="lineno"> 629</span> <span class="preprocessor"> inline Type* operator->() const { return (&**this); } \</span></div>
<div class="line"><a name="l00630"></a><span class="lineno"> 630</span> <span class="preprocessor"> protected: \</span></div>
<div class="line"><a name="l00631"></a><span class="lineno"> 631</span> <span class="preprocessor"> inline Iterator(XnNode* pNode) : ConstIterator(pNode) {} \</span></div>
<div class="line"><a name="l00632"></a><span class="lineno"> 632</span> <span class="preprocessor"> inline Iterator(const XnList::Iterator& other) : ConstIterator(other) {} \</span></div>
<div class="line"><a name="l00633"></a><span class="lineno"> 633</span> <span class="preprocessor"> }; \</span></div>
<div class="line"><a name="l00634"></a><span class="lineno"> 634</span> <span class="preprocessor"> public: \</span></div>
<div class="line"><a name="l00635"></a><span class="lineno"> 635</span> <span class="preprocessor"> ClassName() \</span></div>
<div class="line"><a name="l00636"></a><span class="lineno"> 636</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00637"></a><span class="lineno"> 637</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00638"></a><span class="lineno"> 638</span> <span class="preprocessor"> ~ClassName() \</span></div>
<div class="line"><a name="l00639"></a><span class="lineno"> 639</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00640"></a><span class="lineno"> 640</span> <span class="preprocessor"> while (!IsEmpty()) \</span></div>
<div class="line"><a name="l00641"></a><span class="lineno"> 641</span> <span class="preprocessor"> Remove(begin()); \</span></div>
<div class="line"><a name="l00642"></a><span class="lineno"> 642</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00643"></a><span class="lineno"> 643</span> <span class="preprocessor"> inline XnStatus AddFirst(Type const& value) \</span></div>
<div class="line"><a name="l00644"></a><span class="lineno"> 644</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00645"></a><span class="lineno"> 645</span> <span class="preprocessor"> XnValue val = Translator::CreateValueCopy(value); \</span></div>
<div class="line"><a name="l00646"></a><span class="lineno"> 646</span> <span class="preprocessor"> XnStatus nRetVal = XnList::AddFirst(val); \</span></div>
<div class="line"><a name="l00647"></a><span class="lineno"> 647</span> <span class="preprocessor"> if (nRetVal != XN_STATUS_OK) \</span></div>
<div class="line"><a name="l00648"></a><span class="lineno"> 648</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00649"></a><span class="lineno"> 649</span> <span class="preprocessor"> Translator::FreeValue(val); \</span></div>
<div class="line"><a name="l00650"></a><span class="lineno"> 650</span> <span class="preprocessor"> return (nRetVal); \</span></div>
<div class="line"><a name="l00651"></a><span class="lineno"> 651</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00652"></a><span class="lineno"> 652</span> <span class="preprocessor"> return XN_STATUS_OK; \</span></div>
<div class="line"><a name="l00653"></a><span class="lineno"> 653</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00654"></a><span class="lineno"> 654</span> <span class="preprocessor"> inline XnStatus AddLast(Type const& value) \</span></div>
<div class="line"><a name="l00655"></a><span class="lineno"> 655</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00656"></a><span class="lineno"> 656</span> <span class="preprocessor"> XnValue val = Translator::CreateValueCopy(value); \</span></div>
<div class="line"><a name="l00657"></a><span class="lineno"> 657</span> <span class="preprocessor"> XnStatus nRetVal = XnList::AddLast(val); \</span></div>
<div class="line"><a name="l00658"></a><span class="lineno"> 658</span> <span class="preprocessor"> if (nRetVal != XN_STATUS_OK) \</span></div>
<div class="line"><a name="l00659"></a><span class="lineno"> 659</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00660"></a><span class="lineno"> 660</span> <span class="preprocessor"> Translator::FreeValue(val); \</span></div>
<div class="line"><a name="l00661"></a><span class="lineno"> 661</span> <span class="preprocessor"> return (nRetVal); \</span></div>
<div class="line"><a name="l00662"></a><span class="lineno"> 662</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00663"></a><span class="lineno"> 663</span> <span class="preprocessor"> return XN_STATUS_OK; \</span></div>
<div class="line"><a name="l00664"></a><span class="lineno"> 664</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00665"></a><span class="lineno"> 665</span> <span class="preprocessor"> inline XnStatus AddAfter(ConstIterator where, Type const& value) \</span></div>
<div class="line"><a name="l00666"></a><span class="lineno"> 666</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00667"></a><span class="lineno"> 667</span> <span class="preprocessor"> XnValue val = Translator::CreateValueCopy(value); \</span></div>
<div class="line"><a name="l00668"></a><span class="lineno"> 668</span> <span class="preprocessor"> XnStatus nRetVal = XnList::AddAfter(where, val); \</span></div>
<div class="line"><a name="l00669"></a><span class="lineno"> 669</span> <span class="preprocessor"> if (nRetVal != XN_STATUS_OK) \</span></div>
<div class="line"><a name="l00670"></a><span class="lineno"> 670</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00671"></a><span class="lineno"> 671</span> <span class="preprocessor"> Translator::FreeValue(val); \</span></div>
<div class="line"><a name="l00672"></a><span class="lineno"> 672</span> <span class="preprocessor"> return (nRetVal); \</span></div>
<div class="line"><a name="l00673"></a><span class="lineno"> 673</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00674"></a><span class="lineno"> 674</span> <span class="preprocessor"> return XN_STATUS_OK; \</span></div>
<div class="line"><a name="l00675"></a><span class="lineno"> 675</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00676"></a><span class="lineno"> 676</span> <span class="preprocessor"> inline XnStatus AddBefore(ConstIterator where, Type const& value) \</span></div>
<div class="line"><a name="l00677"></a><span class="lineno"> 677</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00678"></a><span class="lineno"> 678</span> <span class="preprocessor"> XnValue val = Translator::CreateValueCopy(value); \</span></div>
<div class="line"><a name="l00679"></a><span class="lineno"> 679</span> <span class="preprocessor"> XnStatus nRetVal = XnList::AddBefore(where, val); \</span></div>
<div class="line"><a name="l00680"></a><span class="lineno"> 680</span> <span class="preprocessor"> if (nRetVal != XN_STATUS_OK) \</span></div>
<div class="line"><a name="l00681"></a><span class="lineno"> 681</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00682"></a><span class="lineno"> 682</span> <span class="preprocessor"> Translator::FreeValue(val); \</span></div>
<div class="line"><a name="l00683"></a><span class="lineno"> 683</span> <span class="preprocessor"> return (nRetVal); \</span></div>
<div class="line"><a name="l00684"></a><span class="lineno"> 684</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00685"></a><span class="lineno"> 685</span> <span class="preprocessor"> return XN_STATUS_OK; \</span></div>
<div class="line"><a name="l00686"></a><span class="lineno"> 686</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00687"></a><span class="lineno"> 687</span> <span class="preprocessor"> inline ConstIterator Find(Type const& value) const \</span></div>
<div class="line"><a name="l00688"></a><span class="lineno"> 688</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00689"></a><span class="lineno"> 689</span> <span class="preprocessor"> XnValue _value = Translator::GetAsValue(value); \</span></div>
<div class="line"><a name="l00690"></a><span class="lineno"> 690</span> <span class="preprocessor"> return XnList::Find(_value); \</span></div>
<div class="line"><a name="l00691"></a><span class="lineno"> 691</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00692"></a><span class="lineno"> 692</span> <span class="preprocessor"> inline Iterator Find(Type const& value) \</span></div>
<div class="line"><a name="l00693"></a><span class="lineno"> 693</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00694"></a><span class="lineno"> 694</span> <span class="preprocessor"> XnValue _value = Translator::GetAsValue(value); \</span></div>
<div class="line"><a name="l00695"></a><span class="lineno"> 695</span> <span class="preprocessor"> return XnList::Find(_value); \</span></div>
<div class="line"><a name="l00696"></a><span class="lineno"> 696</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00697"></a><span class="lineno"> 697</span> <span class="preprocessor"> inline XnStatus Remove(ConstIterator where) \</span></div>
<div class="line"><a name="l00698"></a><span class="lineno"> 698</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00699"></a><span class="lineno"> 699</span> <span class="preprocessor"> XnValue val = Translator::GetAsValue(*where); \</span></div>
<div class="line"><a name="l00700"></a><span class="lineno"> 700</span> <span class="preprocessor"> XnStatus nRetVal = XnList::Remove(where); \</span></div>
<div class="line"><a name="l00701"></a><span class="lineno"> 701</span> <span class="preprocessor"> if (nRetVal != XN_STATUS_OK) return (nRetVal); \</span></div>
<div class="line"><a name="l00702"></a><span class="lineno"> 702</span> <span class="preprocessor"> Translator::FreeValue(val); \</span></div>
<div class="line"><a name="l00703"></a><span class="lineno"> 703</span> <span class="preprocessor"> return XN_STATUS_OK; \</span></div>
<div class="line"><a name="l00704"></a><span class="lineno"> 704</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00705"></a><span class="lineno"> 705</span> <span class="preprocessor"> inline XnStatus Remove(Type const& value) \</span></div>
<div class="line"><a name="l00706"></a><span class="lineno"> 706</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00707"></a><span class="lineno"> 707</span> <span class="preprocessor"> Iterator it = Find(value); \</span></div>
<div class="line"><a name="l00708"></a><span class="lineno"> 708</span> <span class="preprocessor"> return Remove(it); \</span></div>
<div class="line"><a name="l00709"></a><span class="lineno"> 709</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00710"></a><span class="lineno"> 710</span> <span class="preprocessor"> inline Iterator begin() { return XnList::begin(); } \</span></div>
<div class="line"><a name="l00711"></a><span class="lineno"> 711</span> <span class="preprocessor"> inline ConstIterator begin() const { return XnList::begin(); } \</span></div>
<div class="line"><a name="l00712"></a><span class="lineno"> 712</span> <span class="preprocessor"> inline Iterator end() { return XnList::end(); } \</span></div>
<div class="line"><a name="l00713"></a><span class="lineno"> 713</span> <span class="preprocessor"> inline ConstIterator end() const { return XnList::end(); } \</span></div>
<div class="line"><a name="l00714"></a><span class="lineno"> 714</span> <span class="preprocessor"> inline Iterator rbegin() { return XnList::rbegin(); } \</span></div>
<div class="line"><a name="l00715"></a><span class="lineno"> 715</span> <span class="preprocessor"> inline ConstIterator rbegin() const { return XnList::rbegin(); } \</span></div>
<div class="line"><a name="l00716"></a><span class="lineno"> 716</span> <span class="preprocessor"> inline Iterator rend() { return XnList::rend(); } \</span></div>
<div class="line"><a name="l00717"></a><span class="lineno"> 717</span> <span class="preprocessor"> inline ConstIterator rend() const { return XnList::rend(); } \</span></div>
<div class="line"><a name="l00718"></a><span class="lineno"> 718</span> <span class="preprocessor"> protected: \</span></div>
<div class="line"><a name="l00719"></a><span class="lineno"> 719</span> <span class="preprocessor"> virtual XnStatus Remove(XnList::ConstIterator where) \</span></div>
<div class="line"><a name="l00720"></a><span class="lineno"> 720</span> <span class="preprocessor"> { \</span></div>
<div class="line"><a name="l00721"></a><span class="lineno"> 721</span> <span class="preprocessor"> return Remove(ConstIterator(where)); \</span></div>
<div class="line"><a name="l00722"></a><span class="lineno"> 722</span> <span class="preprocessor"> } \</span></div>
<div class="line"><a name="l00723"></a><span class="lineno"> 723</span> <span class="preprocessor"> private: \</span></div>
<div class="line"><a name="l00724"></a><span class="lineno"> 724</span> <span class="preprocessor"> XN_DISABLE_COPY_AND_ASSIGN(ClassName); \</span></div>
<div class="line"><a name="l00725"></a><span class="lineno"> 725</span> <span class="preprocessor"> };</span></div>
<div class="line"><a name="l00726"></a><span class="lineno"> 726</span> <span class="preprocessor"></span></div>
<div class="line"><a name="l00730"></a><span class="lineno"><a class="line" href="_xn_list_8h.html#ab98c6300852aaf18f29c0464011d7323"> 730</a></span> <span class="preprocessor">#define XN_DECLARE_LIST_WITH_TRANSLATOR(Type, ClassName, Translator) \</span></div>
<div class="line"><a name="l00731"></a><span class="lineno"> 731</span> <span class="preprocessor"> XN_DECLARE_LIST_WITH_TRANSLATOR_DECL(, Type, ClassName, Translator)</span></div>
<div class="line"><a name="l00732"></a><span class="lineno"> 732</span> <span class="preprocessor"></span></div>
<div class="line"><a name="l00737"></a><span class="lineno"><a class="line" href="_xn_list_8h.html#a67491cfb4770f618dd046fc8460ad8be"> 737</a></span> <span class="preprocessor">#define XN_DECLARE_LIST_DECL(decl, Type, ClassName) \</span></div>
<div class="line"><a name="l00738"></a><span class="lineno"> 738</span> <span class="preprocessor"> XN_DECLARE_DEFAULT_VALUE_TRANSLATOR_DECL(decl, Type, XN_DEFAULT_TRANSLATOR_NAME(ClassName)) \</span></div>
<div class="line"><a name="l00739"></a><span class="lineno"> 739</span> <span class="preprocessor"> XN_DECLARE_LIST_WITH_TRANSLATOR_DECL(decl, Type, ClassName, XN_DEFAULT_TRANSLATOR_NAME(ClassName))</span></div>
<div class="line"><a name="l00740"></a><span class="lineno"> 740</span> <span class="preprocessor"></span></div>
<div class="line"><a name="l00744"></a><span class="lineno"><a class="line" href="_xn_list_8h.html#a5622af57fda4ba7989461935c35d2884"> 744</a></span> <span class="preprocessor">#define XN_DECLARE_LIST(Type, ClassName) \</span></div>
<div class="line"><a name="l00745"></a><span class="lineno"> 745</span> <span class="preprocessor"> XN_DECLARE_LIST_DECL(, Type, ClassName)</span></div>
<div class="line"><a name="l00746"></a><span class="lineno"> 746</span> <span class="preprocessor"></span> </div>
<div class="line"><a name="l00747"></a><span class="lineno"> 747</span> <span class="preprocessor">#endif // _XN_LIST_H </span></div>
<div class="line"><a name="l00748"></a><span class="lineno"> 748</span> <span class="preprocessor"></span> </div>
<div class="ttc" id="class_xn_node_html_af5e4b592e06c8bafbedfcc3a16911839"><div class="ttname"><a href="class_xn_node.html#af5e4b592e06c8bafbedfcc3a16911839">XnNode::Data</a></div><div class="ttdeci">XnValue & Data()</div><div class="ttdef"><b>Definition:</b> XnNode.h:68</div></div>
<div class="ttc" id="class_xn_list_html_a6c4a71325330c9b4a86070686451c6a5"><div class="ttname"><a href="class_xn_list.html#a6c4a71325330c9b4a86070686451c6a5">XnList::m_pBase</a></div><div class="ttdeci">XnNode * m_pBase</div><div class="ttdef"><b>Definition:</b> XnList.h:546</div></div>
<div class="ttc" id="class_xn_list_html"><div class="ttname"><a href="class_xn_list.html">XnList</a></div><div class="ttdef"><b>Definition:</b> XnList.h:40</div></div>
<div class="ttc" id="class_xn_list_html_a6fe609e35c64aa2272f62c0826054aa1"><div class="ttname"><a href="class_xn_list.html#a6fe609e35c64aa2272f62c0826054aa1">XnList::rend</a></div><div class="ttdeci">Iterator rend()</div><div class="ttdef"><b>Definition:</b> XnList.h:480</div></div>
<div class="ttc" id="_xn_platform_8h_html_aa93f0eb578d23995850d61f7d61c55c1"><div class="ttname"><a href="_xn_platform_8h.html#aa93f0eb578d23995850d61f7d61c55c1">FALSE</a></div><div class="ttdeci">#define FALSE</div><div class="ttdef"><b>Definition:</b> XnPlatform.h:84</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html_acd586ee44fef4cb0a9223e7921d336d4"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html#acd586ee44fef4cb0a9223e7921d336d4">XnList::ConstIterator::operator++</a></div><div class="ttdeci">ConstIterator & operator++()</div><div class="ttdef"><b>Definition:</b> XnList.h:58</div></div>
<div class="ttc" id="class_xn_node_allocator_html"><div class="ttname"><a href="class_xn_node_allocator.html">XnNodeAllocator</a></div><div class="ttdef"><b>Definition:</b> XnNodeAllocator.h:27</div></div>
<div class="ttc" id="class_xn_list_html_aa989ca16d1b77d89fb42408ca7094a7a"><div class="ttname"><a href="class_xn_list.html#aa989ca16d1b77d89fb42408ca7094a7a">XnList::end</a></div><div class="ttdeci">ConstIterator end() const </div><div class="ttdef"><b>Definition:</b> XnList.h:456</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html_aedbbed25fc1aea87ac47270696023826"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html#aedbbed25fc1aea87ac47270696023826">XnList::ConstIterator::operator==</a></div><div class="ttdeci">XnBool operator==(const ConstIterator &other) const </div><div class="ttdef"><b>Definition:</b> XnList.h:98</div></div>
<div class="ttc" id="class_xn_list_html_af10fed00097fdf0381b1f99187ac5361"><div class="ttname"><a href="class_xn_list.html#af10fed00097fdf0381b1f99187ac5361">XnList::XnNodeManager</a></div><div class="ttdeci">friend class XnNodeManager</div><div class="ttdef"><b>Definition:</b> XnList.h:494</div></div>
<div class="ttc" id="class_xn_list_html_a8c7e0d6b38fafce50bb4fda59cf9097d"><div class="ttname"><a href="class_xn_list.html#a8c7e0d6b38fafce50bb4fda59cf9097d">XnList::Remove</a></div><div class="ttdeci">XnStatus Remove(ConstIterator where, XnValue &value)</div><div class="ttdef"><b>Definition:</b> XnList.h:360</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html_a57b3101175e3faf7d137df4e75e09826"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html#a57b3101175e3faf7d137df4e75e09826">XnList::ConstIterator::operator++</a></div><div class="ttdeci">ConstIterator operator++(int)</div><div class="ttdef"><b>Definition:</b> XnList.h:67</div></div>
<div class="ttc" id="_xn_status_8h_html_a92729089d8e28e740a3f8b5169c8f695"><div class="ttname"><a href="_xn_status_8h.html#a92729089d8e28e740a3f8b5169c8f695">XN_STATUS_OK</a></div><div class="ttdeci">#define XN_STATUS_OK</div><div class="ttdef"><b>Definition:</b> XnStatus.h:36</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html_ae8ccc9f0778ad983efff57d35b40a84a"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html#ae8ccc9f0778ad983efff57d35b40a84a">XnList::ConstIterator::operator!=</a></div><div class="ttdeci">XnBool operator!=(const ConstIterator &other) const </div><div class="ttdef"><b>Definition:</b> XnList.h:107</div></div>
<div class="ttc" id="class_xn_list_html_af437aca0d397839b8691bfe89ee0e8b7"><div class="ttname"><a href="class_xn_list.html#af437aca0d397839b8691bfe89ee0e8b7">XnList::rbegin</a></div><div class="ttdeci">ConstIterator rbegin() const </div><div class="ttdef"><b>Definition:</b> XnList.h:472</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html_af1579d07351c734fcfa5bcff0cb59123"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html#af1579d07351c734fcfa5bcff0cb59123">XnList::ConstIterator::ConstIterator</a></div><div class="ttdeci">ConstIterator(XnNode *pNode)</div><div class="ttdef"><b>Definition:</b> XnList.h:143</div></div>
<div class="ttc" id="class_xn_list_html_a56e992b19551287df2f7cfb28880069f"><div class="ttname"><a href="class_xn_list.html#a56e992b19551287df2f7cfb28880069f">XnList::begin</a></div><div class="ttdeci">ConstIterator begin() const </div><div class="ttdef"><b>Definition:</b> XnList.h:440</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html_a345e5bdfad69edc258a54e595d44510d"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html#a345e5bdfad69edc258a54e595d44510d">XnList::ConstIterator::GetNode</a></div><div class="ttdeci">XnNode * GetNode()</div><div class="ttdef"><b>Definition:</b> XnList.h:132</div></div>
<div class="ttc" id="class_xn_list_html_ab3b9830b4e2266dd56911d63ced7c341"><div class="ttname"><a href="class_xn_list.html#ab3b9830b4e2266dd56911d63ced7c341">XnList::XnList</a></div><div class="ttdeci">XnList(INiNodeAllocator *pNodeAllocator)</div><div class="ttdef"><b>Definition:</b> XnList.h:499</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html_a62a1c7b692de0ecbfb792d99daf0e256"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html#a62a1c7b692de0ecbfb792d99daf0e256">XnList::ConstIterator::operator--</a></div><div class="ttdeci">ConstIterator operator--(int)</div><div class="ttdef"><b>Definition:</b> XnList.h:86</div></div>
<div class="ttc" id="_xn_node_8h_html"><div class="ttname"><a href="_xn_node_8h.html">XnNode.h</a></div></div>
<div class="ttc" id="class_xn_list_html_a019d2232e9ed27b1891ec65d19bbeb5d"><div class="ttname"><a href="class_xn_list.html#a019d2232e9ed27b1891ec65d19bbeb5d">XnList::m_bOwnsAllocator</a></div><div class="ttdeci">XnBool m_bOwnsAllocator</div><div class="ttdef"><b>Definition:</b> XnList.h:549</div></div>
<div class="ttc" id="_xn_status_8h_html_a23967099202ddb640cd2044b3808253c"><div class="ttname"><a href="_xn_status_8h.html#a23967099202ddb640cd2044b3808253c">XnStatus</a></div><div class="ttdeci">XnUInt32 XnStatus</div><div class="ttdef"><b>Definition:</b> XnStatus.h:33</div></div>
<div class="ttc" id="_xn_data_types_8h_html"><div class="ttname"><a href="_xn_data_types_8h.html">XnDataTypes.h</a></div></div>
<div class="ttc" id="_i_xn_node_allocator_8h_html"><div class="ttname"><a href="_i_xn_node_allocator_8h.html">IXnNodeAllocator.h</a></div></div>
<div class="ttc" id="class_xn_list_html_ad22076e52a10c866d55375849eb28d89"><div class="ttname"><a href="class_xn_list.html#ad22076e52a10c866d55375849eb28d89">XnList::AddAfter</a></div><div class="ttdeci">XnStatus AddAfter(ConstIterator where, const XnValue &val)</div><div class="ttdef"><b>Definition:</b> XnList.h:275</div></div>
<div class="ttc" id="class_xn_list_html_a8b2535aebcc1ac479efb790fc0bd8fc2"><div class="ttname"><a href="class_xn_list.html#a8b2535aebcc1ac479efb790fc0bd8fc2">XnList::Remove</a></div><div class="ttdeci">virtual XnStatus Remove(ConstIterator where)</div><div class="ttdef"><b>Definition:</b> XnList.h:373</div></div>
<div class="ttc" id="_xn_data_types_8h_html_ad012784342cc15723d747ff1872e06da"><div class="ttname"><a href="_xn_data_types_8h.html#ad012784342cc15723d747ff1872e06da">XnValue</a></div><div class="ttdeci">void * XnValue</div><div class="ttdef"><b>Definition:</b> XnDataTypes.h:35</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html_a70e985c76d6274788a6d71d3ccf9b24f"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html#a70e985c76d6274788a6d71d3ccf9b24f">XnList::ConstIterator::m_pCurrent</a></div><div class="ttdeci">XnNode * m_pCurrent</div><div class="ttdef"><b>Definition:</b> XnList.h:146</div></div>
<div class="ttc" id="_xn_platform_8h_html_aa8cecfc5c5c054d2875c03e77b7be15d"><div class="ttname"><a href="_xn_platform_8h.html#aa8cecfc5c5c054d2875c03e77b7be15d">TRUE</a></div><div class="ttdeci">#define TRUE</div><div class="ttdef"><b>Definition:</b> XnPlatform.h:80</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html">XnList::ConstIterator</a></div><div class="ttdef"><b>Definition:</b> XnList.h:43</div></div>
<div class="ttc" id="class_xn_node_html"><div class="ttname"><a href="class_xn_node.html">XnNode</a></div><div class="ttdef"><b>Definition:</b> XnNode.h:36</div></div>
<div class="ttc" id="class_xn_list_1_1_iterator_html_a78b66f8872a7f74cd69e8998e7f25a80"><div class="ttname"><a href="class_xn_list_1_1_iterator.html#a78b66f8872a7f74cd69e8998e7f25a80">XnList::Iterator::operator++</a></div><div class="ttdeci">Iterator operator++(int)</div><div class="ttdef"><b>Definition:</b> XnList.h:175</div></div>
<div class="ttc" id="_xn_o_s_8h_html_a3e3a683dfb1848be011990ffa9f9c3c7"><div class="ttname"><a href="_xn_o_s_8h.html#a3e3a683dfb1848be011990ffa9f9c3c7">XN_NEW</a></div><div class="ttdeci">#define XN_NEW(type,...)</div><div class="ttdef"><b>Definition:</b> XnOS.h:325</div></div>
<div class="ttc" id="class_xn_list_html_aae0612825e24c33e866520dac716558b"><div class="ttname"><a href="class_xn_list.html#aae0612825e24c33e866520dac716558b">XnList::rbegin</a></div><div class="ttdeci">Iterator rbegin()</div><div class="ttdef"><b>Definition:</b> XnList.h:464</div></div>
<div class="ttc" id="class_xn_list_1_1_iterator_html_a615630cd92ed76be8615f216db0602ba"><div class="ttname"><a href="class_xn_list_1_1_iterator.html#a615630cd92ed76be8615f216db0602ba">XnList::Iterator::operator++</a></div><div class="ttdeci">Iterator & operator++()</div><div class="ttdef"><b>Definition:</b> XnList.h:167</div></div>
<div class="ttc" id="_xn_status_codes_8h_html"><div class="ttname"><a href="_xn_status_codes_8h.html">XnStatusCodes.h</a></div></div>
<div class="ttc" id="class_xn_list_1_1_iterator_html_af08167ac0e458ceb711c5fedf45f370c"><div class="ttname"><a href="class_xn_list_1_1_iterator.html#af08167ac0e458ceb711c5fedf45f370c">XnList::Iterator::Iterator</a></div><div class="ttdeci">Iterator(XnNode *pNode)</div><div class="ttdef"><b>Definition:</b> XnList.h:211</div></div>
<div class="ttc" id="class_xn_list_html_a82b377026cf1e4bd028ae617b2b83129"><div class="ttname"><a href="class_xn_list.html#a82b377026cf1e4bd028ae617b2b83129">XnList::rend</a></div><div class="ttdeci">ConstIterator rend() const </div><div class="ttdef"><b>Definition:</b> XnList.h:488</div></div>
<div class="ttc" id="class_xn_list_html_aa044a41f572a1b95f4dd2b2e9a364eaa"><div class="ttname"><a href="class_xn_list.html#aa044a41f572a1b95f4dd2b2e9a364eaa">XnList::IsEmpty</a></div><div class="ttdeci">XnBool IsEmpty() const </div><div class="ttdef"><b>Definition:</b> XnList.h:412</div></div>
<div class="ttc" id="class_xn_list_1_1_iterator_html_add831c0620ea6fb555ed1083f0160110"><div class="ttname"><a href="class_xn_list_1_1_iterator.html#add831c0620ea6fb555ed1083f0160110">XnList::Iterator::operator--</a></div><div class="ttdeci">Iterator & operator--()</div><div class="ttdef"><b>Definition:</b> XnList.h:185</div></div>
<div class="ttc" id="class_xn_list_html_aaa198bf56a5557c435c3e186e026376f"><div class="ttname"><a href="class_xn_list.html#aaa198bf56a5557c435c3e186e026376f">XnList::Clear</a></div><div class="ttdeci">XnStatus Clear()</div><div class="ttdef"><b>Definition:</b> XnList.h:401</div></div>
<div class="ttc" id="class_xn_list_1_1_iterator_html_a269995d8b89267d977542c8a317400a6"><div class="ttname"><a href="class_xn_list_1_1_iterator.html#a269995d8b89267d977542c8a317400a6">XnList::Iterator::operator*</a></div><div class="ttdeci">XnValue & operator*() const </div><div class="ttdef"><b>Definition:</b> XnList.h:203</div></div>
<div class="ttc" id="class_xn_list_html_ae56da04e68b36142b0f6d5cc5c7efd7b"><div class="ttname"><a href="class_xn_list.html#ae56da04e68b36142b0f6d5cc5c7efd7b">XnList::AddBefore</a></div><div class="ttdeci">XnStatus AddBefore(ConstIterator where, const XnValue &val)</div><div class="ttdef"><b>Definition:</b> XnList.h:293</div></div>
<div class="ttc" id="class_xn_list_1_1_iterator_html_ab2a6854a7b1739086ee9e12547730a66"><div class="ttname"><a href="class_xn_list_1_1_iterator.html#ab2a6854a7b1739086ee9e12547730a66">XnList::Iterator::operator--</a></div><div class="ttdeci">Iterator operator--(int)</div><div class="ttdef"><b>Definition:</b> XnList.h:193</div></div>
<div class="ttc" id="class_xn_node_html_a8854e1064d8fcaf973d08eaaffbeb9d0"><div class="ttname"><a href="class_xn_node.html#a8854e1064d8fcaf973d08eaaffbeb9d0">XnNode::Previous</a></div><div class="ttdeci">XnNode *& Previous()</div><div class="ttdef"><b>Definition:</b> XnNode.h:59</div></div>
<div class="ttc" id="class_xn_list_html_a98c587163e6a1f0e3bdf6ecf018caef0"><div class="ttname"><a href="class_xn_list.html#a98c587163e6a1f0e3bdf6ecf018caef0">XnList::AddFirst</a></div><div class="ttdeci">XnStatus AddFirst(const XnValue &value)</div><div class="ttdef"><b>Definition:</b> XnList.h:249</div></div>
<div class="ttc" id="class_xn_list_1_1_iterator_html"><div class="ttname"><a href="class_xn_list_1_1_iterator.html">XnList::Iterator</a></div><div class="ttdef"><b>Definition:</b> XnList.h:152</div></div>
<div class="ttc" id="class_i_ni_node_allocator_html"><div class="ttname"><a href="class_i_ni_node_allocator.html">INiNodeAllocator</a></div><div class="ttdef"><b>Definition:</b> IXnNodeAllocator.h:32</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html_a37dfebb5e9ce517b44ada7655d716cea"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html#a37dfebb5e9ce517b44ada7655d716cea">XnList::ConstIterator::operator*</a></div><div class="ttdeci">const XnValue & operator*() const </div><div class="ttdef"><b>Definition:</b> XnList.h:115</div></div>
<div class="ttc" id="_xn_o_s_8h_html_a3d1528ee0954a00d1989971b462d963f"><div class="ttname"><a href="_xn_o_s_8h.html#a3d1528ee0954a00d1989971b462d963f">XN_DELETE</a></div><div class="ttdeci">#define XN_DELETE(p)</div><div class="ttdef"><b>Definition:</b> XnOS.h:335</div></div>
<div class="ttc" id="class_xn_list_html_a40319bfb036bc85e484a18970b6a20de"><div class="ttname"><a href="class_xn_list.html#a40319bfb036bc85e484a18970b6a20de">XnList::~XnList</a></div><div class="ttdeci">virtual ~XnList()</div><div class="ttdef"><b>Definition:</b> XnList.h:228</div></div>
<div class="ttc" id="class_xn_list_html_a17ffd25009c9c1d4c7cefdbeca03ce2e"><div class="ttname"><a href="class_xn_list.html#a17ffd25009c9c1d4c7cefdbeca03ce2e">XnList::AddLast</a></div><div class="ttdeci">XnStatus AddLast(const XnValue &value)</div><div class="ttdef"><b>Definition:</b> XnList.h:261</div></div>
<div class="ttc" id="class_xn_list_html_a5a9db947237cbb41aa0a5b8365f7ff36"><div class="ttname"><a href="class_xn_list.html#a5a9db947237cbb41aa0a5b8365f7ff36">XnList::XnList</a></div><div class="ttdeci">XnList()</div><div class="ttdef"><b>Definition:</b> XnList.h:218</div></div>
<div class="ttc" id="class_xn_list_html_a1fde8766836ddd5d9ea68e13c5c3625a"><div class="ttname"><a href="class_xn_list.html#a1fde8766836ddd5d9ea68e13c5c3625a">XnList::Size</a></div><div class="ttdeci">XnUInt32 Size() const </div><div class="ttdef"><b>Definition:</b> XnList.h:420</div></div>
<div class="ttc" id="class_xn_list_html_abd1ed9a0b5a5a748ea4736368fa8eb82"><div class="ttname"><a href="class_xn_list.html#abd1ed9a0b5a5a748ea4736368fa8eb82">XnList::m_pNodeAllocator</a></div><div class="ttdeci">INiNodeAllocator * m_pNodeAllocator</div><div class="ttdef"><b>Definition:</b> XnList.h:548</div></div>
<div class="ttc" id="class_xn_list_html_ab349b35dd1fa8f4356b1a19452126acc"><div class="ttname"><a href="class_xn_list.html#ab349b35dd1fa8f4356b1a19452126acc">XnList::Find</a></div><div class="ttdeci">Iterator Find(const XnValue &value)</div><div class="ttdef"><b>Definition:</b> XnList.h:311</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html_abae19fa52e2bf60a3b738db817ee626d"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html#abae19fa52e2bf60a3b738db817ee626d">XnList::ConstIterator::ConstIterator</a></div><div class="ttdeci">ConstIterator(const ConstIterator &other)</div><div class="ttdef"><b>Definition:</b> XnList.h:53</div></div>
<div class="ttc" id="class_xn_list_html_a309e34829dbb7bb2d8e89a7fbf30aa94"><div class="ttname"><a href="class_xn_list.html#a309e34829dbb7bb2d8e89a7fbf30aa94">XnList::Init</a></div><div class="ttdeci">void Init(INiNodeAllocator *pNodeAllocator)</div><div class="ttdef"><b>Definition:</b> XnList.h:505</div></div>
<div class="ttc" id="class_i_ni_node_allocator_html_a15f32e859fac18f2ce014b828d16f4d3"><div class="ttname"><a href="class_i_ni_node_allocator.html#a15f32e859fac18f2ce014b828d16f4d3">INiNodeAllocator::Allocate</a></div><div class="ttdeci">virtual XnNode * Allocate()=0</div></div>
<div class="ttc" id="_xn_node_allocator_8h_html"><div class="ttname"><a href="_xn_node_allocator_8h.html">XnNodeAllocator.h</a></div></div>
<div class="ttc" id="class_xn_list_html_a99f5c5750433eeae9fb6d8d8f8c7256c"><div class="ttname"><a href="class_xn_list.html#a99f5c5750433eeae9fb6d8d8f8c7256c">XnList::Find</a></div><div class="ttdeci">ConstIterator Find(const XnValue &value) const </div><div class="ttdef"><b>Definition:</b> XnList.h:335</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html_a64545955faa228f42299ae77f4b87275"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html#a64545955faa228f42299ae77f4b87275">XnList::ConstIterator::GetNode</a></div><div class="ttdeci">const XnNode * GetNode() const </div><div class="ttdef"><b>Definition:</b> XnList.h:124</div></div>
<div class="ttc" id="class_xn_list_1_1_const_iterator_html_a4421be013ef3e7e67c8049927da0e3aa"><div class="ttname"><a href="class_xn_list_1_1_const_iterator.html#a4421be013ef3e7e67c8049927da0e3aa">XnList::ConstIterator::operator--</a></div><div class="ttdeci">ConstIterator & operator--()</div><div class="ttdef"><b>Definition:</b> XnList.h:77</div></div>
<div class="ttc" id="class_xn_node_html_acb5cf01f2529dc49aaea817db94bd713"><div class="ttname"><a href="class_xn_node.html#acb5cf01f2529dc49aaea817db94bd713">XnNode::Next</a></div><div class="ttdeci">XnNode *& Next()</div><div class="ttdef"><b>Definition:</b> XnNode.h:50</div></div>
<div class="ttc" id="class_xn_list_1_1_iterator_html_ac05a55c1d71849977a4255ed4e68f56f"><div class="ttname"><a href="class_xn_list_1_1_iterator.html#ac05a55c1d71849977a4255ed4e68f56f">XnList::Iterator::Iterator</a></div><div class="ttdeci">Iterator(const Iterator &other)</div><div class="ttdef"><b>Definition:</b> XnList.h:162</div></div>
<div class="ttc" id="class_xn_list_html_a15defc46fc8453aa10278b7869042ae8"><div class="ttname"><a href="class_xn_list.html#a15defc46fc8453aa10278b7869042ae8">XnList::end</a></div><div class="ttdeci">Iterator end()</div><div class="ttdef"><b>Definition:</b> XnList.h:448</div></div>
<div class="ttc" id="class_xn_list_html_ac5fbaef77ba86b8ebd7db9a81c574117"><div class="ttname"><a href="class_xn_list.html#ac5fbaef77ba86b8ebd7db9a81c574117">XnList::begin</a></div><div class="ttdeci">Iterator begin()</div><div class="ttdef"><b>Definition:</b> XnList.h:432</div></div>
<div class="ttc" id="_xn_macros_8h_html_a6fc088d6b924da479545b99daea79849"><div class="ttname"><a href="_xn_macros_8h.html#a6fc088d6b924da479545b99daea79849">XN_DISABLE_COPY_AND_ASSIGN</a></div><div class="ttdeci">#define XN_DISABLE_COPY_AND_ASSIGN(TypeName)</div><div class="ttdef"><b>Definition:</b> XnMacros.h:118</div></div>
<div class="ttc" id="class_i_ni_node_allocator_html_a21c78b7ca4dd34fbf067e2265ea9e3a4"><div class="ttname"><a href="class_i_ni_node_allocator.html#a21c78b7ca4dd34fbf067e2265ea9e3a4">INiNodeAllocator::Deallocate</a></div><div class="ttdeci">virtual void Deallocate(XnNode *pNode)=0</div></div>
<div class="ttc" id="class_xn_list_html_af43dc6fec93a0fe06318eddf3a59e307"><div class="ttname"><a href="class_xn_list.html#af43dc6fec93a0fe06318eddf3a59e307">XnList::Add</a></div><div class="ttdeci">XnStatus Add(XnNode *pWhere, const XnValue &val)</div><div class="ttdef"><b>Definition:</b> XnList.h:526</div></div>
</div><!-- fragment --></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu Jun 11 2015 12:31:39 for OpenNI 1.5.8 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.6
</small></address>
</body>
</html>
| Wessi/OpenNI | Source/DoxyGen/html/_xn_list_8h_source.html | HTML | apache-2.0 | 131,396 |
<!DOCTYPE html >
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Spark NLP 3.4.2 ScalaDoc - com.johnsnowlabs.nlp.util.LfuCache</title>
<meta name="description" content="Spark NLP 3.4.2 ScalaDoc - com.johnsnowlabs.nlp.util.LfuCache" />
<meta name="keywords" content="Spark NLP 3.4.2 ScalaDoc com.johnsnowlabs.nlp.util.LfuCache" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link href="../../../../lib/index.css" media="screen" type="text/css" rel="stylesheet" />
<link href="../../../../lib/template.css" media="screen" type="text/css" rel="stylesheet" />
<link href="../../../../lib/diagrams.css" media="screen" type="text/css" rel="stylesheet" id="diagrams-css" />
<script type="text/javascript" src="../../../../lib/jquery.min.js"></script>
<script type="text/javascript" src="../../../../lib/jquery.panzoom.min.js"></script>
<script type="text/javascript" src="../../../../lib/jquery.mousewheel.min.js"></script>
<script type="text/javascript" src="../../../../lib/index.js"></script>
<script type="text/javascript" src="../../../../index.js"></script>
<script type="text/javascript" src="../../../../lib/scheduler.js"></script>
<script type="text/javascript" src="../../../../lib/template.js"></script>
<script type="text/javascript">
/* this variable can be used by the JS to determine the path to the root document */
var toRoot = '../../../../';
</script>
</head>
<body>
<div id="search">
<span id="doc-title">Spark NLP 3.4.2 ScalaDoc<span id="doc-version"></span></span>
<span class="close-results"><span class="left"><</span> Back</span>
<div id="textfilter">
<span class="input">
<input autocapitalize="none" placeholder="Search" id="index-input" type="text" accesskey="/" />
<i class="clear material-icons"></i>
<i id="search-icon" class="material-icons"></i>
</span>
</div>
</div>
<div id="search-results">
<div id="search-progress">
<div id="progress-fill"></div>
</div>
<div id="results-content">
<div id="entity-results"></div>
<div id="member-results"></div>
</div>
</div>
<div id="content-scroll-container" style="-webkit-overflow-scrolling: touch;">
<div id="content-container" style="-webkit-overflow-scrolling: touch;">
<div id="subpackage-spacer">
<div id="packages">
<h1>Packages</h1>
<ul>
<li name="_root_.root" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="_root_"></a><a id="root:_root_"></a>
<span class="permalink">
<a href="../../../../index.html" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">package</span>
</span>
<span class="symbol">
<a title="" href="../../../../index.html"><span class="name">root</span></a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../../../index.html" class="extype" name="_root_">root</a></dd></dl></div>
</li><li name="_root_.com" visbl="pub" class="indented1 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="com"></a><a id="com:com"></a>
<span class="permalink">
<a href="../../../../com/index.html" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">package</span>
</span>
<span class="symbol">
<a title="" href="../../../index.html"><span class="name">com</span></a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../../../index.html" class="extype" name="_root_">root</a></dd></dl></div>
</li><li name="com.johnsnowlabs" visbl="pub" class="indented2 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="johnsnowlabs"></a><a id="johnsnowlabs:johnsnowlabs"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/index.html" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">package</span>
</span>
<span class="symbol">
<a title="" href="../../index.html"><span class="name">johnsnowlabs</span></a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../../index.html" class="extype" name="com">com</a></dd></dl></div>
</li><li name="com.johnsnowlabs.nlp" visbl="pub" class="indented3 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="nlp"></a><a id="nlp:nlp"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/index.html" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">package</span>
</span>
<span class="symbol">
<a title="" href="../index.html"><span class="name">nlp</span></a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../index.html" class="extype" name="com.johnsnowlabs">johnsnowlabs</a></dd></dl></div>
</li><li name="com.johnsnowlabs.nlp.util" visbl="pub" class="indented4 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="util"></a><a id="util:util"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/index.html" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">package</span>
</span>
<span class="symbol">
<a title="" href="index.html"><span class="name">util</span></a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../index.html" class="extype" name="com.johnsnowlabs.nlp">nlp</a></dd></dl></div>
</li><li name="com.johnsnowlabs.nlp.util.io" visbl="pub" class="indented5 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="io"></a><a id="io:io"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/io/index.html" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">package</span>
</span>
<span class="symbol">
<a title="" href="io/index.html"><span class="name">io</span></a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="index.html" class="extype" name="com.johnsnowlabs.nlp.util">util</a></dd></dl></div>
</li><li name="com.johnsnowlabs.nlp.util.regex" visbl="pub" class="indented5 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="regex"></a><a id="regex:regex"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/regex/index.html" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">package</span>
</span>
<span class="symbol">
<a title="" href="regex/index.html"><span class="name">regex</span></a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="index.html" class="extype" name="com.johnsnowlabs.nlp.util">util</a></dd></dl></div>
</li><li class="current-entities indented4">
<span class="separator"></span>
<a class="object" href="FinisherUtil$.html" title=""></a>
<a href="FinisherUtil$.html" title="">FinisherUtil</a>
</li><li class="current-entities indented4">
<span class="separator"></span>
<a class="class" href="GraphBuilder.html" title="Graph Builder that creates a graph representation as an Adjacency List"></a>
<a href="GraphBuilder.html" title="Graph Builder that creates a graph representation as an Adjacency List">GraphBuilder</a>
</li><li class="current-entities indented4">
<span class="separator"></span>
<a class="class" href="" title=""></a>
<a href="" title="">LfuCache</a>
</li><li class="current-entities indented4">
<span class="separator"></span>
<a class="class" href="LruMap.html" title=""></a>
<a href="LruMap.html" title="">LruMap</a>
</li><li class="current-entities indented4">
<span class="separator"></span>
<a class="object" href="SparkNlpConfigKeys$.html" title="Additional configure options that used by spark.nlp"></a>
<a href="SparkNlpConfigKeys$.html" title="Additional configure options that used by spark.nlp">SparkNlpConfigKeys</a>
</li>
</ul>
</div>
</div>
<div id="content">
<body class="class type">
<div id="definition">
<div class="big-circle class">c</div>
<p id="owner"><a href="../../../index.html" class="extype" name="com">com</a>.<a href="../../index.html" class="extype" name="com.johnsnowlabs">johnsnowlabs</a>.<a href="../index.html" class="extype" name="com.johnsnowlabs.nlp">nlp</a>.<a href="index.html" class="extype" name="com.johnsnowlabs.nlp.util">util</a></p>
<h1>LfuCache<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html" title="Permalink">
<i class="material-icons"></i>
</a>
</span></h1>
<h3><span class="morelinks"></span></h3>
</div>
<h4 id="signature" class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">class</span>
</span>
<span class="symbol">
<span class="name">LfuCache</span><span class="tparams">[<span name="TKey">TKey</span>, <span name="TValue">TValue</span>]</span><span class="result"> extends <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
</h4>
<div id="comment" class="fullcommenttop"><dl class="attributes block"> <dt>Annotations</dt><dd>
<span class="name">@specialized</span><span class="args">()</span>
</dd></dl><div class="toggleContainer block">
<span class="toggle">
Linear Supertypes
</span>
<div class="superTypes hiddenContent"><span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div>
</div></div>
<div id="mbrsel">
<div class="toggle"></div>
<div id="memberfilter">
<i class="material-icons arrow"></i>
<span class="input">
<input id="mbrsel-input" placeholder="Filter all members" type="text" accesskey="/" />
</span>
<i class="clear material-icons"></i>
</div>
<div id="filterby">
<div id="order">
<span class="filtertype">Ordering</span>
<ol>
<li class="alpha in"><span>Alphabetic</span></li>
<li class="inherit out"><span>By Inheritance</span></li>
</ol>
</div>
<div class="ancestors">
<span class="filtertype">Inherited<br />
</span>
<ol id="linearization">
<li class="in" name="com.johnsnowlabs.nlp.util.LfuCache"><span>LfuCache</span></li><li class="in" name="scala.AnyRef"><span>AnyRef</span></li><li class="in" name="scala.Any"><span>Any</span></li>
</ol>
</div><div class="ancestors">
<span class="filtertype"></span>
<ol>
<li class="hideall out"><span>Hide All</span></li>
<li class="showall in"><span>Show All</span></li>
</ol>
</div>
<div id="visbl">
<span class="filtertype">Visibility</span>
<ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol>
</div>
</div>
</div>
<div id="template">
<div id="allMembers">
<div id="constructors" class="members">
<h3>Instance Constructors</h3>
<ol><li name="com.johnsnowlabs.nlp.util.LfuCache#<init>" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped">
<a id="<init>(maxSize:Int):com.johnsnowlabs.nlp.util.LfuCache[TKey,TValue]"></a><a id="<init>:LfuCache[TKey,TValue]"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#<init>(maxSize:Int):com.johnsnowlabs.nlp.util.LfuCache[TKey,TValue]" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">new</span>
</span>
<span class="symbol">
<span class="name">LfuCache</span><span class="params">(<span name="maxSize">maxSize: <span class="extype" name="scala.Int">Int</span></span>)</span>
</span>
</li></ol>
</div>
<div id="types" class="types members">
<h3>Type Members</h3>
<ol><li name="com.johnsnowlabs.nlp.util.LfuCache.CachedItem" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped">
<a id="CachedItemextendsLfuCache.this.DoubleLinked[LfuCache.this.CachedItem]"></a><a id="CachedItem:CachedItem"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache$CachedItem.html" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">class</span>
</span>
<span class="symbol">
<a title="" href="LfuCache$CachedItem.html"><span class="name">CachedItem</span></a><span class="result"> extends <a href="LfuCache$DoubleLinked.html" class="extype" name="com.johnsnowlabs.nlp.util.LfuCache.DoubleLinked">DoubleLinked</a>[<a href="LfuCache$CachedItem.html" class="extype" name="com.johnsnowlabs.nlp.util.LfuCache.CachedItem">CachedItem</a>]</span>
</span>
</li><li name="com.johnsnowlabs.nlp.util.LfuCache.DoubleLinked" visbl="pub" class="indented0 " data-isabs="true" fullComment="no" group="Ungrouped">
<a id="DoubleLinked[Type<:LfuCache.this.DoubleLinked[Type]]extendsAnyRef"></a><a id="DoubleLinked[Type<:DoubleLinked[Type]]:DoubleLinked[Type]"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache$DoubleLinked.html" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">trait</span>
</span>
<span class="symbol">
<a title="" href="LfuCache$DoubleLinked.html"><span class="name">DoubleLinked</span></a><span class="tparams">[<span name="Type">Type <: <a href="LfuCache$DoubleLinked.html" class="extype" name="com.johnsnowlabs.nlp.util.LfuCache.DoubleLinked">DoubleLinked</a>[<span class="extype" name="com.johnsnowlabs.nlp.util.LfuCache.DoubleLinked.Type">Type</span>]</span>]</span><span class="result"> extends <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
</li><li name="com.johnsnowlabs.nlp.util.LfuCache.FrequencyList" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped">
<a id="FrequencyListextendsLfuCache.this.DoubleLinked[LfuCache.this.FrequencyList]"></a><a id="FrequencyList:FrequencyList"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache$FrequencyList.html" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">class</span>
</span>
<span class="symbol">
<a title="" href="LfuCache$FrequencyList.html"><span class="name">FrequencyList</span></a><span class="result"> extends <a href="LfuCache$DoubleLinked.html" class="extype" name="com.johnsnowlabs.nlp.util.LfuCache.DoubleLinked">DoubleLinked</a>[<a href="LfuCache$FrequencyList.html" class="extype" name="com.johnsnowlabs.nlp.util.LfuCache.FrequencyList">FrequencyList</a>]</span>
</span>
</li></ol>
</div>
<div class="values members">
<h3>Value Members</h3>
<ol>
<li name="scala.AnyRef#!=" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="!=(x$1:Any):Boolean"></a><a id="!=(Any):Boolean"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#!=(x$1:Any):Boolean" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $bang$eq" class="name">!=</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.AnyRef###" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="##():Int"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html###():Int" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $hash$hash" class="name">##</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.AnyRef#==" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="==(x$1:Any):Boolean"></a><a id="==(Any):Boolean"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#==(x$1:Any):Boolean" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $eq$eq" class="name">==</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.Any#asInstanceOf" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="asInstanceOf[T0]:T0"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#asInstanceOf[T0]:T0" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">asInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Any.asInstanceOf.T0">T0</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li name="scala.AnyRef#clone" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="clone():Object"></a><a id="clone():AnyRef"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#clone():Object" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">clone</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<span class="extype" name="java.lang">lang</span>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="defval" name="classOf[java.lang.CloneNotSupportedException]">...</span>
</span>)</span>
<span class="name">@native</span><span class="args">()</span>
</dd></dl></div>
</li><li name="scala.AnyRef#eq" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="eq(x$1:AnyRef):Boolean"></a><a id="eq(AnyRef):Boolean"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#eq(x$1:AnyRef):Boolean" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">eq</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#equals" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="equals(x$1:Any):Boolean"></a><a id="equals(Any):Boolean"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#equals(x$1:Any):Boolean" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">equals</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.AnyRef#finalize" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="finalize():Unit"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#finalize():Unit" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">finalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<span class="extype" name="java.lang">lang</span>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="symbol">classOf[java.lang.Throwable]</span>
</span>)</span>
</dd></dl></div>
</li><li name="com.johnsnowlabs.nlp.util.LfuCache#get" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped">
<a id="get(itemId:TKey):Option[TValue]"></a><a id="get(TKey):Option[TValue]"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#get(itemId:TKey):Option[TValue]" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">get</span><span class="params">(<span name="itemId">itemId: <span class="extype" name="com.johnsnowlabs.nlp.util.LfuCache.TKey">TKey</span></span>)</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="com.johnsnowlabs.nlp.util.LfuCache.TValue">TValue</span>]</span>
</span>
</li><li name="scala.AnyRef#getClass" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="getClass():Class[_]"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#getClass():Class[_]" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">getClass</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.Class">Class</span>[_]</span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd><dt>Annotations</dt><dd>
<span class="name">@native</span><span class="args">()</span>
</dd></dl></div>
</li><li name="com.johnsnowlabs.nlp.util.LfuCache#getOrElseUpdate" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped">
<a id="getOrElseUpdate(key:TKey,value:=>TValue):TValue"></a><a id="getOrElseUpdate(TKey,⇒TValue):TValue"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#getOrElseUpdate(key:TKey,value:=>TValue):TValue" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">getOrElseUpdate</span><span class="params">(<span name="key">key: <span class="extype" name="com.johnsnowlabs.nlp.util.LfuCache.TKey">TKey</span></span>, <span name="value">value: ⇒ <span class="extype" name="com.johnsnowlabs.nlp.util.LfuCache.TValue">TValue</span></span>)</span><span class="result">: <span class="extype" name="com.johnsnowlabs.nlp.util.LfuCache.TValue">TValue</span></span>
</span>
</li><li name="com.johnsnowlabs.nlp.util.LfuCache#getSize" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped">
<a id="getSize:Int"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#getSize:Int" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">getSize</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span>
</span>
</li><li name="scala.AnyRef#hashCode" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="hashCode():Int"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#hashCode():Int" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">hashCode</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd><dt>Annotations</dt><dd>
<span class="name">@native</span><span class="args">()</span>
</dd></dl></div>
</li><li name="scala.Any#isInstanceOf" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="isInstanceOf[T0]:Boolean"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#isInstanceOf[T0]:Boolean" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li name="scala.AnyRef#ne" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="ne(x$1:AnyRef):Boolean"></a><a id="ne(AnyRef):Boolean"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#ne(x$1:AnyRef):Boolean" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">ne</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#notify" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="notify():Unit"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#notify():Unit" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">notify</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@native</span><span class="args">()</span>
</dd></dl></div>
</li><li name="scala.AnyRef#notifyAll" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="notifyAll():Unit"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#notifyAll():Unit" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">notifyAll</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@native</span><span class="args">()</span>
</dd></dl></div>
</li><li name="com.johnsnowlabs.nlp.util.LfuCache#removeLast" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped">
<a id="removeLast():Option[TValue]"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#removeLast():Option[TValue]" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">removeLast</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="com.johnsnowlabs.nlp.util.LfuCache.TValue">TValue</span>]</span>
</span>
</li><li name="scala.AnyRef#synchronized" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="synchronized[T0](x$1:=>T0):T0"></a><a id="synchronized[T0](⇒T0):T0"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#synchronized[T0](x$1:=>T0):T0" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#toString" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="toString():String"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#toString():String" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">toString</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.String">String</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.AnyRef#wait" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="wait():Unit"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#wait():Unit" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="defval" name="classOf[java.lang.InterruptedException]">...</span>
</span>)</span>
</dd></dl></div>
</li><li name="scala.AnyRef#wait" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="wait(x$1:Long,x$2:Int):Unit"></a><a id="wait(Long,Int):Unit"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#wait(x$1:Long,x$2:Int):Unit" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="defval" name="classOf[java.lang.InterruptedException]">...</span>
</span>)</span>
</dd></dl></div>
</li><li name="scala.AnyRef#wait" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="wait(x$1:Long):Unit"></a><a id="wait(Long):Unit"></a>
<span class="permalink">
<a href="../../../../com/johnsnowlabs/nlp/util/LfuCache.html#wait(x$1:Long):Unit" title="Permalink">
<i class="material-icons"></i>
</a>
</span>
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="defval" name="classOf[java.lang.InterruptedException]">...</span>
</span>)</span>
<span class="name">@native</span><span class="args">()</span>
</dd></dl></div>
</li>
</ol>
</div>
</div>
<div id="inheritedMembers">
<div class="parent" name="scala.AnyRef">
<h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3>
</div><div class="parent" name="scala.Any">
<h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3>
</div>
</div>
<div id="groupedMembers">
<div class="group" name="Ungrouped">
<h3>Ungrouped</h3>
</div>
</div>
</div>
<div id="tooltip"></div>
<div id="footer"> </div>
</body>
</div>
</div>
</div>
</body>
</html>
| JohnSnowLabs/spark-nlp | docs/api/com/johnsnowlabs/nlp/util/LfuCache.html | HTML | apache-2.0 | 41,190 |
<!-- TAXON -->
<div ng-controller="taxonFilter">
<form>
<filter-select items="taxa" item-text="getTaxaDescription(item)"></filter-select>
<div>
<div class="form-group">
<p>...or enter taxon identifiers:</p>
<textarea ng-model="taxonTextArea" placeholder="9606,100090,10116,..." class="form-control"></textarea>
<p class="pull-right"><small>
Visit <a href="http://www.uniprot.org/taxonomy/" target="_blank">
UniProt Taxonomy</a> to find identifiers for other taxonomic groups
</small></p>
</div>
<div class="form-group">
<button class="hollow button" ng-click="addTaxons()">Add</button>
</div>
</div>
<hr>
<label><input type="radio" ng-model="taxonUsage" value="descendants">Include descendants</label>
<label><input type="radio" ng-model="taxonUsage" value="exact">Exact match</label>
<div class="float-right">
<filter-buttons></filter-buttons>
</div>
</form>
</div>
| ebi-uniprot/QuickGoFE | app/advancedfilters/taxonFilter.html | HTML | apache-2.0 | 991 |
<!--
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->
<div class="fontLoader">
<i class="fa fa-refresh fa-spin-custom"></i>
</div>
<div class="hide">
<div class="page-title clearfix">
<h1><span data-id="title"></span></h1>
<button data-id="editButton" class="btn btn-default pull-right editbutton" id="editText"><i class="fa fa-pencil"></i></button>
<p class="sub-title" data-id="description">Description</p>
<!-- <div data-id="editBox" style="margin-bottom:10px;">
<textarea class="well well-sm col-sm-12" data-id="descriptionTextArea"></textarea>
<div class="clearfix" align="right">
<button class="btn btn-atlas cancel" data-id="cancelButton">Cancel</button>
<button class="btn btn-atlas ok" data-id="publishButton">Publish</button>
</div>
</div> -->
</div>
<div class="container-fluid gray-bg">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="atlast-tabbable">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="tab active"><a href="#tab-details" aria-controls="tab-details" role="tab" data-toggle="tab">Properties</a></li>
<!-- <li role="presentation"><a href="#profile" aria-controls="profile" role="tab" data-toggle="tab">Acceptable Use</a></li> -->
</ul>
<div class="tab-content">
<div id="tab-details" role="tabpanel" class="tab-pane active">
<p data-id="createDate"></p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="atlast-tabbable">
<div class="panel panel-default lineageLayout" style="display:none">
<div id="r_lineageLayoutView"></div>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="row">
<div class="col-sm-10 col-sm-offset-1">
<h2>Comments</h2>
<textarea class="form-control comment-input" rows="5" placeholder="Add a Comment"></textarea>
<button class="btn-atlas">Comment</button>
<div class="comment-box">
<p class="comment">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable.</p>
<p class="author">Micheal Surmac</p>
<p class="date">December 16, 2016 11:03:23 AM</p>
</div>
<div class="comment-box">
<p class="comment">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.</p>
<p class="author">Paula Schmidt</p>
<p class="date">May 3, 2015 9:16:12 AM</p>
</div>
</div>
</div> -->
</div>
| jnhagelberg/incubator-atlas | dashboardv2/public/js/templates/business_catalog/BusinessCatalogDetailLayoutView_tmpl.html | HTML | apache-2.0 | 3,908 |
{% extends 'common/templates/base_sidebar.html' %}
{% load nonce avatar vcard base format %}
{% block title %}{{view.display_nick}}{% endblock %}
{% block content %}
{% if user_can_post %}
{% include_extend 'common/templates/message_form.html' %}
{% block classmessage %}channel{% endblock %}
{% block channel_title %}
<div id="actions">
{% if not user_is_admin %}
<a class="leave" href="{% url_for view request %}?channel_part=&nick={{request.user.nick|urlencode}}&channel={{view.nick|urlencode}}&{{request.user|nonceparam:"channel_part"}}">Leave {{view.display_nick}}</a>
<span>You are a member.</span>
{% else %}
<a class="settings" href="{{view.url}}/settings">Edit settings</a>
{% endif %}
</div>
<h1 class="fn">
<span class="nickname">{{view.display_nick}}</span>
</h1>
{% endblock %}
{% block message_title %}<h2>What's happening?</h2>{% endblock %}
{% endinclude_extend %}
{% else %}
{% include 'form_error.html' %}
<div class="main">
<div class="vcard clearfix" id="profile">
{% with view as actor %}
{% include 'common/templates/vcard_full.html' %}
{% endwith %}
{% if request.user %}
<p id="actions" class="clearfix">
<a class="join" href="{% url_for view request %}?channel_join=&nick={{request.user.nick|urlencode}}&channel={{view.nick|urlencode}}&{{request.user|nonceparam:"channel_join"}}">
+ Join
</a> {{view.display_nick}} & express forward!
</p>
{% endif %}
</div>
</div>
{% endif %}
<div id='stream'>
<h2>Collaborative {{POST_NAME|plural}} in channel {{ view.display_nick }}</h2>
{% include_extend 'common/templates/stream.html' %}
{% block no_posts %}<div class="highlight"><p>No one has posted to this channel yet.</p></div>{% endblock %}
{% endinclude_extend %}
{% include 'common/templates/paging.html' %}
{% comment %}
{% include 'common/templates/feeds.html' %}
{% endcomment %}
</div>
{% endblock %}
{% block sidebar %}
{% include 'channel/templates/sidebar_profile.html' %}
{% include 'common/templates/sidebar_members.html' %}
{% include 'channel/templates/sidebar_userpoboxes.html' %}
{% include 'channel/templates/sidebar_childrentags.html' %}
{% endblock %}
| CollabQ/CollabQ | channel/templates/history.html | HTML | apache-2.0 | 2,328 |
<!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>
<title>OR-Tools</title>
<meta http-equiv="Content-Type" content="text/html;"/>
<meta charset="utf-8"/>
<!--<link rel='stylesheet' type='text/css' href="https://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic"/>-->
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="styleSheet.tmp.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="banner-container">
<div id="banner">
<span id="sfml">Google OR-Tools 9.2</span>
</div>
</div>
<div id="content" style="width: 100%; overflow: hidden;">
<div style="margin-left: 15px; margin-top: 5px; float: left; color: #145A32;">
<h2>DotNet Reference</h2>
<ul>
<li><a href="../dotnet/namespaceGoogle_1_1OrTools_1_1Sat.html">CP-SAT</a></li>
<li><a href="../dotnet/namespaceGoogle_1_1OrTools_1_1Graph.html">Graph</a></li>
<li><a href="../dotnet/namespaceGoogle_1_1OrTools_1_1Algorithms.html">Knapsack solver</a></li>
<li><a href="../dotnet/namespaceGoogle_1_1OrTools_1_1LinearSolver.html">Linear solver</a></li>
<li><a href="../dotnet/namespaceGoogle_1_1OrTools_1_1ConstraintSolver.html">Routing</a></li>
<li><a href="../dotnet/namespaceGoogle_1_1OrTools_1_1Util.html">Util</a></li>
</ul>
</div>
<div id="content">
<div align="center">
<h1 style="color: #145A32;">.Net Reference</h1>
</div>
<!-- Generated by Doxygen 1.9.2 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search",'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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
$(document).ready(function(){initNavTree('classGoogle_1_1OrTools_1_1ConstraintSolver_1_1IntervalVarArrayHelper.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- 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="header">
<div class="summary">
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1IntervalVarArrayHelper-members.html">List of all members</a> </div>
<div class="headertitle"><div class="title">IntervalVarArrayHelper</div></div>
</div><!--header-->
<div class="contents">
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock">
<p class="definition">Definition at line <a class="el" href="IntervalVarArrayHelper_8cs_source.html#l00020">20</a> of file <a class="el" href="IntervalVarArrayHelper_8cs_source.html">IntervalVarArrayHelper.cs</a>.</p>
</div><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="pub-static-methods" name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a49c99df7839381eff6048805ad8d0de0"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1DisjunctiveConstraint.html">DisjunctiveConstraint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1IntervalVarArrayHelper.html#a49c99df7839381eff6048805ad8d0de0">Disjunctive</a> (this <a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1IntervalVar.html">IntervalVar</a>[] vars, String name)</td></tr>
<tr class="separator:a49c99df7839381eff6048805ad8d0de0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a21cc10f113d9e2831fcbca996c4813b3"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1Constraint.html">Constraint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1IntervalVarArrayHelper.html#a21cc10f113d9e2831fcbca996c4813b3">Cumulative</a> (this <a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1IntervalVar.html">IntervalVar</a>[] vars, long[] demands, long capacity, String name)</td></tr>
<tr class="separator:a21cc10f113d9e2831fcbca996c4813b3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a64b47e9257609b56dbf5489ce17f5587"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1Constraint.html">Constraint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1IntervalVarArrayHelper.html#a64b47e9257609b56dbf5489ce17f5587">Cumulative</a> (this <a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1IntervalVar.html">IntervalVar</a>[] vars, int[] demands, long capacity, String name)</td></tr>
<tr class="separator:a64b47e9257609b56dbf5489ce17f5587"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Member Function Documentation</h2>
<a id="a64b47e9257609b56dbf5489ce17f5587" name="a64b47e9257609b56dbf5489ce17f5587"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a64b47e9257609b56dbf5489ce17f5587">◆ </a></span>Cumulative() <span class="overload">[1/2]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1Constraint.html">Constraint</a> Cumulative </td>
<td>(</td>
<td class="paramtype">this <a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1IntervalVar.html">IntervalVar</a>[] </td>
<td class="paramname"><em>vars</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int[] </td>
<td class="paramname"><em>demands</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">long </td>
<td class="paramname"><em>capacity</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">String </td>
<td class="paramname"><em>name</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">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="IntervalVarArrayHelper_8cs_source.html#l00040">40</a> of file <a class="el" href="IntervalVarArrayHelper_8cs_source.html">IntervalVarArrayHelper.cs</a>.</p>
</div>
</div>
<a id="a21cc10f113d9e2831fcbca996c4813b3" name="a21cc10f113d9e2831fcbca996c4813b3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a21cc10f113d9e2831fcbca996c4813b3">◆ </a></span>Cumulative() <span class="overload">[2/2]</span></h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1Constraint.html">Constraint</a> Cumulative </td>
<td>(</td>
<td class="paramtype">this <a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1IntervalVar.html">IntervalVar</a>[] </td>
<td class="paramname"><em>vars</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">long[] </td>
<td class="paramname"><em>demands</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">long </td>
<td class="paramname"><em>capacity</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">String </td>
<td class="paramname"><em>name</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">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="IntervalVarArrayHelper_8cs_source.html#l00035">35</a> of file <a class="el" href="IntervalVarArrayHelper_8cs_source.html">IntervalVarArrayHelper.cs</a>.</p>
</div>
</div>
<a id="a49c99df7839381eff6048805ad8d0de0" name="a49c99df7839381eff6048805ad8d0de0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a49c99df7839381eff6048805ad8d0de0">◆ </a></span>Disjunctive()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1DisjunctiveConstraint.html">DisjunctiveConstraint</a> Disjunctive </td>
<td>(</td>
<td class="paramtype">this <a class="el" href="classGoogle_1_1OrTools_1_1ConstraintSolver_1_1IntervalVar.html">IntervalVar</a>[] </td>
<td class="paramname"><em>vars</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">String </td>
<td class="paramname"><em>name</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">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="IntervalVarArrayHelper_8cs_source.html#l00030">30</a> of file <a class="el" href="IntervalVarArrayHelper_8cs_source.html">IntervalVarArrayHelper.cs</a>.</p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="IntervalVarArrayHelper_8cs_source.html">IntervalVarArrayHelper.cs</a></li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
</div>
</div>
<div id="footer-container">
<div id="footer">
</div>
</div>
</body>
</html>
| google/or-tools | docs/dotnet/classGoogle_1_1OrTools_1_1ConstraintSolver_1_1IntervalVarArrayHelper.html | HTML | apache-2.0 | 12,305 |
<!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>
<title>OR-Tools</title>
<meta http-equiv="Content-Type" content="text/html;"/>
<meta charset="utf-8"/>
<!--<link rel='stylesheet' type='text/css' href="https://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic"/>-->
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="styleSheet.tmp.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="banner-container">
<div id="banner">
<span id="sfml">Google OR-Tools 9.2</span>
</div>
</div>
<div id="content" style="width: 100%; overflow: hidden;">
<div style="margin-left: 15px; margin-top: 5px; float: left; color: #145A32;">
<h2>C++ Reference</h2>
<ul>
<li><a href="../cpp_algorithms/annotated.html">Algorithms</a></li>
<li><a href="../cpp_sat/annotated.html">CP-SAT</a></li>
<li><a href="../cpp_graph/annotated.html">Graph</a></li>
<li><a href="../cpp_routing/annotated.html">Routing</a></li>
<li><a href="../cpp_linear/annotated.html">Linear solver</a></li>
</ul>
</div>
<div id="content">
<div align="center">
<h1 style="color: #145A32;">C++ Reference: Graph</h1>
</div>
<!-- Generated by Doxygen 1.9.2 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search",'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:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
$(document).ready(function(){initNavTree('hamiltonian__path_8h.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- 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="header">
<div class="summary">
<a href="#nested-classes">Classes</a> |
<a href="#namespaces">Namespaces</a> |
<a href="#typedef-members">Typedefs</a> |
<a href="#func-members">Functions</a> </div>
<div class="headertitle"><div class="title">hamiltonian_path.h File Reference</div></div>
</div><!--header-->
<div class="contents">
<p><a href="hamiltonian__path_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 id="nested-classes" 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="classoperations__research_1_1_element_iterator.html">ElementIterator< Set ></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="classoperations__research_1_1_set.html">Set< Integer ></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="classoperations__research_1_1_set_range_iterator.html">SetRangeIterator< SetRange ></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="classoperations__research_1_1_set_range_with_cardinality.html">SetRangeWithCardinality< Set ></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="classoperations__research_1_1_lattice_memory_manager.html">LatticeMemoryManager< Set, CostType ></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="classoperations__research_1_1_hamiltonian_path_solver.html">HamiltonianPathSolver< CostType, CostFunction ></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="classoperations__research_1_1_pruning_hamiltonian_solver.html">PruningHamiltonianSolver< CostType, CostFunction ></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 id="namespaces" name="namespaces"></a>
Namespaces</h2></td></tr>
<tr class="memitem:namespaceoperations__research"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceoperations__research.html">operations_research</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 id="typedef-members" name="typedef-members"></a>
Typedefs</h2></td></tr>
<tr class="memitem:ae8625c5e71962a0f99954d34dab9f92d"><td class="memItemLeft" align="right" valign="top">typedef int </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceoperations__research.html#ae8625c5e71962a0f99954d34dab9f92d">PathNodeIndex</a></td></tr>
<tr class="separator:ae8625c5e71962a0f99954d34dab9f92d"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="func-members" name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:ae3fee0d3bb89e4913ad2269f8a1be421"><td class="memTemplParams" colspan="2">template<typename CostType , typename CostFunction > </td></tr>
<tr class="memitem:ae3fee0d3bb89e4913ad2269f8a1be421"><td class="memTemplItemLeft" align="right" valign="top">HamiltonianPathSolver< CostType, CostFunction > </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="namespaceoperations__research.html#ae3fee0d3bb89e4913ad2269f8a1be421">MakeHamiltonianPathSolver</a> (int num_nodes, CostFunction cost)</td></tr>
<tr class="separator:ae3fee0d3bb89e4913ad2269f8a1be421"><td class="memSeparator" colspan="2"> </td></tr>
</table>
</div><!-- contents -->
</div><!-- doc-content -->
</div>
</div>
<div id="footer-container">
<div id="footer">
</div>
</div>
</body>
</html>
| google/or-tools | docs/cpp_graph/hamiltonian__path_8h.html | HTML | apache-2.0 | 8,424 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="assets/ico/favicon.ico">
<title>SOLID - Bootstrap 3 Theme</title>
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy this line! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[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]-->
<script src="assets/js/modernizr.js"></script>
</head>
<body>
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">SOLID.</a>
</div>
<div class="navbar-collapse collapse navbar-right">
<ul class="nav navbar-nav">
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li class="dropdown active">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">PAGES <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="blog.html">BLOG</a></li>
<li><a href="single-post.html">SINGLE POST</a></li>
<li><a href="portfolio.html">PORTFOLIO</a></li>
<li><a href="single-project.html">SINGLE PROJECT</a></li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<!-- *****************************************************************************************************************
BLUE WRAP
***************************************************************************************************************** -->
<div id="blue">
<div class="container">
<div class="row">
<h3>Single Post.</h3>
</div><!-- /row -->
</div> <!-- /container -->
</div><!-- /blue -->
<!-- *****************************************************************************************************************
BLOG CONTENT
***************************************************************************************************************** -->
<div class="container mtb">
<div class="row">
<! -- SINGLE POST -->
<div class="col-lg-8">
<! -- Blog Post 1 -->
<p><img class="img-responsive" src="assets/img/post01.jpg"></p>
<a href="single-post.html"><h3 class="ctitle">Time to change your apps.</h3></a>
<p><csmall>Posted: April 25, 2014.</csmall> | <csmall2>By: Admin - 3 Comments</csmall2></p>
<p><b>Lorem Ipsum</b> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<p>It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<p>Contrary to popular belief, <b>Lorem Ipsum is not simply random text</b>. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at <a href="#">Hampden-Sydney College</a> in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source.</p>
<p>Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p>
<h4>Why do we use it?</h4>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.</p>
<blockquote>Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</blockquote>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable.</p>
<div class="spacing"></div>
<h6>SHARE:</h6>
<p class="share">
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-tumblr"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
</p>
</div><! --/col-lg-8 -->
<! -- SIDEBAR -->
<div class="col-lg-4">
<h4>Search</h4>
<div class="hline"></div>
<p>
<br/>
<input type="text" class="form-control" placeholder="Search something">
</p>
<div class="spacing"></div>
<h4>Categories</h4>
<div class="hline"></div>
<p><a href="#"><i class="fa fa-angle-right"></i> Wordpress</a> <span class="badge badge-theme pull-right">9</span></p>
<p><a href="#"><i class="fa fa-angle-right"></i> Photoshop</a> <span class="badge badge-theme pull-right">3</span></p>
<p><a href="#"><i class="fa fa-angle-right"></i> Web Design</a> <span class="badge badge-theme pull-right">11</span></p>
<p><a href="#"><i class="fa fa-angle-right"></i> Development</a> <span class="badge badge-theme pull-right">5</span></p>
<p><a href="#"><i class="fa fa-angle-right"></i> Tips & Tricks</a> <span class="badge badge-theme pull-right">7</span></p>
<p><a href="#"><i class="fa fa-angle-right"></i> Code Snippets</a> <span class="badge badge-theme pull-right">12</span></p>
<div class="spacing"></div>
<h4>Recent Posts</h4>
<div class="hline"></div>
<ul class="popular-posts">
<li>
<a href="#"><img src="assets/img/thumb01.jpg" alt="Popular Post"></a>
<p><a href="#">Lorem ipsum dolor sit amet consectetur adipiscing elit</a></p>
<em>Posted on 02/21/14</em>
</li>
<li>
<a href="#"><img src="assets/img/thumb02.jpg" alt="Popular Post"></a>
<p><a href="#">Lorem ipsum dolor sit amet consectetur adipiscing elit</a></p>
<em>Posted on 03/01/14</em>
<li>
<a href="#"><img src="assets/img/thumb03.jpg" alt="Popular Post"></a>
<p><a href="#">Lorem ipsum dolor sit amet consectetur adipiscing elit</a></p>
<em>Posted on 05/16/14</em>
</li>
<li>
<a href="#"><img src="assets/img/thumb04.jpg" alt="Popular Post"></a>
<p><a href="#">Lorem ipsum dolor sit amet consectetur adipiscing elit</a></p>
<em>Posted on 05/16/14</em>
</li>
</ul>
<div class="spacing"></div>
<h4>Popular Tags</h4>
<div class="hline"></div>
<p>
<a class="btn btn-theme" href="#" role="button">Design</a>
<a class="btn btn-theme" href="#" role="button">Wordpress</a>
<a class="btn btn-theme" href="#" role="button">Flat</a>
<a class="btn btn-theme" href="#" role="button">Modern</a>
<a class="btn btn-theme" href="#" role="button">Wallpaper</a>
<a class="btn btn-theme" href="#" role="button">HTML5</a>
<a class="btn btn-theme" href="#" role="button">Pre-processor</a>
<a class="btn btn-theme" href="#" role="button">Developer</a>
<a class="btn btn-theme" href="#" role="button">Windows</a>
<a class="btn btn-theme" href="#" role="button">Phothosop</a>
<a class="btn btn-theme" href="#" role="button">UX</a>
<a class="btn btn-theme" href="#" role="button">Interface</a>
<a class="btn btn-theme" href="#" role="button">UI</a>
<a class="btn btn-theme" href="#" role="button">Blog</a>
</p>
</div>
</div><! --/row -->
</div><! --/container -->
<!-- *****************************************************************************************************************
FOOTER
***************************************************************************************************************** -->
<div id="footerwrap">
<div class="container">
<div class="row">
<div class="col-lg-4">
<h4>About</h4>
<div class="hline-w"></div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
</div>
<div class="col-lg-4">
<h4>Social Links</h4>
<div class="hline-w"></div>
<p>
<a href="#"><i class="fa fa-dribbble"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-tumblr"></i></a>
</p>
</div>
<div class="col-lg-4">
<h4>Our Bunker</h4>
<div class="hline-w"></div>
<p>
Some Ave, 987,<br/>
23890, New York,<br/>
United States.<br/>
</p>
</div>
</div><! --/row -->
</div><! --/container -->
</div><! --/footerwrap -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/retina-1.1.0.js"></script>
<script src="assets/js/jquery.hoverdir.js"></script>
<script src="assets/js/jquery.hoverex.min.js"></script>
<script src="assets/js/jquery.prettyPhoto.js"></script>
<script src="assets/js/jquery.isotope.min.js"></script>
<script src="assets/js/custom.js"></script>
</body>
</html>
| zhengchaoken/wali | Wali-UI/src/main/webapp/static/ui/sitesolid/single-post.html | HTML | apache-2.0 | 12,134 |
<!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>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title>
</head>
<body>
<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://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</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 documentation" target="_blank"
href="http://openclover.org/documentation">
<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">
<a href="http://cardatechnologies.com" target="_top">
<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>
</a>
</div>
<div class="aui-page-header-main" >
<h1>
<a href="http://cardatechnologies.com" target="_top">
ABA Route Transit Number Validator 1.0.1-SNAPSHOT
</a>
</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.cardatechnologies.utils.validators.abaroutevalidator">
<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">
<div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li>
<li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li>
<li><a href="test-Test_AbaRouteValidator_15.html">Class Test_AbaRouteValidator_15</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_34075_good
</h1>
<table class="aui">
<thead>
<tr>
<th>Test</th>
<th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th>
<th><label title="When the test execution was started">Start time</label></th>
<th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th>
<th><label title="A failure or error message if the test is not successful.">Message</label></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_15.html?line=37079#src-37079" >testAbaNumberCheck_34075_good</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:44:55
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </div>
<table class="aui aui-table-sortable">
<thead>
<tr>
<th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th>
<th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_34075_good</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=42682#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a>
</td>
<td>
<span class="sortValue">0.7352941</span>73.5%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="73.5% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:73.5%"></div></div></div> </td>
</tr>
</tbody>
</table>
</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://openclover.org">OpenClover</a> v 4.4.1
on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT.
</li>
</ul>
<ul>
<li>OpenClover is free and open-source software. </li>
</ul>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> | dcarda/aba.route.validator | target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_15_testAbaNumberCheck_34075_good_wxm.html | HTML | apache-2.0 | 9,181 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_45) on Thu Mar 26 16:48:37 UTC 2015 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class com.hazelcast.nio.serialization.DefaultSerializers (Hazelcast Root 3.4.2 API)
</TITLE>
<META NAME="date" CONTENT="2015-03-26">
<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 com.hazelcast.nio.serialization.DefaultSerializers (Hazelcast Root 3.4.2 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </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="../../../../../com/hazelcast/nio/serialization/DefaultSerializers.html" title="class in com.hazelcast.nio.serialization"><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-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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/hazelcast/nio/serialization//class-useDefaultSerializers.html" target="_top"><B>FRAMES</B></A>
<A HREF="DefaultSerializers.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>com.hazelcast.nio.serialization.DefaultSerializers</B></H2>
</CENTER>
No usage of com.hazelcast.nio.serialization.DefaultSerializers
<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="../../../../../com/hazelcast/nio/serialization/DefaultSerializers.html" title="class in com.hazelcast.nio.serialization"><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-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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/hazelcast/nio/serialization//class-useDefaultSerializers.html" target="_top"><B>FRAMES</B></A>
<A HREF="DefaultSerializers.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>
Copyright © 2015 <a href="http://www.hazelcast.com/">Hazelcast, Inc.</a>. All Rights Reserved.
</BODY>
</HTML>
| akiskip/KoDeMat-Collaboration-Platform-Application | KoDeMat_TouchScreen/lib/hazelcast-3.4.2/hazelcast-3.4.2/docs/javadoc/com/hazelcast/nio/serialization/class-use/DefaultSerializers.html | HTML | apache-2.0 | 6,245 |
<!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_29) on Mon Mar 26 19:07:20 PDT 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class com.fasterxml.jackson.databind.node.TextNode (jackson-databind 2.0.0 API)
</TITLE>
<META NAME="date" CONTENT="2012-03-26">
<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 com.fasterxml.jackson.databind.node.TextNode (jackson-databind 2.0.0 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </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="../../../../../../com/fasterxml/jackson/databind/node/TextNode.html" title="class in com.fasterxml.jackson.databind.node"><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-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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?com/fasterxml/jackson/databind/node//class-useTextNode.html" target="_top"><B>FRAMES</B></A>
<A HREF="TextNode.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>com.fasterxml.jackson.databind.node.TextNode</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="../../../../../../com/fasterxml/jackson/databind/node/TextNode.html" title="class in com.fasterxml.jackson.databind.node">TextNode</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#com.fasterxml.jackson.databind.node"><B>com.fasterxml.jackson.databind.node</B></A></TD>
<TD>Contains concrete <A HREF="../../../../../../com/fasterxml/jackson/databind/JsonNode.html" title="class in com.fasterxml.jackson.databind"><CODE>JsonNode</CODE></A> implementations
Jackson uses for the Tree model. </TD>
</TR>
</TABLE>
<P>
<A NAME="com.fasterxml.jackson.databind.node"><!-- --></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="../../../../../../com/fasterxml/jackson/databind/node/TextNode.html" title="class in com.fasterxml.jackson.databind.node">TextNode</A> in <A HREF="../../../../../../com/fasterxml/jackson/databind/node/package-summary.html">com.fasterxml.jackson.databind.node</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">Methods in <A HREF="../../../../../../com/fasterxml/jackson/databind/node/package-summary.html">com.fasterxml.jackson.databind.node</A> that return <A HREF="../../../../../../com/fasterxml/jackson/databind/node/TextNode.html" title="class in com.fasterxml.jackson.databind.node">TextNode</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../com/fasterxml/jackson/databind/node/TextNode.html" title="class in com.fasterxml.jackson.databind.node">TextNode</A></CODE></FONT></TD>
<TD><CODE><B>JsonNodeFactory.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/node/JsonNodeFactory.html#textNode(java.lang.String)">textNode</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> text)</CODE>
<BR>
Factory method for constructing a node that represents JSON
String value</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../com/fasterxml/jackson/databind/node/TextNode.html" title="class in com.fasterxml.jackson.databind.node">TextNode</A></CODE></FONT></TD>
<TD><CODE><B>ContainerNode.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/node/ContainerNode.html#textNode(java.lang.String)">textNode</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> text)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../com/fasterxml/jackson/databind/node/TextNode.html" title="class in com.fasterxml.jackson.databind.node">TextNode</A></CODE></FONT></TD>
<TD><CODE><B>TextNode.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/node/TextNode.html#valueOf(java.lang.String)">valueOf</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> v)</CODE>
<BR>
Factory method that should be used to construct instances.</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="../../../../../../com/fasterxml/jackson/databind/node/TextNode.html" title="class in com.fasterxml.jackson.databind.node"><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-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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?com/fasterxml/jackson/databind/node//class-useTextNode.html" target="_top"><B>FRAMES</B></A>
<A HREF="TextNode.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>
Copyright © 2012 <a href="http://fasterxml.com">fasterxml.com</a>. All Rights Reserved.
</BODY>
</HTML>
| FasterXML/jackson-databind | docs/javadoc/2.0/com/fasterxml/jackson/databind/node/class-use/TextNode.html | HTML | apache-2.0 | 10,116 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>ovs all: IPv6NdOptHdr Struct 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="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">ovs all
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main 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>Data Structures</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>Data Structures</span></a></li>
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Data Fields</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('structIPv6NdOptHdr.html','');});
</script>
<div id="doc-content">
<!-- 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="header">
<div class="summary">
<a href="#pub-attribs">Data Fields</a> </div>
<div class="headertitle">
<div class="title">IPv6NdOptHdr Struct Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="NetProto_8h_source.html">NetProto.h</a>></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
Data Fields</h2></td></tr>
<tr class="memitem:ac0bd87503bf79ca4db46b3f00034f058"><td class="memItemLeft" align="right" valign="top">UINT8 </td><td class="memItemRight" valign="bottom"><a class="el" href="structIPv6NdOptHdr.html#ac0bd87503bf79ca4db46b3f00034f058">type</a></td></tr>
<tr class="separator:ac0bd87503bf79ca4db46b3f00034f058"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acf6af9f15fdd97be8f368e269a5a5dce"><td class="memItemLeft" align="right" valign="top">UINT8 </td><td class="memItemRight" valign="bottom"><a class="el" href="structIPv6NdOptHdr.html#acf6af9f15fdd97be8f368e269a5a5dce">len</a></td></tr>
<tr class="separator:acf6af9f15fdd97be8f368e269a5a5dce"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Field Documentation</h2>
<a class="anchor" id="acf6af9f15fdd97be8f368e269a5a5dce"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">UINT8 IPv6NdOptHdr::len</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ac0bd87503bf79ca4db46b3f00034f058"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">UINT8 IPv6NdOptHdr::type</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<hr/>The documentation for this struct was generated from the following file:<ul>
<li>/home/vladn/git/ovs/datapath-windows/ovsext/<a class="el" href="NetProto_8h_source.html">NetProto.h</a></li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="structIPv6NdOptHdr.html">IPv6NdOptHdr</a></li>
<li class="footer">Generated on Wed Sep 9 2015 19:08:08 for ovs all by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li>
</ul>
</div>
</body>
</html>
| vladn-ma/vladn-ovs-doc | doxygen/ovs_all/html/structIPv6NdOptHdr.html | HTML | apache-2.0 | 6,824 |
<!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_25) on Sat Nov 16 21:43:21 PST 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class com.fasterxml.jackson.databind.ser.std.InetSocketAddressSerializer (jackson-databind 2.3.0 API)</title>
<meta name="date" content="2013-11-16">
<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.fasterxml.jackson.databind.ser.std.InetSocketAddressSerializer (jackson-databind 2.3.0 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/fasterxml/jackson/databind/ser/std/InetSocketAddressSerializer.html" title="class in com.fasterxml.jackson.databind.ser.std">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/fasterxml/jackson/databind/ser/std/class-use/InetSocketAddressSerializer.html" target="_top">Frames</a></li>
<li><a href="InetSocketAddressSerializer.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.fasterxml.jackson.databind.ser.std.InetSocketAddressSerializer" class="title">Uses of Class<br>com.fasterxml.jackson.databind.ser.std.InetSocketAddressSerializer</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../../com/fasterxml/jackson/databind/ser/std/InetSocketAddressSerializer.html" title="class in com.fasterxml.jackson.databind.ser.std">InetSocketAddressSerializer</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.fasterxml.jackson.databind.ser.std">com.fasterxml.jackson.databind.ser.std</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.fasterxml.jackson.databind.ser.std">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../com/fasterxml/jackson/databind/ser/std/InetSocketAddressSerializer.html" title="class in com.fasterxml.jackson.databind.ser.std">InetSocketAddressSerializer</a> in <a href="../../../../../../../com/fasterxml/jackson/databind/ser/std/package-summary.html">com.fasterxml.jackson.databind.ser.std</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../../../../com/fasterxml/jackson/databind/ser/std/package-summary.html">com.fasterxml.jackson.databind.ser.std</a> declared as <a href="../../../../../../../com/fasterxml/jackson/databind/ser/std/InetSocketAddressSerializer.html" title="class in com.fasterxml.jackson.databind.ser.std">InetSocketAddressSerializer</a></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>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../com/fasterxml/jackson/databind/ser/std/InetSocketAddressSerializer.html" title="class in com.fasterxml.jackson.databind.ser.std">InetSocketAddressSerializer</a></code></td>
<td class="colLast"><span class="strong">InetSocketAddressSerializer.</span><code><strong><a href="../../../../../../../com/fasterxml/jackson/databind/ser/std/InetSocketAddressSerializer.html#instance">instance</a></strong></code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../com/fasterxml/jackson/databind/ser/std/InetSocketAddressSerializer.html" title="class in com.fasterxml.jackson.databind.ser.std">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/fasterxml/jackson/databind/ser/std/class-use/InetSocketAddressSerializer.html" target="_top">Frames</a></li>
<li><a href="InetSocketAddressSerializer.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 © 2012-2013 <a href="http://fasterxml.com/">FasterXML</a>. All Rights Reserved.</small></p>
</body>
</html>
| FasterXML/jackson-databind | docs/javadoc/2.3/com/fasterxml/jackson/databind/ser/std/class-use/InetSocketAddressSerializer.html | HTML | apache-2.0 | 7,155 |
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>PHPXRef 0.7.1 : Unnamed Project : Class Reference: images</title>
<link rel="stylesheet" href="../sample.css" type="text/css">
<link rel="stylesheet" href="../sample-print.css" type="text/css" media="print">
<style id="hilight" type="text/css"></style>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
</head>
<body bgcolor="#ffffff" text="#000000" link="#801800" vlink="#300540" alink="#ffffff">
<table class="pagetitle" width="100%">
<tr>
<td valign="top" class="pagetitle">
[ <a href="../index.html">Index</a> ]
</td>
<td align="right" class="pagetitle">
<h2 style="margin-bottom: 0px">PHP Cross Reference of Unnamed Project</h2>
</td>
</tr>
</table>
<!-- Generated by PHPXref 0.7.1 at Thu Oct 23 19:15:14 2014 -->
<!-- PHPXref (c) 2000-2010 Gareth Watts - gareth@omnipotent.net -->
<!-- http://phpxref.sourceforge.net/ -->
<script src="../phpxref.js" type="text/javascript"></script>
<script language="JavaScript" type="text/javascript">
<!--
ext='.html';
relbase='../';
subdir='_classes';
filename='index.html';
cookiekey='phpxref';
handleNavFrame(relbase, subdir, filename);
logClass('images');
// -->
</script>
<script language="JavaScript" type="text/javascript">
if (gwGetCookie('xrefnav')=='off')
document.write('<p class="navlinks">[ <a href="javascript:navOn()">Show Explorer<\/a> ]<\/p>');
else
document.write('<p class="navlinks">[ <a href="javascript:navOff()">Hide Explorer<\/a> ]<\/p>');
</script>
<noscript>
<p class="navlinks">
[ <a href="../nav.html" target="_top">Show Explorer</a> ]
[ <a href="index.html" target="_top">Hide Navbar</a> ]
</p>
</noscript>
[<a href="../index.html">Top level directory</a>]<br>
<script language="JavaScript" type="text/javascript">
<!--
document.writeln('<table align="right" class="searchbox-link"><tr><td><a class="searchbox-link" href="javascript:void(0)" onMouseOver="showSearchBox()">Search</a><br>');
document.writeln('<table border="0" cellspacing="0" cellpadding="0" class="searchbox" id="searchbox">');
document.writeln('<tr><td class="searchbox-title">');
document.writeln('<a class="searchbox-title" href="javascript:showSearchPopup()">Search History +</a>');
document.writeln('<\/td><\/tr>');
document.writeln('<tr><td class="searchbox-body" id="searchbox-body">');
document.writeln('<form name="search" style="margin:0px; padding:0px" onSubmit=\'return jump()\'>');
document.writeln('<a class="searchbox-body" href="../_classes/index.html">Class<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="classname"><br>');
document.writeln('<a id="funcsearchlink" class="searchbox-body" href="../_functions/index.html">Function<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="funcname"><br>');
document.writeln('<a class="searchbox-body" href="../_variables/index.html">Variable<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="varname"><br>');
document.writeln('<a class="searchbox-body" href="../_constants/index.html">Constant<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="constname"><br>');
document.writeln('<a class="searchbox-body" href="../_tables/index.html">Table<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="tablename"><br>');
document.writeln('<input type="submit" class="searchbox-button" value="Search">');
document.writeln('<\/form>');
document.writeln('<\/td><\/tr><\/table>');
document.writeln('<\/td><\/tr><\/table>');
// -->
</script>
<div id="search-popup" class="searchpopup"><p id="searchpopup-title" class="searchpopup-title">title</p><div id="searchpopup-body" class="searchpopup-body">Body</div><p class="searchpopup-close"><a href="javascript:gwCloseActive()">[close]</a></p></div>
<h3>Class Cross Reference</h3>
<h2><a href="index.html#images">images</a></h2>
<b>Defined at:</b><ul>
<li><a href="../application/controllers/images.php.html#images">/application/controllers/images.php</a> -> <a onClick="logClass('images', '/application/controllers/images.php.source.html#l19')" href="../application/controllers/images.php.source.html#l19"> line 19</a></li>
</ul>
<br><b>No references found.</b><br><br>
</ul>
<!-- A link to the phpxref site in your customized footer file is appreciated ;-) -->
<br><hr>
<table width="100%">
<tr><td>Generated: Thu Oct 23 19:15:14 2014</td>
<td align="right"><i>Cross-referenced by <a href="http://phpxref.sourceforge.net/">PHPXref 0.7.1</a></i></td>
</tr>
</table>
</body></html>
| inputx/code-ref-doc | rebbit/_classes/images.html | HTML | apache-2.0 | 4,647 |
<html xmlns:concordion="http://www.concordion.org/2007/concordion" xmlns:ext="urn:concordion-extensions:2010">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<div class="container">
<ul class="breadcrumb">
<li><a href="../../index.html">Home</a> <span class="divider">/</span></li>
<li class="active">Management</li>
</ul>
<div class="page-header">
<h1>Management</h1>
</div>
<h2>Description</h2>
<p>Supports restating all Workflows in error state.</p>
<h2>Example</h2>
<div class="example">
</div>
<h2>Screenshot</h2>
<div class="well">
<p style="display: inline-block;">
<div ext:screenshot=""/>
</p>
</div>
</div>
</body>
</html> | benfortuna/copper-engine | projects/copper-monitoring/copper-monitoring-client/src/test/java/org/copperengine/monitoring/client/screenshotgen/view/manage/Management.html | HTML | apache-2.0 | 846 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
Module: Selenium::Client::JavascriptFrameworks::Prototype
— Documentation by YARD 0.8.3
</title>
<link rel="stylesheet" href="../../../css/style.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="../../../css/common.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" charset="utf-8">
hasFrames = window.top.frames.main ? true : false;
relpath = '../../../';
framesUrl = "../../../frames.html#!" + escape(window.location.href);
</script>
<script type="text/javascript" charset="utf-8" src="../../../js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="../../../js/app.js"></script>
</head>
<body>
<div id="header">
<div id="menu">
<a href="../../../_index.html">Index (P)</a> »
<span class='title'><span class='object_link'><a href="../../../Selenium.html" title="Selenium (module)">Selenium</a></span></span> » <span class='title'><span class='object_link'><a href="../../Client.html" title="Selenium::Client (module)">Client</a></span></span> » <span class='title'><span class='object_link'><a href="../JavascriptFrameworks.html" title="Selenium::Client::JavascriptFrameworks (module)">JavascriptFrameworks</a></span></span>
»
<span class="title">Prototype</span>
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
</div>
<div id="search">
<a class="full_list_link" id="class_list_link"
href="../../../class_list.html">
Class List
</a>
<a class="full_list_link" id="method_list_link"
href="../../../method_list.html">
Method List
</a>
<a class="full_list_link" id="file_list_link"
href="../../../file_list.html">
File List
</a>
</div>
<div class="clear"></div>
</div>
<iframe id="search_frame"></iframe>
<div id="content"><h1>Module: Selenium::Client::JavascriptFrameworks::Prototype
</h1>
<dl class="box">
<dt class="r1 last">Defined in:</dt>
<dd class="r1 last">rb/lib/selenium/client/javascript_frameworks/prototype.rb</dd>
</dl>
<div class="clear"></div>
<h2>
Class Method Summary
<small>(<a href="#" class="summary_toggle">collapse</a>)</small>
</h2>
<ul class="summary">
<li class="public ">
<span class="summary_signature">
<a href="#ajax_request_tracker-class_method" title="ajax_request_tracker (class method)">+ (Object) <strong>ajax_request_tracker</strong> </a>
</span>
<span class="summary_desc"><div class='inline'></div></span>
</li>
</ul>
<div id="class_method_details" class="method_details_list">
<h2>Class Method Details</h2>
<div class="method_details first">
<h3 class="signature first" id="ajax_request_tracker-class_method">
+ (<tt>Object</tt>) <strong>ajax_request_tracker</strong>
</h3><table class="source_code">
<tr>
<td>
<pre class="lines">
6
7
8</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'rb/lib/selenium/client/javascript_frameworks/prototype.rb', line 6</span>
<span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_ajax_request_tracker'>ajax_request_tracker</span>
<span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>Ajax.activeRequestCount</span><span class='tstring_end'>"</span></span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="footer">
Generated on Mon Jan 21 19:22:41 2013 by
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
0.8.3 (ruby-1.9.3).
</div>
</body>
</html> | qamate/iOS-selenium-server | docs/api/rb/Selenium/Client/JavascriptFrameworks/Prototype.html | HTML | apache-2.0 | 4,255 |
<!DOCTYPE html>
<!--[if IE 7]>
<html class="ie ie7 no-js" lang="en-US">
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8 no-js" lang="en-US">
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html class="no-js" lang="en-US">
<!--<![endif]-->
<!-- Mirrored from withemes.com/norris/tag/audio/ by HTTrack Website Copier/3.x [XR&CO'2013], Sat, 23 Nov 2013 09:54:04 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Audio – Norris</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="../../xmlrpc.php" />
<link rel="shortcut icon" href="../../wp-content/uploads/2013/10/favicon.ico">
<link rel="apple-touch-icon" href="../../wp-content/uploads/2013/10/apple-57x57.png">
<!--[if lt IE 9]>
<script src="http://withemes.com/norris/wp-content/themes/norris/js/html5.js" type="text/javascript"></script>
<![endif]-->
<link rel="alternate" type="application/rss+xml" title="Norris » Feed" href="../../feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="Norris » Comments Feed" href="../../comments/feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="Norris » Audio Tag Feed" href="feed/index.html" />
<link rel='stylesheet' id='wi-portfolio-css' href='../../wp-content/plugins/wi-portfolio/css/portfoliof43b.css?ver=3.7.1' type='text/css' media='all' />
<link rel='stylesheet' id='wi-portfolio-responsive-css' href='../../wp-content/plugins/wi-portfolio/css/responsivef43b.css?ver=3.7.1' type='text/css' media='all' />
<link rel='stylesheet' id='wi-colorbox-css' href='../../wp-content/plugins/wi-portfolio/css/colorboxf43b.css?ver=3.7.1' type='text/css' media='all' />
<link rel='stylesheet' id='contact-form-7-css' href='../../wp-content/plugins/contact-form-7/includes/css/styles1aae.css?ver=3.5.3' type='text/css' media='all' />
<link rel='stylesheet' id='wi-awesome-font-css' href='../../wp-content/plugins/wi-shortcodes/includes/css/font-awesome.minf43b.css?ver=3.7.1' type='text/css' media='all' />
<link rel='stylesheet' id='wi-icomoon-font-css' href='../../wp-content/plugins/wi-shortcodes/includes/css/icomoonf43b.css?ver=3.7.1' type='text/css' media='all' />
<link rel='stylesheet' id='wi-shortcodes-style-css' href='../../wp-content/plugins/wi-shortcodes/includes/css/shortcodesf43b.css?ver=3.7.1' type='text/css' media='all' />
<link rel='stylesheet' id='wi-shortcodes-responsive-css' href='../../wp-content/plugins/wi-shortcodes/includes/css/responsivef43b.css?ver=3.7.1' type='text/css' media='all' />
<link rel='stylesheet' id='wi-stylesheet-css' href='../../wp-content/themes/norris/stylef43b.css?ver=3.7.1' type='text/css' media='all' />
<!--[if lt IE 9]>
<link rel='stylesheet' id='wi-ie-css' href='http://withemes.com/norris/wp-content/themes/norris/css/ie.css?ver=3.7.1' type='text/css' media='all' />
<![endif]-->
<link rel='stylesheet' id='wi-responsive-css' href='../../wp-content/themes/norris/css/responsivef43b.css?ver=3.7.1' type='text/css' media='all' />
<link rel='stylesheet' id='wi-google-font-Oswald-css' href='http://fonts.googleapis.com/css?family=Oswald%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900&subset=latin%2Cgreek-ext%2Ccyrillic%2Clatin-ext%2Cgreek%2Ccyrillic-ext%2Cvietnamese&ver=3.7.1' type='text/css' media='all' />
<link rel='stylesheet' id='mailchimp-for-wp-css' href='../../wp-content/plugins/mailchimp-for-wp/assets/css/css548d.php?checkbox=1&form=1&ver=1.4.1' type='text/css' media='all' />
<script type='text/javascript' src='../../wp-includes/js/jquery/jquery3e5a.js?ver=1.10.2'></script>
<script type='text/javascript' src='../../wp-includes/js/jquery/jquery-migrate.min1576.js?ver=1.2.1'></script>
<script type='text/javascript' src='../../wp-content/themes/norris/js/modernizr.custom.1514061da.js?ver=2.6.2'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="../../xmlrpc0db0.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="../../wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 3.7.1" />
<style type="text/css">
/* Header top black line
------------------------------------------------- */
/* Logo
------------------------------------------------- */
#wi-logo img {
margin-top:10px;
}
@media (max-width: 767px) {
#wi-logo img {
margin-bottom:10px;
}
}
#wi-logo img {
margin-left:0px;
}
/* Footer pattern
------------------------------------------------- */
#wi-footer {
background-image:url(../../wp-content/themes/norris/images/sidrbg/nami.png);
background-size:16px 16px;
}
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi){
#wi-footer {
background-image:url(../../wp-content/themes/norris/images/sidrbg/nami_%402X.png);
}
}
/* Body background color
------------------------------------------------- */
#wi-content,
#wi-header {
background-color:#fff;
}
/* Primary Color
------------------------------------------------- */
a,
a:hover,
blockquote em,
blockquote cite,
blockquote em a,
blockquote em a:hover,
blockquote cite a,
blockquote cite a:hover,
.page-links > a:hover,
.authorbox .text h4 a,
.widget_recent_entries ul li a:hover,
.widget_archive ul li a:hover,
.widget_categories ul li a:hover,
.widget_meta ul li a:hover,
.widget_pages ul li a:hover,
.widget_nav_menu ul li a:hover,
.widget_recent_comments ul li a:hover,
.widget_rss ul li a:hover,
.wi-member .role,
.wi-testimonial .author .name,
.wi-portfolio-filter ul li.active a
{
color:#b40606;
}
ul#slide-list li.current-slide a,
ul#slide-list li.current-slide a:hover,
.gallery-icon:hover,
.header-slider .flex-control-paging li a.flex-active,
.text-slider .flex-control-paging li a.flex-active,
#respond #submit:hover,
.wpcf7 .wpcf7-submit:hover,
.progress .fore .bar,
.testimonial-slider .flex-control-paging li a.flex-active,
.wi-button .btn-primary,
.wi-pricing .pricing-column.featured,
.wi-flexslider .flex-control-paging li a.flex-active,
.portfolio-thumb-slider .flex-control-paging li a.flex-active,
.dark-skin .wi-tab .tabnav ul li.active a
{
background-color:#b40606;
}
.wi-portfolio-filter ul li.active a
{
border-color:#b40606;
}
/* Link Color
------------------------------------------------- */
a,
a:hover,
.authorbox .text h4 a,
blockquote em a,
blockquote em a:hover,
blockquote cite a,
blockquote cite a:hover,
.page-links > a:hover,
.authorbox .text h4 a,
.widget_recent_entries ul li a:hover,
.widget_archive ul li a:hover,
.widget_categories ul li a:hover,
.widget_meta ul li a:hover,
.widget_pages ul li a:hover,
.widget_nav_menu ul li a:hover,
.widget_recent_comments ul li a:hover,
.widget_rss ul li a:hover,
.close-portfolio a:hover,
.portfolio-navi ul li a:hover
{
color:#b40606;
}
/* Selection Color
------------------------------------------------- */
::selection
{
background:#000000;
color:#fff;
}
::-moz-selection
{
background:#000000;
color:#fff;
}
/* Header background color dark skin
------------------------------------------------- */
/* Typography
------------------------------------------------- */
/* Body */
body {
font-size:14px;
}
h1 {
font-size:36px;
}
h2 {
font-size:28px;
}
h3 {
font-size:22px;
}
h4 {
font-size:16px;
}
h5 {
font-size:13px;
}
h6 {
font-size:13px;
}
/* Blog Title */
.article .title {
font-size:28px;
}
@media (min-width: 768px) and (max-width: 979px) {
.article .title {
font-size:19px;
}
}
@media (max-width: 768px) {
.article .title {
}
}
@media (max-width: 480px) {
.article .title {
font-size:19px;
}
}
/* Single Title */
.single .post-title {
font-size:45px;
}
@media (min-width: 768px) and (max-width: 979px) {
.single .post-title {
font-size:36px;
}
}
@media (max-width: 768px) {
.single .post-title {
font-size:31px;
}
}
@media (max-width: 480px) {
.single .post-title {
font-size:27px;
}
}
/* Page title */
.page-title {
font-size:65px;
}
@media (min-width: 768px) and (max-width: 979px) {
.page-title {
font-size:52px;
}
}
@media (max-width: 768px) {
.page-title {
font-size:52px;
}
}
@media (max-width: 480px) {
.page-title {
font-size:42px;
}
}
/* Toparea Big Heading */
#wi-top-area .heading-text {
font-size:100px;
}
@media (min-width: 768px) and (max-width: 979px) {
#wi-top-area .heading-text {
font-size:80px;
}
}
@media (max-width: 768px) {
#wi-top-area .heading-text {
font-size:65px;
}
}
@media (max-width: 480px) {
#wi-top-area .heading-text {
font-size:50px;
}
}
body,
.page-subtitle,
#wi-top-area .small-text,
.wi-page .title-area .subtitle,
.headline .meta,
#respond input[type="text"],
#respond input[type="text"]:focus,
#respond textarea,
#respond textarea:focus,
.searchform .s, .searchform .s:focus,
.wpcf7 input[type=text],
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email],
.wpcf7 input[type=email]:focus,
.wpcf7 textarea,
.wpcf7 textarea:focus,
.wi-testimonial .content
{
font-family:Georgia, serif;
}
h1, h2, h3, h4, h5, h6, dl dt,
#wi-top-area .wi-button .btn,
.text-slider,
#wi-logo a,
.page-separator .wi-button .btn,
.link-area .link-button,
.post-nav .ele a,
.tags,
.commentlist .fn,
#respond .comment-ele label,
#respond #submit,
.tagcloud a,
.widget_recent_entries ul li,
.widget_archive ul li,
.widget_categories ul li,
.widget_meta ul li,
.widget_pages ul li,
.widget_nav_menu ul li,
.widget_recent_comments ul li,
.widget_rss ul li,
#wp-calendar caption,
#wp-calendar th,
#wp-calendar td,
.wpcf7 p,
.wpcf7 .wpcf7-submit,
div.wpcf7-response-output,
.progress .fore .name,
.wi-count .name,
.wi-member .name,
.bigtext,
.wi-pricing .pricing-column .title-row,
.wi-toggle .toggle-title,
.wi-tab .tabnav ul li a,
.wi-piechart .number,
.wi-piechart-container .name,
.wi-portfolio-filter ul li a,
.portfolio-item .thumb .name,
.portfolio-navi ul li a
{
font-family:"Oswald", sans-serif; }
#wi-mainnav .menu > ul > li > a
{
font-family:"Oswald", sans-serif;;
}
/* Portfolio
------------------------------------------------- */
</style>
<script type="text/javascript">
jQuery(document).ready(function(){
var retina = window.devicePixelRatio > 1 ? true : false;
if(retina) {
jQuery('#wi-logo img').attr('src', '../../wp-content/themes/norris/images/logo%402x.png');
jQuery('#wi-logo img').attr('width', '122');
jQuery('#wi-logo img').attr('height', '37');
}
if(retina) {
jQuery('#wi-footer .footer-logo img').attr('src', '../../wp-content/themes/norris/images/footer-logo%402x.png');
jQuery('#wi-footer .footer-logo img').attr('width', '161');
jQuery('#wi-footer .footer-logo img').attr('height', '49');
}
});
</script>
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
<script type="text/javascript">
jQuery(document).ready(function($){
var $container = $('.wi-portfolio');
var $items = $('.portfolio-item');
// initialize isotope
if( $().isotope ) {
$(window).load(function(){
$container.isotope({
itemSelector: '.portfolio-item',
animationEngine: 'best-available',
animationOptions: {
duration: 250,
easing: 'easeInOutSine',
queue: false
}
});
});
$(window).resize(function() {
$container.isotope('reLayout');
});
// filter items when filter link is clicked
$('.wi-portfolio-filter li').click(function(){
$('.wi-portfolio-filter li').removeClass('active');
$(this).addClass('active');
var selector = $(this).find("a").attr('data-filter');
$container.isotope({ filter: selector });
return false;
});
} // end if isotope
}); // jQuery
</script>
</head>
<body class="archive tag tag-audio tag-14 wi-not-onepage header-always-stick header-light">
<div id="top"></div>
<!-- HEADER -->
<header id="wi-header" class="wi-header">
<div class="container">
<div class="row-fluid">
<div class="span3">
<div id="wi-logo" class="wi-logo">
<a href="http://withemes.com/norris" rel="home">
<img src="../../wp-content/themes/norris/images/logo.png" alt="Norris" />
</a>
</div><!-- .wi-logo -->
</div><!-- .span3 -->
<div class="span9">
<nav id="wi-mainnav" class="wi-mainnav">
<div class="menu"><ul id="menu-menu-1" class="menu"><li id="menu-item-92" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-has-children active"><a href="http://withemes.com/norris#top">Home</a>
<ul class="sub-menu">
<li id="menu-item-147" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../indexe043.html?demo=1">1. Fullscreen Slideshow</a></li>
<li id="menu-item-148" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../index20c4.html?demo=2">2. Custom height slideshow</a></li>
<li id="menu-item-149" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../index9f12.html?demo=3">3. Fullscreen parallax</a></li>
<li id="menu-item-150" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../index6e3b.html?demo=4">4. Custom height parallax</a></li>
<li id="menu-item-151" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../indexc1c7.html?demo=5">5. BigText Header</a></li>
<li id="menu-item-152" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../index13d4.html?demo=6">6. Bigtext Header II</a></li>
<li id="menu-item-153" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../index7c7b.html?demo=7">7. Social icons</a></li>
<li id="menu-item-156" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../indexc120.html?demo=8">8. Logo header</a></li>
<li id="menu-item-157" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../index789d.html?demo=9">9. Text Slider</a></li>
<li id="menu-item-154" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../index7497.html?demo=10">10. Video Header</a></li>
<li id="menu-item-155" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../index572b.html?demo=11">11. Testimonials Header</a></li>
<li id="menu-item-158" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../index80d1.html?demo=12">12. Google Map Header</a></li>
<li id="menu-item-159" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../index617f.html?demo=13">13. Twitter Header</a></li>
<li id="menu-item-160" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../index9727.html?demo=14">14. Dark Navigation</a></li>
</ul>
</li>
<li id="menu-item-93" class="menu-item menu-item-type-post_type menu-item-object-page scrolltopage"><a href="http://withemes.com/norris#about-us">About</a></li>
<li id="menu-item-95" class="menu-item menu-item-type-post_type menu-item-object-page scrolltopage"><a href="http://withemes.com/norris#our-team">Team</a></li>
<li id="menu-item-98" class="menu-item menu-item-type-post_type menu-item-object-page scrolltopage"><a href="http://withemes.com/norris#services">Services</a></li>
<li id="menu-item-96" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children scrolltopage"><a href="http://withemes.com/norris#portfolio">Portfolio</a>
<ul class="sub-menu">
<li id="menu-item-255" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../portfolio/portfolio-style-2/index.html">Portfolio Visible Content</a></li>
<li id="menu-item-251" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../portfolio/portfolio-no-crop/index.html">No Crop</a></li>
<li id="menu-item-252" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../portfolio/portfolio-2-columns/index.html">2 columns</a></li>
<li id="menu-item-253" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../portfolio/index.html">3 columns</a></li>
<li id="menu-item-254" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../portfolio/portfolio-4-columns/index.html">4 columns</a></li>
</ul>
</li>
<li id="menu-item-97" class="menu-item menu-item-type-post_type menu-item-object-page scrolltopage"><a href="http://withemes.com/norris#pricing">Pricing</a></li>
<li id="menu-item-94" class="menu-item menu-item-type-post_type menu-item-object-page scrolltopage"><a href="http://withemes.com/norris#contact">Contact</a></li>
<li id="menu-item-99" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../blog/index.html">Blog</a></li>
<li id="menu-item-161" class="right-menu menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children"><a href="#">More</a>
<ul class="sub-menu">
<li id="menu-item-162" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="../../shortcodes/index.html">Shortcodes</a></li>
<li id="menu-item-163" class="menu-item menu-item-type-custom menu-item-object-custom"><a target="_blank" href="http://themeforest.net/item/norris-elegant-onepage-wordpress-theme/5843777?ref=withemes">Purchase</a></li>
<li id="menu-item-164" class="menu-item menu-item-type-custom menu-item-object-custom"><a target="_blank" href="http://support.withemes.com/">Support</a></li>
<li id="menu-item-199" class="menu-item menu-item-type-custom menu-item-object-custom"><a target="_blank" href="http://facebook.com/withemes">Facebook</a></li>
<li id="menu-item-198" class="menu-item menu-item-type-custom menu-item-object-custom"><a target="_blank" href="http://twitter.com/withemes">Twitter</a></li>
</ul>
</li>
</ul></div> </nav><!-- .wi-mainnav -->
<select id="wi-mainnav-mobile"></select>
</div><!-- .span9 -->
</div><!-- .row-fluid -->
</div><!-- .container -->
</header><!-- .wi-header -->
<div id="wi-content">
<div class="headline">
<div class="container"><div class="pad">
<h1 class="page-title">Audio</h1>
</div></div><!-- .container -->
</div><!-- .headline --><div class="container">
<div class="row-fluid">
<div id="primary" class="span8">
<div class="wi-blog">
<article class="post-30 post type-post status-publish format-audio hentry category-design category-format tag-audio tag-format tag-human article" id="post-30">
<div class="post-thumbnail">
<div class="media-container">
<iframe width="940" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F61381213&show_artwork=true&maxwidth=940&maxheight=1000"></iframe> </div><!-- .media-container -->
</div><!-- .post-thumbnail -->
<h2 class="title"><a href="../../audio-post/index.html">Audio Post</a></h2>
<div class="meta">
<div class="ele time"><time data-time="2013-09-01T06:27:13+00:00">September 1, 2013</time></div>
<div class="ele categories"><a href="../../category/design/index.html" title="View all posts in Design" rel="category tag">Design</a><span class="sep">|</span><a href="../../category/format/index.html" title="View all posts in Format" rel="category tag">Format</a></div>
<div class="ele comments">
<a href="../../audio-post/index.html#respond" title="Comment on Audio Post">0 comments</a> </div><!-- .comments -->
</div><!-- .meta -->
<div class="excerpt">
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod chita tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis bra nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea …</p>
</div><!-- .excerpt -->
<a href="../../audio-post/index.html" class="more-link">Read more</a>
</article><!-- .post --><div class="wi-pagination"><div class="clearfix"></div></div> </div><!-- .wi-blog -->
</div><!-- #primary .span8 -->
<div id="secondary" class="widget-area span4" role="complementary">
<aside id="search-2" class="widget widget_search"><div class="searchform">
<form role="search" method="get" class="" action="http://withemes.com/norris">
<div class="searchdiv">
<input type="text" value="" name="s" class="s" />
<button type="submit" class="submit" title="Search"><i class="icon-search"></i></button>
</div><!-- .searchdiv -->
</form>
</div><!-- .searchform --></aside> <aside id="recent-posts-2" class="widget widget_recent_entries"> <h3 class="widget-title"><span>Recent Posts</span></h3> <ul>
<li>
<a href="../../this-is-a-standard-post/index.html">This is a standard post</a>
</li>
<li>
<a href="../../format-gallery/index.html">Format gallery</a>
</li>
<li>
<a href="../../video-post-format/index.html">Video post format</a>
</li>
<li>
<a href="../../post-format-quote/index.html">Post format Quote</a>
</li>
<li>
<a href="../../vertical-image/index.html">Vertical Image</a>
</li>
</ul>
</aside><aside id="media-2" class="widget widget_media"><h3 class="widget-title"><span>Video Widget</span></h3> <div class="media-container">
<iframe src="http://player.vimeo.com/video/74857458" width="940" height="529" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> </div><!-- .media-container -->
</aside><aside id="facebook-2" class="widget widget_facebook"><h3 class="widget-title"><span><span>Find us on Facebook</span></span></h3><div class="fb-container"><fb:like-box href="http://facebook.com/facebook" width="300" show_faces="true" colorscheme="light" border_color="#333333" stream="true" header="true"></fb:like-box></div></aside><aside id="text-2" class="widget widget_text"><h3 class="widget-title"><span>Text Widget</span></h3> <div class="textwidget"><p>Lorem ipsum dolor sit amet, consectetuer brian adipiscing elit, sed diam nonummy nibh concen euismod tincidunt ut laoreet dolore magna ajaxi aliquam erat volutpat.</p>
<div class="wi-icon hasurl" title="My facebook" style="width:36px;height:36px;" data-delay="0" data-animation=""><a href="#" target="_self"><i class="icon-facebook" style="line-height:36px"></i></a></div>
<div class="wi-icon hasurl" title="View Twitter profile" style="width:36px;height:36px;" data-delay="0" data-animation=""><a href="#" target="_self"><i class="icon-twitter" style="line-height:36px"></i></a></div>
<div class="wi-icon hasurl" title="Find us Google+" style="width:36px;height:36px;" data-delay="0" data-animation=""><a href="#" target="_self"><i class="icon-google-plus" style="line-height:36px"></i></a></div>
<div class="wi-icon hasurl" title="Our Porfolio on Behance" style="width:36px;height:36px;" data-delay="0" data-animation=""><a href="#" target="_self"><i class="icon-behance" style="line-height:36px"></i></a></div>
<div class="clearfix"></div>
<div class="spacer" style="height:15px"></div>
<div class="clearfix"></div>
<p>Duis autem vel eum iriure dolor inja hendrerit in vulputate velit esse molestie consequat, vellla as illum dolore eu feugiat nulla facilisis at vero agoi eros et accumsan et.</p>
</div>
</aside><aside id="calendar-2" class="widget widget_calendar"><h3 class="widget-title"><span>Calendar</span></h3><div id="calendar_wrap"><table id="wp-calendar">
<caption>November 2013</caption>
<thead>
<tr>
<th scope="col" title="Monday">M</th>
<th scope="col" title="Tuesday">T</th>
<th scope="col" title="Wednesday">W</th>
<th scope="col" title="Thursday">T</th>
<th scope="col" title="Friday">F</th>
<th scope="col" title="Saturday">S</th>
<th scope="col" title="Sunday">S</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="3" id="prev"><a href="../../2013/10/index.html" title="View posts for October 2013">« Oct</a></td>
<td class="pad"> </td>
<td colspan="3" id="next" class="pad"> </td>
</tr>
</tfoot>
<tbody>
<tr>
<td colspan="4" class="pad"> </td><td>1</td><td>2</td><td>3</td>
</tr>
<tr>
<td>4</td><td>5</td><td>6</td><td>7</td><td>8</td><td>9</td><td>10</td>
</tr>
<tr>
<td>11</td><td>12</td><td>13</td><td>14</td><td>15</td><td>16</td><td>17</td>
</tr>
<tr>
<td>18</td><td>19</td><td>20</td><td>21</td><td>22</td><td id="today">23</td><td>24</td>
</tr>
<tr>
<td>25</td><td>26</td><td>27</td><td>28</td><td>29</td><td>30</td>
<td class="pad" colspan="1"> </td>
</tr>
</tbody>
</table></div></aside><aside id="recent-comments-2" class="widget widget_recent_comments"><h3 class="widget-title"><span>Recent Comments</span></h3><ul id="recentcomments"><li class="recentcomments">Chris Ames on <a href="../../this-is-a-standard-post/index.html#comment-5">This is a standard post</a></li><li class="recentcomments">Michael Novotny on <a href="../../this-is-a-standard-post/index.html#comment-4">This is a standard post</a></li><li class="recentcomments">Chris Ames on <a href="../../this-is-a-standard-post/index.html#comment-2">This is a standard post</a></li></ul></aside><aside id="categories-2" class="widget widget_categories"><h3 class="widget-title"><span>Categories</span></h3> <ul>
<li class="cat-item cat-item-4"><a href="../../category/design/index.html" title="View all posts filed under Design">Design</a>
</li>
<li class="cat-item cat-item-13"><a href="../../category/format/index.html" title="View all posts filed under Format">Format</a>
</li>
<li class="cat-item cat-item-2"><a href="../../category/music/index.html" title="View all posts filed under Music">Music</a>
</li>
<li class="cat-item cat-item-7"><a href="../../category/travel/index.html" title="View all posts filed under Travel">Travel</a>
</li>
<li class="cat-item cat-item-3"><a href="../../category/world/index.html" title="View all posts filed under World">World</a>
</li>
</ul>
</aside><aside id="tag_cloud-2" class="widget widget_tag_cloud"><h3 class="widget-title"><span>Tags</span></h3><div class="tagcloud"><a href='index.html' class='tag-link-14' title='1 topic' style='font-size: 8pt;'>Audio</a>
<a href='../design/index.html' class='tag-link-4' title='2 topics' style='font-size: 14.3pt;'>Design</a>
<a href='../format/index.html' class='tag-link-13' title='2 topics' style='font-size: 14.3pt;'>Format</a>
<a href='../graphic/index.html' class='tag-link-11' title='2 topics' style='font-size: 14.3pt;'>Graphic</a>
<a href='../human/index.html' class='tag-link-10' title='3 topics' style='font-size: 18.5pt;'>Human</a>
<a href='../illustration/index.html' class='tag-link-12' title='4 topics' style='font-size: 22pt;'>Illustration</a>
<a href='../music/index.html' class='tag-link-2' title='4 topics' style='font-size: 22pt;'>Music</a>
<a href='../nature/index.html' class='tag-link-9' title='4 topics' style='font-size: 22pt;'>Nature</a>
<a href='../theme/index.html' class='tag-link-5' title='1 topic' style='font-size: 8pt;'>Theme</a>
<a href='../wordpress/index.html' class='tag-link-6' title='1 topic' style='font-size: 8pt;'>Wordpress</a></div>
</aside><aside id="ads-2" class="widget widget_ads"><h3 class="widget-title"><span>Advertisement</span></h3><div class="ad-container"><div class="ad-cell ad-300"><a href="http://hemeforest.net/user/withemes?ref=withemes" target="_blank" rel="nofollow"><img src="../../wp-content/uploads/2013/10/ad.jpg" /></a></div><div class="ad-cell ad-150"><a href="http://hemeforest.net/user/withemes?ref=withemes" target="_blank" rel="nofollow"><img src="../../wp-content/themes/norris/images/ad-placeholder/150x150.gif" /></a></div><div class="ad-cell ad-150"><a href="http://hemeforest.net/user/withemes?ref=withemes" target="_blank" rel="nofollow"><img src="../../wp-content/themes/norris/images/ad-placeholder/150x150.gif" /></a></div><div class="clearfix"></div></div></aside><aside id="wi_google_badge-2" class="widget wi_google_badge_widget"><h3 class="widget-title"><span>Google+ Widget</span></h3> <g:plus href="https://plus.google.com/+Google"
width="300"
height="131">
</g:plus>
</aside></div><!-- #secondary -->
</div><!-- .row-fluid -->
</div><!-- .container -->
</div><!-- #wi-content -->
<footer id="wi-footer">
<div class="container">
<div class="social">
<ul>
<li><a href="#" target="_blank" rel="alternate" title="Facebook"><i class="icon-facebook"></i></a></li>
<li><a href="#" target="_blank" rel="alternate" title="Twitter"><i class="icon-twitter"></i></a></li>
<li><a href="#" target="_blank" rel="alternate" title="Google+"><i class="icon-google-plus"></i></a></li>
<li><a href="#" target="_blank" rel="alternate" title="LinkedIn"><i class="icon-linkedin"></i></a></li>
<li><a href="#" target="_blank" rel="alternate" title="Tumblr"><i class="icon-tumblr"></i></a></li>
<li><a href="#" target="_blank" rel="alternate" title="Pinterest"><i class="icon-pinterest"></i></a></li>
<li><a href="#" target="_blank" rel="alternate" title="Instagram"><i class="icon-instagram"></i></a></li>
<li><a href="#" target="_blank" rel="alternate" title="Email"><i class="icon-envelope-alt"></i></a></li>
</ul>
</div><!-- .social -->
<div class="footer-logo">
<a href="http://withemes.com/norris" rel="home">
<img src="../../wp-content/themes/norris/images/footer-logo.png" />
</a>
</div><!-- .footer-logo -->
<div class="copyright">
<div class="footer-text">
© 2013 Norris. All rights reserved. Designed by <a href="http://withemes.com/" target="_blank">WiThemes</a> </div><!-- .footer-text -->
</div><!-- .copyright -->
<div class="clearfix"></div>
</div><!-- .container -->
</footer><!-- #footer -->
<div class="scrollup" id="scrollup"></div><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','http://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-44951698-1', 'withemes.com');
ga('send', 'pageview');
</script><link href="http://plus.google.com/+Google" rel="Publisher" /><script type="text/javascript">
window.___gcfg = {lang: 'en'};
(function()
{var po = document.createElement("script");
po.type = "text/javascript"; po.async = true;po.src = ('https:' == document.location.protocol ? 'https' : 'http') + "://apis.google.com/js/plusone.js";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(po, s);
})();</script><script type='text/javascript' src='../../wp-content/plugins/wi-portfolio/js/jquery.easing.1.34e44.js?ver=1.3'></script>
<script type='text/javascript' src='../../wp-content/plugins/wi-portfolio/js/jquery.colorbox-min4b88.js?ver=1.4.26'></script>
<script type='text/javascript' src='../../wp-content/plugins/contact-form-7/includes/js/jquery.form.mind16f.js?ver=3.44.0-2013.09.15'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var _wpcf7 = {"loaderUrl":"http:\/\/withemes.com\/norris\/wp-content\/plugins\/contact-form-7\/images\/ajax-loader.gif","sending":"Sending ..."};
/* ]]> */
</script>
<script type='text/javascript' src='../../wp-content/plugins/contact-form-7/includes/js/scripts1aae.js?ver=3.5.3'></script>
<script type='text/javascript' src='../../wp-content/plugins/wi-shortcodes/includes/js/jquery.fitvids5152.js?ver=1.0'></script>
<script type='text/javascript' src='../../wp-content/plugins/wi-shortcodes/includes/js/main5152.js?ver=1.0'></script>
<script type='text/javascript' src='../../wp-content/themes/norris/js/jquery.touchSwipe.min3ba1.js?ver=1.3.3'></script>
<script type='text/javascript' src='../../wp-content/themes/norris/js/jquery.autosize-min02d8.js?ver=1.17.1'></script>
<script type='text/javascript' src='../../wp-content/themes/norris/js/jquery.sticky5152.js?ver=1.0'></script>
<script type='text/javascript' src='../../wp-content/themes/norris/js/main5152.js?ver=1.0'></script>
<script type='text/javascript' src='http://connect.facebook.net/en_US/all.js?ver=1.0#xfbml=1'></script>
</body>
<!-- Mirrored from withemes.com/norris/tag/audio/ by HTTrack Website Copier/3.x [XR&CO'2013], Sat, 23 Nov 2013 09:54:23 GMT -->
</html> | MBratteng/creepy-octo-prune | Norris/withemes.com/norris/tag/audio/index.html | HTML | apache-2.0 | 33,739 |
<!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_181) on Tue Mar 23 17:43:16 GMT 2021 -->
<title>com.facebook.rendercore.utils Class Hierarchy</title>
<meta name="date" content="2021-03-23">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="com.facebook.rendercore.utils Class Hierarchy";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- @generated -->
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/facebook/rendercore/transitions/package-tree.html">Prev</a></li>
<li><a href="../../../../com/facebook/rendercore/visibility/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/facebook/rendercore/utils/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For Package com.facebook.rendercore.utils</h1>
<span class="packageHierarchyLabel">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../../../../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.Object
<ul>
<li type="circle">com.facebook.rendercore.utils.<a href="../../../../com/facebook/rendercore/utils/BoundsUtils.html" title="class in com.facebook.rendercore.utils"><span class="typeNameLink">BoundsUtils</span></a></li>
<li type="circle">com.facebook.rendercore.utils.<a href="../../../../com/facebook/rendercore/utils/LayoutUtils.html" title="class in com.facebook.rendercore.utils"><span class="typeNameLink">LayoutUtils</span></a></li>
<li type="circle">com.facebook.rendercore.utils.<a href="../../../../com/facebook/rendercore/utils/MeasureSpecUtils.html" title="class in com.facebook.rendercore.utils"><span class="typeNameLink">MeasureSpecUtils</span></a></li>
<li type="circle">com.facebook.rendercore.utils.<a href="../../../../com/facebook/rendercore/utils/ThreadUtils.html" title="class in com.facebook.rendercore.utils"><span class="typeNameLink">ThreadUtils</span></a></li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/facebook/rendercore/transitions/package-tree.html">Prev</a></li>
<li><a href="../../../../com/facebook/rendercore/visibility/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/facebook/rendercore/utils/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| facebook/litho | website/static/javadoc/com/facebook/rendercore/utils/package-tree.html | HTML | apache-2.0 | 5,359 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_67) on Wed Oct 08 15:57:25 PDT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.apache.hadoop.hbase.thrift.generated.Hbase.getVerTs_args._Fields (HBase 0.98.7-hadoop2 API)</title>
<meta name="date" content="2014-10-08">
<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 org.apache.hadoop.hbase.thrift.generated.Hbase.getVerTs_args._Fields (HBase 0.98.7-hadoop2 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">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/apache/hadoop/hbase/thrift/generated/class-use/Hbase.getVerTs_args._Fields.html" target="_top">Frames</a></li>
<li><a href="Hbase.getVerTs_args._Fields.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.apache.hadoop.hbase.thrift.generated.Hbase.getVerTs_args._Fields" class="title">Uses of Class<br>org.apache.hadoop.hbase.thrift.generated.Hbase.getVerTs_args._Fields</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</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="#org.apache.hadoop.hbase.thrift.generated">org.apache.hadoop.hbase.thrift.generated</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.hadoop.hbase.thrift.generated">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</a> in <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/package-summary.html">org.apache.hadoop.hbase.thrift.generated</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/package-summary.html">org.apache.hadoop.hbase.thrift.generated</a> with type parameters of type <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</a></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>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</a>,org.apache.thrift.meta_data.FieldMetaData></code></td>
<td class="colLast"><span class="strong">Hbase.getVerTs_args.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args.html#metaDataMap">metaDataMap</a></strong></code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/package-summary.html">org.apache.hadoop.hbase.thrift.generated</a> that return <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</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="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</a></code></td>
<td class="colLast"><span class="strong">Hbase.getVerTs_args.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args.html#fieldForId(int)">fieldForId</a></strong>(int fieldId)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</a></code></td>
<td class="colLast"><span class="strong">Hbase.getVerTs_args._Fields.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html#findByName(java.lang.String)">findByName</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</code>
<div class="block">Find the _Fields constant that matches name, or null if its not found.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</a></code></td>
<td class="colLast"><span class="strong">Hbase.getVerTs_args._Fields.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html#findByThriftId(int)">findByThriftId</a></strong>(int fieldId)</code>
<div class="block">Find the _Fields constant that matches fieldId, or null if its not found.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</a></code></td>
<td class="colLast"><span class="strong">Hbase.getVerTs_args._Fields.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html#findByThriftIdOrThrow(int)">findByThriftIdOrThrow</a></strong>(int fieldId)</code>
<div class="block">Find the _Fields constant that matches fieldId, throwing an exception
if it is not found.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</a></code></td>
<td class="colLast"><span class="strong">Hbase.getVerTs_args._Fields.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html#valueOf(java.lang.String)">valueOf</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</a>[]</code></td>
<td class="colLast"><span class="strong">Hbase.getVerTs_args._Fields.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html#values()">values</a></strong>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/package-summary.html">org.apache.hadoop.hbase.thrift.generated</a> with parameters of type <a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</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="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td>
<td class="colLast"><span class="strong">Hbase.getVerTs_args.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args.html#getFieldValue(org.apache.hadoop.hbase.thrift.generated.Hbase.getVerTs_args._Fields)">getFieldValue</a></strong>(<a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</a> field)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="strong">Hbase.getVerTs_args.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args.html#isSet(org.apache.hadoop.hbase.thrift.generated.Hbase.getVerTs_args._Fields)">isSet</a></strong>(<a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</a> field)</code>
<div class="block">Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">Hbase.getVerTs_args.</span><code><strong><a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args.html#setFieldValue(org.apache.hadoop.hbase.thrift.generated.Hbase.getVerTs_args._Fields,%20java.lang.Object)">setFieldValue</a></strong>(<a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">Hbase.getVerTs_args._Fields</a> field,
<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> value)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/apache/hadoop/hbase/thrift/generated/Hbase.getVerTs_args._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">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/apache/hadoop/hbase/thrift/generated/class-use/Hbase.getVerTs_args._Fields.html" target="_top">Frames</a></li>
<li><a href="Hbase.getVerTs_args._Fields.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 © 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
| gsoundar/mambo-ec2-deploy | packages/hbase-0.98.7-hadoop2/docs/devapidocs/org/apache/hadoop/hbase/thrift/generated/class-use/Hbase.getVerTs_args._Fields.html | HTML | apache-2.0 | 14,967 |
<div class="album-section">
<div class="container">
<h2 class="title">Album Details</h2>
<album-template (selected)="addToCart($event)" [album]="album">
</album-template>
</div>
</div>
| OsirisTerje/musicstore-ui-angular2-dotnet | src/SSW.MusicStore.Web/app/components/album/album.html | HTML | apache-2.0 | 194 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_67) on Sun Sep 07 15:29:50 CEST 2014 -->
<title>Uses of Class org.apache.cassandra.io.sstable.metadata.ValidationMetadata (apache-cassandra API)</title>
<meta name="date" content="2014-09-07">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.cassandra.io.sstable.metadata.ValidationMetadata (apache-cassandra API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/ValidationMetadata.html" title="class in org.apache.cassandra.io.sstable.metadata">Class</a></li>
<li class="navBarCell1Rev">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><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/apache/cassandra/io/sstable/metadata/class-use/ValidationMetadata.html" target="_top">Frames</a></li>
<li><a href="ValidationMetadata.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.apache.cassandra.io.sstable.metadata.ValidationMetadata" class="title">Uses of Class<br>org.apache.cassandra.io.sstable.metadata.ValidationMetadata</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/ValidationMetadata.html" title="class in org.apache.cassandra.io.sstable.metadata">ValidationMetadata</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="#org.apache.cassandra.io.sstable.metadata">org.apache.cassandra.io.sstable.metadata</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.cassandra.io.sstable.metadata">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/ValidationMetadata.html" title="class in org.apache.cassandra.io.sstable.metadata">ValidationMetadata</a> in <a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/package-summary.html">org.apache.cassandra.io.sstable.metadata</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/package-summary.html">org.apache.cassandra.io.sstable.metadata</a> that return <a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/ValidationMetadata.html" title="class in org.apache.cassandra.io.sstable.metadata">ValidationMetadata</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="../../../../../../../org/apache/cassandra/io/sstable/metadata/ValidationMetadata.html" title="class in org.apache.cassandra.io.sstable.metadata">ValidationMetadata</a></code></td>
<td class="colLast"><span class="strong">ValidationMetadata.ValidationMetadataSerializer.</span><code><strong><a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/ValidationMetadata.ValidationMetadataSerializer.html#deserialize(org.apache.cassandra.io.sstable.Descriptor.Version,%20java.io.DataInput)">deserialize</a></strong>(<a href="../../../../../../../org/apache/cassandra/io/sstable/Descriptor.Version.html" title="class in org.apache.cassandra.io.sstable">Descriptor.Version</a> version,
java.io.DataInput in)</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/package-summary.html">org.apache.cassandra.io.sstable.metadata</a> with parameters of type <a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/ValidationMetadata.html" title="class in org.apache.cassandra.io.sstable.metadata">ValidationMetadata</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="strong">ValidationMetadata.ValidationMetadataSerializer.</span><code><strong><a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/ValidationMetadata.ValidationMetadataSerializer.html#serialize(org.apache.cassandra.io.sstable.metadata.ValidationMetadata,%20org.apache.cassandra.io.util.DataOutputPlus)">serialize</a></strong>(<a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/ValidationMetadata.html" title="class in org.apache.cassandra.io.sstable.metadata">ValidationMetadata</a> component,
<a href="../../../../../../../org/apache/cassandra/io/util/DataOutputPlus.html" title="interface in org.apache.cassandra.io.util">DataOutputPlus</a> out)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><span class="strong">ValidationMetadata.ValidationMetadataSerializer.</span><code><strong><a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/ValidationMetadata.ValidationMetadataSerializer.html#serializedSize(org.apache.cassandra.io.sstable.metadata.ValidationMetadata)">serializedSize</a></strong>(<a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/ValidationMetadata.html" title="class in org.apache.cassandra.io.sstable.metadata">ValidationMetadata</a> component)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/apache/cassandra/io/sstable/metadata/ValidationMetadata.html" title="class in org.apache.cassandra.io.sstable.metadata">Class</a></li>
<li class="navBarCell1Rev">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><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/apache/cassandra/io/sstable/metadata/class-use/ValidationMetadata.html" target="_top">Frames</a></li>
<li><a href="ValidationMetadata.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 © 2014 The Apache Software Foundation</small></p>
</body>
</html>
| varunmc/cassandra-server | apache-cassandra-2.1.0/javadoc/org/apache/cassandra/io/sstable/metadata/class-use/ValidationMetadata.html | HTML | apache-2.0 | 9,412 |
<!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_151) on Fri Apr 06 09:47:22 MST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.wildfly.swarm.config.management.access.constraint.application_classification.type (BOM: * : All 2018.4.2 API)</title>
<meta name="date" content="2018-04-06">
<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="org.wildfly.swarm.config.management.access.constraint.application_classification.type (BOM: * : All 2018.4.2 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 class="aboutLanguage">WildFly Swarm API, 2018.4.2</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/sensitivity_classification/type/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../../../index.html?org/wildfly/swarm/config/management/access/constraint/application_classification/type/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 org.wildfly.swarm.config.management.access.constraint.application_classification.type</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Interface Summary table, listing interfaces, and an explanation">
<caption><span>Interface Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Interface</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/application_classification/type/ClassificationConsumer.html" title="interface in org.wildfly.swarm.config.management.access.constraint.application_classification.type">ClassificationConsumer</a><T extends <a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/application_classification/type/Classification.html" title="class in org.wildfly.swarm.config.management.access.constraint.application_classification.type">Classification</a><T>></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/application_classification/type/ClassificationSupplier.html" title="interface in org.wildfly.swarm.config.management.access.constraint.application_classification.type">ClassificationSupplier</a><T extends <a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/application_classification/type/Classification.html" title="class in org.wildfly.swarm.config.management.access.constraint.application_classification.type">Classification</a>></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<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="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/application_classification/type/Classification.html" title="class in org.wildfly.swarm.config.management.access.constraint.application_classification.type">Classification</a><T extends <a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/application_classification/type/Classification.html" title="class in org.wildfly.swarm.config.management.access.constraint.application_classification.type">Classification</a><T>></td>
<td class="colLast">
<div class="block">Configuration of an application classification constraint.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/application_classification/type/Classification.ClassificationResources.html" title="class in org.wildfly.swarm.config.management.access.constraint.application_classification.type">Classification.ClassificationResources</a></td>
<td class="colLast">
<div class="block">Child mutators for Classification</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 class="aboutLanguage">WildFly Swarm API, 2018.4.2</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../../../../../org/wildfly/swarm/config/management/access/constraint/sensitivity_classification/type/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../../../index.html?org/wildfly/swarm/config/management/access/constraint/application_classification/type/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 © 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
| wildfly-swarm/wildfly-swarm-javadocs | 2018.4.2/apidocs/org/wildfly/swarm/config/management/access/constraint/application_classification/type/package-summary.html | HTML | apache-2.0 | 8,672 |
{% extends load_base %}
{% load i18n %}
{% block javascript %}
<script type="text/javascript">
$(document).ready(function() {
filter_links();
tasklog_init();
});
</script>
{% endblock %}
{% block base_nav %}{% include "gui/node/navigation.html" with li_tasklog="active" %}{% endblock %}
{% block base_content %}
{% include "gui/tasklog/tasklog_detail_template.html" %}
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<div class="tab-header">
<i class="icon-tasks"></i> {{ node.hostname }} › {% trans "task log" %}
</div>
{% include "gui/tasklog/tasklog_table.html" %}
</div>
</div> <!-- end row-fluid -->
</div> <!-- end container-fluid -->
{% endblock %}
| erigones/esdc-ce | gui/templates/gui/node/tasklog.html | HTML | apache-2.0 | 744 |
<!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_112-release) on Mon Nov 28 12:51:44 MST 2016 -->
<title>M-Index</title>
<meta name="date" content="2016-11-28">
<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="M-Index";
}
}
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><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-11.html">Prev Letter</a></li>
<li><a href="index-13.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-files/index-12.html" target="_top">Frames</a></li>
<li><a href="index-12.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">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">K</a> <a href="index-11.html">L</a> <a href="index-12.html">M</a> <a href="index-13.html">N</a> <a href="index-14.html">O</a> <a href="index-15.html">P</a> <a href="index-16.html">Q</a> <a href="index-17.html">R</a> <a href="index-18.html">S</a> <a href="index-19.html">T</a> <a href="index-20.html">U</a> <a href="index-21.html">V</a> <a href="index-22.html">W</a> <a href="index-23.html">Z</a> <a name="I:M">
<!-- -->
</a>
<h2 class="title">M</h2>
<dl>
<dt><a href="../ca/ualberta/cs/linkai/beep/MakePaymentActivity.html" title="class in ca.ualberta.cs.linkai.beep"><span class="typeNameLink">MakePaymentActivity</span></a> - Class in <a href="../ca/ualberta/cs/linkai/beep/package-summary.html">ca.ualberta.cs.linkai.beep</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/MakePaymentActivity.html#MakePaymentActivity--">MakePaymentActivity()</a></span> - Constructor for class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/MakePaymentActivity.html" title="class in ca.ualberta.cs.linkai.beep">MakePaymentActivity</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.id.html#map">map</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.id.html" title="class in ca.ualberta.cs.linkai.beep">R.id</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs">MapAttrs</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">Attributes that can be used with a MapAttrs.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_ambientEnabled">MapAttrs_ambientEnabled</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#ambientEnabled"><code>R.attr.ambientEnabled</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_cameraBearing">MapAttrs_cameraBearing</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#cameraBearing"><code>R.attr.cameraBearing</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_cameraTargetLat">MapAttrs_cameraTargetLat</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#cameraTargetLat"><code>R.attr.cameraTargetLat</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_cameraTargetLng">MapAttrs_cameraTargetLng</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#cameraTargetLng"><code>R.attr.cameraTargetLng</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_cameraTilt">MapAttrs_cameraTilt</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#cameraTilt"><code>R.attr.cameraTilt</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_cameraZoom">MapAttrs_cameraZoom</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#cameraZoom"><code>R.attr.cameraZoom</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_liteMode">MapAttrs_liteMode</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#liteMode"><code>R.attr.liteMode</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_mapType">MapAttrs_mapType</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#mapType"><code>R.attr.mapType</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_uiCompass">MapAttrs_uiCompass</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#uiCompass"><code>R.attr.uiCompass</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_uiMapToolbar">MapAttrs_uiMapToolbar</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#uiMapToolbar"><code>R.attr.uiMapToolbar</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_uiRotateGestures">MapAttrs_uiRotateGestures</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#uiRotateGestures"><code>R.attr.uiRotateGestures</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_uiScrollGestures">MapAttrs_uiScrollGestures</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#uiScrollGestures"><code>R.attr.uiScrollGestures</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_uiTiltGestures">MapAttrs_uiTiltGestures</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#uiTiltGestures"><code>R.attr.uiTiltGestures</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_uiZoomControls">MapAttrs_uiZoomControls</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#uiZoomControls"><code>R.attr.uiZoomControls</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_uiZoomGestures">MapAttrs_uiZoomGestures</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#uiZoomGestures"><code>R.attr.uiZoomGestures</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_useViewLifecycle">MapAttrs_useViewLifecycle</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#useViewLifecycle"><code>R.attr.useViewLifecycle</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs_zOrderOnTop">MapAttrs_zOrderOnTop</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#zOrderOnTop"><code>R.attr.zOrderOnTop</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MapAttrs"><code>R.styleable.MapAttrs</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.attr.html#mapType">mapType</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.attr.html" title="class in ca.ualberta.cs.linkai.beep">R.attr</a></dt>
<dd>
<div class="block">Must be one of the following constant values.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.color.html#material_blue_grey_800">material_blue_grey_800</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.color.html" title="class in ca.ualberta.cs.linkai.beep">R.color</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.color.html#material_blue_grey_900">material_blue_grey_900</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.color.html" title="class in ca.ualberta.cs.linkai.beep">R.color</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.color.html#material_blue_grey_950">material_blue_grey_950</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.color.html" title="class in ca.ualberta.cs.linkai.beep">R.color</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.color.html#material_deep_teal_200">material_deep_teal_200</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.color.html" title="class in ca.ualberta.cs.linkai.beep">R.color</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.color.html#material_deep_teal_500">material_deep_teal_500</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.color.html" title="class in ca.ualberta.cs.linkai.beep">R.color</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.color.html#material_grey_100">material_grey_100</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.color.html" title="class in ca.ualberta.cs.linkai.beep">R.color</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.color.html#material_grey_300">material_grey_300</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.color.html" title="class in ca.ualberta.cs.linkai.beep">R.color</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.color.html#material_grey_50">material_grey_50</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.color.html" title="class in ca.ualberta.cs.linkai.beep">R.color</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.color.html#material_grey_600">material_grey_600</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.color.html" title="class in ca.ualberta.cs.linkai.beep">R.color</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.color.html#material_grey_800">material_grey_800</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.color.html" title="class in ca.ualberta.cs.linkai.beep">R.color</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.color.html#material_grey_850">material_grey_850</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.color.html" title="class in ca.ualberta.cs.linkai.beep">R.color</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.color.html#material_grey_900">material_grey_900</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.color.html" title="class in ca.ualberta.cs.linkai.beep">R.color</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.id.html#Max">Max</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.id.html" title="class in ca.ualberta.cs.linkai.beep">R.id</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.attr.html#maxButtonHeight">maxButtonHeight</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.attr.html" title="class in ca.ualberta.cs.linkai.beep">R.attr</a></dt>
<dd>
<div class="block">Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.id.html#maximal">maximal</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.id.html" title="class in ca.ualberta.cs.linkai.beep">R.id</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.attr.html#measureWithLargestChild">measureWithLargestChild</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.attr.html" title="class in ca.ualberta.cs.linkai.beep">R.attr</a></dt>
<dd>
<div class="block">Must be a boolean value, either "<code>true</code>" or "<code>false</code>".</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.id.html#media_actions">media_actions</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.id.html" title="class in ca.ualberta.cs.linkai.beep">R.id</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.menu.html#menu--">menu()</a></span> - Constructor for class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.menu.html" title="class in ca.ualberta.cs.linkai.beep">R.menu</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.menu.html#menu_driver_main">menu_driver_main</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.menu.html" title="class in ca.ualberta.cs.linkai.beep">R.menu</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.menu.html#menu_rider_main">menu_rider_main</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.menu.html" title="class in ca.ualberta.cs.linkai.beep">R.menu</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.menu.html#menu_view_profile">menu_view_profile</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.menu.html" title="class in ca.ualberta.cs.linkai.beep">R.menu</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup">MenuGroup</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">Attributes that can be used with a MenuGroup.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup_android_checkableBehavior">MenuGroup_android_checkableBehavior</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.checkableBehavior</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup"><code>R.styleable.MenuGroup</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup_android_enabled">MenuGroup_android_enabled</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.enabled</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup"><code>R.styleable.MenuGroup</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup_android_id">MenuGroup_android_id</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.id</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup"><code>R.styleable.MenuGroup</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup_android_menuCategory">MenuGroup_android_menuCategory</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.menuCategory</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup"><code>R.styleable.MenuGroup</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup_android_orderInCategory">MenuGroup_android_orderInCategory</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.orderInCategory</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup"><code>R.styleable.MenuGroup</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup_android_visible">MenuGroup_android_visible</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.visible</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuGroup"><code>R.styleable.MenuGroup</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem">MenuItem</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">Attributes that can be used with a MenuItem.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_actionLayout">MenuItem_actionLayout</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#actionLayout"><code>R.attr.actionLayout</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_actionProviderClass">MenuItem_actionProviderClass</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#actionProviderClass"><code>R.attr.actionProviderClass</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_actionViewClass">MenuItem_actionViewClass</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#actionViewClass"><code>R.attr.actionViewClass</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_alphabeticShortcut">MenuItem_android_alphabeticShortcut</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.alphabeticShortcut</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_checkable">MenuItem_android_checkable</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.checkable</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_checked">MenuItem_android_checked</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.checked</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_enabled">MenuItem_android_enabled</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.enabled</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_icon">MenuItem_android_icon</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.icon</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_id">MenuItem_android_id</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.id</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_menuCategory">MenuItem_android_menuCategory</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.menuCategory</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_numericShortcut">MenuItem_android_numericShortcut</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.numericShortcut</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_onClick">MenuItem_android_onClick</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.onClick</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_orderInCategory">MenuItem_android_orderInCategory</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.orderInCategory</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_title">MenuItem_android_title</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.title</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_titleCondensed">MenuItem_android_titleCondensed</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.titleCondensed</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_android_visible">MenuItem_android_visible</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.visible</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem_showAsAction">MenuItem_showAsAction</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#showAsAction"><code>R.attr.showAsAction</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuItem"><code>R.styleable.MenuItem</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView">MenuView</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">Attributes that can be used with a MenuView.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView_android_headerBackground">MenuView_android_headerBackground</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.headerBackground</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView"><code>R.styleable.MenuView</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView_android_horizontalDivider">MenuView_android_horizontalDivider</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.horizontalDivider</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView"><code>R.styleable.MenuView</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView_android_itemBackground">MenuView_android_itemBackground</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.itemBackground</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView"><code>R.styleable.MenuView</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView_android_itemIconDisabledAlpha">MenuView_android_itemIconDisabledAlpha</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.itemIconDisabledAlpha</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView"><code>R.styleable.MenuView</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView_android_itemTextAppearance">MenuView_android_itemTextAppearance</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.itemTextAppearance</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView"><code>R.styleable.MenuView</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView_android_verticalDivider">MenuView_android_verticalDivider</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.verticalDivider</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView"><code>R.styleable.MenuView</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView_android_windowAnimationStyle">MenuView_android_windowAnimationStyle</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.windowAnimationStyle</code>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView"><code>R.styleable.MenuView</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView_preserveIconSpacing">MenuView_preserveIconSpacing</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#preserveIconSpacing"><code>R.attr.preserveIconSpacing</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView"><code>R.styleable.MenuView</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView_subMenuArrow">MenuView_subMenuArrow</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.styleable.html" title="class in ca.ualberta.cs.linkai.beep">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <a href="../ca/ualberta/cs/linkai/beep/R.attr.html#subMenuArrow"><code>R.attr.subMenuArrow</code></a>
attribute's value can be found in the <a href="../ca/ualberta/cs/linkai/beep/R.styleable.html#MenuView"><code>R.styleable.MenuView</code></a> array.</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/RiderMainActivity.html#mGoogleApiClient">mGoogleApiClient</a></span> - Variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/RiderMainActivity.html" title="class in ca.ualberta.cs.linkai.beep">RiderMainActivity</a></dt>
<dd>
<div class="block">Implement Google API Client</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.id.html#middle">middle</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.id.html" title="class in ca.ualberta.cs.linkai.beep">R.id</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.id.html#Min">Min</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.id.html" title="class in ca.ualberta.cs.linkai.beep">R.id</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.id.html#minimal">minimal</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.id.html" title="class in ca.ualberta.cs.linkai.beep">R.id</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.mipmap.html#mipmap--">mipmap()</a></span> - Constructor for class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.mipmap.html" title="class in ca.ualberta.cs.linkai.beep">R.mipmap</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/RequestDetailActivity_OPEN.html#mRequest">mRequest</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/RequestDetailActivity_OPEN.html" title="class in ca.ualberta.cs.linkai.beep">RequestDetailActivity_OPEN</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.attr.html#multiChoiceItemLayout">multiChoiceItemLayout</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.attr.html" title="class in ca.ualberta.cs.linkai.beep">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/R.id.html#multiply">multiply</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/R.id.html" title="class in ca.ualberta.cs.linkai.beep">R.id</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/RiderMainActivity.html#myRequest">myRequest</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/RiderMainActivity.html" title="class in ca.ualberta.cs.linkai.beep">RiderMainActivity</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../ca/ualberta/cs/linkai/beep/RiderMainActivity.html#myRequestList">myRequestList</a></span> - Static variable in class ca.ualberta.cs.linkai.beep.<a href="../ca/ualberta/cs/linkai/beep/RiderMainActivity.html" title="class in ca.ualberta.cs.linkai.beep">RiderMainActivity</a></dt>
<dd> </dd>
</dl>
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">K</a> <a href="index-11.html">L</a> <a href="index-12.html">M</a> <a href="index-13.html">N</a> <a href="index-14.html">O</a> <a href="index-15.html">P</a> <a href="index-16.html">Q</a> <a href="index-17.html">R</a> <a href="index-18.html">S</a> <a href="index-19.html">T</a> <a href="index-20.html">U</a> <a href="index-21.html">V</a> <a href="index-22.html">W</a> <a href="index-23.html">Z</a> </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><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-11.html">Prev Letter</a></li>
<li><a href="index-13.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-files/index-12.html" target="_top">Frames</a></li>
<li><a href="index-12.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>
| CMPUT301F16T14/Project | docs/index-files/index-12.html | HTML | apache-2.0 | 49,038 |
<!DOCTYPE html>
<html>
<head>
<title>Milionerzy</title>
<meta charset="utf-8" />
<script type="text/javascript" src="game.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<style>
@font-face {
font-family: 'handfont';
src: url('itim.ttf') format('truetype')
}
body {
background-image: url('images/bigbackground.png');
background-size: cover;
font-family: 'handfont';
font-size: 1.1em;
}
.question {min-width: 100%; min-height: 250px;
background-image: url("images/man_on_chair2.png");
background-repeat: no-repeat; padding: 20px 20px 1px 45px; color: white;
vertical-align: middle;
text-align: center;}
.answers { position: relative; border-spacing: 5px;}
.answer-checked, .answer-not-checked {
color: white; margin-bottom: 4px;
}
.answer-not-checked {background-color: #237;}
.answer-checked {background-color: #ffff21;}
.checker {font-size: 1.2em;}
.gamestate {color: #fe5; font-size: 1.3em; background-color: inherit;
width: 200px; font-weight: 600;}
.gamestate li {display: block;}
.winAmount {float: right;}
#OK {width: 100%; margin-top: 20px; font-size: 1.4em;}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-9">
<div class="row">
<div class="question">
W3Schools is optimized for learning, testing, and training.
Examples might be simplified to improve reading and basic understanding.
Tutorials, references, and examples are constantly reviewed to avoid errors,
but we cannot warrant full correctness of all content.
While using this site, you agree to have read and accepted our terms of use,
cookie and privacy policy.
Copyright 1999-2020 by Refsnes Data. All Rights Reserved.
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="list-group answers">
<li class="list-group-item answer-not-checked">
<span class="checker">✘ </span><span>Dzień dobry, mam część prac, ale nie uda mi się dokończyć do jutra. Jutro mam pogrzeb w bliskiej rodzinie. Postaram się odesłać jak najprędzej.
Czy jednak byłaby możliwość skorzystania z konsultacji?</span></li>
<li class="list-group-item answer-not-checked">
<span class="checker">✘ </span><span>Odpowiedź B</span></li>
<li class="list-group-item answer-checked">
<span class="checker">✔ </span> <span>Odpowiedź B</span></li>
<li class="list-group-item answer-checked">
<span class="checker">✔ </span><span>Odpowiedź B</span></li>
<li class="list-group-item answer-not-checked">
<span class="checker">✘ </span><span>Odpowiedź B</span></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="row">
<img src="images/fifty.png" />
<img src="images/public.png" />
<img src="images/phone.png" />
<img src="images/exit.png" />
</div>
<div class="row">
<ul class="list-group gamestate">
<li id="win_12"><span class="winNmb">12:</span><span class="winAmount">1 000 000</span></li>
<li id="win_11"><span class="winNmb">11:</span><span class="winAmount">500 000</span></li>
<li id="win_10"><span class="winNmb">10:</span><span class="winAmount">250 000</span></li>
<li id="win_9"><span class="winNmb">9:</span><span class="winAmount">125 000</span></li>
<li id="win_8"><span class="winNmb">8:</span><span class="winAmount">75 000</span></li>
<li id="win_7"><span class="winNmb">7:</span><span class="winAmount">40 000</span></li>
<li id="win_6"><span class="winNmb">6:</span><span class="winAmount">20 000</span></li>
<li id="win_5"><span class="winNmb">5:</span><span class="winAmount">10 000</span></li>
<li id="win_4"><span class="winNmb">4:</span><span class="winAmount">5 000</span></li>
<li id="win_3"><span class="winNmb">3:</span><span class="winAmount">2 000</span></li>
<li id="win_2"><span class="winNmb">2:</span><span class="winAmount">1 000</span></li>
<li id="win_1"><span class="winNmb">1:</span><span class="winAmount">500</span></li>
</ul>
</div>
<div>
<button class="btn btn-danger" id="OK"> Zatwierdź </button>
</div>
</div>
</div>
</div>
</body>
</html>
| mikolajs/javascript-teaching | games/milionair/index.html | HTML | apache-2.0 | 4,932 |
<!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_07) on Tue Jun 04 15:59:35 CST 2019 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>LableId</title>
<meta name="date" content="2019-06-04">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="LableId";
}
//-->
</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="class-use/LableId.html">使用</a></li>
<li><a href="package-tree.html">树</a></li>
<li><a href="../../../../../../../deprecated-list.html">已过时</a></li>
<li><a href="../../../../../../../index-files/index-1.html">索引</a></li>
<li><a href="../../../../../../../help-doc.html">帮助</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>上一个类</li>
<li><a href="../../../../../../../com/jeecg/alipay/api/base/vo/LableVo/UpDateLable.html" title="com.jeecg.alipay.api.base.vo.LableVo中的类"><span class="strong">下一个类</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?com/jeecg/alipay/api/base/vo/LableVo/LableId.html" target="_top">框架</a></li>
<li><a href="LableId.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">com.jeecg.alipay.api.base.vo.LableVo</div>
<h2 title="类 LableId" class="title">类 LableId</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>com.jeecg.alipay.api.base.vo.LableVo.LableId</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">LableId</span>
extends java.lang.Object</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>构造器概要</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="../../../../../../../com/jeecg/alipay/api/base/vo/LableVo/LableId.html#LableId()">LableId</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.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../../../com/jeecg/alipay/api/base/vo/LableVo/LableId.html#getId()">getId</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../../com/jeecg/alipay/api/base/vo/LableVo/LableId.html#setId(java.lang.String)">setId</a></strong>(java.lang.String id)</code> </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>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>构造器详细资料</h3>
<a name="LableId()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>LableId</h4>
<pre>public LableId()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>方法详细资料</h3>
<a name="getId()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getId</h4>
<pre>public java.lang.String getId()</pre>
</li>
</ul>
<a name="setId(java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>setId</h4>
<pre>public void setId(java.lang.String id)</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="跳过导航链接"></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="class-use/LableId.html">使用</a></li>
<li><a href="package-tree.html">树</a></li>
<li><a href="../../../../../../../deprecated-list.html">已过时</a></li>
<li><a href="../../../../../../../index-files/index-1.html">索引</a></li>
<li><a href="../../../../../../../help-doc.html">帮助</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>上一个类</li>
<li><a href="../../../../../../../com/jeecg/alipay/api/base/vo/LableVo/UpDateLable.html" title="com.jeecg.alipay.api.base.vo.LableVo中的类"><span class="strong">下一个类</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?com/jeecg/alipay/api/base/vo/LableVo/LableId.html" target="_top">框架</a></li>
<li><a href="LableId.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>
| zhangdaiscott/jeewx-api | doc/api/com/jeecg/alipay/api/base/vo/LableVo/LableId.html | HTML | apache-2.0 | 8,591 |
{% extends "admin/base_site.html" %}
{% load i18n %}
{% block bodyclass %}grp-doc{% endblock %}
{% block content-class %}{% endblock %}
{% block title %}Grappelli Documentation » Filter{% endblock %}
{% block extrahead %}
<script type="text/javascript" charset="utf-8">
(function($) {
$(document).ready(function() {
$("a.grp-pulldown-handler").click(function() {
var pulldownContainer = $(this).closest(".grp-pulldown-container");
$(pulldownContainer).toggleClass("grp-pulldown-state-open").children(".grp-pulldown-content").toggle();
});
$("a.grp-pulldown-handler").bind('mouseout', function() {
$(this).blur();
});
});
})(django.jQuery);
</script>
{% endblock %}
{% block breadcrumbs %}
<ul>
<li><a href="../">Grappelli Documentation</a></li>
<li>Filter</li>
</ul>
{% endblock %}
{% block content %}
<h1>Filter</h1>
<div class="g-d-c">
<section>
<div class="g-d-24">
<div class="grp-doc-description">
<h1>Basics</h1>
<p>A filter is meant to appear in a <span class="grp-doc-class">.grp-row</span> within a <span class="grp-doc-class">.grp-module</span>. It is a <span class="grp-doc-class">.grp-filter</span> containing an <span class="grp-doc-class">.grp-pulldown-container</span> with an <span class="grp-doc-dom"><span>a.grp-button.grp-pulldown-handler</span></span> and a <span class="grp-doc-dom"><span>div.grp-pulldown-content</span></span>. The <span class="grp-doc-dom"><span>div.grp-pulldown-content</span></span> itself contains a <span class="grp-doc-class">.grp-module</span> for each filter. Each choice is represented in a <span class="grp-doc-class">.grp-row</span>. Please note that you have to use javascript to make the pulldown work (see source code below).</p>
<p>You can use filters in two predefined ways: as <strong>selects</strong> and as <strong>listings</strong> (more information below).</p>
<p><small>Note: Make sure to wrap the filter with spaceless-tags to avoid whitespaces.</small></p>
</div>
</div>
<div class="g-d-24">
<div class="grp-doc-code-source">
<div class="grp-module">
<div class="grp-row">
<div class="grp-filter">
<div class="grp-pulldown-container">
<a href="javascript://" class="grp-button grp-pulldown-handler">Filter</a>
<div class="grp-pulldown-content" style="display: none">
<div class="grp-module">
<div class="grp-row">
Your filters go in here.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="g-d-24">
<div class="grp-doc-code"><pre><code>{% filter force_escape %}
<div class="grp-module">
<div class="grp-row">
{% templatetag openblock %} spaceless {% templatetag closeblock %}
<div class="grp-filter">
<div class="grp-pulldown-container">
<a href="javascript://" class="grp-button grp-pulldown-handler">Filter</a>
<div class="grp-pulldown-content" style="display: none">
Your filters go in here.
</div>
</div>
</div>
{% templatetag openblock %} endspaceless {% templatetag closeblock %}
</div>
</div>
{% endfilter %}</code></pre></div>
<div class="grp-doc-code"><pre><code>{% filter force_escape %}
(function($) {
$(document).ready(function() {
$("a.grp-pulldown-handler").click(function() {
var pulldownContainer = $(this).closest(".grp-pulldown-container");
$(pulldownContainer).toggleClass("grp-pulldown-state-open").children(".grp-pulldown-content").toggle();
});
$("a.grp-pulldown-handler").bind('mouseout', function() {
$(this).blur();
});
$(".grp-filter-choice").change(function(){
location.href = $(this).val();
});
});
})(grp.jQuery);
{% endfilter %}</code></pre></div>
</div>
</div>
</section>
<section>
<div class="g-d-24">
<div class="grp-doc-description">
<h1>Filters as a Select</h1>
<p>Each filter is represented by a <span class="grp-doc-class">.grp-module</span> containing a <span class="grp-doc-dom"><span>select</span></span> where the choices are <span class="grp-doc-dom"><span>options</span></span>.</p>
</div>
</div>
<div class="g-d-24">
<div class="grp-doc-code-source">
<div class="grp-module">
<div class="grp-row">
<div class="grp-filter">
<div class="grp-pulldown-container">
<a href="javascript://" class="grp-button grp-pulldown-handler">Filter</a>
<div class="grp-pulldown-content" style="display: none">
<div class="grp-module">
<div class="grp-row">
<label>Filter 1</label>
<select class="grp-filter-choice">
<option value="1" selected="selected">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
</div>
</div>
<div class="grp-module">
<div class="grp-row">
<label>Filter 2</label>
<select class="grp-filter-choice">
<option value="1" selected="selected">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="g-d-24">
<div class="grp-doc-code"><pre><code>{% filter force_escape %}
<div class="grp-module">
<div class="grp-row">
{% templatetag openblock %} spaceless {% templatetag closeblock %}
<div class="grp-filter">
<div class="grp-pulldown-container">
<a href="javascript://" class="grp-button grp-pulldown-handler">Filter</a>
<div class="grp-pulldown-content" style="display: none">
<div class="grp-module">
<div class="grp-row">
<label>Filter 1</label>
<select class="grp-filter-choice">
<option value="1" selected="selected">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
</div>
</div>
<div class="grp-module">
<div class="grp-row">
<label>Filter 1</label>
<select class="grp-filter-choice">
<option value="1" selected="selected">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
</div>
</div>
</div>
</div>
</div>
{% templatetag openblock %} endspaceless {% templatetag closeblock %}
</div>
</div>
{% endfilter %}</code></pre></div>
</section>
<section>
<div class="g-d-24">
<div class="grp-doc-description">
<h1>Filters as a Listing</h1>
<p>Each filter is represented by a <span class="grp-doc-class">.grp-module</span> where the choices are <span class="grp-doc-class">.grp-rows</span>.</p>
</div>
</div>
<div class="g-d-24">
<div class="grp-doc-code-source">
<div class="grp-module">
<div class="grp-row">
<div class="grp-filter">
<div class="grp-pulldown-container">
<a href="javascript://" class="grp-button grp-pulldown-handler">Filter</a>
<div class="grp-pulldown-content" style="display: none">
<div class="grp-module">
<h3>Filter 1</h3>
<div class="grp-row">
<a href="">Choice 1</a>
</div>
<div class="grp-row grp-selected">
<a href="">Choice 2</a>
</div>
<div class="grp-row">
<a href="">Choice 3</a>
</div>
</div>
<div class="grp-module">
<h3>Filter 2</h3>
<div class="grp-row">
<a href="">Choice 1</a>
</div>
<div class="grp-row grp-selected">
<a href="">Choice 2</a>
</div>
<div class="grp-row">
<a href="">Choice 3</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="g-d-24">
<div class="grp-doc-code"><pre><code>{% filter force_escape %}
<div class="grp-module">
<div class="grp-row">
{% templatetag openblock %} spaceless {% templatetag closeblock %}
<div class="grp-filter">
<div class="grp-pulldown-container">
<a href="javascript://" class="grp-button grp-pulldown-handler">Filter</a>
<div class="grp-pulldown-content" style="display: none">
<div class="grp-module">
<h3>Filter 1</h3>
<div class="grp-row">
<a href="">Choice 1</a>
</div>
<div class="grp-row grp-selected">
<a href="">Choice 2</a>
</div>
<div class="grp-row">
<a href="">Choice 3</a>
</div>
</div>
<div class="grp-module">
<h3>Filter 2</h3>
<div class="grp-row">
<a href="">Choice 1</a>
</div>
<div class="grp-row grp-selected">
<a href="">Choice 2</a>
</div>
<div class="grp-row">
<a href="">Choice 3</a>
</div>
</div>
</div>
</div>
</div>
{% templatetag openblock %} endspaceless {% templatetag closeblock %}
</div>
</div>
{% endfilter %}</code></pre></div>
</section>
</div>
{% endblock %}
| darknight-007/agdss-1 | grappelli/templates/grp_doc/filter.html | HTML | apache-2.0 | 13,990 |
<!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>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title>
</head>
<body>
<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://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</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 documentation" target="_blank"
href="http://openclover.org/documentation">
<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">
<a href="http://cardatechnologies.com" target="_top">
<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>
</a>
</div>
<div class="aui-page-header-main" >
<h1>
<a href="http://cardatechnologies.com" target="_top">
ABA Route Transit Number Validator 1.0.1-SNAPSHOT
</a>
</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.cardatechnologies.utils.validators.abaroutevalidator">
<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">
<div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li>
<li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li>
<li><a href="test-Test_AbaRouteValidator_05.html">Class Test_AbaRouteValidator_05</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_7986_bad
</h1>
<table class="aui">
<thead>
<tr>
<th>Test</th>
<th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th>
<th><label title="When the test execution was started">Start time</label></th>
<th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th>
<th><label title="A failure or error message if the test is not successful.">Message</label></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_05.html?line=11704#src-11704" >testAbaNumberCheck_7986_bad</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:34:54
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </div>
<table class="aui aui-table-sortable">
<thead>
<tr>
<th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th>
<th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_7986_bad</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/exceptions/AbaRouteValidationException.html?id=36795#AbaRouteValidationException" title="AbaRouteValidationException" name="sl-43">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/ErrorCodes.html?id=36795#ErrorCodes" title="ErrorCodes" name="sl-42">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=36795#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a>
</td>
<td>
<span class="sortValue">0.29411766</span>29.4%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="29.4% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:29.4%"></div></div></div> </td>
</tr>
</tbody>
</table>
</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://openclover.org">OpenClover</a> v 4.4.1
on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT.
</li>
</ul>
<ul>
<li>OpenClover is free and open-source software. </li>
</ul>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> | dcarda/aba.route.validator | target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_05_testAbaNumberCheck_7986_bad_se3.html | HTML | apache-2.0 | 10,984 |
<!doctype html>
<html lang="en">
<head>
<title>Code coverage report for node-mhtml/lib/part.js</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../../prettify.css">
<style>
body, html {
margin:0; padding: 0;
}
body {
font-family: Helvetica Neue, Helvetica,Arial;
font-size: 10pt;
}
div.header, div.footer {
background: #eee;
padding: 1em;
}
div.header {
z-index: 100;
position: fixed;
top: 0;
border-bottom: 1px solid #666;
width: 100%;
}
div.footer {
border-top: 1px solid #666;
}
div.body {
margin-top: 10em;
}
div.meta {
font-size: 90%;
text-align: center;
}
h1, h2, h3 {
font-weight: normal;
}
h1 {
font-size: 12pt;
}
h2 {
font-size: 10pt;
}
pre {
font-family: Consolas, Menlo, Monaco, monospace;
margin: 0;
padding: 0;
line-height: 14px;
font-size: 14px;
-moz-tab-size: 2;
-o-tab-size: 2;
tab-size: 2;
}
div.path { font-size: 110%; }
div.path a:link, div.path a:visited { color: #000; }
table.coverage { border-collapse: collapse; margin:0; padding: 0 }
table.coverage td {
margin: 0;
padding: 0;
color: #111;
vertical-align: top;
}
table.coverage td.line-count {
width: 50px;
text-align: right;
padding-right: 5px;
}
table.coverage td.line-coverage {
color: #777 !important;
text-align: right;
border-left: 1px solid #666;
border-right: 1px solid #666;
}
table.coverage td.text {
}
table.coverage td span.cline-any {
display: inline-block;
padding: 0 5px;
width: 40px;
}
table.coverage td span.cline-neutral {
background: #eee;
}
table.coverage td span.cline-yes {
background: #b5d592;
color: #999;
}
table.coverage td span.cline-no {
background: #fc8c84;
}
.cstat-yes { color: #111; }
.cstat-no { background: #fc8c84; color: #111; }
.fstat-no { background: #ffc520; color: #111 !important; }
.cbranch-no { background: yellow !important; color: #111; }
.missing-if-branch {
display: inline-block;
margin-right: 10px;
position: relative;
padding: 0 4px;
background: black;
color: yellow;
xtext-decoration: line-through;
}
.missing-if-branch .typ {
color: inherit !important;
}
.entity, .metric { font-weight: bold; }
.metric { display: inline-block; border: 1px solid #333; padding: 0.3em; background: white; }
.metric small { font-size: 80%; font-weight: normal; color: #666; }
div.coverage-summary table { border-collapse: collapse; margin: 3em; font-size: 110%; }
div.coverage-summary td, div.coverage-summary table th { margin: 0; padding: 0.25em 1em; border-top: 1px solid #666; border-bottom: 1px solid #666; }
div.coverage-summary th { text-align: left; border: 1px solid #666; background: #eee; font-weight: normal; }
div.coverage-summary th.file { border-right: none !important; }
div.coverage-summary th.pic { border-left: none !important; text-align: right; }
div.coverage-summary th.pct { border-right: none !important; }
div.coverage-summary th.abs { border-left: none !important; text-align: right; }
div.coverage-summary td.pct { text-align: right; border-left: 1px solid #666; }
div.coverage-summary td.abs { text-align: right; font-size: 90%; color: #444; border-right: 1px solid #666; }
div.coverage-summary td.file { text-align: right; border-left: 1px solid #666; white-space: nowrap; }
div.coverage-summary td.pic { min-width: 120px !important; }
div.coverage-summary a:link { text-decoration: none; color: #000; }
div.coverage-summary a:visited { text-decoration: none; color: #333; }
div.coverage-summary a:hover { text-decoration: underline; }
div.coverage-summary tfoot td { border-top: 1px solid #666; }
div.coverage-summary .yui3-datatable-sort-indicator, div.coverage-summary .dummy-sort-indicator {
height: 10px;
width: 7px;
display: inline-block;
margin-left: 0.5em;
}
div.coverage-summary .yui3-datatable-sort-indicator {
background: url("http://yui.yahooapis.com/3.6.0/build/datatable-sort/assets/skins/sam/sort-arrow-sprite.png") no-repeat scroll 0 0 transparent;
}
div.coverage-summary .yui3-datatable-sorted .yui3-datatable-sort-indicator {
background-position: 0 -20px;
}
div.coverage-summary .yui3-datatable-sorted-desc .yui3-datatable-sort-indicator {
background-position: 0 -10px;
}
.high { background: #b5d592 !important; }
.medium { background: #ffe87c !important; }
.low { background: #fc8c84 !important; }
span.cover-fill, span.cover-empty {
display:inline-block;
border:1px solid #444;
background: white;
height: 12px;
}
span.cover-fill {
background: #ccc;
border-right: 1px solid #444;
}
span.cover-empty {
background: white;
border-left: none;
}
span.cover-full {
border-right: none !important;
}
pre.prettyprint {
border: none !important;
padding: 0 !important;
margin: 0 !important;
}
.com { color: #999 !important; }
</style>
</head>
<body>
<div class="header high">
<h1>Code coverage report for <span class="entity">node-mhtml/lib/part.js</span></h1>
<h2>
Statements: <span class="metric">96.67% <small>(29 / 30)</small></span>
Branches: <span class="metric">85% <small>(17 / 20)</small></span>
Functions: <span class="metric">100% <small>(6 / 6)</small></span>
Lines: <span class="metric">96.67% <small>(29 / 30)</small></span>
</h2>
<div class="path"><a href="../../index.html">All files</a> » <a href="index.html">node-mhtml/lib/</a> » part.js</div>
</div>
<div class="body">
<pre><table class="coverage">
<tr><td class="line-count">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79</td><td class="line-coverage"><span class="cline-any cline-yes">1</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-yes">62</span>
<span class="cline-any cline-yes">62</span>
<span class="cline-any cline-yes">62</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">468</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">468</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">468</span>
<span class="cline-any cline-yes">167</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">301</span>
<span class="cline-any cline-yes">292</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">26</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">54</span>
<span class="cline-any cline-yes">50</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">4</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">4</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">54</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">49</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">49</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">20</span>
<span class="cline-any cline-yes">11</span>
<span class="cline-any cline-yes">11</span>
<span class="cline-any cline-yes">11</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">20</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">49</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">'use strict';
var mimelib = require('mimelib');
var cheerio = require('cheerio');
module.exports = Part;
function Part() {
this._meta = {};
this.basePath = '';
this.content = '';
}
Part.prototype = {
meta: function (key, value) {
<span class="missing-if-branch" title="if path not taken"" >I</span>if (!key && <span class="branch-1 cbranch-no" title="branch not covered" >!value)</span> {
<span class="cstat-no" title="statement not covered" > return this._meta;</span>
}
key = key.toLowerCase();
if (value) {
return this._meta[key] = value;
}
if (this._meta.hasOwnProperty(key)) {
return this._meta[key];
}
},
decoder: {
base64: function (encoded) {
return new Buffer(encoded, 'base64');
},
'quoted-printable': mimelib.decodeQuotedPrintable
},
filePath: function () {
if (this.meta('content-location')) {
return this.meta('content-location').replace(/\\/g, '/').replace(this.basePath, '');
}
// TODO: use content-id if present?
var ext = (mimelib.contentTypesReversed.hasOwnProperty(this.meta('content-type')))
? '.' + mimelib.contentTypesReversed[this.meta('content-type')] : <span class="branch-1 cbranch-no" title="branch not covered" >'';</span>
return Math.floor(Math.random() * 5000000000) + ext;
},
isLocal: function () {
return Boolean(!this.meta('content-location') || this.meta('content-location').match(/^file:/));
},
decoded: function (cb) {
var $, decoded = this.decoder[this.meta('content-transfer-encoding')](this.content);
// convert all file:// links to be relative to the exported folder
if (typeof decoded === 'string' && this.basePath) {
// strip out any <base> tags as they are generally useless once the mhtml
// is exported.
// FIXME: this code is mostly for Excel files and is quite hacky, improve
if (this.meta('content-type') === 'text/html') {
$ = cheerio.load(decoded);
$('head').find('base').remove();
decoded = $.html();
}
decoded = decoded.replace(new RegExp(this.basePath, 'g'), '');
}
cb(null, decoded);
}
};
</pre></td></tr>
</table></pre>
</div>
<div class="footer">
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Sat Feb 01 2014 21:04:21 GMT+0100 (CET)</div>
</div>
<script src="../../prettify.js"></script>
<script src="http://yui.yahooapis.com/3.6.0/build/yui/yui-min.js"></script>
<script>
YUI().use('datatable', function (Y) {
var formatters = {
pct: function (o) {
o.className += o.record.get('classes')[o.column.key];
try {
return o.value.toFixed(2) + '%';
} catch (ex) { return o.value + '%'; }
},
html: function (o) {
o.className += o.record.get('classes')[o.column.key];
return o.record.get(o.column.key + '_html');
}
},
defaultFormatter = function (o) {
o.className += o.record.get('classes')[o.column.key];
return o.value;
};
function getColumns(theadNode) {
var colNodes = theadNode.all('tr th'),
cols = [],
col;
colNodes.each(function (colNode) {
col = {
key: colNode.getAttribute('data-col'),
label: colNode.get('innerHTML') || ' ',
sortable: !colNode.getAttribute('data-nosort'),
className: colNode.getAttribute('class'),
type: colNode.getAttribute('data-type'),
allowHTML: colNode.getAttribute('data-html') === 'true' || colNode.getAttribute('data-fmt') === 'html'
};
col.formatter = formatters[colNode.getAttribute('data-fmt')] || defaultFormatter;
cols.push(col);
});
return cols;
}
function getRowData(trNode, cols) {
var tdNodes = trNode.all('td'),
i,
row = { classes: {} },
node,
name;
for (i = 0; i < cols.length; i += 1) {
name = cols[i].key;
node = tdNodes.item(i);
row[name] = node.getAttribute('data-value') || node.get('innerHTML');
row[name + '_html'] = node.get('innerHTML');
row.classes[name] = node.getAttribute('class');
//Y.log('Name: ' + name + '; Value: ' + row[name]);
if (cols[i].type === 'number') { row[name] = row[name] * 1; }
}
//Y.log(row);
return row;
}
function getData(tbodyNode, cols) {
var data = [];
tbodyNode.all('tr').each(function (trNode) {
data.push(getRowData(trNode, cols));
});
return data;
}
function replaceTable(node) {
if (!node) { return; }
var cols = getColumns(node.one('thead')),
data = getData(node.one('tbody'), cols),
table,
parent = node.get('parentNode');
table = new Y.DataTable({
columns: cols,
data: data,
sortBy: 'file'
});
parent.set('innerHTML', '');
table.render(parent);
}
Y.on('domready', function () {
replaceTable(Y.one('div.coverage-summary table'));
if (typeof prettyPrint === 'function') {
prettyPrint();
}
});
});
</script>
</body>
</html>
| Fakvarl/ImagePocketNodeJs | node_modules/mhtml/coverage/lcov-report/node-mhtml/lib/part.js.html | HTML | apache-2.0 | 17,088 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_51) on Thu Apr 28 18:37:57 UTC 2016 -->
<title>Uses of Class org.apache.cassandra.db.ColumnSerializer (apache-cassandra API)</title>
<meta name="date" content="2016-04-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="Uses of Class org.apache.cassandra.db.ColumnSerializer (apache-cassandra API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/cassandra/db/ColumnSerializer.html" title="class in org.apache.cassandra.db">Class</a></li>
<li class="navBarCell1Rev">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><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/apache/cassandra/db/class-use/ColumnSerializer.html" target="_top">Frames</a></li>
<li><a href="ColumnSerializer.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.apache.cassandra.db.ColumnSerializer" class="title">Uses of Class<br>org.apache.cassandra.db.ColumnSerializer</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../org/apache/cassandra/db/ColumnSerializer.html" title="class in org.apache.cassandra.db">ColumnSerializer</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="#org.apache.cassandra.db.composites">org.apache.cassandra.db.composites</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.cassandra.db.composites">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/apache/cassandra/db/ColumnSerializer.html" title="class in org.apache.cassandra.db">ColumnSerializer</a> in <a href="../../../../../org/apache/cassandra/db/composites/package-summary.html">org.apache.cassandra.db.composites</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../org/apache/cassandra/db/composites/package-summary.html">org.apache.cassandra.db.composites</a> that return <a href="../../../../../org/apache/cassandra/db/ColumnSerializer.html" title="class in org.apache.cassandra.db">ColumnSerializer</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="../../../../../org/apache/cassandra/db/ColumnSerializer.html" title="class in org.apache.cassandra.db">ColumnSerializer</a></code></td>
<td class="colLast"><span class="strong">AbstractCellNameType.</span><code><strong><a href="../../../../../org/apache/cassandra/db/composites/AbstractCellNameType.html#columnSerializer()">columnSerializer</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/cassandra/db/ColumnSerializer.html" title="class in org.apache.cassandra.db">ColumnSerializer</a></code></td>
<td class="colLast"><span class="strong">CellNameType.</span><code><strong><a href="../../../../../org/apache/cassandra/db/composites/CellNameType.html#columnSerializer()">columnSerializer</a></strong>()</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/cassandra/db/ColumnSerializer.html" title="class in org.apache.cassandra.db">Class</a></li>
<li class="navBarCell1Rev">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><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/apache/cassandra/db/class-use/ColumnSerializer.html" target="_top">Frames</a></li>
<li><a href="ColumnSerializer.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 © 2016 The Apache Software Foundation</small></p>
</body>
</html>
| elisska/cloudera-cassandra | DATASTAX_CASSANDRA-2.2.6/javadoc/org/apache/cassandra/db/class-use/ColumnSerializer.html | HTML | apache-2.0 | 6,850 |
<div class="card bp-container-simple help">
<div class="card-divider"><p>Intelligent Data Delivery Service page information:</p></div>
<div class="card-section">
<p>
Documentation on iDDS service can be found <a href="https://idds.cern.ch/">here</a>.
</p>
<p>
To be filled...
</p>
</div>
</div> | PanDAWMS/panda-bigmon-core | core/iDDS/templates/iddsHelp.html | HTML | apache-2.0 | 298 |
<!DOCTYPE html>
{% if g.user %}
{% raw %}
<html lang="en" ng-app="ReviewApp">
{% endraw %}
{% else %}
<html lang="en">
{% endif %}
<head>
<meta charset="utf-8">
<title>DERMAnnotator Revised</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel=stylesheet type=text/css
href="static/bower_components/bootstrap/dist/css/bootstrap.min.css">
<!--<link rel=stylesheet type=text/css-->
<!--href="static/bower_components/flatstrap/dist/css/bootstrap-responsive.min.css">-->
<style type="text/css">
body {
margin: 0px;
padding-top: 00px;
}
.settingsDropDown {
position: absolute;
top: 10px;
left: 10px;
height: 40px;
z-index: 6000;
}
#note {
position: absolute;
z-index: 6001;
top: 0;
left: 0;
right: 0;
background: #333;
text-align: center;
line-height: 2.5;
overflow: hidden;
-webkit-box-shadow: 0 0 5px black;
-moz-box-shadow: 0 0 5px black;
box-shadow: 0 0 5px black;
}
</style>
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--<link rel=stylesheet type=text/css href="/static/font-awesome/css/font-awesome.css">-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="http://twitter.github.com/bootstrap/assets/images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="http://twitter.github.com/bootstrap/assets/images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="http://twitter.github.com/bootstrap/assets/images/apple-touch-icon-114x114.png">
<script src="/static/bower_components/jquery/dist/jquery.min.js"></script>
<script src="/static/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
{% block head %}
{% endblock %}
</head>
<body>
{% with errors = get_flashed_messages() %}
{% if errors %}
<div id="note">
{% for message in errors %}
{{ message }}
{% endfor %}
</div>
<script>
$("#note").delay(1000).fadeOut(500);
</script>
{% endif %}
{% endwith %}
<div class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Image Review</a>
<ul class="nav navbar-nav">
<li class="dropdown">
{% if g.user %}
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Account<b class="caret"></b></a>
<ul class="dropdown-menu">
{% if g.user.user_role == 'admin' %}
<li><a>Signed in as {{ g.user.user_email }}</a></li>
<li><a>You are an Admin</a></li>
<li class="divider"></li>
<li><a href="admin">Admin page</a></li>
<li><a href="test">API test page</a></li>
<li class="divider"></li>
{% endif %}
<li><a href="/profile"><i class="icon-cog"></i> Preferences</a></li>
<li class="divider"></li>
<li><a href="{{ url_for('logout') }}"><i class="icon-off"></i> Logout</a></li>
</ul>
{% else %}
<li><a href="{{ url_for('login') }}">Sign in with Google</a></li>
{% endif %}
</li>
</ul>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a class="">Done</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div>
{% block body %}
{% endblock %}
</div>
{% block postjs %}
{% endblock %}
</body>
</html>
| richstoner/image_review | app/templates/base.html | HTML | apache-2.0 | 4,637 |
<?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>Chapter 3. Direct Persistence Layer First Steps</title>
<link rel="stylesheet" href="gettingStarted.css" type="text/css" />
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
<link rel="start" href="index.html" title="Getting Started with Berkeley DB Java Edition" />
<link rel="up" href="dpl.html" title="Part I. Programming with the Direct Persistence Layer" />
<link rel="prev" href="dpl.html" title="Part I. Programming with the Direct Persistence Layer" />
<link rel="next" href="persistobject.html" title="Persistent Objects" />
</head>
<body>
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">Chapter 3. Direct Persistence Layer First Steps</th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="dpl.html">Prev</a> </td>
<th width="60%" align="center">Part I. Programming with the Direct Persistence Layer</th>
<td width="20%" align="right"> <a accesskey="n" href="persistobject.html">Next</a></td>
</tr>
</table>
<hr />
</div>
<div class="chapter" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title"><a id="persist_first"></a>Chapter 3. Direct Persistence Layer First Steps</h2>
</div>
</div>
</div>
<div class="toc">
<p>
<b>Table of Contents</b>
</p>
<dl>
<dt>
<span class="sect1">
<a href="persist_first.html#entitystore">Entity Stores</a>
</span>
</dt>
<dd>
<dl>
<dt>
<span class="sect2">
<a href="persist_first.html#persist-open">Opening and Closing Environments and Stores</a>
</span>
</dt>
</dl>
</dd>
<dt>
<span class="sect1">
<a href="persistobject.html">Persistent Objects</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="saveret.html">Saving a Retrieving Data</a>
</span>
</dt>
</dl>
</div>
<p>
This chapter guides you through the first few steps required to
use the DPL with your application. These steps include:
</p>
<div class="orderedlist">
<ol type="1">
<li>
<p>
Opening your environment as was described in
<span>
<a class="xref" href="env.html#envopen" title="Opening Database Environments">Opening Database Environments</a>.
</span>
</p>
</li>
<li>
<p>
Opening your entity store.
</p>
</li>
<li>
<p>
Identifying the classes that you want to store in
JE as either a <code class="literal">persistent</code>
class or an <code class="literal">entity</code>.
</p>
</li>
</ol>
</div>
<p>
Once you have done these things, you can write your classes to
the JE databases, read them back from the databases, delete
them from the databases, and so forth. These activities are
described in the chapters that follow in this part of this manual.
</p>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="entitystore"></a>Entity Stores</h2>
</div>
</div>
</div>
<div class="toc">
<dl>
<dt>
<span class="sect2">
<a href="persist_first.html#persist-open">Opening and Closing Environments and Stores</a>
</span>
</dt>
</dl>
</div>
<p>
Entity stores are the basic unit of storage that you use with the DPL. That is, it
is a unit of encapsulation for the classes that you want to store in JE. Under
the hood it actually interacts with JE databases, but the DPL provides a layer
of abstraction from the underlying JE APIs. The store, therefore, provides a
simplified mechanism by which you read and write your stored classes. By using a
store, you have access to your classes that is more simplified than if you were
interacting with databases directly, but this simplified access comes at the cost of
reduced flexibility.
</p>
<p>
Entity stores have configurations in the same way that environments have
configurations. You can use a <code class="classname">StoreConfig</code> object
to identify store properties. Among these are methods that allow you to declare
whether:
</p>
<div class="itemizedlist">
<ul type="disc">
<li>
<p>
the store can be created if it does not exist at the time
it is opened. Use the
<code class="methodname">StoreConfig.setAllowCreate()</code>
method to set this.
</p>
</li>
<li>
<p>
deferred writes are allowed for the store. Use the
<code class="methodname">StoreConfig.setDeferredWrite()</code>
method to set this. See
<a class="xref" href="DB.html#dwdatabase" title="Deferred Write Databases">Deferred Write Databases</a>
for general information on deferred write
databases.
</p>
</li>
<li>
<p>
the store is read-only. Use the
<code class="methodname">StoreConfig.setReadOnly()</code>
method to set this.
</p>
</li>
<li>
<p>
the store supports transactions. Use the
<code class="methodname">StoreConfig.setTransactional()</code>
method to set this.
</p>
<p>
Writing JE transactional applications is described in the
<em class="citetitle">Berkeley DB, Java Edition Getting Started with Transaction Processing</em> guide.
</p>
</li>
</ul>
</div>
<p>
<code class="classname">EntityStore</code> objects also provide methods for retrieving
information about the store, such as:
</p>
<div class="itemizedlist">
<ul type="disc">
<li>
<p>
the store's name. Use the
<code class="methodname">EntityStore.getStoreName()</code>
method to retrieve this.
</p>
</li>
<li>
<p>
a handle to the environment in which the store is opened. Use the
<code class="methodname">EntityStore.getEnvironment</code>
method to retrieve this handle.
</p>
</li>
</ul>
</div>
<p>
You can also use the <code class="classname">EntityStore</code> to
retrieve all the primary and secondary indexes related to a given type of entity
object contained in the store. See <a class="xref" href="persist_index.html" title="Chapter 4. Working with Indices">Working with Indices</a> for
more information.
</p>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="persist-open"></a>Opening and Closing Environments and Stores</h3>
</div>
</div>
</div>
<p>
As described in
<span>
<a class="xref" href="env.html" title="Chapter 2. Database Environments">Database Environments</a>,
</span>
an
<span class="emphasis"><em>environment</em></span> is a unit of
encapsulation for JE databases. It also provides a
handle by which activities common across the databases
can be managed.
</p>
<p>
To use an entity store, you must first open an environment and then provide that
environment handle to the <code class="classname">EntityStore</code> constructor.
</p>
<p>
For example, the following code fragment configures both
the environment and the entity store such that they can
be created if they do not exist. Both the environment and
the entity store are then opened.
</p>
<pre class="programlisting">package persist.gettingStarted;
import java.io.File;
import com.sleepycat.je.DatabaseException;
import com.sleepycat.je.Environment;
import com.sleepycat.je.EnvironmentConfig;
import com.sleepycat.persist.EntityStore;
import com.sleepycat.persist.StoreConfig;
...
private Environment myEnv;
private EntityStore store;
try {
EnvironmentConfig myEnvConfig = new EnvironmentConfig();
StoreConfig storeConfig = new StoreConfig();
myEnvConfig.setAllowCreate(!readOnly);
storeConfig.setAllowCreate(!readOnly);
// Open the environment and entity store
myEnv = new Environment(envHome, myEnvConfig);
store = new EntityStore(myEnv, "EntityStore", storeConfig);
} catch(DatabaseException dbe) {
System.err.println("Error opening environment and store: " +
dbe.toString());
System.exit(-1);
} </pre>
<p>
As always, before you exit your program you should close both
your store and your environment. Be sure to close your store before you close your
environment.
</p>
<pre class="programlisting">if (store != null) {
try {
store.close();
} catch(DatabaseException dbe) {
System.err.println("Error closing store: " +
dbe.toString());
System.exit(-1);
}
}
if (myEnv != null) {
try {
// Finally, close environment.
myEnv.close();
} catch(DatabaseException dbe) {
System.err.println("Error closing MyDbEnv: " +
dbe.toString());
System.exit(-1);
}
} </pre>
</div>
</div>
</div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="dpl.html">Prev</a> </td>
<td width="20%" align="center">
<a accesskey="u" href="dpl.html">Up</a>
</td>
<td width="40%" align="right"> <a accesskey="n" href="persistobject.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">Part I. Programming with the Direct Persistence Layer </td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> Persistent Objects</td>
</tr>
</table>
</div>
</body>
</html>
| bjorndm/prebake | code/third_party/bdb/docs/GettingStartedGuide/persist_first.html | HTML | apache-2.0 | 12,707 |
<!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_17) on Tue May 14 03:45:05 CEST 2013 -->
<title>Uses of Class com.badlogic.gdx.utils.Base64Coder (libgdx API)</title>
<meta name="date" content="2013-05-14">
<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.badlogic.gdx.utils.Base64Coder (libgdx API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../com/badlogic/gdx/utils/Base64Coder.html" title="class in com.badlogic.gdx.utils">Class</a></li>
<li class="navBarCell1Rev">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><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em>
libgdx API
<style>
body, td, th { font-family:Helvetica, Tahoma, Arial, sans-serif; font-size:10pt }
pre, code, tt { font-size:9pt; font-family:Lucida Console, Courier New, sans-serif }
h1, h2, h3, .FrameTitleFont, .FrameHeadingFont, .TableHeadingColor font { font-size:105%; font-weight:bold }
.TableHeadingColor { background:#EEEEFF; }
a { text-decoration:none }
a:hover { text-decoration:underline }
a:link, a:visited { color:blue }
table { border:0px }
.TableRowColor td:first-child { border-left:1px solid black }
.TableRowColor td { border:0px; border-bottom:1px solid black; border-right:1px solid black }
hr { border:0px; border-bottom:1px solid #333366; }
</style>
</em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/badlogic/gdx/utils/class-use/Base64Coder.html" target="_top">Frames</a></li>
<li><a href="Base64Coder.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.badlogic.gdx.utils.Base64Coder" class="title">Uses of Class<br>com.badlogic.gdx.utils.Base64Coder</h2>
</div>
<div class="classUseContainer">No usage of com.badlogic.gdx.utils.Base64Coder</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/badlogic/gdx/utils/Base64Coder.html" title="class in com.badlogic.gdx.utils">Class</a></li>
<li class="navBarCell1Rev">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><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em>libgdx API</em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/badlogic/gdx/utils/class-use/Base64Coder.html" target="_top">Frames</a></li>
<li><a href="Base64Coder.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>
<div style="font-size:9pt"><i>
Copyright © 2010-2013 Mario Zechner (contact@badlogicgames.com), Nathan Sweet (admin@esotericsoftware.com)
</i></div>
</small></p>
</body>
</html>
| leszekuchacz/Leszek-Uchacz | docs/api/com/badlogic/gdx/utils/class-use/Base64Coder.html | HTML | apache-2.0 | 5,194 |
{% extends parent_template %}
{% load static from staticfiles %}
{% block extra_css %}
{{ block.super }}
<style type="text/css" title="currentStyle">
@import "{% static "css/jquery-ui-1.10.3.custom.min.css" %}";
</style>
<style type="text/css" title="currentStyle">
</style>
{% endblock %}
{% block subtitle %}
{{pre_form_text|safe}}
{% endblock %}
{% block base_js %}
{{ block.super }}
<script type="text/javascript" src="{% static "js/jquery-1.9.1.min.js" %}"></script>
<script type="text/javascript" src="{% static "js/jquery-ui-1.10.3.custom.min.js" %}"></script>
{% endblock %}
{% block extra_js %}
{{ block.super }}
<script type="text/javascript" src="{% static "js/jquery.cookie.js" %}"></script>
<script type="text/javascript" src="{% static "js/jquery.json-2.4.min.js" %}"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-resource.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-route.min.js"></script>
<script type="text/javascript" src="{% static "js/prodtask.js" %}"></script>
{% endblock %}
{% block body %}
<style type="text/css">
span.StepDone { background-color : forestgreen;}
span.Unknown { background-color : gray; }
span.StepProgressing { background-color : yellowgreen; }
span.StepNotStarted { background-color : orangered; }
span.taskheader.obsolete { background-color : lightblue}
span.taskheader.holding { background-color : black; }
span.taskheader.pending { background-color : blue; }
span.taskheader.waiting { background-color : blue; }
span.taskheader.submitting { background-color : blue; }
span.taskheader.archived { background-color : magenta; }
span.taskheader.failed { background-color : red; }
span.taskheader.aborted { background-color : red; }
span.taskheader.broken { background-color : red; }
span.taskheader.running { background-color : LightGreen; }
span.taskheader.done { background-color : darkgreen;}
span.taskheader.finished { background-color : darkgreen; }
span.taskheader.registered { background-color : blue;}
</style>
<style type="text/css">
@import "{% static "css/prodtask.css" %}";
</style>
<script type="text/javascript" src="{% static "js/_ng_dkbapp.js" %}"></script>
<div ng-app="DKBApp">
<div ng-view></div>
</div>
{% endblock %} | PanDAWMS/panda-bigmon-atlas | atlas/dkb/templates/dkb/_index_dkb.html | HTML | apache-2.0 | 2,443 |
<!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_79) on Fri Jan 15 20:28:46 PST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class com.fasterxml.jackson.databind.util.TypeKey (jackson-databind 2.7.0 API)</title>
<meta name="date" content="2016-01-15">
<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.fasterxml.jackson.databind.util.TypeKey (jackson-databind 2.7.0 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/fasterxml/jackson/databind/util/TypeKey.html" title="class in com.fasterxml.jackson.databind.util">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/fasterxml/jackson/databind/util/class-use/TypeKey.html" target="_top">Frames</a></li>
<li><a href="TypeKey.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.fasterxml.jackson.databind.util.TypeKey" class="title">Uses of Class<br>com.fasterxml.jackson.databind.util.TypeKey</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../com/fasterxml/jackson/databind/util/TypeKey.html" title="class in com.fasterxml.jackson.databind.util">TypeKey</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.fasterxml.jackson.databind.ser.impl">com.fasterxml.jackson.databind.ser.impl</a></td>
<td class="colLast">
<div class="block">Contains implementation classes of serialization part of
data binding.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.fasterxml.jackson.databind.util">com.fasterxml.jackson.databind.util</a></td>
<td class="colLast">
<div class="block">Utility classes for Mapper package.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.fasterxml.jackson.databind.ser.impl">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../com/fasterxml/jackson/databind/util/TypeKey.html" title="class in com.fasterxml.jackson.databind.util">TypeKey</a> in <a href="../../../../../../com/fasterxml/jackson/databind/ser/impl/package-summary.html">com.fasterxml.jackson.databind.ser.impl</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Method parameters in <a href="../../../../../../com/fasterxml/jackson/databind/ser/impl/package-summary.html">com.fasterxml.jackson.databind.ser.impl</a> with type arguments of type <a href="../../../../../../com/fasterxml/jackson/databind/util/TypeKey.html" title="class in com.fasterxml.jackson.databind.util">TypeKey</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>static <a href="../../../../../../com/fasterxml/jackson/databind/ser/impl/ReadOnlyClassToSerializerMap.html" title="class in com.fasterxml.jackson.databind.ser.impl">ReadOnlyClassToSerializerMap</a></code></td>
<td class="colLast"><span class="strong">ReadOnlyClassToSerializerMap.</span><code><strong><a href="../../../../../../com/fasterxml/jackson/databind/ser/impl/ReadOnlyClassToSerializerMap.html#from(java.util.HashMap)">from</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/util/HashMap.html?is-external=true" title="class or interface in java.util">HashMap</a><<a href="../../../../../../com/fasterxml/jackson/databind/util/TypeKey.html" title="class in com.fasterxml.jackson.databind.util">TypeKey</a>,<a href="../../../../../../com/fasterxml/jackson/databind/JsonSerializer.html" title="class in com.fasterxml.jackson.databind">JsonSerializer</a><<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>>> src)</code>
<div class="block">Factory method for constructing an instance.</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructor parameters in <a href="../../../../../../com/fasterxml/jackson/databind/ser/impl/package-summary.html">com.fasterxml.jackson.databind.ser.impl</a> with type arguments of type <a href="../../../../../../com/fasterxml/jackson/databind/util/TypeKey.html" title="class in com.fasterxml.jackson.databind.util">TypeKey</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><strong><a href="../../../../../../com/fasterxml/jackson/databind/ser/impl/ReadOnlyClassToSerializerMap.html#ReadOnlyClassToSerializerMap(java.util.Map)">ReadOnlyClassToSerializerMap</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="../../../../../../com/fasterxml/jackson/databind/util/TypeKey.html" title="class in com.fasterxml.jackson.databind.util">TypeKey</a>,<a href="../../../../../../com/fasterxml/jackson/databind/JsonSerializer.html" title="class in com.fasterxml.jackson.databind">JsonSerializer</a><<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>>> serializers)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.fasterxml.jackson.databind.util">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../com/fasterxml/jackson/databind/util/TypeKey.html" title="class in com.fasterxml.jackson.databind.util">TypeKey</a> in <a href="../../../../../../com/fasterxml/jackson/databind/util/package-summary.html">com.fasterxml.jackson.databind.util</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../../../../../com/fasterxml/jackson/databind/util/package-summary.html">com.fasterxml.jackson.databind.util</a> with parameters of type <a href="../../../../../../com/fasterxml/jackson/databind/util/TypeKey.html" title="class in com.fasterxml.jackson.databind.util">TypeKey</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><strong><a href="../../../../../../com/fasterxml/jackson/databind/util/TypeKey.html#TypeKey(com.fasterxml.jackson.databind.util.TypeKey)">TypeKey</a></strong>(<a href="../../../../../../com/fasterxml/jackson/databind/util/TypeKey.html" title="class in com.fasterxml.jackson.databind.util">TypeKey</a> src)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../com/fasterxml/jackson/databind/util/TypeKey.html" title="class in com.fasterxml.jackson.databind.util">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/fasterxml/jackson/databind/util/class-use/TypeKey.html" target="_top">Frames</a></li>
<li><a href="TypeKey.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 © 2008–2016 <a href="http://fasterxml.com/">FasterXML</a>. All rights reserved.</small></p>
</body>
</html>
| FasterXML/jackson-databind | docs/javadoc/2.7/com/fasterxml/jackson/databind/util/class-use/TypeKey.html | HTML | apache-2.0 | 10,585 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="ru">
<head>
<title>org.apache.poi.hssf.extractor (POI API Documentation)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<h1 class="bar"><a href="../../../../../org/apache/poi/hssf/extractor/package-summary.html" target="classFrame">org.apache.poi.hssf.extractor</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="EventBasedExcelExtractor.html" title="class in org.apache.poi.hssf.extractor" target="classFrame">EventBasedExcelExtractor</a></li>
<li><a href="ExcelExtractor.html" title="class in org.apache.poi.hssf.extractor" target="classFrame">ExcelExtractor</a></li>
</ul>
</div>
</body>
</html>
| pedro93/ifarmaStudents | poi-3.10-FINAL/docs/apidocs/org/apache/poi/hssf/extractor/package-frame.html | HTML | apache-2.0 | 852 |
<!DOCTYPE html>
<html>
<head>
<link href="js/bootstrap.min.css" rel="stylesheet"type="text/css">
<link href="css/moncss.css" rel="stylesheet"type="text/css">
<script type="text/javascript" src="js/jquery-3.1.1.min.js"> </script>
<script type="text/javascript" src="js/typeahead.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/formulaire.js"></script>
<title>Comparison of California ski resorts</title>
<meta charset="utf-8">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-2"> </div>
<div class="col-md-8">
<h1>Comparison of California ski resorts</h1>
</div>
<div class="col-md-2"> </div>
</div>
<div class="row">
<fieldset>
<div class="col-md-2"> </div>
<div class="col-md-8">
<form action="" method="post">
<legend style="color:red;font-weight: bold;font-style:italic;text-align: center;" >Formulaire</legend>
</br>
<label>Peak Elevation (ft) :</label></br>
<input type="checkbox" name="Feature" >8</br>
<input type="checkbox" name="Feature" >637</br>
<input type="checkbox" name="Feature" >10</br>
<input type="checkbox" name="Feature" >090</br>
<input type="checkbox" name="Feature" >200</br>
<input type="checkbox" name="Feature" >174</br>
<input type="checkbox" name="Feature" >9</br>
<input type="checkbox" name="Feature" >050</br>
<input type="checkbox" name="Feature" >852</br>
<input type="checkbox" name="Feature" >000</br>
<input type="checkbox" name="Feature" >805</br>
<input type="checkbox" name="Feature" >030</br>
<input type="checkbox" name="Feature" >383</br>
<input type="checkbox" name="Feature" >610</br>
<input type="checkbox" name="Feature" >7</br>
<input type="checkbox" name="Feature" >841</br>
<input type="checkbox" name="Feature" >881</br>
<input type="checkbox" name="Feature" >500</br>
<input type="checkbox" name="Feature" >067</br>
<input type="checkbox" name="Feature" >903</br>
<input type="checkbox" name="Feature" >350</br>
<input type="checkbox" name="Feature" >700</br>
<input type="checkbox" name="Feature" >11</br>
<input type="checkbox" name="Feature" >053</br>
<input type="checkbox" name="Feature" >709</br>
<input type="checkbox" name="Feature" >800</br>
<input type="checkbox" name="Feature" >091</br>
<input type="checkbox" name="Feature" >325</br>
<input type="checkbox" name="Feature" >781</br>
<input type="checkbox" name="Feature" >600</br>
</br>
<label>Nearest City :</label></br>
<input type="checkbox" name="Feature" >Twin Bridges</br>
<input type="checkbox" name="Feature" >CA</br>
<input type="checkbox" name="Feature" >Truckee</br>
<input type="checkbox" name="Feature" >Soda Springs</br>
<input type="checkbox" name="Feature" >Mount Shasta</br>
<input type="checkbox" name="Feature" >Wrightwood</br>
<input type="checkbox" name="Feature" >Sonora</br>
<input type="checkbox" name="Feature" >Homewood</br>
<input type="checkbox" name="Feature" >Wofford Heights</br>
<input type="checkbox" name="Feature" >Three Points</br>
<input type="checkbox" name="Feature" >Big Bear Lake</br>
<input type="checkbox" name="Feature" >June Lake</br>
<input type="checkbox" name="Feature" >Norden</br>
<input type="checkbox" name="Feature" >Lakeshore</br>
<input type="checkbox" name="Feature" >Kirkwood</br>
<input type="checkbox" name="Feature" >Angels Camp</br>
<input type="checkbox" name="Feature" >Mount Baldy</br>
<input type="checkbox" name="Feature" >Running Springs</br>
</br>
<label>Base Elevation (ft) :</label></br>
<input type="checkbox" name="Feature" >6</br>
<input type="checkbox" name="Feature" >500</br>
<input type="checkbox" name="Feature" >491</br>
<input type="checkbox" name="Feature" >7</br>
<input type="checkbox" name="Feature" >200</br>
<input type="checkbox" name="Feature" >883</br>
<input type="checkbox" name="Feature" >640</br>
<input type="checkbox" name="Feature" >800</br>
<input type="checkbox" name="Feature" >750</br>
<input type="checkbox" name="Feature" >835</br>
<input type="checkbox" name="Feature" >030</br>
<input type="checkbox" name="Feature" >000</br>
<input type="checkbox" name="Feature" >540 (California7</br>
<input type="checkbox" name="Feature" >200 feet (Nevada)</br>
<input type="checkbox" name="Feature" >223</br>
<input type="checkbox" name="Feature" >673</br>
<input type="checkbox" name="Feature" >031</br>
<input type="checkbox" name="Feature" >545</br>
<input type="checkbox" name="Feature" >953</br>
<input type="checkbox" name="Feature" >600</br>
<input type="checkbox" name="Feature" >203</br>
<input type="checkbox" name="Feature" >965</br>
<input type="checkbox" name="Feature" >330</br>
<input type="checkbox" name="Feature" >104</br>
</br>
<label>Total Lifts : </label></br> <input style="display:block;" id="id1Total Lifts" type="number" name="Feature">
</br>
<label>Avg Annual Snowfall : </label></br> <input id="0" type="text" name="Feature"></br>
</br>
<label>Total Trails : </label></br> <input style="display:block;" id="id1Total Trails" type="number" name="Feature">
</br>
<label>Resort Name : </label></br> <input id="1" type="text" name="Feature"></br>
</br>
<label>Date Statistics Updated :</label></br>
<input type="checkbox" name="Feature" >November 19</br>
<input type="checkbox" name="Feature" >2012</br>
<input type="checkbox" name="Feature" >April 20</br>
<input type="checkbox" name="Feature" >November 14</br>
<input type="checkbox" name="Feature" >February</br>
<input type="checkbox" name="Feature" >November 14-20</br>
</br>
<label>Vertical Drop :</label></br>
<input type="checkbox" name="Feature" >1</br>
<input type="checkbox" name="Feature" >900</br>
<input type="checkbox" name="Feature" >030</br>
<input type="checkbox" name="Feature" >658</br>
<input type="checkbox" name="Feature" >435</br>
<input type="checkbox" name="Feature" >673</br>
<input type="checkbox" name="Feature" >665</br>
<input type="checkbox" name="Feature" >2</br>
<input type="checkbox" name="Feature" >850</br>
<input type="checkbox" name="Feature" >209</br>
<input type="checkbox" name="Feature" >041</br>
<input type="checkbox" name="Feature" >500</br>
<input type="checkbox" name="Feature" >590</br>
<input type="checkbox" name="Feature" >600</br>
<input type="checkbox" name="Feature" >802</br>
<input type="checkbox" name="Feature" >212</br>
<input type="checkbox" name="Feature" >000</br>
<input type="checkbox" name="Feature" >280</br>
<input type="checkbox" name="Feature" >3</br>
<input type="checkbox" name="Feature" >100</br>
</br>
<label>Adult Single DayLift Ticket Price : </label></br> <input id="2" type="text" name="Feature"></br>
</br>
<label>Skiable Acreage : </label></br> <input style="display:block;" id="id1Skiable Acreage" type="number" name="Feature">
<script>
$("#0").typeahead({
name:"list0",
local : ['500"','170"','??','400"','??"','350"','300"','180"','365"','100"','250"','420"','460"','359"','275"','480"','360"','150"','']
});
$("#1").typeahead({
name:"list1",
local : ['Northstar at Tahoe','Squaw Valley USA','Sierra-at-Tahoe','Kirkwood','Mount Baldy Ski Lifts','Boreal','Mammoth Mountain','Snow Summit','Soda Springs','China Peak','June Mountain','Alpine Meadows','Bear Valley','Mount Waterman','Alta Sierra','Sugar Bowl','Mount Shasta Ski Park','Donner Ski Ranch','Homewood','Kratka Ridge','Dodge Ridge','Heavenly Mountain Resort','Bear Mountain','Mountain High','Snow Valley Mountain Resort','Badger Pass','Tahoe Donner','Buckhorn Ski and Snowboard Club','']
});
$("#2").typeahead({
name:"list2",
local : ['$??','$44','$59 Weekday and $72 Holiday & Peak Weekends','$36','$72 November 14-20','$92','$77','$79','$73','$57','$42','$52 Weekday $58 Holiday','$59 Weekday and $69 Holiday & Peak Weekends','$59 Starting then Peaks at $100','$45','$93 USD','$80 Daily & $85 Holidays','$41','']
});
</script>
</br><input type="submit" class="btn btn-info" value="Ajouter un produit" />
</form>
</div>
</fieldset>
<div class="col-md-2"> </div>
</div>
</div>
</body>
</html> | Ophelle/PDL | pcms/Comparison_of_California_ski_resorts_0.pcm.html | HTML | apache-2.0 | 9,535 |
<!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>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title>
</head>
<body>
<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://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</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 documentation" target="_blank"
href="http://openclover.org/documentation">
<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">
<a href="http://cardatechnologies.com" target="_top">
<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>
</a>
</div>
<div class="aui-page-header-main" >
<h1>
<a href="http://cardatechnologies.com" target="_top">
ABA Route Transit Number Validator 1.0.1-SNAPSHOT
</a>
</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.cardatechnologies.utils.validators.abaroutevalidator">
<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">
<div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li>
<li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li>
<li><a href="test-Test_AbaRouteValidator_11.html">Class Test_AbaRouteValidator_11</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_24623_good
</h1>
<table class="aui">
<thead>
<tr>
<th>Test</th>
<th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th>
<th><label title="When the test execution was started">Start time</label></th>
<th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th>
<th><label title="A failure or error message if the test is not successful.">Message</label></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_11.html?line=52216#src-52216" >testAbaNumberCheck_24623_good</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:40:23
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </div>
<table class="aui aui-table-sortable">
<thead>
<tr>
<th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th>
<th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_24623_good</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=15144#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a>
</td>
<td>
<span class="sortValue">0.7352941</span>73.5%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="73.5% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:73.5%"></div></div></div> </td>
</tr>
</tbody>
</table>
</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://openclover.org">OpenClover</a> v 4.4.1
on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT.
</li>
</ul>
<ul>
<li>OpenClover is free and open-source software. </li>
</ul>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> | dcarda/aba.route.validator | target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_11_testAbaNumberCheck_24623_good_boo.html | HTML | apache-2.0 | 9,181 |
<!DOCTYPE html>
<html>
<head>
<title>Nats Emotional Intelligence Blog </title>
<meta charset="UTF-8">
<link href="file:///Users/nat/Desktop/natsiri.github.io/styles/main.css"" rel="stylesheet" type="text/css">
</head>
<body>
<h1> What learnings did you take from the chapter ?</h1>
<p>
With the right training, anyone can become more Emotionally intelligent.
Emotional Intelligence matters much more than IQ.
Emotional intelligence enables three important skills. Work performance,
leadership, and the ability to create conditions for happiness.
The things that lead to build Emotional intelligence will also help
us create conditions for our own happiness.
Response flexibility - the ability to pause before you act.
Improving our ability to regulate our attention can significantly impact
how we respond to emotions.
Affect labeling - labeling feelings therefor it helps to manage that emotion.
</p>
<h2>How did you find the two minutes of mindfulness ?</h2>
<p>
I found this to be a very important lesson for myself as once I gave myself
two minutes of mindfulness from switching from easy to easier. I had a clearer
mind and can see that in doing this it would greatly improve my Emotional intelligent.
</p>
<a href="file:///Users/nat/Desktop/natsiri.github.io/index.html">Go back</a>
</body>
</html>
| natsiri/natsiri.github.io | blog/c2-emotional-intelligence.html | HTML | apache-2.0 | 1,432 |
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<p class="post-meta"><time datetime="22 Dec 2015" itemprop="datePublished">22 Dec 2015</time></p>
</header>
<div class="post-content" itemprop="articleBody">
<h1>MarkDisk - 用iPhone当作web服务器</h1><p>tags:应用<br/></p>
<a href='https://itunes.apple.com/cn/app/markdisk-transfer-manage-your/id1035317905?mt=8'><img src='images/appstore.svg' alt ='Available on App Store'><p></a><br/></p>
<p>有一天我脑洞大开,想用iPhone作为web服务器,于是周末花了点时间做了这个应用。<br/></p>
<p>功能极其简单:<br/></p>
<p>可以开启web 服务:<br/><img src="images/1450873732.727987.jpeg" alt="comment" /><br/></p>
<p>然后你就可以在电脑上通过上面的URL地址上传各种文件了。<br/></p>
<p>上传后可以iPhone上管理和浏览文件。<br/></p>
<p><img src="http://upload-images.jianshu.io/upload_images/1113197-8c5be2512d11acca.jpeg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" alt="" /><br/></p>
<p>如果你和我一样是个极客,你可以把你做的很炫的web应用随身携带了。<br/></p>
<p>如果你并不需要一个web服务器,下面的场景也可以帮助到你:<br/></p>
<ul>
<li><p>通过WIFI传输文件: 无需数据线就可以在iPhone和电脑之间传输文件;</li>
</ul>
</p>
<li><p>随身的文档阅读器:iPhone端和浏览器端都可以浏览文档;支持各种格式;</li>
</p>
<li><p>随身的媒体播放器:iPhone端和浏览器端都可以播放视频;</li>
</p>
<li><p>没有容量限制,只要您的iPhone存储足够大;</li>
</p>
<li><p>兼容性好,iOS6~iOS9都支持</li>
</p>
</ul>
<p>如果你也有类似的需求,可以从下面的链接下载这个应用:<br/></p>
<p><img src="images/1450873742.815941.jpeg" alt="comment" /></p>
</div>
</article>
| marknote/marknote.github.io | MarkDisk - 用iPhone当作web服务器.html | HTML | apache-2.0 | 1,953 |
<!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>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title>
</head>
<body>
<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://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</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 documentation" target="_blank"
href="http://openclover.org/documentation">
<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">
<a href="http://cardatechnologies.com" target="_top">
<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>
</a>
</div>
<div class="aui-page-header-main" >
<h1>
<a href="http://cardatechnologies.com" target="_top">
ABA Route Transit Number Validator 1.0.1-SNAPSHOT
</a>
</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.cardatechnologies.utils.validators.abaroutevalidator">
<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">
<div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li>
<li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li>
<li><a href="test-Test_AbaRouteValidator_08.html">Class Test_AbaRouteValidator_08</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_16928_bad
</h1>
<table class="aui">
<thead>
<tr>
<th>Test</th>
<th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th>
<th><label title="When the test execution was started">Start time</label></th>
<th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th>
<th><label title="A failure or error message if the test is not successful.">Message</label></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_08.html?line=46336#src-46336" >testAbaNumberCheck_16928_bad</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:38:16
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </div>
<table class="aui aui-table-sortable">
<thead>
<tr>
<th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th>
<th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_16928_bad</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/exceptions/AbaRouteValidationException.html?id=6372#AbaRouteValidationException" title="AbaRouteValidationException" name="sl-43">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/ErrorCodes.html?id=6372#ErrorCodes" title="ErrorCodes" name="sl-42">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=6372#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a>
</td>
<td>
<span class="sortValue">0.29411766</span>29.4%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="29.4% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:29.4%"></div></div></div> </td>
</tr>
</tbody>
</table>
</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://openclover.org">OpenClover</a> v 4.4.1
on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT.
</li>
</ul>
<ul>
<li>OpenClover is free and open-source software. </li>
</ul>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> | dcarda/aba.route.validator | target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_08_testAbaNumberCheck_16928_bad_4x0.html | HTML | apache-2.0 | 10,984 |
<!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>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title>
</head>
<body>
<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://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</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 documentation" target="_blank"
href="http://openclover.org/documentation">
<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">
<a href="http://cardatechnologies.com" target="_top">
<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>
</a>
</div>
<div class="aui-page-header-main" >
<h1>
<a href="http://cardatechnologies.com" target="_top">
ABA Route Transit Number Validator 1.0.1-SNAPSHOT
</a>
</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.cardatechnologies.utils.validators.abaroutevalidator">
<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">
<div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li>
<li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li>
<li><a href="test-Test_AbaRouteValidator_04.html">Class Test_AbaRouteValidator_04</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_6474_bad
</h1>
<table class="aui">
<thead>
<tr>
<th>Test</th>
<th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th>
<th><label title="When the test execution was started">Start time</label></th>
<th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th>
<th><label title="A failure or error message if the test is not successful.">Message</label></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_04.html?line=35416#src-35416" >testAbaNumberCheck_6474_bad</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:34:25
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </div>
<table class="aui aui-table-sortable">
<thead>
<tr>
<th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th>
<th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_6474_bad</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/exceptions/AbaRouteValidationException.html?id=35331#AbaRouteValidationException" title="AbaRouteValidationException" name="sl-43">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/ErrorCodes.html?id=35331#ErrorCodes" title="ErrorCodes" name="sl-42">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=35331#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a>
</td>
<td>
<span class="sortValue">0.29411766</span>29.4%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="29.4% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:29.4%"></div></div></div> </td>
</tr>
</tbody>
</table>
</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://openclover.org">OpenClover</a> v 4.4.1
on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT.
</li>
</ul>
<ul>
<li>OpenClover is free and open-source software. </li>
</ul>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> | dcarda/aba.route.validator | target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_04_testAbaNumberCheck_6474_bad_r9f.html | HTML | apache-2.0 | 10,984 |
---
layout: page
title: "blog"
description: "notes on coding"
---
{% for post in paginator.posts %}
<div class="post-preview">
<a href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title"> {{ post.title }} </h2>
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
</a>
<p class="post-meta">Posted by {{ post.author }} on {{ post.date | date: "%B %-d, %Y" }}</p>
</div>
<hr>
{% endfor %}
<!-- Pager -->
{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}
| jaisonv/jaisonv.github.io | blog/index.html | HTML | apache-2.0 | 996 |
<!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>tesseract: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</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">tesseract
 <span id="projectnumber">4.00.00dev</span>
</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 -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('a03825.html','');});
</script>
<div id="doc-content">
<!-- 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="header">
<div class="headertitle">
<div class="title">_ConstTessMemberResultCallback_6_4< del, void, T, P1, P2, P3, P4, P5, P6, A1, A2, A3, A4 > Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="a03825.html">_ConstTessMemberResultCallback_6_4< del, void, T, P1, P2, P3, P4, P5, P6, A1, A2, A3, A4 ></a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="a03825.html#ac39dd3dc6655b3540940ed2b202e9d7d">_ConstTessMemberResultCallback_6_4</a>(const T *object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6)</td><td class="entry"><a class="el" href="a03825.html">_ConstTessMemberResultCallback_6_4< del, void, T, P1, P2, P3, P4, P5, P6, A1, A2, A3, A4 ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="a03825.html#acf4e17cc245ecdb3a9f2d887337f3972">base</a> typedef</td><td class="entry"><a class="el" href="a03825.html">_ConstTessMemberResultCallback_6_4< del, void, T, P1, P2, P3, P4, P5, P6, A1, A2, A3, A4 ></a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="a03825.html#aca50c00c6ce055ad124175ee2c822132">MemberSignature</a> typedef</td><td class="entry"><a class="el" href="a03825.html">_ConstTessMemberResultCallback_6_4< del, void, T, P1, P2, P3, P4, P5, P6, A1, A2, A3, A4 ></a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="a03825.html#a3b021faec9819eff8deac8c6020edbd6">Run</a>(A1 a1, A2 a2, A3 a3, A4 a4)</td><td class="entry"><a class="el" href="a03825.html">_ConstTessMemberResultCallback_6_4< del, void, T, P1, P2, P3, P4, P5, P6, A1, A2, A3, A4 ></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="a03165.html#ad0a1f72825ee0e22fc8c28f02e924321">~TessCallback4</a>()</td><td class="entry"><a class="el" href="a03165.html">TessCallback4< A1, A2, A3, A4 ></a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
</table></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated on Sat May 20 2017 22:15:26 for tesseract by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
</ul>
</div>
</body>
</html>
| stweil/tesseract-ocr.github.io | 4.00.00dev/a03822.html | HTML | apache-2.0 | 5,613 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="pl">
<head>
<!-- Generated by javadoc (1.8.0_60) on Wed Mar 30 11:39:23 CEST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class play.libs.MimeTypes (Play! API)</title>
<meta name="date" content="2016-03-30">
<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 play.libs.MimeTypes (Play! API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../play/libs/MimeTypes.html" title="class in play.libs">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?play/libs/class-use/MimeTypes.html" target="_top">Frames</a></li>
<li><a href="MimeTypes.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 play.libs.MimeTypes" class="title">Uses of Class<br>play.libs.MimeTypes</h2>
</div>
<div class="classUseContainer">No usage of play.libs.MimeTypes</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="../../../play/libs/MimeTypes.html" title="class in play.libs">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?play/libs/class-use/MimeTypes.html" target="_top">Frames</a></li>
<li><a href="MimeTypes.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><a href="http://guillaume.bort.fr">Guillaume Bort</a> & <a href="http://www.zenexity.fr">zenexity</a> - Distributed under <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache 2 licence</a>, without any warrantly</small></p>
</body>
</html>
| play1-maven-plugin/play1-maven-plugin.github.io | external-apidocs/com/google/code/maven-play-plugin/org/playframework/play/1.4.2/play/libs/class-use/MimeTypes.html | HTML | apache-2.0 | 4,434 |
<!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_151) on Sat Mar 16 04:11:51 MST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RemoteConnectorConsumer (BOM: * : All 2.3.1.Final-SNAPSHOT API)</title>
<meta name="date" content="2019-03-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="RemoteConnectorConsumer (BOM: * : All 2.3.1.Final-SNAPSHOT API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6,"i1":18};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/RemoteConnectorConsumer.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.3.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnector.html" title="class in org.wildfly.swarm.config.messaging.activemq"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorSupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html" target="_top">Frames</a></li>
<li><a href="RemoteConnectorConsumer.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">org.wildfly.swarm.config.messaging.activemq</div>
<h2 title="Interface RemoteConnectorConsumer" class="title">Interface RemoteConnectorConsumer<T extends <a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnector.html" title="class in org.wildfly.swarm.config.messaging.activemq">RemoteConnector</a><T>></h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Functional Interface:</dt>
<dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd>
</dl>
<hr>
<br>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a>
public interface <span class="typeNameLabel">RemoteConnectorConsumer<T extends <a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnector.html" title="class in org.wildfly.swarm.config.messaging.activemq">RemoteConnector</a><T>></span></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html#accept-T-">accept</a></span>(<a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html" title="type parameter in RemoteConnectorConsumer">T</a> value)</code>
<div class="block">Configure a pre-constructed instance of RemoteConnector resource</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>default <a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq">RemoteConnectorConsumer</a><<a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html" title="type parameter in RemoteConnectorConsumer">T</a>></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html#andThen-org.wildfly.swarm.config.messaging.activemq.RemoteConnectorConsumer-">andThen</a></span>(<a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq">RemoteConnectorConsumer</a><<a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html" title="type parameter in RemoteConnectorConsumer">T</a>> after)</code> </td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="accept-org.wildfly.swarm.config.messaging.activemq.RemoteConnector-">
<!-- -->
</a><a name="accept-T-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>accept</h4>
<pre>void accept(<a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html" title="type parameter in RemoteConnectorConsumer">T</a> value)</pre>
<div class="block">Configure a pre-constructed instance of RemoteConnector resource</div>
</li>
</ul>
<a name="andThen-org.wildfly.swarm.config.messaging.activemq.RemoteConnectorConsumer-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>andThen</h4>
<pre>default <a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq">RemoteConnectorConsumer</a><<a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html" title="type parameter in RemoteConnectorConsumer">T</a>> andThen(<a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq">RemoteConnectorConsumer</a><<a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html" title="type parameter in RemoteConnectorConsumer">T</a>> after)</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/RemoteConnectorConsumer.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.3.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnector.html" title="class in org.wildfly.swarm.config.messaging.activemq"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/RemoteConnectorSupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html" target="_top">Frames</a></li>
<li><a href="RemoteConnectorConsumer.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 ======= -->
<p class="legalCopy"><small>Copyright © 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
| wildfly-swarm/wildfly-swarm-javadocs | 2.3.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/messaging/activemq/RemoteConnectorConsumer.html | HTML | apache-2.0 | 11,913 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>登录页面</title>
<link rel="stylesheet" href="/static/css/login.css" type="text/css" />
</head>
<body>
<div class="login" style="top:12%;">
<div class="mlogo"></div>
<form action="/web/login/" method="POST">
<div class="info" style="padding-top:60px;">
<div class="input_box">
<input name='username' value="" type="text" class="input1" placeholder="用户名"><span class=""></span>
</div>
<div class="input_box">
<input type="password" name="password" value="" class="input1" placeholder="密码">
</div>
<div class="input_box">
<input type="text" name='checkcode'/> <img onclick='ChangeCode();' id='imgCode' src='/web/checkcode/' title='点击更新' />
</div>
<label style='color:red;'> {{status}} </label>
<div class="input_box">
<input type="submit" name="submit" class="button1" value="登录">
<a class="fr" href="/web/forgetpwd/" target="_blank">忘记密码?</a>
<div style="float:right; margin-right: 10px;">
<i class="app"></i>
<a class="phone" target="_blank" href="/web/register/">用户注册</a>
</div>
<input type="hidden" name="refer" value="http://mbs.corp.273.cn/">
<div name="result" class="pull-left" style="margin-top: 10px; color: red;"></div>
</div>
</div>
</form>
</div>
<p>Copyright © 1998 - 2014 273.cn All Rights Reserved</p>
<!--
<form action="/web/login/" method="POST">
{% csrf_token %}
<p>用户名:<input name='username' /></p>
<p>密 码:<input name='password' type="password" /></p>
<p>验证码:<input type="text" name='checkcode'/> <img onclick='ChangeCode();' id='imgCode' src='/web/checkcode/' title='点击更新' /></p>
<input type="submit" value="提交" />
<label style='color:red;'> {{status}} </label>
</form>
-->
<script type="text/javascript">
function ChangeCode() {
var code = document.getElementById('imgCode');
code.src += '?';
}
</script>
</body>
</html> | zhangyage/Python-oldboy | day14/BBS/template/login.html | HTML | apache-2.0 | 2,238 |
{{temp}}
| saivarunr/zemoso-training | google_keep/app/views/index.scala.html | HTML | apache-2.0 | 9 |
<!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_112) on Thu Jul 06 10:53:54 MST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>HTTPInterfaceManagementInterfaceSupplier (Public javadocs 2017.7.0 API)</title>
<meta name="date" content="2017-07-06">
<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="HTTPInterfaceManagementInterfaceSupplier (Public javadocs 2017.7.0 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../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/HTTPInterfaceManagementInterfaceSupplier.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">WildFly Swarm API, 2017.7.0</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/wildfly/swarm/config/management/HTTPInterfaceManagementInterfaceConsumer.html" title="interface in org.wildfly.swarm.config.management"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../org/wildfly/swarm/config/management/LdapConnection.html" title="class in org.wildfly.swarm.config.management"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/config/management/HTTPInterfaceManagementInterfaceSupplier.html" target="_top">Frames</a></li>
<li><a href="HTTPInterfaceManagementInterfaceSupplier.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">org.wildfly.swarm.config.management</div>
<h2 title="Interface HTTPInterfaceManagementInterfaceSupplier" class="title">Interface HTTPInterfaceManagementInterfaceSupplier<T extends <a href="../../../../../org/wildfly/swarm/config/management/HTTPInterfaceManagementInterface.html" title="class in org.wildfly.swarm.config.management">HTTPInterfaceManagementInterface</a>></h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Functional Interface:</dt>
<dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd>
</dl>
<hr>
<br>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a>
public interface <span class="typeNameLabel">HTTPInterfaceManagementInterfaceSupplier<T extends <a href="../../../../../org/wildfly/swarm/config/management/HTTPInterfaceManagementInterface.html" title="class in org.wildfly.swarm.config.management">HTTPInterfaceManagementInterface</a>></span></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/wildfly/swarm/config/management/HTTPInterfaceManagementInterface.html" title="class in org.wildfly.swarm.config.management">HTTPInterfaceManagementInterface</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/management/HTTPInterfaceManagementInterfaceSupplier.html#get--">get</a></span>()</code>
<div class="block">Constructed instance of HTTPInterfaceManagementInterface resource</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="get--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>get</h4>
<pre><a href="../../../../../org/wildfly/swarm/config/management/HTTPInterfaceManagementInterface.html" title="class in org.wildfly.swarm.config.management">HTTPInterfaceManagementInterface</a> get()</pre>
<div class="block">Constructed instance of HTTPInterfaceManagementInterface resource</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The instance</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/HTTPInterfaceManagementInterfaceSupplier.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">WildFly Swarm API, 2017.7.0</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/wildfly/swarm/config/management/HTTPInterfaceManagementInterfaceConsumer.html" title="interface in org.wildfly.swarm.config.management"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../org/wildfly/swarm/config/management/LdapConnection.html" title="class in org.wildfly.swarm.config.management"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/config/management/HTTPInterfaceManagementInterfaceSupplier.html" target="_top">Frames</a></li>
<li><a href="HTTPInterfaceManagementInterfaceSupplier.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 ======= -->
<p class="legalCopy"><small>Copyright © 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
| wildfly-swarm/wildfly-swarm-javadocs | 2017.7.0/apidocs/org/wildfly/swarm/config/management/HTTPInterfaceManagementInterfaceSupplier.html | HTML | apache-2.0 | 9,784 |
<!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_151) on Sat Mar 16 04:11:58 MST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.wildfly.swarm.config.jgroups.Channel (BOM: * : All 2.3.1.Final-SNAPSHOT API)</title>
<meta name="date" content="2019-03-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.wildfly.swarm.config.jgroups.Channel (BOM: * : All 2.3.1.Final-SNAPSHOT API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Class</a></li>
<li class="navBarCell1Rev">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><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.3.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/jgroups/class-use/Channel.html" target="_top">Frames</a></li>
<li><a href="Channel.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.wildfly.swarm.config.jgroups.Channel" class="title">Uses of Class<br>org.wildfly.swarm.config.jgroups.Channel</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="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</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="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.wildfly.swarm.config.jgroups">org.wildfly.swarm.config.jgroups</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</a> in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</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="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> that return <a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</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="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</a></code></td>
<td class="colLast"><span class="typeNameLabel">JGroups.JGroupsResources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/JGroups.JGroupsResources.html#channel-java.lang.String-">channel</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> key)</code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> that return types with arguments of type <a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</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="https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</a>></code></td>
<td class="colLast"><span class="typeNameLabel">JGroups.JGroupsResources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/JGroups.JGroupsResources.html#channels--">channels</a></span>()</code>
<div class="block">Get the list of Channel resources</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</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="../../../../../../org/wildfly/swarm/config/JGroups.html" title="type parameter in JGroups">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">JGroups.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/JGroups.html#channel-org.wildfly.swarm.config.jgroups.Channel-">channel</a></span>(<a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</a> value)</code>
<div class="block">Add the Channel object to the list of subresources</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Method parameters in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with type arguments of type <a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</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="../../../../../../org/wildfly/swarm/config/JGroups.html" title="type parameter in JGroups">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">JGroups.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/JGroups.html#channels-java.util.List-">channels</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</a>> value)</code>
<div class="block">Add all Channel objects to this subresource</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.wildfly.swarm.config.jgroups">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</a> in <a href="../../../../../../org/wildfly/swarm/config/jgroups/package-summary.html">org.wildfly.swarm.config.jgroups</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="../../../../../../org/wildfly/swarm/config/jgroups/package-summary.html">org.wildfly.swarm.config.jgroups</a> with type parameters of type <a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</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="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</a><T extends <a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</a><T>></span></code>
<div class="block">A JGroups channel.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/jgroups/ChannelConsumer.html" title="interface in org.wildfly.swarm.config.jgroups">ChannelConsumer</a><T extends <a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</a><T>></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/jgroups/ChannelSupplier.html" title="interface in org.wildfly.swarm.config.jgroups">ChannelSupplier</a><T extends <a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</a>></span></code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/jgroups/package-summary.html">org.wildfly.swarm.config.jgroups</a> that return <a href="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</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="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Channel</a></code></td>
<td class="colLast"><span class="typeNameLabel">ChannelSupplier.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/jgroups/ChannelSupplier.html#get--">get</a></span>()</code>
<div class="block">Constructed instance of Channel resource</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="../../../../../../org/wildfly/swarm/config/jgroups/Channel.html" title="class in org.wildfly.swarm.config.jgroups">Class</a></li>
<li class="navBarCell1Rev">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><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.3.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/jgroups/class-use/Channel.html" target="_top">Frames</a></li>
<li><a href="Channel.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="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
| wildfly-swarm/wildfly-swarm-javadocs | 2.3.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/jgroups/class-use/Channel.html | HTML | apache-2.0 | 14,842 |
<h3>Using scoped beans as dependencies</h3>
<p>Scoped beans other then <strong>singleton</strong> and <strong>prototype</strong>
require an <strong>AOP proxy</strong>
</p>
<pre><code data-format="xml" data-trim><bean id="userPreferences" class="com.foo.UserPreferences"
scope="session">
<!-- instructs the container to proxy the surrounding bean -->
<aop:scoped-proxy/>
</bean>
<bean id="userService" class="com.foo.SimpleUserService">
<property name="userPreferences" ref="userPreferences"/>
</bean>
</code></pre>
<p>HTTP Session-scoped bean exposed as a proxy ensures one UserPreferences per Session</p>
<blockquote>
<a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/html/beans.html#beans-factory-scopes-other-injection">
Scoped beans as dependencies
</a>
</blockquote>
<aside class="notes">
</aside>
| ieugen/trainings | presentation/dependency-injection/slides/spring-ioc-scopes-mixing.html | HTML | apache-2.0 | 995 |
{% if site.project == "communote" %}
{% assign audience = "users, developers, admins" %}
{% assign sidebar = site.data.sidebar.entries %}
{% assign topnav = site.data.topnav.topnav %}
{% assign version = "all" %}
{% assign projectTags = site.data.tags.allowed-tags %}
{% assign projectFolder = "doc" %}
{% endif %}
{% if site.project == "doc_users" %}
{% assign audience = "users" %}
{% assign sidebar = site.data.sidebar.entries %}
{% assign topnav = site.data.topnav.topnav %}
{% assign version = "all" %}
{% assign projectTags = site.data.tags.allowed-tags %}
{% assign projectFolder = "doc" %}
{% endif %}
{% if site.project == "doc_developers" %}
{% assign audience = "developers" %}
{% assign sidebar = site.data.sidebar.entries %}
{% assign topnav = site.data.topnav.topnav %}
{% assign version = "all" %}
{% assign projectTags = site.data.doc.tags.allowed-tags %}
{% assign projectFolder = "doc" %}
{% endif %}
| Communote/communote.github.io | _includes/custom/conditions.html | HTML | apache-2.0 | 957 |
<!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.6.0_30) on Tue Mar 18 18:19:05 CET 2014 -->
<title>Uses of Package com.blockhaus2000.util.command</title>
<meta name="date" content="2014-03-18">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package com.blockhaus2000.util.command";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li 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/blockhaus2000/util/command/package-use.html" target="_top">FRAMES</a></li>
<li><a href="package-use.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="Uses of Package com.blockhaus2000.util.command" class="title">Uses of Package<br>com.blockhaus2000.util.command</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../com/blockhaus2000/util/command/package-summary.html">com.blockhaus2000.util.command</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.blockhaus2000.bukkit.util">com.blockhaus2000.bukkit.util</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.blockhaus2000.minecraft.util.command">com.blockhaus2000.minecraft.util.command</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.blockhaus2000.minecraft.util.command.event">com.blockhaus2000.minecraft.util.command.event</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.blockhaus2000.util.command">com.blockhaus2000.util.command</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.blockhaus2000.bukkit.util">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../com/blockhaus2000/util/command/package-summary.html">com.blockhaus2000.util.command</a> used by <a href="../../../../com/blockhaus2000/bukkit/util/package-summary.html">com.blockhaus2000.bukkit.util</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../com/blockhaus2000/util/command/class-use/CommandInfo.html#com.blockhaus2000.bukkit.util">CommandInfo</a>
<div class="block">This class contains the basic options of a command.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.blockhaus2000.minecraft.util.command">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../com/blockhaus2000/util/command/package-summary.html">com.blockhaus2000.util.command</a> used by <a href="../../../../com/blockhaus2000/minecraft/util/command/package-summary.html">com.blockhaus2000.minecraft.util.command</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../com/blockhaus2000/util/command/class-use/CommandInfo.html#com.blockhaus2000.minecraft.util.command">CommandInfo</a>
<div class="block">This class contains the basic options of a command.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.blockhaus2000.minecraft.util.command.event">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../com/blockhaus2000/util/command/package-summary.html">com.blockhaus2000.util.command</a> used by <a href="../../../../com/blockhaus2000/minecraft/util/command/event/package-summary.html">com.blockhaus2000.minecraft.util.command.event</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../com/blockhaus2000/util/command/class-use/CommandInfo.html#com.blockhaus2000.minecraft.util.command.event">CommandInfo</a>
<div class="block">This class contains the basic options of a command.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../com/blockhaus2000/util/command/class-use/RawCommandContext.html#com.blockhaus2000.minecraft.util.command.event">RawCommandContext</a>
<div class="block">An extended <a href="../../../../com/blockhaus2000/util/command/CommandInfo.html" title="class in com.blockhaus2000.util.command"><code>CommandInfo</code></a>.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.blockhaus2000.util.command">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../com/blockhaus2000/util/command/package-summary.html">com.blockhaus2000.util.command</a> used by <a href="../../../../com/blockhaus2000/util/command/package-summary.html">com.blockhaus2000.util.command</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../com/blockhaus2000/util/command/class-use/CommandContext.html#com.blockhaus2000.util.command">CommandContext</a>
<div class="block">An extended <a href="../../../../com/blockhaus2000/util/command/RawCommandContext.html" title="class in com.blockhaus2000.util.command"><code>RawCommandContext</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../com/blockhaus2000/util/command/class-use/CommandInfo.html#com.blockhaus2000.util.command">CommandInfo</a>
<div class="block">This class contains the basic options of a command.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../com/blockhaus2000/util/command/class-use/CommandSyntax.html#com.blockhaus2000.util.command">CommandSyntax</a>
<div class="block">The <a href="../../../../com/blockhaus2000/util/command/CommandSyntax.html" title="class in com.blockhaus2000.util.command"><code>CommandSyntax</code></a> for internal use of <a href="../../../../com/blockhaus2000/minecraft/util/command/Command.html#syntax()"><code>Command.syntax()</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../com/blockhaus2000/util/command/class-use/CommandSyntaxType.html#com.blockhaus2000.util.command">CommandSyntaxType</a>
<div class="block">This <a href="../../../../com/blockhaus2000/util/command/CommandSyntaxType.html" title="enum in com.blockhaus2000.util.command"><code>CommandSyntaxType</code></a> is for internal usage of
<a href="../../../../com/blockhaus2000/minecraft/util/command/Command.html#syntax()"><code>Command.syntax()</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../com/blockhaus2000/util/command/class-use/RawCommandContext.html#com.blockhaus2000.util.command">RawCommandContext</a>
<div class="block">An extended <a href="../../../../com/blockhaus2000/util/command/CommandInfo.html" title="class in com.blockhaus2000.util.command"><code>CommandInfo</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../com/blockhaus2000/util/command/class-use/SingleCommand.html#com.blockhaus2000.util.command">SingleCommand</a>
<div class="block">This interface represents a help interface for implementing a usage-proof
command method.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Use</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-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/blockhaus2000/util/command/package-use.html" target="_top">FRAMES</a></li>
<li><a href="package-use.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>
| thexbasic/InternalPluginManager | src/main/javadoc/com/blockhaus2000/util/command/package-use.html | HTML | apache-2.0 | 10,965 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<title>UncalcedRecord (POI API Documentation)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="UncalcedRecord (POI API Documentation)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/UncalcedRecord.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/poi/hssf/record/TopMarginRecord.html" title="class in org.apache.poi.hssf.record"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../../org/apache/poi/hssf/record/UnknownRecord.html" title="class in org.apache.poi.hssf.record"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/poi/hssf/record/UncalcedRecord.html" target="_top">FRAMES</a></li>
<li><a href="UncalcedRecord.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="#method_summary">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><a href="#method_detail">METHOD</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<p class="subTitle">org.apache.poi.hssf.record</p>
<h2 title="Class UncalcedRecord" class="title">Class UncalcedRecord</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../../../../org/apache/poi/hssf/record/RecordBase.html" title="class in org.apache.poi.hssf.record">org.apache.poi.hssf.record.RecordBase</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../../org/apache/poi/hssf/record/Record.html" title="class in org.apache.poi.hssf.record">org.apache.poi.hssf.record.Record</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../../org/apache/poi/hssf/record/StandardRecord.html" title="class in org.apache.poi.hssf.record">org.apache.poi.hssf.record.StandardRecord</a></li>
<li>
<ul class="inheritance">
<li>org.apache.poi.hssf.record.UncalcedRecord</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public final class <strong>UncalcedRecord</strong>
extends <a href="../../../../../org/apache/poi/hssf/record/StandardRecord.html" title="class in org.apache.poi.hssf.record">StandardRecord</a></pre>
<div class="block">Title: Uncalced Record
<P>
If this record occurs in the Worksheet Substream, it indicates that the formulas have not
been recalculated before the document was saved.</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd>Olivier Leprince</dd></dl>
</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="overviewSummary" 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 short</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/record/UncalcedRecord.html#sid">sid</a></strong></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="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="../../../../../org/apache/poi/hssf/record/UncalcedRecord.html#UncalcedRecord()">UncalcedRecord</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><strong><a href="../../../../../org/apache/poi/hssf/record/UncalcedRecord.html#UncalcedRecord(org.apache.poi.hssf.record.RecordInputStream)">UncalcedRecord</a></strong>(<a href="../../../../../org/apache/poi/hssf/record/RecordInputStream.html" title="class in org.apache.poi.hssf.record">RecordInputStream</a> in)</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>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/record/UncalcedRecord.html#getDataSize()">getDataSize</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>short</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/record/UncalcedRecord.html#getSid()">getSid</a></strong>()</code>
<div class="block">return the non static version of the id for this record.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/record/UncalcedRecord.html#getStaticRecordSize()">getStaticRecordSize</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/record/UncalcedRecord.html#serialize(org.apache.poi.util.LittleEndianOutput)">serialize</a></strong>(<a href="../../../../../org/apache/poi/util/LittleEndianOutput.html" title="interface in org.apache.poi.util">LittleEndianOutput</a> out)</code>
<div class="block">Write the data content of this BIFF record.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/record/UncalcedRecord.html#toString()">toString</a></strong>()</code>
<div class="block">get a string representation of the record (for biffview/debugging)</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.apache.poi.hssf.record.StandardRecord">
<!-- -->
</a>
<h3>Methods inherited from class org.apache.poi.hssf.record.<a href="../../../../../org/apache/poi/hssf/record/StandardRecord.html" title="class in org.apache.poi.hssf.record">StandardRecord</a></h3>
<code><a href="../../../../../org/apache/poi/hssf/record/StandardRecord.html#getRecordSize()">getRecordSize</a>, <a href="../../../../../org/apache/poi/hssf/record/StandardRecord.html#serialize(int, byte[])">serialize</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.apache.poi.hssf.record.Record">
<!-- -->
</a>
<h3>Methods inherited from class org.apache.poi.hssf.record.<a href="../../../../../org/apache/poi/hssf/record/Record.html" title="class in org.apache.poi.hssf.record">Record</a></h3>
<code><a href="../../../../../org/apache/poi/hssf/record/Record.html#clone()">clone</a>, <a href="../../../../../org/apache/poi/hssf/record/Record.html#cloneViaReserialise()">cloneViaReserialise</a>, <a href="../../../../../org/apache/poi/hssf/record/Record.html#serialize()">serialize</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>equals, finalize, getClass, hashCode, notify, notifyAll, 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="sid">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>sid</h4>
<pre>public static final short sid</pre>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.poi.hssf.record.UncalcedRecord.sid">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="UncalcedRecord()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>UncalcedRecord</h4>
<pre>public UncalcedRecord()</pre>
</li>
</ul>
<a name="UncalcedRecord(org.apache.poi.hssf.record.RecordInputStream)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>UncalcedRecord</h4>
<pre>public UncalcedRecord(<a href="../../../../../org/apache/poi/hssf/record/RecordInputStream.html" title="class in org.apache.poi.hssf.record">RecordInputStream</a> in)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getSid()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSid</h4>
<pre>public short getSid()</pre>
<div class="block"><strong>Description copied from class: <code><a href="../../../../../org/apache/poi/hssf/record/Record.html#getSid()">Record</a></code></strong></div>
<div class="block">return the non static version of the id for this record.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../org/apache/poi/hssf/record/Record.html#getSid()">getSid</a></code> in class <code><a href="../../../../../org/apache/poi/hssf/record/Record.html" title="class in org.apache.poi.hssf.record">Record</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>he id for this record</dd></dl>
</li>
</ul>
<a name="toString()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toString</h4>
<pre>public java.lang.String toString()</pre>
<div class="block"><strong>Description copied from class: <code><a href="../../../../../org/apache/poi/hssf/record/Record.html#toString()">Record</a></code></strong></div>
<div class="block">get a string representation of the record (for biffview/debugging)</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code><a href="../../../../../org/apache/poi/hssf/record/Record.html#toString()">toString</a></code> in class <code><a href="../../../../../org/apache/poi/hssf/record/Record.html" title="class in org.apache.poi.hssf.record">Record</a></code></dd>
</dl>
</li>
</ul>
<a name="serialize(org.apache.poi.util.LittleEndianOutput)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>serialize</h4>
<pre>public void serialize(<a href="../../../../../org/apache/poi/util/LittleEndianOutput.html" title="interface in org.apache.poi.util">LittleEndianOutput</a> out)</pre>
<div class="block"><strong>Description copied from class: <code><a href="../../../../../org/apache/poi/hssf/record/StandardRecord.html#serialize(org.apache.poi.util.LittleEndianOutput)">StandardRecord</a></code></strong></div>
<div class="block">Write the data content of this BIFF record. The 'ushort sid' and 'ushort size' header fields
have already been written by the superclass.
<p>
The number of bytes written must equal the record size reported by
<a href="../../../../../org/apache/poi/hssf/record/RecordBase.html#getRecordSize()"><code>RecordBase.getRecordSize()</code></a>} minus four
( record header consisting of a 'ushort sid' and 'ushort reclength' has already been written
by their superclass).</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../org/apache/poi/hssf/record/StandardRecord.html#serialize(org.apache.poi.util.LittleEndianOutput)">serialize</a></code> in class <code><a href="../../../../../org/apache/poi/hssf/record/StandardRecord.html" title="class in org.apache.poi.hssf.record">StandardRecord</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>out</code> - the output object</dd></dl>
</li>
</ul>
<a name="getDataSize()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDataSize</h4>
<pre>protected int getDataSize()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../org/apache/poi/hssf/record/StandardRecord.html#getDataSize()">getDataSize</a></code> in class <code><a href="../../../../../org/apache/poi/hssf/record/StandardRecord.html" title="class in org.apache.poi.hssf.record">StandardRecord</a></code></dd>
</dl>
</li>
</ul>
<a name="getStaticRecordSize()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getStaticRecordSize</h4>
<pre>public static int getStaticRecordSize()</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/UncalcedRecord.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/poi/hssf/record/TopMarginRecord.html" title="class in org.apache.poi.hssf.record"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../../org/apache/poi/hssf/record/UnknownRecord.html" title="class in org.apache.poi.hssf.record"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/poi/hssf/record/UncalcedRecord.html" target="_top">FRAMES</a></li>
<li><a href="UncalcedRecord.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="#method_summary">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><a href="#method_detail">METHOD</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright 2016 The Apache Software Foundation or
its licensors, as applicable.</i>
</small></p>
</body>
</html>
| Aarhus-BSS/Aarhus-Research-Rebuilt | lib/poi-3.16-beta1/docs/apidocs/org/apache/poi/hssf/record/UncalcedRecord.html | HTML | apache-2.0 | 17,746 |
%{
if (_arg.view) { }%<span class="label label-info form-control-static" ng-if='v("${_arg.name}",item)' docflow-enum="%{
out.print '{'
_arg.enumValues.eachWithIndex { value, i ->
out.print "${value.name}:{title:'${messages.get(value.title).replace('\"', '\\\"').replace('\'', '\\\'').escape()}'"
if (value.color)
out.print ",color:'${value.color}'"
out.print "}"
if (i + 1 < _arg.enumValues.size())
out.print ','
}
out.print '}'
}%" ng-model='${_arg.view}'></span>%{ }
if (_arg.update) { }%<table ng-if='u("${_arg.name}",item)' class='df-table-input-element'>
<tr>
<td style='text-align:left;'>
%{ if (_arg.multiple) {
out.print "<select ui-select2 multiple ng-model='${_arg.update}' docflow-fix-select2 class='input-medium'>"
} else {
out.print "<select ui-select2 ng-model='${_arg.update}' name='${_arg.name}' class='input-medium'"
}
if (_arg.required) {out.print " required"}
out.print "><option value=''></option>"
_arg.enumValues.each { value -> out.print"<option value='${value.name}'>${messages.get(value.title)}</option>" }
}%
</select>
</td>
<td>
<i ng-show='u("${_arg.name}", item)&&form.${_arg.name}.$invalid'
class='fa fa-warning'
docflow-widget-popover="{trigger:'hover', placement:'right'}">
<div class='popover'>
<div class='arrow'></div>
<div class='popover-content'>
<label ng-show='u("${_arg.name}", item)&&form.${_arg.name}.$error.required'>
${messages.get("validation.required")}
</label>
</div>
</div>
</i>
<i ng-hide='u("${_arg.name}", item)&&form.${_arg.name}.$invalid' class='fa fa-warning opacity0'></i>
</td>
</tr>
</table>%{ } }% | delightsoft/DSCommonTheme-Bootstrap3 | app/views/tags/ctrl/enum.html | HTML | apache-2.0 | 2,027 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>nablarch.util.SimpleDateFormat - Nablarch JavaScript Widget</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
<link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
<link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
<link rel="shortcut icon" type="image/png" href="../assets/favicon.png">
<script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
</head>
<body class="yui3-skin-sam">
<div id="doc">
<div id="hd" class="yui3-g header">
<div class="yui3-u-3-4">
<h1><img src="../assets/css/logo.png" title="Nablarch JavaScript Widget"></h1>
</div>
<div class="yui3-u-1-4 version">
<em>API Docs for: 1.0.0</em>
</div>
</div>
<div id="bd" class="yui3-g">
<div class="yui3-u-1-4">
<div id="docs-sidebar" class="sidebar apidocs">
<div id="api-list">
<h2 class="off-left">APIs</h2>
<div id="api-tabview" class="tabview">
<ul class="tabs">
<li><a href="#api-classes">Classes</a></li>
<li><a href="#api-modules">Modules</a></li>
</ul>
<div id="api-tabview-filter">
<input type="search" id="api-filter" placeholder="Type to filter APIs">
</div>
<div id="api-tabview-panel">
<ul id="api-classes" class="apis classes">
<li><a href="../classes/jQuery.html">jQuery</a></li>
<li><a href="../classes/jsp.html">jsp</a></li>
<li><a href="../classes/jsp.taglib.box.html">jsp.taglib.box</a></li>
<li><a href="../classes/jsp.taglib.button.html">jsp.taglib.button</a></li>
<li><a href="../classes/jsp.taglib.column.html">jsp.taglib.column</a></li>
<li><a href="../classes/jsp.taglib.device.html">jsp.taglib.device</a></li>
<li><a href="../classes/jsp.taglib.function.html">jsp.taglib.function</a></li>
<li><a href="../classes/jsp.taglib.html.html">jsp.taglib.html</a></li>
<li><a href="../classes/jsp.taglib.jsp.html">jsp.taglib.jsp</a></li>
<li><a href="../classes/jsp.taglib.jstl.html">jsp.taglib.jstl</a></li>
<li><a href="../classes/jsp.taglib.layout.html">jsp.taglib.layout</a></li>
<li><a href="../classes/jsp.taglib.listsearchresult.html">jsp.taglib.listsearchresult</a></li>
<li><a href="../classes/jsp.taglib.nablarch.html">jsp.taglib.nablarch</a></li>
<li><a href="../classes/jsp.taglib.tab.html">jsp.taglib.tab</a></li>
<li><a href="../classes/jsp.taglib.table.html">jsp.taglib.table</a></li>
<li><a href="../classes/jsp.taglib.template.html">jsp.taglib.template</a></li>
<li><a href="../classes/nablarch.ui.html">nablarch.ui</a></li>
<li><a href="../classes/nablarch.ui.AutoSpan.html">nablarch.ui.AutoSpan</a></li>
<li><a href="../classes/nablarch.ui.AutoSum.html">nablarch.ui.AutoSum</a></li>
<li><a href="../classes/nablarch.ui.Collapsible.html">nablarch.ui.Collapsible</a></li>
<li><a href="../classes/nablarch.ui.ContextMenu.html">nablarch.ui.ContextMenu</a></li>
<li><a href="../classes/nablarch.ui.DatePicker.html">nablarch.ui.DatePicker</a></li>
<li><a href="../classes/nablarch.ui.event.AjaxAction.html">nablarch.ui.event.AjaxAction</a></li>
<li><a href="../classes/nablarch.ui.event.Listener.html">nablarch.ui.event.Listener</a></li>
<li><a href="../classes/nablarch.ui.event.ShowDialog.html">nablarch.ui.event.ShowDialog</a></li>
<li><a href="../classes/nablarch.ui.event.SubWindowListener.html">nablarch.ui.event.SubWindowListener</a></li>
<li><a href="../classes/nablarch.ui.event.ToggleAction.html">nablarch.ui.event.ToggleAction</a></li>
<li><a href="../classes/nablarch.ui.event.WindowClose.html">nablarch.ui.event.WindowClose</a></li>
<li><a href="../classes/nablarch.ui.event.WriteAction.html">nablarch.ui.event.WriteAction</a></li>
<li><a href="../classes/nablarch.ui.LightBox.html">nablarch.ui.LightBox</a></li>
<li><a href="../classes/nablarch.ui.ListBuilder.html">nablarch.ui.ListBuilder</a></li>
<li><a href="../classes/nablarch.ui.selector.html">nablarch.ui.selector</a></li>
<li><a href="../classes/nablarch.ui.SlideMenu.html">nablarch.ui.SlideMenu</a></li>
<li><a href="../classes/nablarch.ui.Tab.html">nablarch.ui.Tab</a></li>
<li><a href="../classes/nablarch.ui.TabindexOrder.html">nablarch.ui.TabindexOrder</a></li>
<li><a href="../classes/nablarch.ui.TabLink.html">nablarch.ui.TabLink</a></li>
<li><a href="../classes/nablarch.ui.ToggleCheckbox.html">nablarch.ui.ToggleCheckbox</a></li>
<li><a href="../classes/nablarch.ui.Tooltip.html">nablarch.ui.Tooltip</a></li>
<li><a href="../classes/nablarch.ui.TreeList.html">nablarch.ui.TreeList</a></li>
<li><a href="../classes/nablarch.ui.TreeMenu.html">nablarch.ui.TreeMenu</a></li>
<li><a href="../classes/nablarch.ui.Widget.html">nablarch.ui.Widget</a></li>
<li><a href="../classes/nablarch.util.BigDecimal.html">nablarch.util.BigDecimal</a></li>
<li><a href="../classes/nablarch.util.BigDecimal.NaN.html">nablarch.util.BigDecimal.NaN</a></li>
<li><a href="../classes/nablarch.util.Consumer.html">nablarch.util.Consumer</a></li>
<li><a href="../classes/nablarch.util.DateUtil.html">nablarch.util.DateUtil</a></li>
<li><a href="../classes/nablarch.util.SimpleDateFormat.html">nablarch.util.SimpleDateFormat</a></li>
</ul>
<ul id="api-modules" class="apis modules">
<li><a href="../modules/devtool.html">devtool</a></li>
<li><a href="../modules/jsp.html">jsp</a></li>
<li><a href="../modules/jsp.taglib.html">jsp.taglib</a></li>
<li><a href="../modules/nablarch.ui.html">nablarch.ui</a></li>
<li><a href="../modules/nablarch.ui.device.html">nablarch.ui.device</a></li>
<li><a href="../modules/nablarch.util.html">nablarch.util</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="yui3-u-3-4">
<div id="api-options">
Show:
<label for="api-show-inherited">
<input type="checkbox" id="api-show-inherited" checked>
Inherited
</label>
<label for="api-show-protected">
<input type="checkbox" id="api-show-protected">
Protected
</label>
<label for="api-show-private">
<input type="checkbox" id="api-show-private">
Private
</label>
<label for="api-show-deprecated">
<input type="checkbox" id="api-show-deprecated">
Deprecated
</label>
</div>
<div class="apidocs">
<div id="docs-main">
<div class="content">
<h1>nablarch.util.SimpleDateFormat Class</h1>
<div class="box meta">
<div class="foundat">
Defined in: <a href="../files/nablarch-js-util-date_ui_public_js_nablarch_util_SimpleDateFormat.js.html#l10"><code>nablarch-js-util-date\ui_public\js\nablarch\util\SimpleDateFormat.js:10</code></a>
</div>
Module: <a href="../modules/nablarch.util.html">nablarch.util</a>
<p>Available since 1.2</p>
</div>
<div class="box intro">
<h2 id="java-sdk-simpledateformat-">Java SDK SimpleDateFormat クラス互換ライブラリ</h2>
<p>本クラスではSimpleDateFormatの仕様のうち、日付に関する処理のサブセットを実装する。
サポートするフォーマット書式は以下の通り。</p>
<pre class="code prettyprint"><code>yyyy: 西暦年(4桁)
yy : 西暦年(下2桁) * パース時は現在を起点として過去80年~20年後に収まる日付になる。
M : 月 (1~2桁)
MM : 月 (2桁)
MMM : 月 (テキスト) * フォーマット時のみ
d : 日 (1~2桁)
dd : 日 (2桁)
EEEE: 曜日 (テキスト) * フォーマット時のみ、ロケール対応
E : 曜日略号 (テキスト) * フォーマット時のみ、ロケール対応
'' : シングルクォート
[a-zA-Z']以外の文字 : リテラル
'によるクォート文字列 : リテラル</code></pre>
</div>
<div id="classdocs" class="tabview">
<ul class="api-class-tabs">
<li class="api-class-tab index"><a href="#index">Index</a></li>
<li class="api-class-tab methods"><a href="#methods">Methods</a></li>
<li class="api-class-tab properties"><a href="#properties">Properties</a></li>
</ul>
<div>
<div id="index" class="api-class-tabpanel index">
<h2 class="off-left">Item Index</h2>
<div class="index-section methods">
<h3>Methods</h3>
<ul class="index-list methods">
<li class="index-item method">
<a href="#method_eval">eval</a>
</li>
<li class="index-item method">
<a href="#method_format">format</a>
</li>
<li class="index-item method">
<a href="#method_parse">parse</a>
</li>
<li class="index-item method">
<a href="#method_SimpleDateFormat">SimpleDateFormat</a>
</li>
</ul>
</div>
<div class="index-section properties">
<h3>Properties</h3>
<ul class="index-list properties">
<li class="index-item property">
<a href="#property_pattern">pattern</a>
</li>
</ul>
</div>
</div>
<div id="methods" class="api-class-tabpanel">
<h2 class="off-left">Methods</h2>
<div id="method_eval" class="method item">
<h3 class="name"><code>eval</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>action</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>
Defined in
<a href="../files/nablarch-js-util-date_ui_public_js_nablarch_util_SimpleDateFormat.js.html#l65"><code>nablarch-js-util-date\ui_public\js\nablarch\util\SimpleDateFormat.js:65</code></a>
</p>
</div>
<div class="description">
<p>フォーマット文字列をパースし、対応するアクションを実行する。</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">action</code>
<span class="type">Object</span>
<div class="param-description">
<p>実行するアクション</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_format" class="method item">
<h3 class="name"><code>format</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>date</code>
</li>
<li class="arg">
<code>locale</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">String</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/nablarch-js-util-date_ui_public_js_nablarch_util_SimpleDateFormat.js.html#l48"><code>nablarch-js-util-date\ui_public\js\nablarch\util\SimpleDateFormat.js:48</code></a>
</p>
</div>
<div class="description">
<p>日付オブジェクトを文字列表現に変換する。</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">date</code>
<span class="type">String</span>
<div class="param-description">
<p>日付オブジェクト</p>
</div>
</li>
<li class="param">
<code class="param-name">locale</code>
<span class="type">String</span>
<div class="param-description">
<p>= 'ja' ロケール</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">String</span>:
<p>日付オブジェクトの文字列表現</p>
</div>
</div>
</div>
<div id="method_parse" class="method item">
<h3 class="name"><code>parse</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>dateStr</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">Date</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/nablarch-js-util-date_ui_public_js_nablarch_util_SimpleDateFormat.js.html#l56"><code>nablarch-js-util-date\ui_public\js\nablarch\util\SimpleDateFormat.js:56</code></a>
</p>
</div>
<div class="description">
<p>日付文字列を<code>Date</code>オブジェクトに変換する。
変換できない場合nullを返却する。</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">dateStr</code>
<span class="type">String</span>
<div class="param-description">
<p>日付文字列</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">Date</span>:
<p>日付オブジェクト</p>
</div>
</div>
</div>
<div id="method_SimpleDateFormat" class="method item">
<h3 class="name"><code>SimpleDateFormat</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>pattern</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">SimpleDateFormat</span>
</span>
<div class="meta">
<p>
Defined in
<a href="../files/nablarch-js-util-date_ui_public_js_nablarch_util_SimpleDateFormat.js.html#l34"><code>nablarch-js-util-date\ui_public\js\nablarch\util\SimpleDateFormat.js:34</code></a>
</p>
</div>
<div class="description">
<p>コンストラクタ</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">pattern</code>
<span class="type">String</span>
<div class="param-description">
<p>フォーマット文字列</p>
</div>
</li>
</ul>
</div>
<div class="returns">
<h4>Returns:</h4>
<div class="returns-description">
<span class="type">SimpleDateFormat</span>:
<p>インスタンス</p>
</div>
</div>
</div>
</div>
<div id="properties" class="api-class-tabpanel">
<h2 class="off-left">Properties</h2>
<div id="property_pattern" class="property item">
<h3 class="name"><code>pattern</code></h3>
<span class="type">String</span>
<div class="meta">
<p>
Defined in
<a href="../files/nablarch-js-util-date_ui_public_js_nablarch_util_SimpleDateFormat.js.html#l42"><code>nablarch-js-util-date\ui_public\js\nablarch\util\SimpleDateFormat.js:42</code></a>
</p>
</div>
<div class="description">
<p>フォーマット文字列</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="../assets/vendor/prettify/prettify-min.js"></script>
<script>prettyPrint();</script>
<script src="../assets/js/yui-prettify.js"></script>
<script src="../assets/../api.js"></script>
<script src="../assets/js/api-filter.js"></script>
<script src="../assets/js/api-list.js"></script>
<script src="../assets/js/api-search.js"></script>
<script src="../assets/js/apidocs.js"></script>
</body>
</html>
| nablarch/nablarch-document | _static/ui_dev/yuidoc/classes/nablarch.util.SimpleDateFormat.html | HTML | apache-2.0 | 22,133 |
<!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_151) on Wed Jun 10 10:20:18 MST 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildfly.swarm.config.io.worker.OutboundBindAddressSupplier (BOM: * : All 2.6.1.Final-SNAPSHOT API)</title>
<meta name="date" content="2020-06-10">
<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 org.wildfly.swarm.config.io.worker.OutboundBindAddressSupplier (BOM: * : All 2.6.1.Final-SNAPSHOT API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/wildfly/swarm/config/io/worker/OutboundBindAddressSupplier.html" title="interface in org.wildfly.swarm.config.io.worker">Class</a></li>
<li class="navBarCell1Rev">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><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.6.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/wildfly/swarm/config/io/worker/class-use/OutboundBindAddressSupplier.html" target="_top">Frames</a></li>
<li><a href="OutboundBindAddressSupplier.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Interface org.wildfly.swarm.config.io.worker.OutboundBindAddressSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.io.worker.OutboundBindAddressSupplier</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="../../../../../../../org/wildfly/swarm/config/io/worker/OutboundBindAddressSupplier.html" title="interface in org.wildfly.swarm.config.io.worker">OutboundBindAddressSupplier</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="#org.wildfly.swarm.config.io">org.wildfly.swarm.config.io</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config.io">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/io/worker/OutboundBindAddressSupplier.html" title="interface in org.wildfly.swarm.config.io.worker">OutboundBindAddressSupplier</a> in <a href="../../../../../../../org/wildfly/swarm/config/io/package-summary.html">org.wildfly.swarm.config.io</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="../../../../../../../org/wildfly/swarm/config/io/package-summary.html">org.wildfly.swarm.config.io</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/io/worker/OutboundBindAddressSupplier.html" title="interface in org.wildfly.swarm.config.io.worker">OutboundBindAddressSupplier</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="../../../../../../../org/wildfly/swarm/config/io/Worker.html" title="type parameter in Worker">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">Worker.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/io/Worker.html#outboundBindAddress-org.wildfly.swarm.config.io.worker.OutboundBindAddressSupplier-">outboundBindAddress</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/io/worker/OutboundBindAddressSupplier.html" title="interface in org.wildfly.swarm.config.io.worker">OutboundBindAddressSupplier</a> supplier)</code>
<div class="block">Install a supplied OutboundBindAddress object to the list of subresources</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="../../../../../../../org/wildfly/swarm/config/io/worker/OutboundBindAddressSupplier.html" title="interface in org.wildfly.swarm.config.io.worker">Class</a></li>
<li class="navBarCell1Rev">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><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.6.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/wildfly/swarm/config/io/worker/class-use/OutboundBindAddressSupplier.html" target="_top">Frames</a></li>
<li><a href="OutboundBindAddressSupplier.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 © 2020 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
| wildfly-swarm/wildfly-swarm-javadocs | 2.6.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/io/worker/class-use/OutboundBindAddressSupplier.html | HTML | apache-2.0 | 7,812 |
<!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_151) on Wed Jan 16 10:54:21 MST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.wildfly.swarm.config.messaging.activemq (BOM: * : All 2.3.0.Final-SNAPSHOT API)</title>
<meta name="date" content="2019-01-16">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../../../org/wildfly/swarm/config/messaging/activemq/package-summary.html" target="classFrame">org.wildfly.swarm.config.messaging.activemq</a></h1>
<div class="indexContainer">
<h2 title="Interfaces">Interfaces</h2>
<ul title="Interfaces">
<li><a href="ConnectionFactoryConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">ConnectionFactoryConsumer</span></a></li>
<li><a href="ConnectionFactorySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">ConnectionFactorySupplier</span></a></li>
<li><a href="ConnectorConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">ConnectorConsumer</span></a></li>
<li><a href="ConnectorSupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">ConnectorSupplier</span></a></li>
<li><a href="DiscoveryGroupConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">DiscoveryGroupConsumer</span></a></li>
<li><a href="DiscoveryGroupSupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">DiscoveryGroupSupplier</span></a></li>
<li><a href="ExternalJMSQueueConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">ExternalJMSQueueConsumer</span></a></li>
<li><a href="ExternalJMSQueueSupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">ExternalJMSQueueSupplier</span></a></li>
<li><a href="ExternalJMSTopicConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">ExternalJMSTopicConsumer</span></a></li>
<li><a href="ExternalJMSTopicSupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">ExternalJMSTopicSupplier</span></a></li>
<li><a href="HTTPConnectorConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">HTTPConnectorConsumer</span></a></li>
<li><a href="HTTPConnectorSupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">HTTPConnectorSupplier</span></a></li>
<li><a href="InVMConnectorConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">InVMConnectorConsumer</span></a></li>
<li><a href="InVMConnectorSupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">InVMConnectorSupplier</span></a></li>
<li><a href="JMSBridgeConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">JMSBridgeConsumer</span></a></li>
<li><a href="JMSBridgeSupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">JMSBridgeSupplier</span></a></li>
<li><a href="PooledConnectionFactoryConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">PooledConnectionFactoryConsumer</span></a></li>
<li><a href="PooledConnectionFactorySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">PooledConnectionFactorySupplier</span></a></li>
<li><a href="RemoteConnectorConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">RemoteConnectorConsumer</span></a></li>
<li><a href="RemoteConnectorSupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">RemoteConnectorSupplier</span></a></li>
<li><a href="ServerConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">ServerConsumer</span></a></li>
<li><a href="ServerSupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq" target="classFrame"><span class="interfaceName">ServerSupplier</span></a></li>
</ul>
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="ConnectionFactory.html" title="class in org.wildfly.swarm.config.messaging.activemq" target="classFrame">ConnectionFactory</a></li>
<li><a href="Connector.html" title="class in org.wildfly.swarm.config.messaging.activemq" target="classFrame">Connector</a></li>
<li><a href="DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq" target="classFrame">DiscoveryGroup</a></li>
<li><a href="ExternalJMSQueue.html" title="class in org.wildfly.swarm.config.messaging.activemq" target="classFrame">ExternalJMSQueue</a></li>
<li><a href="ExternalJMSTopic.html" title="class in org.wildfly.swarm.config.messaging.activemq" target="classFrame">ExternalJMSTopic</a></li>
<li><a href="HTTPConnector.html" title="class in org.wildfly.swarm.config.messaging.activemq" target="classFrame">HTTPConnector</a></li>
<li><a href="InVMConnector.html" title="class in org.wildfly.swarm.config.messaging.activemq" target="classFrame">InVMConnector</a></li>
<li><a href="JMSBridge.html" title="class in org.wildfly.swarm.config.messaging.activemq" target="classFrame">JMSBridge</a></li>
<li><a href="PooledConnectionFactory.html" title="class in org.wildfly.swarm.config.messaging.activemq" target="classFrame">PooledConnectionFactory</a></li>
<li><a href="RemoteConnector.html" title="class in org.wildfly.swarm.config.messaging.activemq" target="classFrame">RemoteConnector</a></li>
<li><a href="Server.html" title="class in org.wildfly.swarm.config.messaging.activemq" target="classFrame">Server</a></li>
<li><a href="Server.ServerResources.html" title="class in org.wildfly.swarm.config.messaging.activemq" target="classFrame">Server.ServerResources</a></li>
</ul>
<h2 title="Enums">Enums</h2>
<ul title="Enums">
<li><a href="FactoryType.html" title="enum in org.wildfly.swarm.config.messaging.activemq" target="classFrame">FactoryType</a></li>
<li><a href="JMSBridge.QualityOfService.html" title="enum in org.wildfly.swarm.config.messaging.activemq" target="classFrame">JMSBridge.QualityOfService</a></li>
<li><a href="Server.JournalType.html" title="enum in org.wildfly.swarm.config.messaging.activemq" target="classFrame">Server.JournalType</a></li>
</ul>
</div>
</body>
</html>
| wildfly-swarm/wildfly-swarm-javadocs | 2.3.0.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/messaging/activemq/package-frame.html | HTML | apache-2.0 | 7,401 |
<!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 Wed Jan 04 22:31:35 EST 2017 -->
<title>Uses of Package org.drip.spaces.tensor</title>
<meta name="date" content="2017-01-04">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package org.drip.spaces.tensor";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Use</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-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?org/drip/spaces/tensor/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.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="Uses of Package org.drip.spaces.tensor" class="title">Uses of Package<br>org.drip.spaces.tensor</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../org/drip/spaces/tensor/package-summary.html">org.drip.spaces.tensor</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="#org.drip.learning.svm">org.drip.learning.svm</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.drip.measure.lebesgue">org.drip.measure.lebesgue</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#org.drip.spaces.instance">org.drip.spaces.instance</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.drip.spaces.iterator">org.drip.spaces.iterator</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#org.drip.spaces.metric">org.drip.spaces.metric</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.drip.spaces.tensor">org.drip.spaces.tensor</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.drip.learning.svm">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../org/drip/spaces/tensor/package-summary.html">org.drip.spaces.tensor</a> used by <a href="../../../../org/drip/learning/svm/package-summary.html">org.drip.learning.svm</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/RdGeneralizedVector.html#org.drip.learning.svm">RdGeneralizedVector</a>
<div class="block">RdGeneralizedVector exposes the basic Properties of the Generalized R^d Vector Space.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.drip.measure.lebesgue">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../org/drip/spaces/tensor/package-summary.html">org.drip.spaces.tensor</a> used by <a href="../../../../org/drip/measure/lebesgue/package-summary.html">org.drip.measure.lebesgue</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/RdGeneralizedVector.html#org.drip.measure.lebesgue">RdGeneralizedVector</a>
<div class="block">RdGeneralizedVector exposes the basic Properties of the Generalized R^d Vector Space.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.drip.spaces.instance">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../org/drip/spaces/tensor/package-summary.html">org.drip.spaces.tensor</a> used by <a href="../../../../org/drip/spaces/instance/package-summary.html">org.drip.spaces.instance</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/GeneralizedVector.html#org.drip.spaces.instance">GeneralizedVector</a>
<div class="block">GeneralizedVector exposes the basic Properties of the General Vector Space.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/R1CombinatorialVector.html#org.drip.spaces.instance">R1CombinatorialVector</a>
<div class="block">R1CombinatorialVector exposes the normed/non-normed Discrete Spaces with R^1 Combinatorial Vector
Elements.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/R1ContinuousVector.html#org.drip.spaces.instance">R1ContinuousVector</a>
<div class="block">R1ContinuousVector exposes the Normed/non-normed, Bounded/Unbounded Continuous R^1 Vector Spaces with
Real-valued Elements.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/R1GeneralizedVector.html#org.drip.spaces.instance">R1GeneralizedVector</a>
<div class="block">R1GeneralizedVector exposes the basic Properties of the General R^1 Vector Space.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/RdCombinatorialVector.html#org.drip.spaces.instance">RdCombinatorialVector</a>
<div class="block">RdCombinatorialVector exposes the Normed/Non-normed Discrete Spaces with R^d Combinatorial Vector
Elements.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/RdContinuousVector.html#org.drip.spaces.instance">RdContinuousVector</a>
<div class="block">RdContinuousVector implements the Normed/non-normed, Bounded/Unbounded Continuous R^d Vector Spaces.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/RdGeneralizedVector.html#org.drip.spaces.instance">RdGeneralizedVector</a>
<div class="block">RdGeneralizedVector exposes the basic Properties of the Generalized R^d Vector Space.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.drip.spaces.iterator">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../org/drip/spaces/tensor/package-summary.html">org.drip.spaces.tensor</a> used by <a href="../../../../org/drip/spaces/iterator/package-summary.html">org.drip.spaces.iterator</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/R1CombinatorialVector.html#org.drip.spaces.iterator">R1CombinatorialVector</a>
<div class="block">R1CombinatorialVector exposes the normed/non-normed Discrete Spaces with R^1 Combinatorial Vector
Elements.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.drip.spaces.metric">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../org/drip/spaces/tensor/package-summary.html">org.drip.spaces.tensor</a> used by <a href="../../../../org/drip/spaces/metric/package-summary.html">org.drip.spaces.metric</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/GeneralizedVector.html#org.drip.spaces.metric">GeneralizedVector</a>
<div class="block">GeneralizedVector exposes the basic Properties of the General Vector Space.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/R1CombinatorialVector.html#org.drip.spaces.metric">R1CombinatorialVector</a>
<div class="block">R1CombinatorialVector exposes the normed/non-normed Discrete Spaces with R^1 Combinatorial Vector
Elements.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/R1ContinuousVector.html#org.drip.spaces.metric">R1ContinuousVector</a>
<div class="block">R1ContinuousVector exposes the Normed/non-normed, Bounded/Unbounded Continuous R^1 Vector Spaces with
Real-valued Elements.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/R1GeneralizedVector.html#org.drip.spaces.metric">R1GeneralizedVector</a>
<div class="block">R1GeneralizedVector exposes the basic Properties of the General R^1 Vector Space.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/RdAggregate.html#org.drip.spaces.metric">RdAggregate</a>
<div class="block">RdAggregate exposes the basic Properties of the R^d as a Sectional Super-position of R^1 Vector Spaces.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/RdCombinatorialVector.html#org.drip.spaces.metric">RdCombinatorialVector</a>
<div class="block">RdCombinatorialVector exposes the Normed/Non-normed Discrete Spaces with R^d Combinatorial Vector
Elements.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/RdContinuousVector.html#org.drip.spaces.metric">RdContinuousVector</a>
<div class="block">RdContinuousVector implements the Normed/non-normed, Bounded/Unbounded Continuous R^d Vector Spaces.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/RdGeneralizedVector.html#org.drip.spaces.metric">RdGeneralizedVector</a>
<div class="block">RdGeneralizedVector exposes the basic Properties of the Generalized R^d Vector Space.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.drip.spaces.tensor">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../org/drip/spaces/tensor/package-summary.html">org.drip.spaces.tensor</a> used by <a href="../../../../org/drip/spaces/tensor/package-summary.html">org.drip.spaces.tensor</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/BinaryBooleanVector.html#org.drip.spaces.tensor">BinaryBooleanVector</a>
<div class="block">BinaryBooleanVector implements the normed/non-normed Binary/Boolean Combinatorial Vector Spaces.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/Cardinality.html#org.drip.spaces.tensor">Cardinality</a>
<div class="block">Cardinality contains the Type and the Measure of the Cardinality of the given Vector Space.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/GeneralizedVector.html#org.drip.spaces.tensor">GeneralizedVector</a>
<div class="block">GeneralizedVector exposes the basic Properties of the General Vector Space.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/R1CombinatorialVector.html#org.drip.spaces.tensor">R1CombinatorialVector</a>
<div class="block">R1CombinatorialVector exposes the normed/non-normed Discrete Spaces with R^1 Combinatorial Vector
Elements.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/R1ContinuousVector.html#org.drip.spaces.tensor">R1ContinuousVector</a>
<div class="block">R1ContinuousVector exposes the Normed/non-normed, Bounded/Unbounded Continuous R^1 Vector Spaces with
Real-valued Elements.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/R1GeneralizedVector.html#org.drip.spaces.tensor">R1GeneralizedVector</a>
<div class="block">R1GeneralizedVector exposes the basic Properties of the General R^1 Vector Space.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/RdAggregate.html#org.drip.spaces.tensor">RdAggregate</a>
<div class="block">RdAggregate exposes the basic Properties of the R^d as a Sectional Super-position of R^1 Vector Spaces.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/RdContinuousVector.html#org.drip.spaces.tensor">RdContinuousVector</a>
<div class="block">RdContinuousVector implements the Normed/non-normed, Bounded/Unbounded Continuous R^d Vector Spaces.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../org/drip/spaces/tensor/class-use/RdGeneralizedVector.html#org.drip.spaces.tensor">RdGeneralizedVector</a>
<div class="block">RdGeneralizedVector exposes the basic Properties of the Generalized R^d Vector Space.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Use</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-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?org/drip/spaces/tensor/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.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>
| lakshmiDRIP/DRIP | Javadoc/org/drip/spaces/tensor/package-use.html | HTML | apache-2.0 | 16,957 |
{% load i18n %}
<style type="text/css">
svg#topology_canvas {
font-family: sans-serif;
}
svg#topology_canvas .network-rect {
cursor: pointer;
}
svg#topology_canvas .network-rect.nourl {
cursor: auto;
}
svg#topology_canvas .network-name {
font-weight: bold;
font-size: 12px;
fill: #fff;
text-anchor: middle;
}
svg#topology_canvas .network-cidr {
font-size: 11px;
text-anchor: end;
}
svg#topology_canvas text.network-type {
font-family: FontAwesome;
text-anchor: end;
}
svg#topology_canvas .port_text {
font-size: 9px;
fill: #666;
}
svg#topology_canvas .port_text.left {
text-anchor: end;
}
svg#topology_canvas .base_bg_normal {
fill: #333;
}
svg#topology_canvas .loading_bg_normal {
fill: #555;
}
svg#topology_canvas .base_bg_small,
svg#topology_canvas .loading_bg_small {
fill: #fff;
}
svg#topology_canvas .active {
fill: #45B035;
}
svg#topology_canvas .icon polygon {
fill: #333;
}
svg#topology_canvas .instance_small .frame,
svg#topology_canvas .router_small .frame {
/*fill: url(#device_small_bg);
stroke: #333;
stroke-width: 3;
*/
fill:white;
stroke:#333;
stroke-width:3;
fill-opacity:0;
}
svg#topology_canvas .instance_small .port_text,
svg#topology_canvas .router_small .port_text {
display: none;
}
svg#topology_canvas .router_normal .frame,
svg#topology_canvas .instance_normal .frame {
fill: #fff;
stroke: #333;
stroke-width: 4;
}
svg#topology_canvas .router_normal .icon_bg,
svg#topology_canvas .instance_normal .icon_bg {
fill: #fff;
stroke: #333;
stroke-width: 4;
}
svg#topology_canvas .router_normal .texts_bg,
svg#topology_canvas .instance_normal .texts_bg {
fill: url('#device_normal_bg');
}
svg#topology_canvas .router_normal .texts .name,
svg#topology_canvas .instance_normal .texts .name {
text-anchor: middle;
fill: #333;
font-size: 12px;
}
svg#topology_canvas .router_normal .texts .type,
svg#topology_canvas .instance_normal .texts .type {
text-anchor: middle;
fill: #fff;
font-size: 12px;
}
svg#topology_canvas .router_normal .instance_bg,
svg#topology_canvas .instance_normal .instance_bg {
fill: #333;
}
svg#topology_canvas g.loading .active {
fill: #555;
}
svg#topology_canvas g.loading .icon polygon {
fill: #555;
}
svg#topology_canvas g.loading .instance_bg {
fill: #555;
}
svg#topology_canvas g.loading .instance_small .frame,
svg#topology_canvas g.loading .router_small .frame {
stroke: #555;
fill: url(#device_small_bg_loading);
}
svg#topology_canvas g.loading .router_normal .frame,
svg#topology_canvas g.loading .instance_normal .frame {
stroke: #555;
}
svg#topology_canvas g.loading .router_normal .name,
svg#topology_canvas g.loading .instance_normal .name {
fill: #999;
}
svg#topology_canvas g.loading .router_normal .texts_bg,
svg#topology_canvas g.loading .instance_normal .texts_bg {
fill: url(#device_normal_bg_loading);
}
svg#topology_canvas g.loading .router_normal .icon_bg,
svg#topology_canvas g.loading .instance_normal .icon_bg {
stroke: #555;
}
#infra_svg_container {
background: #efefef;
width: 100%;
height: auto;
min-height: 400px;
}
#infra_template .frame {
fill:white;
stroke:#333;
stroke-width:5;
fill-opacity:0;
}
#infra_template .name,
#infra_template .status,
#infra_template .label {
text-anchor: middle;
fill: #333;
font-size: 12px;
}
#infra_template .name,
#infra_template .status,
#infra_template .label {
font-size: 14px;
}
#infra_template .label {
fill: #fff;
}
#infra_template .texts circle {
fill: #5cb85c;
}
#infra_template .texts circle.ERROR {
fill: #d9534f;
}
#infra_template .texts .texts_bg {
fill: #333;
}
</style>
<svg width="430" height="130" id="infra_template">
<rect class="frame" x="10" y="10" rx="6" ry="6" width="120" height="80"></rect>
<g class="texts">
<circle r="5" cx="25" cy="27" class="ERROR"></circle>
<rect class="texts_bg" x="12" y="60" width="116" height="28"></rect>
<text class="name" x="70" y="32"></text>
<text class="status" x="70" y="52"></text>
<text class="label" x="70" y="80">Instance</text>
</g>
</svg>
| endorphinl/horizon | openstack_dashboard/dashboards/vdc/infrastructure/templates/infrastructure/_svg_element.html | HTML | apache-2.0 | 4,064 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>SB Admin 2 - Bootstrap Admin Theme</title>
<!-- Bootstrap Core CSS -->
<link href="../bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- MetisMenu CSS -->
<link href="../bower_components/metisMenu/dist/metisMenu.min.css" rel="stylesheet">
<!-- Timeline CSS -->
<link href="../dist/css/timeline.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="../dist/css/sb-admin-2.css" rel="stylesheet">
<!-- Morris Charts CSS -->
<link href="../bower_components/morrisjs/morris.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="../bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[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>
<div id="wrapper">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">SB Admin v2.0</a>
</div>
<!-- /.navbar-header -->
<ul class="nav navbar-top-links navbar-right">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
<i class="fa fa-envelope fa-fw"></i> <i class="fa fa-caret-down"></i>
</a>
<ul class="dropdown-menu dropdown-messages">
<li>
<a href="#">
<div>
<strong>John Smith</strong>
<span class="pull-right text-muted">
<em>Yesterday</em>
</span>
</div>
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eleifend...</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="#">
<div>
<strong>John Smith</strong>
<span class="pull-right text-muted">
<em>Yesterday</em>
</span>
</div>
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eleifend...</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="#">
<div>
<strong>John Smith</strong>
<span class="pull-right text-muted">
<em>Yesterday</em>
</span>
</div>
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eleifend...</div>
</a>
</li>
<li class="divider"></li>
<li>
<a class="text-center" href="#">
<strong>Read All Messages</strong>
<i class="fa fa-angle-right"></i>
</a>
</li>
</ul>
<!-- /.dropdown-messages -->
</li>
<!-- /.dropdown -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
<i class="fa fa-tasks fa-fw"></i> <i class="fa fa-caret-down"></i>
</a>
<ul class="dropdown-menu dropdown-tasks">
<li>
<a href="#">
<div>
<p>
<strong>Task 1</strong>
<span class="pull-right text-muted">40% Complete</span>
</p>
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
<span class="sr-only">40% Complete (success)</span>
</div>
</div>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="#">
<div>
<p>
<strong>Task 2</strong>
<span class="pull-right text-muted">20% Complete</span>
</p>
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%">
<span class="sr-only">20% Complete</span>
</div>
</div>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="#">
<div>
<p>
<strong>Task 3</strong>
<span class="pull-right text-muted">60% Complete</span>
</p>
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%">
<span class="sr-only">60% Complete (warning)</span>
</div>
</div>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="#">
<div>
<p>
<strong>Task 4</strong>
<span class="pull-right text-muted">80% Complete</span>
</p>
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
<span class="sr-only">80% Complete (danger)</span>
</div>
</div>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a class="text-center" href="#">
<strong>See All Tasks</strong>
<i class="fa fa-angle-right"></i>
</a>
</li>
</ul>
<!-- /.dropdown-tasks -->
</li>
<!-- /.dropdown -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
<i class="fa fa-bell fa-fw"></i> <i class="fa fa-caret-down"></i>
</a>
<ul class="dropdown-menu dropdown-alerts">
<li>
<a href="#">
<div>
<i class="fa fa-comment fa-fw"></i> New Comment
<span class="pull-right text-muted small">4 minutes ago</span>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="#">
<div>
<i class="fa fa-twitter fa-fw"></i> 3 New Followers
<span class="pull-right text-muted small">12 minutes ago</span>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="#">
<div>
<i class="fa fa-envelope fa-fw"></i> Message Sent
<span class="pull-right text-muted small">4 minutes ago</span>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="#">
<div>
<i class="fa fa-tasks fa-fw"></i> New Task
<span class="pull-right text-muted small">4 minutes ago</span>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="#">
<div>
<i class="fa fa-upload fa-fw"></i> Server Rebooted
<span class="pull-right text-muted small">4 minutes ago</span>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a class="text-center" href="#">
<strong>See All Alerts</strong>
<i class="fa fa-angle-right"></i>
</a>
</li>
</ul>
<!-- /.dropdown-alerts -->
</li>
<!-- /.dropdown -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
<i class="fa fa-user fa-fw"></i> <i class="fa fa-caret-down"></i>
</a>
<ul class="dropdown-menu dropdown-user">
<li><a href="#"><i class="fa fa-user fa-fw"></i> User Profile</a>
</li>
<li><a href="#"><i class="fa fa-gear fa-fw"></i> Settings</a>
</li>
<li class="divider"></li>
<li><a href="login.html"><i class="fa fa-sign-out fa-fw"></i> Logout</a>
</li>
</ul>
<!-- /.dropdown-user -->
</li>
<!-- /.dropdown -->
</ul>
<!-- /.navbar-top-links -->
<div class="navbar-default sidebar" role="navigation">
<div class="sidebar-nav navbar-collapse">
<ul class="nav" id="side-menu">
<li class="sidebar-search">
<div class="input-group custom-search-form">
<input type="text" class="form-control" placeholder="Search...">
<span class="input-group-btn">
<button class="btn btn-default" type="button">
<i class="fa fa-search"></i>
</button>
</span>
</div>
<!-- /input-group -->
</li>
<li>
<a href="index.html"><i class="fa fa-dashboard fa-fw"></i> Dashboard</a>
</li>
<li>
<a href="#"><i class="fa fa-bar-chart-o fa-fw"></i> Charts<span class="fa arrow"></span></a>
<ul class="nav nav-second-level">
<li>
<a href="flot.html">Flot Charts</a>
</li>
<li>
<a href="morris.html">Morris.js Charts</a>
</li>
</ul>
<!-- /.nav-second-level -->
</li>
<li>
<a href="tables.html"><i class="fa fa-table fa-fw"></i> Tables</a>
</li>
<li>
<a href="forms.html"><i class="fa fa-edit fa-fw"></i> Forms</a>
</li>
<li>
<a href="#"><i class="fa fa-wrench fa-fw"></i> UI Elements<span class="fa arrow"></span></a>
<ul class="nav nav-second-level">
<li>
<a href="panels-wells.html">Panels and Wells</a>
</li>
<li>
<a href="buttons.html">Buttons</a>
</li>
<li>
<a href="notifications.html">Notifications</a>
</li>
<li>
<a href="typography.html">Typography</a>
</li>
<li>
<a href="icons.html"> Icons</a>
</li>
<li>
<a href="grid.html">Grid</a>
</li>
</ul>
<!-- /.nav-second-level -->
</li>
<li>
<a href="#"><i class="fa fa-sitemap fa-fw"></i> Multi-Level Dropdown<span class="fa arrow"></span></a>
<ul class="nav nav-second-level">
<li>
<a href="#">Second Level Item</a>
</li>
<li>
<a href="#">Second Level Item</a>
</li>
<li>
<a href="#">Third Level <span class="fa arrow"></span></a>
<ul class="nav nav-third-level">
<li>
<a href="#">Third Level Item</a>
</li>
<li>
<a href="#">Third Level Item</a>
</li>
<li>
<a href="#">Third Level Item</a>
</li>
<li>
<a href="#">Third Level Item</a>
</li>
</ul>
<!-- /.nav-third-level -->
</li>
</ul>
<!-- /.nav-second-level -->
</li>
<li>
<a href="#"><i class="fa fa-files-o fa-fw"></i> Sample Pages<span class="fa arrow"></span></a>
<ul class="nav nav-second-level">
<li>
<a href="blank.html">Blank Page</a>
</li>
<li>
<a href="login.html">Login Page</a>
</li>
<li>
<a href="Employ_Insert.html">Insertar</a>
</li>
<li>
<a href="Employ_Edit.html">Editar</a>
</li>
<li>
<a href="Employ_List.html">Listar</a>
</li>
<li>
<a href="Employ_delete.html">Borrar</a>
</li>
<li>
<a href="Employ_config.html">Configuración</a>
</li>
<li>
<a href="Employ_Print.html">Imprimir</a>
</li>
</ul>
<!-- /.nav-second-level -->
</li>
</ul>
</div>
<!-- /.sidebar-collapse -->
</div>
<!-- /.navbar-static-side -->
</nav>
<div id="page-wrapper">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Dashboard</h1>
</div>
<!-- /.col-lg-12 -->
</div>
<!-- /.row -->
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="panel panel-primary">
<div class="panel-heading">
<div class="row">
<div class="col-xs-3">
<i class="fa fa-comments fa-5x"></i>
</div>
<div class="col-xs-9 text-right">
<div class="huge">26</div>
<div>New Comments!</div>
</div>
</div>
</div>
<a href="#">
<div class="panel-footer">
<span class="pull-left">View Details</span>
<span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span>
<div class="clearfix"></div>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="panel panel-green">
<div class="panel-heading">
<div class="row">
<div class="col-xs-3">
<i class="fa fa-tasks fa-5x"></i>
</div>
<div class="col-xs-9 text-right">
<div class="huge">12</div>
<div>New Tasks!</div>
</div>
</div>
</div>
<a href="#">
<div class="panel-footer">
<span class="pull-left">View Details</span>
<span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span>
<div class="clearfix"></div>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="panel panel-yellow">
<div class="panel-heading">
<div class="row">
<div class="col-xs-3">
<i class="fa fa-shopping-cart fa-5x"></i>
</div>
<div class="col-xs-9 text-right">
<div class="huge">124</div>
<div>New Orders!</div>
</div>
</div>
</div>
<a href="#">
<div class="panel-footer">
<span class="pull-left">View Details</span>
<span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span>
<div class="clearfix"></div>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="panel panel-red">
<div class="panel-heading">
<div class="row">
<div class="col-xs-3">
<i class="fa fa-support fa-5x"></i>
</div>
<div class="col-xs-9 text-right">
<div class="huge">13</div>
<div>Support Tickets!</div>
</div>
</div>
</div>
<a href="#">
<div class="panel-footer">
<span class="pull-left">View Details</span>
<span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span>
<div class="clearfix"></div>
</div>
</a>
</div>
</div>
</div>
<!-- /.row -->
<div class="row">
<div class="col-lg-8">
<div class="panel panel-default">
<div class="panel-heading">
<i class="fa fa-bar-chart-o fa-fw"></i> Area Chart Example
<div class="pull-right">
<div class="btn-group">
<button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown">
Actions
<span class="caret"></span>
</button>
<ul class="dropdown-menu pull-right" role="menu">
<li><a href="#">Action</a>
</li>
<li><a href="#">Another action</a>
</li>
<li><a href="#">Something else here</a>
</li>
<li class="divider"></li>
<li><a href="#">Separated link</a>
</li>
</ul>
</div>
</div>
</div>
<!-- /.panel-heading -->
<div class="panel-body">
<div id="morris-area-chart"></div>
</div>
<!-- /.panel-body -->
</div>
<!-- /.panel -->
<div class="panel panel-default">
<div class="panel-heading">
<i class="fa fa-bar-chart-o fa-fw"></i> Bar Chart Example
<div class="pull-right">
<div class="btn-group">
<button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown">
Actions
<span class="caret"></span>
</button>
<ul class="dropdown-menu pull-right" role="menu">
<li><a href="#">Action</a>
</li>
<li><a href="#">Another action</a>
</li>
<li><a href="#">Something else here</a>
</li>
<li class="divider"></li>
<li><a href="#">Separated link</a>
</li>
</ul>
</div>
</div>
</div>
<!-- /.panel-heading -->
<div class="panel-body">
<div class="row">
<div class="col-lg-4">
<div class="table-responsive">
<table class="table table-bordered table-hover table-striped">
<thead>
<tr>
<th>#</th>
<th>Date</th>
<th>Time</th>
<th>Amount</th>
</tr>
</thead>
<tbody>
<tr>
<td>3326</td>
<td>10/21/2013</td>
<td>3:29 PM</td>
<td>$321.33</td>
</tr>
<tr>
<td>3325</td>
<td>10/21/2013</td>
<td>3:20 PM</td>
<td>$234.34</td>
</tr>
<tr>
<td>3324</td>
<td>10/21/2013</td>
<td>3:03 PM</td>
<td>$724.17</td>
</tr>
<tr>
<td>3323</td>
<td>10/21/2013</td>
<td>3:00 PM</td>
<td>$23.71</td>
</tr>
<tr>
<td>3322</td>
<td>10/21/2013</td>
<td>2:49 PM</td>
<td>$8345.23</td>
</tr>
<tr>
<td>3321</td>
<td>10/21/2013</td>
<td>2:23 PM</td>
<td>$245.12</td>
</tr>
<tr>
<td>3320</td>
<td>10/21/2013</td>
<td>2:15 PM</td>
<td>$5663.54</td>
</tr>
<tr>
<td>3319</td>
<td>10/21/2013</td>
<td>2:13 PM</td>
<td>$943.45</td>
</tr>
</tbody>
</table>
</div>
<!-- /.table-responsive -->
</div>
<!-- /.col-lg-4 (nested) -->
<div class="col-lg-8">
<div id="morris-bar-chart"></div>
</div>
<!-- /.col-lg-8 (nested) -->
</div>
<!-- /.row -->
</div>
<!-- /.panel-body -->
</div>
<!-- /.panel -->
<div class="panel panel-default">
<div class="panel-heading">
<i class="fa fa-clock-o fa-fw"></i> Responsive Timeline
</div>
<!-- /.panel-heading -->
<div class="panel-body">
<ul class="timeline">
<li>
<div class="timeline-badge"><i class="fa fa-check"></i>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Lorem ipsum dolor</h4>
<p><small class="text-muted"><i class="fa fa-clock-o"></i> 11 hours ago via Twitter</small>
</p>
</div>
<div class="timeline-body">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Libero laboriosam dolor perspiciatis omnis exercitationem. Beatae, officia pariatur? Est cum veniam excepturi. Maiores praesentium, porro voluptas suscipit facere rem dicta, debitis.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-badge warning"><i class="fa fa-credit-card"></i>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Lorem ipsum dolor</h4>
</div>
<div class="timeline-body">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Autem dolorem quibusdam, tenetur commodi provident cumque magni voluptatem libero, quis rerum. Fugiat esse debitis optio, tempore. Animi officiis alias, officia repellendus.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laudantium maiores odit qui est tempora eos, nostrum provident explicabo dignissimos debitis vel! Adipisci eius voluptates, ad aut recusandae minus eaque facere.</p>
</div>
</div>
</li>
<li>
<div class="timeline-badge danger"><i class="fa fa-bomb"></i>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Lorem ipsum dolor</h4>
</div>
<div class="timeline-body">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus numquam facilis enim eaque, tenetur nam id qui vel velit similique nihil iure molestias aliquam, voluptatem totam quaerat, magni commodi quisquam.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Lorem ipsum dolor</h4>
</div>
<div class="timeline-body">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptates est quaerat asperiores sapiente, eligendi, nihil. Itaque quos, alias sapiente rerum quas odit! Aperiam officiis quidem delectus libero, omnis ut debitis!</p>
</div>
</div>
</li>
<li>
<div class="timeline-badge info"><i class="fa fa-save"></i>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Lorem ipsum dolor</h4>
</div>
<div class="timeline-body">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nobis minus modi quam ipsum alias at est molestiae excepturi delectus nesciunt, quibusdam debitis amet, beatae consequuntur impedit nulla qui! Laborum, atque.</p>
<hr>
<div class="btn-group">
<button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown">
<i class="fa fa-gear"></i> <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Action</a>
</li>
<li><a href="#">Another action</a>
</li>
<li><a href="#">Something else here</a>
</li>
<li class="divider"></li>
<li><a href="#">Separated link</a>
</li>
</ul>
</div>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Lorem ipsum dolor</h4>
</div>
<div class="timeline-body">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sequi fuga odio quibusdam. Iure expedita, incidunt unde quis nam! Quod, quisquam. Officia quam qui adipisci quas consequuntur nostrum sequi. Consequuntur, commodi.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-badge success"><i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Lorem ipsum dolor</h4>
</div>
<div class="timeline-body">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt obcaecati, quaerat tempore officia voluptas debitis consectetur culpa amet, accusamus dolorum fugiat, animi dicta aperiam, enim incidunt quisquam maxime neque eaque.</p>
</div>
</div>
</li>
</ul>
</div>
<!-- /.panel-body -->
</div>
<!-- /.panel -->
</div>
<!-- /.col-lg-8 -->
<div class="col-lg-4">
<div class="panel panel-default">
<div class="panel-heading">
<i class="fa fa-bell fa-fw"></i> Notifications Panel
</div>
<!-- /.panel-heading -->
<div class="panel-body">
<div class="list-group">
<a href="#" class="list-group-item">
<i class="fa fa-comment fa-fw"></i> New Comment
<span class="pull-right text-muted small"><em>4 minutes ago</em>
</span>
</a>
<a href="#" class="list-group-item">
<i class="fa fa-twitter fa-fw"></i> 3 New Followers
<span class="pull-right text-muted small"><em>12 minutes ago</em>
</span>
</a>
<a href="#" class="list-group-item">
<i class="fa fa-envelope fa-fw"></i> Message Sent
<span class="pull-right text-muted small"><em>27 minutes ago</em>
</span>
</a>
<a href="#" class="list-group-item">
<i class="fa fa-tasks fa-fw"></i> New Task
<span class="pull-right text-muted small"><em>43 minutes ago</em>
</span>
</a>
<a href="#" class="list-group-item">
<i class="fa fa-upload fa-fw"></i> Server Rebooted
<span class="pull-right text-muted small"><em>11:32 AM</em>
</span>
</a>
<a href="#" class="list-group-item">
<i class="fa fa-bolt fa-fw"></i> Server Crashed!
<span class="pull-right text-muted small"><em>11:13 AM</em>
</span>
</a>
<a href="#" class="list-group-item">
<i class="fa fa-warning fa-fw"></i> Server Not Responding
<span class="pull-right text-muted small"><em>10:57 AM</em>
</span>
</a>
<a href="#" class="list-group-item">
<i class="fa fa-shopping-cart fa-fw"></i> New Order Placed
<span class="pull-right text-muted small"><em>9:49 AM</em>
</span>
</a>
<a href="#" class="list-group-item">
<i class="fa fa-money fa-fw"></i> Payment Received
<span class="pull-right text-muted small"><em>Yesterday</em>
</span>
</a>
</div>
<!-- /.list-group -->
<a href="#" class="btn btn-default btn-block">View All Alerts</a>
</div>
<!-- /.panel-body -->
</div>
<!-- /.panel -->
<div class="panel panel-default">
<div class="panel-heading">
<i class="fa fa-bar-chart-o fa-fw"></i> Donut Chart Example
</div>
<div class="panel-body">
<div id="morris-donut-chart"></div>
<a href="#" class="btn btn-default btn-block">View Details</a>
</div>
<!-- /.panel-body -->
</div>
<!-- /.panel -->
<div class="chat-panel panel panel-default">
<div class="panel-heading">
<i class="fa fa-comments fa-fw"></i>
Chat
<div class="btn-group pull-right">
<button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown">
<i class="fa fa-chevron-down"></i>
</button>
<ul class="dropdown-menu slidedown">
<li>
<a href="#">
<i class="fa fa-refresh fa-fw"></i> Refresh
</a>
</li>
<li>
<a href="#">
<i class="fa fa-check-circle fa-fw"></i> Available
</a>
</li>
<li>
<a href="#">
<i class="fa fa-times fa-fw"></i> Busy
</a>
</li>
<li>
<a href="#">
<i class="fa fa-clock-o fa-fw"></i> Away
</a>
</li>
<li class="divider"></li>
<li>
<a href="#">
<i class="fa fa-sign-out fa-fw"></i> Sign Out
</a>
</li>
</ul>
</div>
</div>
<!-- /.panel-heading -->
<div class="panel-body">
<ul class="chat">
<li class="left clearfix">
<span class="chat-img pull-left">
<img src="http://placehold.it/50/55C1E7/fff" alt="User Avatar" class="img-circle" />
</span>
<div class="chat-body clearfix">
<div class="header">
<strong class="primary-font">Jack Sparrow</strong>
<small class="pull-right text-muted">
<i class="fa fa-clock-o fa-fw"></i> 12 mins ago
</small>
</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales.
</p>
</div>
</li>
<li class="right clearfix">
<span class="chat-img pull-right">
<img src="http://placehold.it/50/FA6F57/fff" alt="User Avatar" class="img-circle" />
</span>
<div class="chat-body clearfix">
<div class="header">
<small class=" text-muted">
<i class="fa fa-clock-o fa-fw"></i> 13 mins ago</small>
<strong class="pull-right primary-font">Bhaumik Patel</strong>
</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales.
</p>
</div>
</li>
<li class="left clearfix">
<span class="chat-img pull-left">
<img src="http://placehold.it/50/55C1E7/fff" alt="User Avatar" class="img-circle" />
</span>
<div class="chat-body clearfix">
<div class="header">
<strong class="primary-font">Jack Sparrow</strong>
<small class="pull-right text-muted">
<i class="fa fa-clock-o fa-fw"></i> 14 mins ago</small>
</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales.
</p>
</div>
</li>
<li class="right clearfix">
<span class="chat-img pull-right">
<img src="http://placehold.it/50/FA6F57/fff" alt="User Avatar" class="img-circle" />
</span>
<div class="chat-body clearfix">
<div class="header">
<small class=" text-muted">
<i class="fa fa-clock-o fa-fw"></i> 15 mins ago</small>
<strong class="pull-right primary-font">Bhaumik Patel</strong>
</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales.
</p>
</div>
</li>
</ul>
</div>
<!-- /.panel-body -->
<div class="panel-footer">
<div class="input-group">
<input id="btn-input" type="text" class="form-control input-sm" placeholder="Type your message here..." />
<span class="input-group-btn">
<button class="btn btn-warning btn-sm" id="btn-chat">
Send
</button>
</span>
</div>
</div>
<!-- /.panel-footer -->
</div>
<!-- /.panel .chat-panel -->
</div>
<!-- /.col-lg-4 -->
</div>
<!-- /.row -->
</div>
<!-- /#page-wrapper -->
</div>
<!-- /#wrapper -->
<!-- jQuery -->
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="../bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- Metis Menu Plugin JavaScript -->
<script src="../bower_components/metisMenu/dist/metisMenu.min.js"></script>
<!-- Morris Charts JavaScript -->
<script src="../bower_components/raphael/raphael-min.js"></script>
<script src="../bower_components/morrisjs/morris.min.js"></script>
<script src="../js/morris-data.js"></script>
<!-- Custom Theme JavaScript -->
<script src="../dist/js/sb-admin-2.js"></script>
</body>
</html>
| Roizus/Small_ERP | pages/index.html | HTML | apache-2.0 | 53,488 |
<!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>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title>
</head>
<body>
<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://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</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 documentation" target="_blank"
href="http://openclover.org/documentation">
<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">
<a href="http://cardatechnologies.com" target="_top">
<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>
</a>
</div>
<div class="aui-page-header-main" >
<h1>
<a href="http://cardatechnologies.com" target="_top">
ABA Route Transit Number Validator 1.0.1-SNAPSHOT
</a>
</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.cardatechnologies.utils.validators.abaroutevalidator">
<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">
<div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li>
<li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li>
<li><a href="test-Test_AbaRouteValidator_16.html">Class Test_AbaRouteValidator_16</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_36665_good
</h1>
<table class="aui">
<thead>
<tr>
<th>Test</th>
<th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th>
<th><label title="When the test execution was started">Start time</label></th>
<th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th>
<th><label title="A failure or error message if the test is not successful.">Message</label></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_16.html?line=40024#src-40024" >testAbaNumberCheck_36665_good</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:45:15
</td>
<td>
0.004 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </div>
<table class="aui aui-table-sortable">
<thead>
<tr>
<th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th>
<th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_36665_good</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=25859#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a>
</td>
<td>
<span class="sortValue">0.7352941</span>73.5%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="73.5% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:73.5%"></div></div></div> </td>
</tr>
</tbody>
</table>
</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://openclover.org">OpenClover</a> v 4.4.1
on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT.
</li>
</ul>
<ul>
<li>OpenClover is free and open-source software. </li>
</ul>
</section>
</footer> </section> <!-- class="aui-page-panel-content" -->
</div> <!-- class="aui-page-panel-inner" -->
</div> <!-- class="aui-page-panel" -->
</div> <!-- id="page" -->
</body>
</html> | dcarda/aba.route.validator | target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_16_testAbaNumberCheck_36665_good_jyb.html | HTML | apache-2.0 | 9,183 |
<!doctype html>
<html lang="en">
<head>
<script src="jquery-3.2.0.min.js"></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="A portfolio template that uses Material Design Lite.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<title>Js_ portfolio Website</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.grey-pink.min.css" />
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header mdl-layout__header--waterfall portfolio-header">
<div class="mdl-layout__header-row portfolio-logo-row">
<span class="mdl-layout__title">
<div class="portfolio-logo"></div>
<span class="mdl-layout__title">Js_ portfolio website</span>
</span>
</div>
<div class="mdl-layout__header-row portfolio-navigation-row mdl-layout--large-screen-only">
<nav class="mdl-navigation mdl-typography--body-1-force-preferred-font">
<a class="mdl-navigation__link" href="index.html">Website</a>
<a class="mdl-navigation__link is-active" href="favorite.html">Favorite</a>
<a class="mdl-navigation__link" href="about.html">About</a>
<a class="mdl-navigation__link" href="schedule.html">Schedule</a>
</nav>
</div>
</header>
<div class="mdl-layout__drawer mdl-layout--small-screen-only">
<nav class="mdl-navigation mdl-typography--body-1-force-preferred-font">
<a class="mdl-navigation__link is-active" href="index.html">Website</a>
<a class="mdl-navigation__link" href="favorite.html">Favorite</a>
<a class="mdl-navigation__link" href="about.html">About</a>
<a class="mdl-navigation__link" href="schedule.html">Schedule</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="mdl-grid portfolio-max-width">
<div class="mdl-grid mdl-cell mdl-cell--12-col mdl-cell--4-col-tablet mdl-card mdl-shadow--4dp">
<div class="mdl-card__media mdl-cell mdl-cell--12-col-tablet">
<img class="article-image" src=" images/Soundcloud.png" border="0" alt="">
</div>
<div class="mdl-cell mdl-cell--8-col">
<h2 class="mdl-card__title-text">SoundCloud</h2>
<div class="mdl-card__supporting-text padding-top">
<span>Easy to come into contact with Music</span>
<div id="tt1" class=" icon material-icons portfolio-share-btn">share</div>
<div class="mdl-tooltip" for="tt1">
Share via social media
</div>
</div>
<div class="mdl-card__supporting-text no-left-padding">
<p>
SoundCloud is an online audio distribution platform based in Berlin, Germany,
that enables its users to upload, record, promote, and share their originally-created sounds.
SoundCloud's content is evenly split between music and other audio.
</p>
<span>Website: <a href="https://soundcloud.com/">go</a></span>
</div>
</div>
</div>
<div class="mdl-cell mdl-cell--6-col mdl-cell--4-col-tablet mdl-card mdl-shadow--4dp">
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="images/example-work07.jpg" style="width:100%">
<div class="text">Caption Text</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="images/example-work08.jpg" style="width:100%">
<div class="text">Caption Two</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="images/example-work09.jpg" style="width:100%">
<div class="text">Caption Three</div>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
<script>
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
}
</script>
</div>
<div class="mdl-cell mdl-cell--6-col mdl-cell--4-col-tablet mdl-card mdl-shadow--4dp">
<div class="mdl-card__title">
<h2 class="mdl-card__title-text">Responsive Web Design</h2>
</div>
<div class="mdl-card__media">
<a href="#"> <img class="article-image" src=" images/webdesign.jpg" border="0" alt=""></a>
</div>
<div class="mdl-card__supporting-text padding-left">
<span>Why Does it Matter?</span>
<div id="tt2" class=" icon material-icons portfolio-share-btn">share</div>
<div class="mdl-tooltip" for="tt2">
Share via social media
</div>
</div>
<div class="mdl-card__supporting-text">
<p>With so many different platforms to browse the internet from,
responsive design is a must in today's ever changing social landscape.</p>
<span>Website: <a href="http://www.smdnow.com/what-is-responsive-web-design-and-why-does-it-matter/">go</a></span>
</div>
</div>
<div class="mdl-cell mdl-cell--3-col mdl-cell--4-col-tablet mdl-card mdl-card mdl-shadow--4dp portfolio-blog-card-full-bg ">
<div class="mdl-card__title mdl-card--expand "></div>
<div class="mdl-card__actions">
<span class="demo-card-image__filename">2017.3.29</span>
</div>
</div>
<div class="mdl-cell mdl-cell--3-col mdl-cell--4-col-tablet mdl-card mdl-shadow--4dp ">
<div class="mdl-card__media">
<a href="#"> <img class="article-image" src=" images/example-blog04.jpg" border="0" alt=""></a>
</div>
<div class="mdl-card__supporting-text">
<p>Nothing is more despicable than respect based on fear.</p><br>
<small> -Albert Camus</small> <br>
<p> You can learn a little from victory; you can learn everything from defeat.</p> <br>
<small>-Christy Mathewson </small><br>
<p> First you take a drink, then the drink takes a drink, then the drink takes you.</p><br>
<small> -F. Scott Fitzgerald </small><br>
</div>
</div>
<div class="demo-card-event mdl-cell mdl-cell--3-col mdl-cell--4-col-tablet mdl-card mdl-card mdl-shadow--4dp portfolio-blog-card-strip-bg mdl-color-text--white">
<div class="mdl-card__title mdl-card--expand">
<h4 class="mdl-color-text--white">
memorable event:<br>
march, 20, 2017<br>
</h4>
</div>
<div class="mdl-card__actions mdl-card--border">
<a class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect mdl-color-text--white" href="schedule.html">
Go to Calendar
</a>
<div class="mdl-layout-spacer"></div>
<i class="material-icons">event</i>
</div>
</div>
<div class="mdl-cell mdl-cell--3-col mdl-cell--4-col-tablet mdl-card mdl-card mdl-shadow--4dp portfolio-blog-card-full-bg1 ">
<div class="mdl-card__title mdl-card--expand "></div>
<div class="mdl-card__actions">
<span class="demo-card-image__filename">2017.3.17</span>
</div>
</div>
<div class="mdl-cell mdl-cell--5-col mdl-cell--4-col-tablet mdl-card mdl-card mdl-shadow--4dp">
<div class="mdl-card__title mdl-card--expand portfolio-blog-card-event-bg mdl-color-text--white">
<h2 class="mdl-card__title-text">HiphopLE</h2>
</div>
<div class="mdl-card__supporting-text">
Easy to come into contact with foreign hip-hop
</div>
<div class="mdl-card__actions mdl-card--border">
<a class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect mdl-button--accent" href = "http://hiphople.com/subtitle">
View Updates
</a>
</div>
</div>
<div class="mdl-cell mdl-cell--4-col mdl-cell--4-col-tablet mdl-card mdl-card mdl-shadow--4dp portfolio-blog-card-compact">
<div class="mdl-card__media">
<img class="article-image" src=" images/example-blog07.jpg" border="0" alt="">
</div>
<div class="mdl-card__title ">
<h2 class="mdl-card__title-text">JFlaMusic</h2>
</div>
<div class="mdl-card__supporting-text">
You can hear good music.
</div>
<div class="mdl-card__actions mdl-card--border">
<a class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect mdl-button--accent" href = "https://www.youtube.com/user/JFlaMusic">
View Updates
</a>
</div>
</div>
<div class="mdl-cell mdl-cell--3-col mdl-cell--4-col-tablet mdl-card mdl-card mdl-shadow--4dp portfolio-blog-card-full-bg2 ">
<div class="mdl-card__title mdl-card--expand "></div>
<div class="mdl-card__actions">
<span class="demo-card-image__filename">2017.2.25</span>
</div>
</div>
</div>
<footer class="mdl-mini-footer">
<div class="mdl-mini-footer__left-section">
<div class="mdl-logo">Js_ portfolio website</div>
</div>
<div class="mdl-mini-footer__right-section">
<ul class="mdl-mini-footer__link-list">
<li><a href="#">Help</a></li>
<li><a href="#">Privacy & Terms</a></li>
</ul>
</div>
</footer>
</main>
</div>
<script src="https://code.getmdl.io/1.3.0/material.min.js"></script>
</body>
</html>
| ljs3536/ljs3536.github.io | favorite.html | HTML | apache-2.0 | 13,157 |
<!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_112) on Tue Sep 12 14:31:22 MST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ProviderModuleSupplier (BOM: * : All 2017.9.5 API)</title>
<meta name="date" content="2017-09-12">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ProviderModuleSupplier (BOM: * : All 2017.9.5 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../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/ProviderModuleSupplier.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">WildFly Swarm API, 2017.9.5</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../../org/wildfly/swarm/config/security/security_domain/audit/ProviderModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.audit"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/wildfly/swarm/config/security/security_domain/audit/ProviderModuleSupplier.html" target="_top">Frames</a></li>
<li><a href="ProviderModuleSupplier.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">org.wildfly.swarm.config.security.security_domain.audit</div>
<h2 title="Interface ProviderModuleSupplier" class="title">Interface ProviderModuleSupplier<T extends <a href="../../../../../../../org/wildfly/swarm/config/security/security_domain/audit/ProviderModule.html" title="class in org.wildfly.swarm.config.security.security_domain.audit">ProviderModule</a>></h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Functional Interface:</dt>
<dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd>
</dl>
<hr>
<br>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a>
public interface <span class="typeNameLabel">ProviderModuleSupplier<T extends <a href="../../../../../../../org/wildfly/swarm/config/security/security_domain/audit/ProviderModule.html" title="class in org.wildfly.swarm.config.security.security_domain.audit">ProviderModule</a>></span></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/security/security_domain/audit/ProviderModule.html" title="class in org.wildfly.swarm.config.security.security_domain.audit">ProviderModule</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/security/security_domain/audit/ProviderModuleSupplier.html#get--">get</a></span>()</code>
<div class="block">Constructed instance of ProviderModule resource</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="get--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>get</h4>
<pre><a href="../../../../../../../org/wildfly/swarm/config/security/security_domain/audit/ProviderModule.html" title="class in org.wildfly.swarm.config.security.security_domain.audit">ProviderModule</a> get()</pre>
<div class="block">Constructed instance of ProviderModule resource</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The instance</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ProviderModuleSupplier.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">WildFly Swarm API, 2017.9.5</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../../org/wildfly/swarm/config/security/security_domain/audit/ProviderModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.audit"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/wildfly/swarm/config/security/security_domain/audit/ProviderModuleSupplier.html" target="_top">Frames</a></li>
<li><a href="ProviderModuleSupplier.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 ======= -->
<p class="legalCopy"><small>Copyright © 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
| wildfly-swarm/wildfly-swarm-javadocs | 2017.9.5/apidocs/org/wildfly/swarm/config/security/security_domain/audit/ProviderModuleSupplier.html | HTML | apache-2.0 | 9,450 |
<md-input-container>
<input name="hours" mdInput type="number" placeholder="Hours" [(ngModel)]="hours" hours
(keyup)="keypress($event)" #control="ngModel" (change)="update()">
<md-error *ngIf="control.touched && control.invalid">
Hours must be a number in increments of .25
</md-error>
</md-input-container>
<div layout="row">
<button type="button" md-button flex (click)="setValue(1)">+ 1</button>
<button type="button" md-button flex (click)="setValue(.25)">+ .25</button>
<button type="button" md-button flex (click)="setValue(-.25)">- .25</button>
<button type="button" md-button flex (click)="setValue(-1)">- 1</button>
</div> | CollegeBoreal/Tutoriel | W.Web/A.Angular/M.Manning/chapter9/invoice/src/app/hours-control/hours-control.component.html | HTML | apache-2.0 | 653 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_13) on Sun Jun 29 16:47:08 MSD 2008 -->
<TITLE>
Uses of Class org.apache.poi.poifs.dev.POIFSLister (POI API Documentation)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Uses of Class org.apache.poi.poifs.dev.POIFSLister (POI API Documentation)";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </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/apache/poi/poifs/dev/POIFSLister.html" title="class in org.apache.poi.poifs.dev"><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-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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/poi/poifs/dev/\class-usePOIFSLister.html" target="_top"><B>FRAMES</B></A>
<A HREF="POIFSLister.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.apache.poi.poifs.dev.POIFSLister</B></H2>
</CENTER>
No usage of org.apache.poi.poifs.dev.POIFSLister
<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/apache/poi/poifs/dev/POIFSLister.html" title="class in org.apache.poi.poifs.dev"><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-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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/poi/poifs/dev/\class-usePOIFSLister.html" target="_top"><B>FRAMES</B></A>
<A HREF="POIFSLister.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 2008 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
| stumoodie/MetabolicNotationSubsystem | lib/poi-3.1-FINAL/docs/apidocs/org/apache/poi/poifs/dev/class-use/POIFSLister.html | HTML | apache-2.0 | 6,118 |
<!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-ea) on Wed Jan 04 17:08:18 EST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.wildfly.swarm.config.jmx.JMXRemotingConnector (Public javadocs 2017.1.1 API)</title>
<meta name="date" content="2017-01-04">
<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.wildfly.swarm.config.jmx.JMXRemotingConnector (Public javadocs 2017.1.1 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">Class</a></li>
<li class="navBarCell1Rev">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><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">WildFly Swarm API, 2017.1.1</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/jmx/class-use/JMXRemotingConnector.html" target="_top">Frames</a></li>
<li><a href="JMXRemotingConnector.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.wildfly.swarm.config.jmx.JMXRemotingConnector" class="title">Uses of Class<br>org.wildfly.swarm.config.jmx.JMXRemotingConnector</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="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</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="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.wildfly.swarm.config.jmx">org.wildfly.swarm.config.jmx</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</a> in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</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="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> that return <a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</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="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</a></code></td>
<td class="colLast"><span class="typeNameLabel">JMX.JMXResources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/JMX.JMXResources.html#jmxRemotingConnector--">jmxRemotingConnector</a></span>()</code>
<div class="block">A JBoss remoting connector for the JMX subsystem.</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</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="../../../../../../org/wildfly/swarm/config/JMX.html" title="type parameter in JMX">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">JMX.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/JMX.html#jmxRemotingConnector-org.wildfly.swarm.config.jmx.JMXRemotingConnector-">jmxRemotingConnector</a></span>(<a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</a> value)</code>
<div class="block">A JBoss remoting connector for the JMX subsystem.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.wildfly.swarm.config.jmx">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</a> in <a href="../../../../../../org/wildfly/swarm/config/jmx/package-summary.html">org.wildfly.swarm.config.jmx</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="../../../../../../org/wildfly/swarm/config/jmx/package-summary.html">org.wildfly.swarm.config.jmx</a> with type parameters of type <a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</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="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</a><T extends <a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</a><T>></span></code>
<div class="block">A JBoss remoting connector for the JMX subsystem.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnectorConsumer.html" title="interface in org.wildfly.swarm.config.jmx">JMXRemotingConnectorConsumer</a><T extends <a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</a><T>></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnectorSupplier.html" title="interface in org.wildfly.swarm.config.jmx">JMXRemotingConnectorSupplier</a><T extends <a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</a>></span></code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/jmx/package-summary.html">org.wildfly.swarm.config.jmx</a> that return <a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</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="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">JMXRemotingConnector</a></code></td>
<td class="colLast"><span class="typeNameLabel">JMXRemotingConnectorSupplier.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnectorSupplier.html#get--">get</a></span>()</code>
<div class="block">Constructed instance of JMXRemotingConnector resource</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="../../../../../../org/wildfly/swarm/config/jmx/JMXRemotingConnector.html" title="class in org.wildfly.swarm.config.jmx">Class</a></li>
<li class="navBarCell1Rev">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><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">WildFly Swarm API, 2017.1.1</div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/jmx/class-use/JMXRemotingConnector.html" target="_top">Frames</a></li>
<li><a href="JMXRemotingConnector.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 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
| wildfly-swarm/wildfly-swarm-javadocs | 2017.1.1/apidocs/org/wildfly/swarm/config/jmx/class-use/JMXRemotingConnector.html | HTML | apache-2.0 | 12,469 |
<!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_151) on Wed Dec 04 18:42:57 MST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RemoteCacheContainerConsumer (BOM: * : All 2.5.1.Final-SNAPSHOT API)</title>
<meta name="date" content="2019-12-04">
<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="RemoteCacheContainerConsumer (BOM: * : All 2.5.1.Final-SNAPSHOT API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6,"i1":18};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/RemoteCacheContainerConsumer.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.5.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainer.RemoteCacheContainerResources.html" title="class in org.wildfly.swarm.config.infinispan"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerSupplier.html" title="interface in org.wildfly.swarm.config.infinispan"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html" target="_top">Frames</a></li>
<li><a href="RemoteCacheContainerConsumer.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">org.wildfly.swarm.config.infinispan</div>
<h2 title="Interface RemoteCacheContainerConsumer" class="title">Interface RemoteCacheContainerConsumer<T extends <a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainer.html" title="class in org.wildfly.swarm.config.infinispan">RemoteCacheContainer</a><T>></h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Functional Interface:</dt>
<dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd>
</dl>
<hr>
<br>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a>
public interface <span class="typeNameLabel">RemoteCacheContainerConsumer<T extends <a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainer.html" title="class in org.wildfly.swarm.config.infinispan">RemoteCacheContainer</a><T>></span></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html#accept-T-">accept</a></span>(<a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html" title="type parameter in RemoteCacheContainerConsumer">T</a> value)</code>
<div class="block">Configure a pre-constructed instance of RemoteCacheContainer resource</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>default <a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html" title="interface in org.wildfly.swarm.config.infinispan">RemoteCacheContainerConsumer</a><<a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html" title="type parameter in RemoteCacheContainerConsumer">T</a>></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html#andThen-org.wildfly.swarm.config.infinispan.RemoteCacheContainerConsumer-">andThen</a></span>(<a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html" title="interface in org.wildfly.swarm.config.infinispan">RemoteCacheContainerConsumer</a><<a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html" title="type parameter in RemoteCacheContainerConsumer">T</a>> after)</code> </td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="accept-org.wildfly.swarm.config.infinispan.RemoteCacheContainer-">
<!-- -->
</a><a name="accept-T-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>accept</h4>
<pre>void accept(<a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html" title="type parameter in RemoteCacheContainerConsumer">T</a> value)</pre>
<div class="block">Configure a pre-constructed instance of RemoteCacheContainer resource</div>
</li>
</ul>
<a name="andThen-org.wildfly.swarm.config.infinispan.RemoteCacheContainerConsumer-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>andThen</h4>
<pre>default <a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html" title="interface in org.wildfly.swarm.config.infinispan">RemoteCacheContainerConsumer</a><<a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html" title="type parameter in RemoteCacheContainerConsumer">T</a>> andThen(<a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html" title="interface in org.wildfly.swarm.config.infinispan">RemoteCacheContainerConsumer</a><<a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html" title="type parameter in RemoteCacheContainerConsumer">T</a>> after)</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/RemoteCacheContainerConsumer.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">Thorntail API, 2.5.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainer.RemoteCacheContainerResources.html" title="class in org.wildfly.swarm.config.infinispan"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainerSupplier.html" title="interface in org.wildfly.swarm.config.infinispan"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html" target="_top">Frames</a></li>
<li><a href="RemoteCacheContainerConsumer.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 ======= -->
<p class="legalCopy"><small>Copyright © 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
| wildfly-swarm/wildfly-swarm-javadocs | 2.5.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/infinispan/RemoteCacheContainerConsumer.html | HTML | apache-2.0 | 11,835 |
<!DOCTYPE html>
<!--
Copyright (c) 2011:
Istituto Nazionale di Fisica Nucleare (INFN), Italy
Consorzio COMETA (COMETA), Italy
See http://www.infn.it and and http://www.consorzio-cometa.it for details on
the copyright holders.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Author: Riccardo Bruno (INFN) riccardo.bruno@ct.infn.it
-->
<html>
<head>
<title>HelloTester</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jquery.tablesorter.min.js"></script>
<script type="text/javascript">
/*
* All the web app needs to configure are the following
*/
var webapp_settings = {
apiserver_proto: 'http'
,apiserver_host : 'localhost'
,apiserver_port : '8888'
,apiserver_path : ''
,apiserver_ver : 'v1.0'
,username : 'brunor'
,app_id : 1
};
/* Settings for sgw.indigo-datacloud.eu
var webapp_settings = {
apiserver_proto: 'https'
,apiserver_host : 'sgw.indigo-datacloud.eu'
,apiserver_port : '443'
,apiserver_path : '/apis'
,apiserver_ver : 'v1.0'
,username : 'brunor'
,app_id : 1
};
*/
/*
* Change variable below to change delay of check status loop
*/
var TimerDelay = 15000;
/*
* Adds the i-th job record
*/
function addJobRecord(i,jrec) {
job_id = jrec.id;
job_status = jrec.status;
job_date = jrec.date;
job_lastchange = jrec.last_change;
job_description = jrec.description;
out_files = jrec.output_files;
var OutFiles ='';
if(job_status == 'DONE') {
del_btn='<button id="cln_btn'+job_id+'"'
+' class="btn btn-xs btn-danger"'
+' type="button"'
+' data-toggle="modal"'
+' data-target="#confirmDelete"'
+' data-title="Delete job"'
+' data-message="Are you sure you want to delete job?"'
+' data-data="'+job_id+'">'
+'<i class="glyphicon glyphicon-trash"></i> Delete'
+'</button>';
for (var j = 0; j < out_files.length; j++)
OutFiles+=
'<div class="row">'
+' <div class="col-sm-3">'
+' <a href="'+webapp_settings.apiserver_proto+'://'
+webapp_settings.apiserver_host +':'
+webapp_settings.apiserver_port
+webapp_settings.apiserver_path +'/'
+webapp_settings.apiserver_ver +'/'
+out_files[j].url+'">'
+out_files[j].name+'</a>'
+' </div>'
+' <div class="col-sm-3">'
+' </div>'
+' <div class="col-sm-3">'
+' </div>'
+'</div>';
} else {
del_btn='';
OutFiles=
' <div class="col-sm-3"><small>No output available yet</small>'
+' </div>'
+' <div class="col-sm-3">'
+' </div>'
+' <div class="col-sm-3">'
+' </div>';
}
if(job_status != 'CANCELLED')
TableRow=
'<tr id="'+job_id+'">'
+' <td rowspan="2">'
+' <button id="job_btn'+job_id+'" class="btn btn-default btn-xs toggle">'
+' <span class="glyphicon glyphicon-eye-open"></span>'
+' </button>'
+' </td>'
+' <td>'+job_date+'</td>'
+' <td>'+job_lastchange+'</td>'
+' <td>'+job_status+'</td>'
+' <td>'+job_description+'</td>'
+'</tr>'
+'<tr class="tablesorter-childRow">'
+'<td colspan="4">'
+'<div class="row">'
+' <div class="col-sm-3"><b>Output</b></div>'
+' <div class="col-sm-3"></div>'
+' <div class="col-sm-3">'+del_btn+'</div>'
+'</div>'
+OutFiles
+'</td>'
+'</tr>'
;
return TableRow;
}
/*
* Clean the specified job
*/
function cleanJob(job_id) {
$.ajax({
type: "DELETE",
url: webapp_settings.apiserver_proto+'://'
+webapp_settings.apiserver_host +':'
+webapp_settings.apiserver_port
+webapp_settings.apiserver_path +'/'
+webapp_settings.apiserver_ver +'/tasks/'+job_id,
dataType: "json",
success: function(data) {
$('#confirmJobDel').hide();
$('#cancelJobDel').text('Continue');
$('#confirmDelete').find('.modal-body p').text('Successfully removed job');
$('#jobTable').find('#'+job_id).next().remove();
console.log('getNumJobs(): '+getNumJobs());
if(getNumJobs() > 0)
$('#jobTable').find('#'+job_id).remove();
else emptyJobTable();
},
error: function(jqXHR, textStatus, errorThrown) {
alert(jqXHR.status);
}
});
}
/*
* Fills the job table from incoming JSON data
*/
function fillJobTable(data) {
var tableRows='';
for (var i = 0; i < data.length; i++) {
tableRows+=addJobRecord(i,data[i]);
}
jobsTable =
'<table id="jobTable" class="table table-responsive tablesorter">'
+' <colgroup>'
+' <col/>'
+' <col/>'
+' <col/>'
+' <col/>'
+' <col/>'
+' </colgroup>'
+' <thead>'
+' <tr>'
+' <th></th>'
+' <th>Submitted</th>'
+' <th>Modified</th>'
+' <th>Status</th>'
+' <th>Description</th>'
+' </tr>'
+' </thead>'
+' <tbody id="jobRecords">'
+tableRows
+' </tbody>'
+'<tfoot style="size:0px">'
+'</tfoot>'
+'</table>';
// Add table
$('#jobsDiv').append(jobsTable);
// Compress childs
$('.tablesorter-childRow td').hide();
// Sort table
$("#jobTable").tablesorter(
{
theme : 'blue',
sortList: [[1,1]],
cssChildRow: "tablesorter-childRow"
}
);
$('.tablesorter').delegate('.toggle', 'click' ,function(){
$(this).closest('tr').nextUntil('tr:not(.tablesorter-childRow)').find('td').toggle();
return false;
});
}
/*
* Set empty job table
*/
function emptyJobTable() {
$('#jobsDiv').html('<small>No jobs available yet</small>');
}
/*
* Calls the API Server to generate the Jobs table
*/
function prepareJobTable() {
$('#jobsDiv').html('');
$('#jobsDiv').attr('data-modify', 'false');
$.ajax({
type: "GET",
url: webapp_settings.apiserver_proto+'://'
+webapp_settings.apiserver_host +':'
+webapp_settings.apiserver_port
+webapp_settings.apiserver_path +'/'
+webapp_settings.apiserver_ver +'/tasks?user='
+webapp_settings.username +'&application='
+webapp_settings.app_id,
dataType: "json",
success: function(data) {
if(data.tasks.length>0)
fillJobTable(data.tasks);
else
emptyJobTable();
},
error: function(jqXHR, textStatus, errorThrown) {
alert(jqXHR.status);
}
});
}
/*
* Helper function returnin the number of jobs
*/
function getNumJobs() {
return Math.floor(($('#jobTable tr').size()-1)/2);
}
/*
* Function responsible of job submission
*/
function submit(job_desc) {
$('#submitButton').hide();
job_failed ='<div class="alert alert-danger">'
+'<strong>ERROR!</strong> Failed to submit job.'
+'</div>';
job_success='<div class="alert alert-success">'
+'<strong>Success!</strong> Job successfully sent.'
+'</div>';
job_warning='<div class="alert alert-warning">'
+'<strong>WARNING!</strong> Unable to get job details.'
+'</div>';
job_description = $('#jobDescription').val();
$('#modal-content').html('');
// 1st call to register job
$.ajax({
url: webapp_settings.apiserver_proto+'://'
+webapp_settings.apiserver_host +':'
+webapp_settings.apiserver_port
+webapp_settings.apiserver_path +'/'
+webapp_settings.apiserver_ver +'/tasks?user='
+webapp_settings.username,
type: "POST",
cache: false,
dataType: "json",
contentType: "application/json; charset=utf-8",
data: JSON.stringify(job_desc),
success: function(data) {
// 2nd call finalize and start submission
$.ajax({
url: webapp_settings.apiserver_proto+'://'
+webapp_settings.apiserver_host +':'
+webapp_settings.apiserver_port
+webapp_settings.apiserver_path +'/'
+webapp_settings.apiserver_ver +'/tasks/'+data.id+'/input?user='
+webapp_settings.username,
type: "POST",
cache: false,
dataType: "json",
contentType: "application/json; charset=utf-8",
data: JSON.stringify({}),
success: function(data) {
$('#jobTable').remove();
prepareJobTable();
},
error: function(jqXHR, textStatus, errorThrown) {
$('#modal-content').html(job_failed);
alert(jqXHR.status);
}
});
},
error: function(jqXHR, textStatus, errorThrown) {
$('#modal-content').html(job_failed);
alert(jqXHR.status);
}
});
}
/*
* Function that checks for job status change
*/
function checkJobs() {
$('#jobTable tr').each(function(i,row) {
if( i>0 // Starting after thead
&& i%2!=0 // Consider only odd rows (no childs)
) { // Consider only active states
jstatus=row.cells[3].innerHTML;
if( jstatus != 'DONE'
&& jstatus != 'FAILED'
&& jstatus != 'ABORT')
$.ajax({
url: webapp_settings.apiserver_proto+'://'
+webapp_settings.apiserver_host +':'
+webapp_settings.apiserver_port
+webapp_settings.apiserver_path +'/'
+webapp_settings.apiserver_ver +'/tasks/'+row.id+'?user='
+webapp_settings.username,
type: "GET",
cache: false,
contentType: "application/json; charset=utf-8",
success: function(data) {
jstatus=$('#'+data.id).find("td").eq(3).html();
if(jstatus != data.jstatus) {
console.log("change detected: "+jstatus+"->"+data.status);
if(data.status == 'DONE')
prepareJobTable();
else
$('#'+data.id).find("td").eq(3).html(data.status);
$('#jobsDiv').attr('data-modify', 'true');
}
},
error: function(jqXHR, textStatus, errorThrown) {
console.log(jqXHR.status);
}
});
}
});
// Set timeout again for the next loop
setTimeout(checkJobs, TimerDelay);
}
/*
* Function that opens the submit modal frame
*/
function openModal() {
var currentdate = new Date();
var datetime = currentdate.getDate() + "/"
+(currentdate.getMonth()+1) + "/"
+ currentdate.getFullYear() + " @ "
+ currentdate.getHours() + ":"
+ currentdate.getMinutes() + ":"
+ currentdate.getSeconds();
$('#submitButton').show();
$('#modal-content').html('');
$('#jobDescription').val('Hello tester job desc '+datetime);
$("#helloTesterModal").modal();
}
/*
* App specific job submission call;
* Just prepare the job_desc and call the submit() function
*/
function submitJob() {
job_usrdesc = $('#jobDescription').val();
job_desc = { application : webapp_settings.app_id
,description : job_usrdesc
,output_files: []
,input_files : []
};
submit(job_desc);
}
/*
* Page initialization
*/
$(document).ready(function() {
$('#confirmDelete').on('show.bs.modal', function (e) {
$message = $(e.relatedTarget).attr('data-message');
$(this).find('.modal-body p').text($message);
$title = $(e.relatedTarget).attr('data-title');
$job_id = $(e.relatedTarget).attr('data-data');
$(this).find('.modal-title').text($title);
$('#job_id').attr('data-value', $job_id)
$('#confirmJobDel').show();
$('#cancelJobDel').text('Cancel')
});
// Form confirm (yes/ok) handler, submits form
$('#confirmDelete').find('.modal-footer #confirmJobDel').on('click', function(e){
$job_id = $('#job_id').attr('data-value');
cleanJob($job_id);
});
prepareJobTable(); // Fills the job table
setTimeout(checkJobs, TimerDelay); // Initialize the job check loop
});
</script>
</head>
<body>
<div class="panel panel-default">
<div class="panel-heading"><h3> HelloTester web application </h3></div>
<div class="panel-body">
<p>This is the simplest application
making use of FutureGateway REST APIs. It executes a simple '/bin/hostname'
command into a remote machine belonging to a distributed infrastructure. In this particular case the execution will be done through the SSH JSAGA adaptor.</p>
<button type="button" class="btn btn-primary btn-lg" id="openmodal" onClick="openModal()">
Launch Hello tester job
</button>
<hr>
<!-- Submit record table (begin) -->
<div id="jobsDiv" data-modify="false">
</div>
<!-- Submit record table (end) -->
</div>
</div>
<div class="panel-footer"><small>HelloTester</small></div>
<!-- Modal (begin) -->
<div class="modal fade" id="helloTesterModal" tabindex="-1" role="dialog" aria-labelledby="HelloTester">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Hello tester submission pane</h4>
</div>
<div class="modal-body">
<p>Welcome to the 1st web application testing the new FutureGateway APIs.</p>
<p>This application just execute over SSH a simple hostname command.</p>
<p>Please press <b>'submit'</b> button to execute the 'Hello' application.</p>
<p>Press cancel to return to the Hello' home/summary page.</p>
<p><b>Specify your job identifier: </b>
<input type="text" id="jobDescription" size="60"/>
</p>
<!-- This is not shown properly
<div class="modal-content" id="modal-content">
</div>
-->
</div>
<div class="modal-footer">
<center>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary" onClick="submitJob()" id="submitButton">Submit</button>
</center>
</div>
</div>
</div>
</div>
<!-- Modal (end) -->
<!-- Confirm Modal Dialog (begin) -->
<div class="modal fade" id="confirmDelete" role="dialog" aria-labelledby="confirmDeleteLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Delete Parmanently</h4>
</div>
<div class="modal-body">
<p></p>
</div>
<div id="job_id" class='job_id' data-name='job_id' data-value=''/>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" id="cancelJobDel">Cancel</button>
<button type="button" class="btn btn-danger" id="confirmJobDel">Delete</button>
</div>
</div>
</div>
</div>
</div>
<!-- Confirm Modal Dialog (end) -->
</body>
</html>
| FutureGateway/HelloTester | web/index.html | HTML | apache-2.0 | 24,172 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.