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
<div class="tpl-portlet-components"> <div class="portlet-title"> <div class="caption font-green bold"> <span class="am-icon-code"></span>用户详情页 - {$result->username} </div> <div class="tpl-portlet-input tpl-fz-ml"> <div class="portlet-input input-small input-inline"> <div class="input-icon right"> <i class="am-icon-search"></i> <input type="text" class="form-control form-control-solid" placeholder="搜索..."> </div> </div> </div> </div> <div class="tpl-block "> <div class="am-g tpl-amazeui-form"> <div style="display: none"><input id="photo" type="file"></div> <div class="am-u-sm-12 am-u-md-9"> <form class="am-form am-form-horizontal" id="userUpdate" enctype="multipart/form-data"> <div class="am-form-group"> <div class="am-u-sm-6">&nbsp;</div> <div class="am-u-sm-6"> <img class="am-circle" id="header_image" alt="80*80" src="__STATIC_UPLOAD_URL__/users/{$result->photo}" width="80" height="80" /> <a id="photo_click"><span class="am-icon-pencil-square-o"></span></a> </div> <div class="am-form-group"> <div class="am-u-sm-5">&nbsp;</div> <div class="am-u-sm-6"> <span> <small>&nbsp;</small> <small>关注</small> <small><b>{$result->follow}</b></small> </span> <span>&nbsp;&nbsp;</span> <span> <small>粉丝</small> <small><b>{$result->fans}</b></small> </span> <span>&nbsp;&nbsp;</span> <span> <small>积分</small> <small><b>{$result->score}</b></small> </span> </div> <div class="am-u-sm-1">&nbsp;</div> </div> </div> <div class="am-form-group"> <label for="user-name" class="am-u-sm-4 am-form-label">昵称 / NickName</label> <div class="am-u-sm-8"> <input type="text" id="nickname" name="username" placeholder="昵称 / NickName" value="{$result->username}"> </div> </div> <div class="am-form-group"> <label for="user-name" class="am-u-sm-4 am-form-label">姓名 / Name</label> <div class="am-u-sm-8"> <input type="text" id="user-name" name="realname" placeholder="姓名 / Name" value="{$result->realname}"> </div> </div> <div class="am-form-group"> <label for="user-email" class="am-u-sm-4 am-form-label">电子邮件 / Email</label> <div class="am-u-sm-8"> <input type="email" id="user-email" name="email" placeholder="输入你的电子邮件 / Email" value="{$result->email}"> </div> </div> <div class="am-form-group"> <label for="user-phone" class="am-u-sm-4 am-form-label">电话 / Telephone</label> <div class="am-u-sm-8"> <input type="number" id="user-phone" name="tel" placeholder="输入你的电话号码 / Telephone"> </div> </div> <div class="am-form-group"> <label for="create_time" class="am-u-sm-4 am-form-label">注册时间</label> <div class="am-u-sm-8"> <input type="text" id="create_time" name="create_time" value="{$result->create_time}" readonly> </div> </div> <div class="am-form-group"> <label for="update_time" class="am-u-sm-4 am-form-label">最近一次登录</label> <div class="am-u-sm-8"> <input type="text" id="update_time" name="update_time" value="{$result->update_time}" readonly> </div> </div> <div class="am-form-group"> <label for="register_ip" class="am-u-sm-4 am-form-label">注册IP / Ip</label> <div class="am-u-sm-8"> <input type="text" id="register_ip" name="register_ip" value="{$result->create_ip|long2ip}" readonly> </div> </div> <div class="am-form-group"> <label for="birthday" class="am-u-sm-4 am-form-label">生日/ birthday</label> <div class="am-u-sm-8"> <input type="text" id="birthday" name="birthday" value="{$result->birthday}"> </div> </div> <div class="am-form-group"> <label for="addr" class="am-u-sm-4 am-form-label">家庭住址/ addr</label> <div class="am-u-sm-8"> <input type="text" id="addr" name="addr" value="{$result->addr}"> </div> </div> <div class="am-form-group"> <label for="user-intro" class="am-u-sm-4 am-form-label">个性签名 / Intro</label> <div class="am-u-sm-8"> <textarea class="" rows="5" id="user-intro" name="tag" placeholder="个性签名">{$result->tag}</textarea> <small>250字以内写出你的个性...</small> </div> </div> <input type="hidden" id = "uid" value="{$result->uid}"> </form> </div> </div> </div> </div> <script> $('#photo_click').click(function () { $('#photo').trigger('click'); }); $('#photo').on('change', function() { var file = document.getElementById('photo').files[0]; console.log(file); var uid = $('#uid').val(); var form = new FormData(); form.append('uid',uid); form.append('file',file); console.log(form); $.ajax({ method:'post', url:"{:url('admin/users/changePhoto')}", data:form, processData: false, contentType: false, success:function (data) { $('#header_image').attr('src','http://www.farer.com/uploads/users/'+data.path); } }) }); $('#userUpdate input').each(function (i,obj) { $(this).change(function () { var key = $(this).attr('name'); var value = $(this).val(); var uid = $('#uid').val(); console.log(key,value,uid); $.ajax({ method:'post', url:"{:url('admin/users/userModify')}", data:{key:key,value:value,uid:uid}, success:function () { } }); console.log($(this).attr('name'),$(this).val()); }) }) </script>
zhyunfe/Farer
application/admin/view/users/details.html
HTML
apache-2.0
8,120
<!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">&#160;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_13a.html">Class Test_AbaRouteValidator_13a</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_25968_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_13a.html?line=23297#src-23297" >testAbaNumberCheck_25968_bad</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:42:29 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</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_25968_bad</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/exceptions/AbaRouteValidationException.html?id=41757#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> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/ErrorCodes.html?id=41757#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> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=41757#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_13a_testAbaNumberCheck_25968_bad_w7x.html
HTML
apache-2.0
10,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">&#160;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_17b.html">Class Test_AbaRouteValidator_17b</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_36923_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_17b.html?line=44153#src-44153" >testAbaNumberCheck_36923_good</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:47:07 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</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_36923_good</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=43387#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_17b_testAbaNumberCheck_36923_good_xh7.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="fr"> <head> <!-- Generated by javadoc (version 1.7.0_51) on Sat May 17 15:31:36 CEST 2014 --> <title>ThreadingProfile (Luchess 1.0.0 API)</title> <meta name="date" content="2014-05-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="ThreadingProfile (Luchess 1.0.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 class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../io/elegie/luchess/core/indexing/workflow/IndexingTask.html" title="class in io.elegie.luchess.core.indexing.workflow"><span class="strong">Prev Class</span></a></li> <li>Next Class</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?io/elegie/luchess/core/indexing/workflow/ThreadingProfile.html" target="_top">Frames</a></li> <li><a href="ThreadingProfile.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">io.elegie.luchess.core.indexing.workflow</div> <h2 title="Class ThreadingProfile" class="title">Class ThreadingProfile</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>io.elegie.luchess.core.indexing.workflow.ThreadingProfile</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">ThreadingProfile</span> extends java.lang.Object</pre> <div class="block">This class is used to configure the <a href="../../../../../../io/elegie/luchess/core/indexing/workflow/IndexingSession.html" title="class in io.elegie.luchess.core.indexing.workflow"><code>IndexingSession</code></a> threading model, i.e. the number of threads to be used, as well as the timeout after which the session must interrupt its processing.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../io/elegie/luchess/core/indexing/workflow/ThreadingProfile.html#ThreadingProfile()">ThreadingProfile</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><strong><a href="../../../../../../io/elegie/luchess/core/indexing/workflow/ThreadingProfile.html#getNumberOfThreads()">getNumberOfThreads</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><strong><a href="../../../../../../io/elegie/luchess/core/indexing/workflow/ThreadingProfile.html#getTimeoutSeconds()">getTimeoutSeconds</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../../io/elegie/luchess/core/indexing/workflow/ThreadingProfile.html#setNumberOfThreads(int)">setNumberOfThreads</a></strong>(int&nbsp;numberOfThreads)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../../io/elegie/luchess/core/indexing/workflow/ThreadingProfile.html#setTimeoutSeconds(int)">setTimeoutSeconds</a></strong>(int&nbsp;timeoutSeconds)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="ThreadingProfile()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>ThreadingProfile</h4> <pre>public&nbsp;ThreadingProfile()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="getNumberOfThreads()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getNumberOfThreads</h4> <pre>public&nbsp;int&nbsp;getNumberOfThreads()</pre> </li> </ul> <a name="setNumberOfThreads(int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setNumberOfThreads</h4> <pre>public&nbsp;void&nbsp;setNumberOfThreads(int&nbsp;numberOfThreads)</pre> </li> </ul> <a name="getTimeoutSeconds()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getTimeoutSeconds</h4> <pre>public&nbsp;int&nbsp;getTimeoutSeconds()</pre> </li> </ul> <a name="setTimeoutSeconds(int)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>setTimeoutSeconds</h4> <pre>public&nbsp;void&nbsp;setTimeoutSeconds(int&nbsp;timeoutSeconds)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../io/elegie/luchess/core/indexing/workflow/IndexingTask.html" title="class in io.elegie.luchess.core.indexing.workflow"><span class="strong">Prev Class</span></a></li> <li>Next Class</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?io/elegie/luchess/core/indexing/workflow/ThreadingProfile.html" target="_top">Frames</a></li> <li><a href="ThreadingProfile.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
Elegie/luchess
doc/javadoc/io/elegie/luchess/core/indexing/workflow/ThreadingProfile.html
HTML
apache-2.0
10,077
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-GB" xml:lang="en-GB" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Statistics of iobj in UD_Akkadian-PISANDUB</title> <link rel="root" href=""/> <!-- for JS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="../../css/jquery-ui-redmond.css"/> <link rel="stylesheet" type="text/css" href="../../css/style.css"/> <link rel="stylesheet" type="text/css" href="../../css/style-vis.css"/> <link rel="stylesheet" type="text/css" href="../../css/hint.css"/> <script type="text/javascript" src="../../lib/ext/head.load.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/3.2.2/anchor.min.js"></script> <script>document.addEventListener("DOMContentLoaded", function(event) {anchors.add();});</script> <!-- Set up this custom Google search at https://cse.google.com/cse/business/settings?cx=001145188882102106025:dl1mehhcgbo --> <!-- DZ 2021-01-22: I am temporarily hiding the search field to find out whether it slows down loading of the title page. <script> (function() { var cx = '001145188882102106025:dl1mehhcgbo'; var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; gcse.src = 'https://cse.google.com/cse.js?cx=' + cx; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s); })(); </script> --> <!-- <link rel="shortcut icon" href="favicon.ico"/> --> </head> <body> <div id="main" class="center"> <div id="hp-header"> <table width="100%"><tr><td width="50%"> <span class="header-text"><a href="http://universaldependencies.org/#language-">home</a></span> <span class="header-text"><a href="https://github.com/universaldependencies/docs/edit/pages-source/treebanks/akk_pisandub/akk_pisandub-dep-iobj.md" target="#">edit page</a></span> <span class="header-text"><a href="https://github.com/universaldependencies/docs/issues">issue tracker</a></span> </td><td> <gcse:search></gcse:search> </td></tr></table> </div> <hr/> <div class="v2complete"> This page pertains to UD version 2. </div> <div id="content"> <noscript> <div id="noscript"> It appears that you have Javascript disabled. Please consider enabling Javascript for this page to see the visualizations. </div> </noscript> <!-- The content may include scripts and styles, hence we must load the shared libraries before the content. --> <script type="text/javascript"> console.time('loading libraries'); var root = '../../'; // filled in by jekyll head.js( // External libraries // DZ: Copied from embedding.html. I don't know which one is needed for what, so I'm currently keeping them all. root + 'lib/ext/jquery.min.js', root + 'lib/ext/jquery.svg.min.js', root + 'lib/ext/jquery.svgdom.min.js', root + 'lib/ext/jquery.timeago.js', root + 'lib/ext/jquery-ui.min.js', root + 'lib/ext/waypoints.min.js', root + 'lib/ext/jquery.address.min.js' ); </script> <h2 id="treebank-statistics-ud_akkadian-pisandub-relations-iobj">Treebank Statistics: UD_Akkadian-PISANDUB: Relations: <code class="language-plaintext highlighter-rouge">iobj</code></h2> <p>This relation is universal.</p> <p>12 nodes (1%) are attached to their parents as <code class="language-plaintext highlighter-rouge">iobj</code>.</p> <p>9 instances of <code class="language-plaintext highlighter-rouge">iobj</code> (75%) are right-to-left (child precedes parent). Average distance between parent and child is 8.83333333333333.</p> <p>The following 4 pairs of parts of speech are connected with <code class="language-plaintext highlighter-rouge">iobj</code>: <tt><a href="akk_pisandub-pos-VERB.html">VERB</a></tt>-<tt><a href="akk_pisandub-pos-NOUN.html">NOUN</a></tt> (5; 42% instances), <tt><a href="akk_pisandub-pos-VERB.html">VERB</a></tt>-<tt><a href="akk_pisandub-pos-PRON.html">PRON</a></tt> (3; 25% instances), <tt><a href="akk_pisandub-pos-VERB.html">VERB</a></tt>-<tt><a href="akk_pisandub-pos-PROPN.html">PROPN</a></tt> (3; 25% instances), <tt><a href="akk_pisandub-pos-NOUN.html">NOUN</a></tt>-<tt><a href="akk_pisandub-pos-NOUN.html">NOUN</a></tt> (1; 8% instances).</p> <pre><code class="language-conllu"># visual-style 2 bgColor:blue # visual-style 2 fgColor:white # visual-style 4 bgColor:blue # visual-style 4 fgColor:white # visual-style 4 2 iobj color:blue 1 le-mu-ut-ti lemuttu NOUN _ _ 4 obj _ _ 2 URU ālu NOUN _ _ 4 iobj _ _ 3 -šu šu PRON _ _ 2 det _ _ 4 [i]-⸢te⸣-né-ep-pu-⸢uš⸣ epēšu VERB _ _ 0 root _ _ 5 u₄-mi-ša-am ūmišam ADV _ _ 4 advmod _ _ 6 -⸢ma⸣ -ma CCONJ _ _ 7 cc _ _ 7 xx _ X _ _ 4 dep _ _ 8 [xx] _ X _ _ 7 dep _ _ </code></pre> <pre><code class="language-conllu"># visual-style 22 bgColor:blue # visual-style 22 fgColor:white # visual-style 21 bgColor:blue # visual-style 21 fgColor:white # visual-style 21 22 iobj color:blue 1 d-AG Nabû PROPN _ _ 21 nsubj _ _ 2 IBILA aplu NOUN _ _ 1 appos _ _ 3 ṣi-i-ri ṣīru ADJ _ _ 2 amod _ _ 4 IGI-GÁL-LA igigallu NOUN _ _ 1 appos _ _ 5 DINGIR-MEŠ ilu NOUN _ _ 4 nmod _ _ 6 muš-tar-ḫu muštarhu NOUN _ _ 1 appos _ _ 7 ša ša SCONJ REL _ 9 mark _ _ 8 a-na ana ADP _ _ 9 case _ _ 9 ta-na-da-a-ti tanattu NOUN _ _ 6 acl _ _ 10 šit-ku-nu šitkunu ADJ _ _ 9 amod _ _ 11 IBILA aplu NOUN _ _ 1 appos _ _ 12 reš-tu-ú rēštû ADJ _ _ 11 amod _ _ 13 ša ša SCONJ _ _ 14 mark _ _ 14 d-AMAR-UTU Marduk PROPN _ _ 11 acl _ _ 15 i-lit-ti ilittu NOUN _ _ 14 nmod _ _ 16 d-e₄-ru₆-ú-a Eruʾa PROPN _ _ 14 conj _ _ 17 šar-rat šarratu NOUN _ _ 16 appos _ _ 18 pa-ti-qát pātiqu NOUN _ _ 17 nmod _ _ 19 nab-ni-ti nabnītu NOUN _ _ 18 nmod _ _ 20 ḫa-diš hadîš ADV _ _ 21 advmod _ _ 21 nap-li-is palāsu VERB _ _ 0 root _ _ 22 -ma -ma PRON _ _ 21 iobj _ _ </code></pre> <pre><code class="language-conllu"># visual-style 1 bgColor:blue # visual-style 1 fgColor:white # visual-style 4 bgColor:blue # visual-style 4 fgColor:white # visual-style 4 1 iobj color:blue 1 d-NÈ-ERI₁₁-GAL Nergal PROPN _ _ 4 iobj _ _ 2 dan-dan-ni dandannu ADJ _ _ 1 amod _ _ 3 DINGIR-MEŠ ilu NOUN _ _ 2 nmod _ _ 4 ú-ša-li-ik alāku VERB _ _ 0 root _ _ 5 i-da idu NOUN _ _ 4 obj _ _ 6 -a-a -ia PRON _ _ 5 det _ _ 7 i-na-ar nêru VERB _ _ 4 parataxis _ _ 8 a-a-bi ayyābu NOUN _ _ 7 obj _ _ 9 -ia -ia PRON _ _ 8 det _ _ 10 ú-ša-am-qì-it maqātu VERB _ _ 7 parataxis _ _ 11 ga-ri gērû NOUN _ _ 10 obj _ _ 12 -ia -ia PRON _ _ 11 det _ _ </code></pre> </div> <!-- support for embedded visualizations --> <script type="text/javascript"> var root = '../../'; // filled in by jekyll head.js( // We assume that external libraries such as jquery.min.js have already been loaded outside! // (See _layouts/base.html.) // brat helper modules root + 'lib/brat/configuration.js', root + 'lib/brat/util.js', root + 'lib/brat/annotation_log.js', root + 'lib/ext/webfont.js', // brat modules root + 'lib/brat/dispatcher.js', root + 'lib/brat/url_monitor.js', root + 'lib/brat/visualizer.js', // embedding configuration root + 'lib/local/config.js', // project-specific collection data root + 'lib/local/collections.js', // Annodoc root + 'lib/annodoc/annodoc.js', // NOTE: non-local libraries 'https://spyysalo.github.io/conllu.js/conllu.js' ); var webFontURLs = [ // root + 'static/fonts/Astloch-Bold.ttf', root + 'static/fonts/PT_Sans-Caption-Web-Regular.ttf', root + 'static/fonts/Liberation_Sans-Regular.ttf' ]; var setupTimeago = function() { jQuery("time.timeago").timeago(); }; head.ready(function() { setupTimeago(); // mark current collection (filled in by Jekyll) Collections.listing['_current'] = ''; // perform all embedding and support functions Annodoc.activate(Config.bratCollData, Collections.listing); }); </script> <!-- google analytics --> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-55233688-1', 'auto'); ga('send', 'pageview'); </script> <div id="footer"> <p class="footer-text">&copy; 2014–2021 <a href="http://universaldependencies.org/introduction.html#contributors" style="color:gray">Universal Dependencies contributors</a>. Site powered by <a href="http://spyysalo.github.io/annodoc" style="color:gray">Annodoc</a> and <a href="http://brat.nlplab.org/" style="color:gray">brat</a></p>. </div> </div> </body> </html>
UniversalDependencies/universaldependencies.github.io
treebanks/akk_pisandub/akk_pisandub-dep-iobj.html
HTML
apache-2.0
9,540
<!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_10-ea) on Mon Apr 22 19:50:45 PDT 2013 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class com.fasterxml.jackson.databind.ser.std.StdArraySerializers.BooleanArraySerializer (jackson-databind 2.2.0 API)</title> <meta name="date" content="2013-04-22"> <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.StdArraySerializers.BooleanArraySerializer (jackson-databind 2.2.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/StdArraySerializers.BooleanArraySerializer.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/StdArraySerializers.BooleanArraySerializer.html" target="_top">Frames</a></li> <li><a href="StdArraySerializers.BooleanArraySerializer.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.StdArraySerializers.BooleanArraySerializer" class="title">Uses of Class<br>com.fasterxml.jackson.databind.ser.std.StdArraySerializers.BooleanArraySerializer</h2> </div> <div class="classUseContainer">No usage of com.fasterxml.jackson.databind.ser.std.StdArraySerializers.BooleanArraySerializer</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/StdArraySerializers.BooleanArraySerializer.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/StdArraySerializers.BooleanArraySerializer.html" target="_top">Frames</a></li> <li><a href="StdArraySerializers.BooleanArraySerializer.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2012-2013 <a href="http://fasterxml.com/">FasterXML</a>. All Rights Reserved.</small></p> </body> </html>
FasterXML/jackson-databind
docs/javadoc/2.2/com/fasterxml/jackson/databind/ser/std/class-use/StdArraySerializers.BooleanArraySerializer.html
HTML
apache-2.0
4,971
<!DOCTYPE html> <html> <head> <title>Mutliple Instances</title> <script src="https://npmcdn.com/vue/dist/vue.js"></script> </head> <body> <div id="app1"> <h1 ref="heading">{{ title }}</h1> <!-- Adding a reference using ref --> <button v-on:click="show" ref="myButton">Show Paragraph</button> <p v-if="showParagraph">This is not always visible</p> </div> <div id="app2"> <h1>{{ title }}</h1> <button v-on:click="onChange">Change something in Vue 1</button> </div> <script src="app.js"></script> </body>
arcyfelix/Courses
19-05-06-VueJS2/19-AccessingTheVueInstanceFromOutside/index.html
HTML
apache-2.0
544
<!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 Tue Oct 30 00:53:03 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.wildfly.swarm.config.RemotingConsumer (BOM: * : All 2.2.1.Final API)</title> <meta name="date" content="2018-10-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 Interface org.wildfly.swarm.config.RemotingConsumer (BOM: * : All 2.2.1.Final 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/RemotingConsumer.html" title="interface in org.wildfly.swarm.config">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.2.1.Final</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/class-use/RemotingConsumer.html" target="_top">Frames</a></li> <li><a href="RemotingConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.RemotingConsumer" class="title">Uses of Interface<br>org.wildfly.swarm.config.RemotingConsumer</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/RemotingConsumer.html" title="interface in org.wildfly.swarm.config">RemotingConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</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/RemotingConsumer.html" title="interface in org.wildfly.swarm.config">RemotingConsumer</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/RemotingConsumer.html" title="interface in org.wildfly.swarm.config">RemotingConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>default <a href="../../../../../org/wildfly/swarm/config/RemotingConsumer.html" title="interface in org.wildfly.swarm.config">RemotingConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/RemotingConsumer.html" title="type parameter in RemotingConsumer">T</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">RemotingConsumer.</span><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/RemotingConsumer.html#andThen-org.wildfly.swarm.config.RemotingConsumer-">andThen</a></span>(<a href="../../../../../org/wildfly/swarm/config/RemotingConsumer.html" title="interface in org.wildfly.swarm.config">RemotingConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/RemotingConsumer.html" title="type parameter in RemotingConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with parameters of type <a href="../../../../../org/wildfly/swarm/config/RemotingConsumer.html" title="interface in org.wildfly.swarm.config">RemotingConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>default <a href="../../../../../org/wildfly/swarm/config/RemotingConsumer.html" title="interface in org.wildfly.swarm.config">RemotingConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/RemotingConsumer.html" title="type parameter in RemotingConsumer">T</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">RemotingConsumer.</span><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/RemotingConsumer.html#andThen-org.wildfly.swarm.config.RemotingConsumer-">andThen</a></span>(<a href="../../../../../org/wildfly/swarm/config/RemotingConsumer.html" title="interface in org.wildfly.swarm.config">RemotingConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/RemotingConsumer.html" title="type parameter in RemotingConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</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/RemotingConsumer.html" title="interface in org.wildfly.swarm.config">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.2.1.Final</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/class-use/RemotingConsumer.html" target="_top">Frames</a></li> <li><a href="RemotingConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2.2.1.Final/apidocs/org/wildfly/swarm/config/class-use/RemotingConsumer.html
HTML
apache-2.0
8,891
<!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">&#160;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_17b.html">Class Test_AbaRouteValidator_17b</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_36397_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_17b.html?line=31529#src-31529" >testAbaNumberCheck_36397_good</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:47:10 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</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_36397_good</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=8223#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_17b_testAbaNumberCheck_36397_good_6cf.html
HTML
apache-2.0
9,183
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="it"> <head> <!-- Generated by javadoc (1.8.0_162) on Wed Mar 14 16:29:26 CET 2018 --> <title>C-Index</title> <meta name="date" content="2018-03-14"> <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="C-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="../it/michelebonacina/lib/jgps/points/package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li><a href="../it/michelebonacina/lib/jgps/points/package-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>Prev Letter</li> <li><a href="index-2.html">Next Letter</a></li> </ul> <ul class="navList"> <li><a href="../index.html?index-files/index-1.html" target="_top">Frames</a></li> <li><a href="index-1.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="contentContainer"><a href="index-1.html">C</a>&nbsp;<a href="index-2.html">E</a>&nbsp;<a href="index-3.html">G</a>&nbsp;<a href="index-4.html">I</a>&nbsp;<a href="index-5.html">P</a>&nbsp;<a href="index-6.html">S</a>&nbsp;<a href="index-7.html">T</a>&nbsp;<a href="index-8.html">W</a>&nbsp;<a name="I:C"> <!-- --> </a> <h2 class="title">C</h2> <dl> <dt><span class="memberNameLink"><a href="../it/michelebonacina/lib/jgps/points/TrackpointComparator.html#compare-it.michelebonacina.lib.jgps.points.Trackpoint-it.michelebonacina.lib.jgps.points.Trackpoint-">compare(Trackpoint, Trackpoint)</a></span> - Method in class it.michelebonacina.lib.jgps.points.<a href="../it/michelebonacina/lib/jgps/points/TrackpointComparator.html" title="class in it.michelebonacina.lib.jgps.points">TrackpointComparator</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../it/michelebonacina/lib/jgps/points/Point.html#computeDifference-it.michelebonacina.lib.jgps.points.Point-">computeDifference(Point)</a></span> - Method in class it.michelebonacina.lib.jgps.points.<a href="../it/michelebonacina/lib/jgps/points/Point.html" title="class in it.michelebonacina.lib.jgps.points">Point</a></dt> <dd> <div class="block">Computes the difference from the previous point.</div> </dd> <dt><span class="memberNameLink"><a href="../it/michelebonacina/lib/jgps/points/Trackpoint.html#computeDifference-it.michelebonacina.lib.jgps.points.Trackpoint-">computeDifference(Trackpoint)</a></span> - Method in class it.michelebonacina.lib.jgps.points.<a href="../it/michelebonacina/lib/jgps/points/Trackpoint.html" title="class in it.michelebonacina.lib.jgps.points">Trackpoint</a></dt> <dd> <div class="block">Compute the difference from another track point.</div> </dd> </dl> <a href="index-1.html">C</a>&nbsp;<a href="index-2.html">E</a>&nbsp;<a href="index-3.html">G</a>&nbsp;<a href="index-4.html">I</a>&nbsp;<a href="index-5.html">P</a>&nbsp;<a href="index-6.html">S</a>&nbsp;<a href="index-7.html">T</a>&nbsp;<a href="index-8.html">W</a>&nbsp;</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="../it/michelebonacina/lib/jgps/points/package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li><a href="../it/michelebonacina/lib/jgps/points/package-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>Prev Letter</li> <li><a href="index-2.html">Next Letter</a></li> </ul> <ul class="navList"> <li><a href="../index.html?index-files/index-1.html" target="_top">Frames</a></li> <li><a href="index-1.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
michelebonacina/jGpsLib
doc/index-files/index-1.html
HTML
apache-2.0
5,797
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>analysis</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> <meta name="title" content="analysis"/> <meta name="author" content="Grupo08"/> <meta name="description" content="Analysis of Semantic Web HandsOn"/> <meta name="keywords" content=""/> <style type="text/css"> html { font-size: 12pt; } .title { text-align: center; } .todo { color: red; } .done { color: green; } .tag { background-color: #add8e6; font-weight:normal } .timestamp { color: #bebebe; } .timestamp-kwd { color: #5f9ea0; } .right { margin-left:auto; margin-right:0px; text-align:right; } .left { margin-left:0px; margin-right:auto; text-align:left; } .center { margin-left:auto; margin-right:auto; text-align:center; } .tg { border-collapse:collapse;border-spacing:0;border-color:#ccc; } .tg td{ font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:0px;overflow:hidden;word-break:normal;border-color:#ccc;color:#333;background-color:#fff; } .tg th{ font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:0px;overflow:hidden;word-break:normal;border-color:#ccc;color:#333;background-color:#f0f0f0; } .tg .tg-header{ text-align:center } .tg .tg-greenl { text-align: left; color: green;} .tg .tg-green { text-align: center; color: green;} .tg .tg-redl { text-align: left; color: red;} .tg .tg-red{ text-align: center; color: red;} </style> </head> <body> <div id="content"> <h1 class="title">Group 08 - Analysis</h1> <div id="table-of-contents"> <h2>Table of Contents</h2> <div id="text-table-of-contents"> <ul> <li><a href="#sec-0">0 Analysis data source</a> <ul> <li><a href="#sec-0-0">311 Service Requests</a></li> <li><a href="#sec-0-1">Crime data</a></li> <li><a href="#sec-0-2">GIS Mapping</a></li> <li><a href="#sec-0-3">GTFS Public Transport</a></li> <li><a href="#sec-0-4">Public Buildings</a></li> <li><a href="#sec-0-5">Public Schools</a></li> <li><a href="#sec-0-6">Private Schools</a></li> </ul> </li> <li><a href="#sec-1">1 License</a></li> <li><a href="#sec-2">2 Resource naming strategy</a></li> <li><a href="#sec-3">3 Reconciliation</a></li> <li><a href="#sec-4">4 Vocabularies</a></li> </ul> </div> </div> <div id="sec-0"> <h2>0. Analysis data source</h2> <p>Original CSV representation: <a href="./requirements/datasetRequirements.html#sec-0">[Link to Website]</a></p> <p>Afterwards, datasets were updated due to cleaning and simplification of data.</p> <p>GTFS Public transport dataset changed its files from eight csv to essential one csv.</p> <p>Others dataset have changed their columns due to blanks or unknown information.</p> <ul> <br> <li id="sec-0-0">311 Service Requests <p>Final CSV representation: <a href="./csv/SF_311_3Months.csv">[Link to Download]</a></p> <p>Evolution data source:</p> <table class="tg" style="undefined;table-layout: fixed; width: 830px"> <colgroup> <col style="width: 150px"> <col style="width: 80px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> </colgroup> <tr> <th class="tg-header">Final Column</th> <th class="tg-header">Type</th> <th class="tg-header">Range</th> <th class="tg-header">Problems</th> <th class="tg-header">Cleanup I - HandsOn II</th> <th class="tg-header">Cleanup II - HandsOn III</th> </tr> <tr> <td class="tg-greenl">CASEID</td> <td class="tg-green">Number</td> <td class="tg-green">3.8M - 4.2M</td> <td class="tg-green">Non unique (1 repetition)</td> <td class="tg-green">Fixed repetitions</td> </tr> <tr> <td class="tg-greenl">OPEN</td> <td class="tg-green">Date</td> <td class="tg-green">17/07/2014 - 16/10/2014</td> <td class="tg-green">Format and incorrect dates</td> <td class="tg-green">Date format</br></br>01/08/2014 - 30/09/2014</td> <td class="tg-green">XSD:Date format</br></br>2014/08/01 - 2014/09/30</td> </tr> <tr> <td class="tg-greenl">CLOSE</td> <td class="tg-green">Date</td> <td class="tg-green">17/07/2014 - 16/10/2014</td> <td class="tg-green">Format and incorrect dates</td> <td class="tg-green">Date format</br></br>01/08/2014 - 30/09/2014</td> <td class="tg-green">XSD:Date format</br></br>2014/08/01 - 2014/09/30</td> </tr> <tr> <td class="tg-redl">Updated</td> <td class="tg-red">Date</td> <td class="tg-red">17/07/2014 - 16/10/2014</td> <td class="tg-red">Format and incorrect dates</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">STATE</td> <td class="tg-green">Boolean</td> <td class="tg-green">Open - Closed</td> <td class="tg-0ord"></td> <td class="tg-green">Range 1 - 0</td> </tr> <tr> <td class="tg-greenl">AGENCY</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-greenl">CATEGORY</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-greenl">REQUEST</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-redl">REQUEST DETAILS</td> <td class="tg-red">String</td> <td class="tg-red"></td> <td class="tg-red">Duplicate information</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">ADDRESS</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-redl">Supervisor District</td> <td class="tg-red">Number</td> <td class="tg-red">0 - 12</td> <td class="tg-red">Number mean</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">NEIGHBORHOOD</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-greenl">asWKT</td> <td class="tg-green">String</td> <td class="tg-green"></td> <td class="tg-green">WGS84 Format ?</td> <td class="tg-green">Latitude and Longitude</br></br>LAT/LON WGS84</td> <td class="tg-green">GeoSPARQL WKT</td> </tr> <tr> <td class="tg-redl">Source</td> <td class="tg-red">String</td> <td class="tg-red"></td> <td class="tg-red">Irrelevant information</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">MEDIA</td> <td class="tg-green">String</td> </tr> </table> </li> <br> <li id="sec-0-1">Crime data <p>Final CSV representation: <a href="./csv/SF_Crime_3Months.csv">[Link to Download]</a></p> <p>Evolution data source:</p> <table class="tg" style="undefined;table-layout: fixed; width: 830px"> <colgroup> <col style="width: 150px"> <col style="width: 80px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> </colgroup> <tr> <th class="tg-header">Final Column</th> <th class="tg-header">Type</th> <th class="tg-header">Range</th> <th class="tg-header">Problems</th> <th class="tg-header">Cleanup I - HandsOn II</th> <th class="tg-header">Cleanup II - HandsOn III</th> </tr> <tr> <td class="tg-greenl">INCIDENTID</td> <td class="tg-green">Number</td> <td class="tg-green">10M - 990M</td> <td class="tg-green">Non unique (more than 1)</td> </tr> <tr> <td class="tg-greenl">CATEGORY</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-greenl">DESCRIPTION</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-redl">DayofWeek</td> <td class="tg-red">String</td> <td class="tg-red">Monday - Sunday</td> <td class="tg-red">Irrelevant information</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">Date</td> <td class="tg-green">Date</td> <td class="tg-green">01/07/2014 - 30/09/2014</td> <td class="tg-green">Format and incorrect dates</td> <td class="tg-green">Date format</br></br>01/08/2014 - 30/09/2014</td> <td class="tg-green">XSD:Date format</br></br>2014/08/01 - 2014/09/30</td> </tr> <tr> <td class="tg-redl">Time</td> <td class="tg-red">Date</td> <td class="tg-red">00:00 - 23:59</td> <td class="tg-red">Format HH:mm</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">DISTRICT</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-greenl">STATE</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-greenl">ADDRESS</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-redl">X</td> <td class="tg-red">Number</td> <td class="tg-red"></td> <td class="tg-red">WGS84 Format ?</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-redl">Y</td> <td class="tg-red">Number</td> <td class="tg-red"></td> <td class="tg-red">WGS84 Format ?</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">asWKT</td> <td class="tg-green">String</td> <td class="tg-green"></td> <td class="tg-green">WGS84 Format ?</td> <td class="tg-green">Latitude and Longitude</br></br>LAT/LON WGS84</td> <td class="tg-green">GeoSPARQL WKT</td> </tr> </table> </li> <br> <li id="sec-0-2">GIS Mapping <p>Final CSV representation: <a href="./csv/SF_GIS.csv">[Link to Download]</a></p> <p>Evolution data source:</p> <table class="tg" style="undefined;table-layout: fixed; width: 830px"> <colgroup> <col style="width: 150px"> <col style="width: 80px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> </colgroup> <tr> <th class="tg-header">Final Column</th> <th class="tg-header">Type</th> <th class="tg-header">Range</th> <th class="tg-header">Problems</th> <th class="tg-header">Cleanup I - HandsOn II</th> <th class="tg-header">Cleanup II - HandsOn III</th> </tr> <tr> <td class="tg-greenl">ZONEID</td> <td class="tg-green">String</td> <td class="tg-green"></td> <td class="tg-green">Non unique (more than 1)</td> </tr> <tr> <td class="tg-greenl">NAME</td> <td class="tg-green">String</td> <td class="tg-green"></td> <td class="tg-green">Non unique (more than 1)</td> </tr> <tr> <td class="tg-greenl">MEDIA</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-greenl">SHPAREA</td> <td class="tg-green">Number</td> <td class="tg-green">0 - 10M</td> </tr> <tr> <td class="tg-greenl">SHPLEN</td> <td class="tg-green">Number</td> <td class="tg-green">0 - 28k</td> </tr> <tr> <td class="tg-greenl">asWKT</td> <td class="tg-green">String</td> <td class="tg-green"></td> <td class="tg-green">SHP Format ?</td> <td class="tg-green">KML Polygon</td> <td class="tg-green">GeoSPARQL WKT</td> </tr> </table> </li> <br> <li id="sec-0-3">GTFS Public Transport <p>Final CSV representation: <a href="./csv/SF_Transit_Stops.csv">[Link to Download]</a></p> <p>Evolution data source:</p> <table class="tg" style="undefined;table-layout: fixed; width: 830px"> <colgroup> <col style="width: 150px"> <col style="width: 80px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> </colgroup> <tr> <th class="tg-header">Final Column</th> <th class="tg-header">Type</th> <th class="tg-header">Range</th> <th class="tg-header">Problems</th> <th class="tg-header">Cleanup I - HandsOn II</th> <th class="tg-header">Cleanup II - HandsOn III</th> </tr> <tr> <td class="tg-greenl">STOPID</td> <td class="tg-green">Number</td> <td class="tg-green">300 - 7800</td> </tr> <tr> <td class="tg-greenl">NAME</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-redl">stop_lat</td> <td class="tg-red">Number</td> <td class="tg-red">WGS84 Latitude range</td> <td class="tg-red"></td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-redl">stop_lon</td> <td class="tg-red">Number</td> <td class="tg-red">WGS84 Longitude range</td> <td class="tg-red"></td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">asWKT</td> <td class="tg-green">String</td> <td class="tg-green"></td> <td class="tg-green">WGS84 Format ?</td> <td class="tg-green">Latitude and Longitude</br></br>LAT/LON WGS84</td> <td class="tg-green">GeoSPARQL WKT</td> </tr> </table> </li> <br> <li id="sec-0-4">Public Buildings <p>Final CSV representation: <a href="./csv/SF_Public_Buildings.csv">[Link to Download]</a></p> <p>Evolution data source:</p> <table class="tg" style="undefined;table-layout: fixed; width: 830px"> <colgroup> <col style="width: 150px"> <col style="width: 80px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> </colgroup> <tr> <th class="tg-header">Final Column</th> <th class="tg-header">Type</th> <th class="tg-header">Range</th> <th class="tg-header">Problems</th> <th class="tg-header">Cleanup I - HandsOn II</th> <th class="tg-header">Cleanup II - HandsOn III</th> </tr> <tr> <td class="tg-redl">description</td> <td class="tg-red">Unknown</td> <td class="tg-red">None</td> <td class="tg-red">Blank</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-redl">name</td> <td class="tg-red">Unknown</td> <td class="tg-red">None</td> <td class="tg-red">Blank</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">BUILDID</td> <td class="tg-green">String</td> <td class="tg-green"></td> <td class="tg-green">Non unique (1 repetition)</td> <td class="tg-green">Fixed repetitions</td> </tr> <tr> <td class="tg-greenl">NAME</td> <td class="tg-green">String</td> <td class="tg-green"></td> <td class="tg-green">Non unique (more than 1)</td> </tr> <tr> <td class="tg-greenl">CATEGORY</td> <td class="tg-green">String</td> <td class="tg-green">Enumeration (14)</td> </tr> <tr> <td class="tg-greenl">DEPARTMENT</td> <td class="tg-green">Number</td> <td class="tg-green">0 - 370</td> <td class="tg-green">Mean, Non unique > 1</td> <td class="tg-green">Buildings code table</td> </tr> <tr> <td class="tg-greenl">asWKT</td> <td class="tg-green">String</td> <td class="tg-green"></td> <td class="tg-green">SHP Format ?</td> <td class="tg-green">KML Polygon</td> <td class="tg-green">GeoSPARQL WKT</td> </tr> </table> </li> <br> <li id="sec-0-5">Public Schools <p>Final CSV representation: <a href="./csv/SF_Public_School.csv">[Link to Download]</a></p> <p>Evolution data source:</p> <table class="tg" style="undefined;table-layout: fixed; width: 830px"> <colgroup> <col style="width: 150px"> <col style="width: 80px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> </colgroup> <tr> <th class="tg-header">Final Column</th> <th class="tg-header">Type</th> <th class="tg-header">Range</th> <th class="tg-header">Problems</th> <th class="tg-header">Cleanup I - HandsOn II</th> <th class="tg-header">Cleanup II - HandsOn III</th> </tr> <tr> <td class="tg-redl">description</td> <td class="tg-red">Unknown</td> <td class="tg-red">None</td> <td class="tg-red">Blank</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-redl">name</td> <td class="tg-red">Unknown</td> <td class="tg-red">None</td> <td class="tg-red">Blank</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-redl">FACILITY_I</td> <td class="tg-red">String</td> <td class="tg-red"></td> <td class="tg-red">Irrelevant information</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">NAME</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-redl">DEPTNAME</td> <td class="tg-red">String</td> <td class="tg-red">SFUSD</td> <td class="tg-red">Irrelevant information</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">DEPTPUBLIC</td> <td class="tg-green">Number</td> <td class="tg-green">7</td> </tr> <tr> <td class="tg-greenl">TYPE</td> <td class="tg-green">String</td> <td class="tg-green">Enumeration (6)</td> </tr> <tr> <td class="tg-greenl">asWKT</td> <td class="tg-green">String</td> <td class="tg-green"></td> <td class="tg-green">WGS84 Format ?</td> <td class="tg-green">Latitude and Longitude</br></br>LAT/LON WGS84</td> <td class="tg-green">GeoSPARQL WKT</td> </tr> </table> </li> <br> <li id="sec-0-6">Private Schools <p>Final CSV representation: <a href="./csv/SF_Private_School.csv">[Link to Download]</a></p> <p>Evolution data source:</p> <table class="tg" style="undefined;table-layout: fixed; width: 830px"> <colgroup> <col style="width: 150px"> <col style="width: 80px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> <col style="width: 200px"> </colgroup> <tr> <th class="tg-header">Final Column</th> <th class="tg-header">Type</th> <th class="tg-header">Range</th> <th class="tg-header">Problems</th> <th class="tg-header">Cleanup I - HandsOn II</th> <th class="tg-header">Cleanup II - HandsOn III</th> </tr> <tr> <td class="tg-redl">description</td> <td class="tg-red">Unknown</td> <td class="tg-red">None</td> <td class="tg-red">Blank</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">NAME</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-greenl">CHILDREN</td> <td class="tg-green">String</td> <td class="tg-green">Unknown</td> <td class="tg-green">String mean, Non unique</td> <td class="tg-green">Convert to years range</td> </tr> <tr> <td class="tg-greenl">ADDRESS</td> <td class="tg-green">String</td> </tr> <tr> <td class="tg-redl">phone</td> <td class="tg-red">String</td> <td class="tg-red"></td> <td class="tg-red">Irrelevant information</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">TYPE</td> <td class="tg-green">String</td> <td class="tg-green"></td> <td class="tg-green">Mean, Null value == blank ?</td> <td class="tg-green">Convert to school kind</td> </tr> <tr> <td class="tg-redl">blklot</td> <td class="tg-red">String</td> <td class="tg-red"></td> <td class="tg-red">Mean</td> <td class="tg-red">Removed Column</td> </tr> <tr> <td class="tg-greenl">asWKT</td> <td class="tg-green">String</td> <td class="tg-green"></td> <td class="tg-green">WGS84 Format ?</td> <td class="tg-green">Latitude and Longitude</br></br>LAT/LON WGS84</td> <td class="tg-green">GeoSPARQL WKT</td> </tr> </table> </ul> </div> <div id="sec-1"> <h2>1. License</h2> <p>The license in all cases is CC0 1.0 Universal. Datasets are available online for free.</p> <p>Additionally, you can read more about the license associated to public transport. <a href="./csv/SF_Transit_License.txt">[Link to License]</a></p> <p>Our licence is CC0 1.0 Universal for Comma separated values and ontologies created.</p> <p>Source code license will be Apache License, Version 2.0</p> </div> <div id="sec-2"> <h2>2. Resource naming strategy</h2> <p>We have chosen "http://www.semanticweb.org/group08/" as main URI</p> <table class="tg" style="undefined;table-layout: fixed; width: 680px"> <colgroup> <col style="width: 200px"> <col style="width: 480px"> </colgroup> <tr> <th class="tg-header">Name</th> <th class="tg-header">IRI</th> </tr> <tr> <td class="tg-031e">311 Service Requests</td> <td class="tg-031e">http://www.semanticweb.org/group08/ServiceRequest/</td> </tr> <tr> <td class="tg-031e">Crime data</td> <td class="tg-031e">http://www.semanticweb.org/group08/Crime/</td> </tr> <tr> <td class="tg-031e">GIS Mapping</td> <td class="tg-031e">http://www.semanticweb.org/group08/Mapping/</td> </tr> <tr> <td class="tg-031e">GTFS Public Transport</td> <td class="tg-031e">http://www.semanticweb.org/group08/BusStop/</td> </tr> <tr> <td class="tg-031e">Building</td> <td class="tg-031e">http://www.semanticweb.org/group08/Building/</td> </tr> <tr> <td class="tg-031e">Schools</td> <td class="tg-031e">http://www.semanticweb.org/group08/School/</td> </tr> <tr> <td class="tg-031e">Private Schools</td> <td class="tg-031e">http://www.semanticweb.org/group08/School/Private</td> </tr> <tr> <td class="tg-031e">Public Schools</td> <td class="tg-031e">http://www.semanticweb.org/group08/School/Public</td> </tr> <tr> <td class="tg-031e">Public Service</td> <td class="tg-031e">http://www.semanticweb.org/group08/PublicService</td> </tr> </table> </div> <div id="sec-3"> <h2>3. Reconciliation</h2> <table class="tg" style="undefined;table-layout: fixed; width: 680px"> <colgroup> <col style="width: 200px"> <col style="width: 480px"> </colgroup> <tr> <th class="tg-header">Name</th> <th class="tg-header">Service and relation</th> </tr> <tr> <td class="tg-031e">Public Schools</td> <td class="tg-031e">geonames.org on #name with #Feature</td> </tr> <tr> <td class="tg-031e">Private Schools</td> <td class="tg-031e">geonames.org on #name with #Feature</td> </tr> </table> </div> <div id="sec-4"> <h2>4. Other vocabularies</h2> <table class="tg" style="undefined;table-layout: fixed; width: 680px"> <colgroup> <col style="width: 200px"> <col style="width: 480px"> </colgroup> <tr> <th class="tg-header">Name</th> <th class="tg-header">Service and relation</th> </tr> <tr> <td class="tg-031e">311 Service Requests</td> <td class="tg-031e">geonames.org on #neighborhood property</td> </tr> <tr> <td class="tg-031e">Crime data</td> <td class="tg-031e">geonames.org on #neighborhood property</td> </tr> <tr> <td class="tg-031e">GTFS Public Transport</td> <td class="tg-031e">schema.org on #name property</td> </tr> </table> </div> </div> <div id="postamble"> <p class="timestamp">Date: 2014-11-30</p> </div> </body> </html>
FacultadInformatica-LinkedData/Curso2014-2015
HandsOn/Group08/analysis.html
HTML
apache-2.0
30,391
{% extends 'base.html' %} {% load i18n %} {% load bootstrap3 %} {% block title %}{{ BRAND_NAME }} - {% trans 'Log in'%}{% endblock %} {% block content %} <div class="container"> <div class="row"> <div class="col-md-4 col-md-offset-4"> <div class="row page-header"> <h1>{% trans 'Log in'%}</h1> </div> <div class="row"> {% if form.errors %} <div class="alert alert-block alert-warning"> <h4>{% trans 'Error' %}</h4> <p>{% trans 'Invalid credentials' %}</p> </div> {% endif %} <form method="post" action="{% url 'django.contrib.auth.views.login' %}"> {% csrf_token %} {% bootstrap_form form %} <input type="hidden" name="next" value="{{ request.GET.next }}" /> <a href="{% url 'account_password_recovery_begin' %}" >{% trans 'Password recovery' %}</a> <br /><br /> <input class="btn btn-primary" type="submit" value="{% trans 'Log in' %}" /> {% if SELF_REGISTER %} <a class="btn btn-default" href="{% url 'account_signup_begin' %}">{% trans 'Sign up' %}</a> {% endif %} </form> </div> </div> </div> </div> {% endblock %}
hugoatease/magpie-django
magpie/account/templates/registration/login.html
HTML
apache-2.0
1,158
<!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 Jan 24 00:32:28 CET 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>com.parse4cn1.callback Class Hierarchy (Parse4CN1 API Documentation)</title> <meta name="date" content="2017-01-24"> <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.parse4cn1.callback Class Hierarchy (Parse4CN1 API Documentation)"; } } 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>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../com/parse4cn1/package-tree.html">Prev</a></li> <li><a href="../../../com/parse4cn1/command/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?com/parse4cn1/callback/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">Hierarchy For Package com.parse4cn1.callback</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.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/ParseCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">ParseCallback</span></a>&lt;T&gt; <ul> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/CountCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">CountCallback</span></a></li> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/DeleteCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">DeleteCallback</span></a></li> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/FindCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">FindCallback</span></a>&lt;T&gt;</li> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/FunctionCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">FunctionCallback</span></a>&lt;T&gt;</li> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/GetCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">GetCallback</span></a>&lt;T&gt;</li> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/GetDataCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">GetDataCallback</span></a></li> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/LocationCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">LocationCallback</span></a></li> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/LoginCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">LoginCallback</span></a></li> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/ProgressCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">ProgressCallback</span></a></li> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/RequestPasswordResetCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">RequestPasswordResetCallback</span></a></li> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/SaveCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">SaveCallback</span></a></li> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/SendCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">SendCallback</span></a></li> <li type="circle">com.parse4cn1.callback.<a href="../../../com/parse4cn1/callback/SignUpCallback.html" title="class in com.parse4cn1.callback"><span class="typeNameLink">SignUpCallback</span></a></li> </ul> </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>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../com/parse4cn1/package-tree.html">Prev</a></li> <li><a href="../../../com/parse4cn1/command/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?com/parse4cn1/callback/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
sidiabale/parse4cn1
dist/javadoc/com/parse4cn1/callback/package-tree.html
HTML
apache-2.0
7,344
<!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 : Function Reference: testdeleterequest()</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='_functions'; filename='index.html'; cookiekey='phpxref'; handleNavFrame(relbase, subdir, filename); logFunction('testdeleterequest'); // --> </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>Function and Method Cross Reference</h3> <h2><a href="index.html#testdeleterequest">testdeleterequest()</a></h2> <b>Defined at:</b><ul> <li><a href="../tests/simpletest/test/acceptance_test.php.html#testdeleterequest">/tests/simpletest/test/acceptance_test.php</a> -> <a onClick="logFunction('testdeleterequest', '/tests/simpletest/test/acceptance_test.php.source.html#l168')" href="../tests/simpletest/test/acceptance_test.php.source.html#l168"> line 168</a></li> </ul> <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/_functions/testdeleterequest.html
HTML
apache-2.0
4,769
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_45) on Fri Jan 10 21:36:49 UTC 2014 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> InternalScanner (HBase 0.94.16 API) </TITLE> <META NAME="date" CONTENT="2014-01-10"> <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="InternalScanner (HBase 0.94.16 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/InternalScanner.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/hadoop/hbase/regionserver/IncreasingToUpperBoundRegionSplitPolicy.html" title="class in org.apache.hadoop.hbase.regionserver"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/hadoop/hbase/regionserver/KeyPrefixRegionSplitPolicy.html" title="class in org.apache.hadoop.hbase.regionserver"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/hbase/regionserver/InternalScanner.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="InternalScanner.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.apache.hadoop.hbase.regionserver</FONT> <BR> Interface InternalScanner</H2> <DL> <DT><B>All Superinterfaces:</B> <DD><A HREF="http://java.sun.com/javase/6/docs/api/java/io/Closeable.html?is-external=true" title="class or interface in java.io">Closeable</A></DD> </DL> <DL> <DT><B>All Known Subinterfaces:</B> <DD><A HREF="../../../../../org/apache/hadoop/hbase/regionserver/RegionScanner.html" title="interface in org.apache.hadoop.hbase.regionserver">RegionScanner</A></DD> </DL> <DL> <DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../../org/apache/hadoop/hbase/regionserver/KeyValueHeap.html" title="class in org.apache.hadoop.hbase.regionserver">KeyValueHeap</A>, <A HREF="../../../../../org/apache/hadoop/hbase/regionserver/StoreScanner.html" title="class in org.apache.hadoop.hbase.regionserver">StoreScanner</A></DD> </DL> <HR> <DL> <DT><PRE>public interface <B>InternalScanner</B><DT>extends <A HREF="http://java.sun.com/javase/6/docs/api/java/io/Closeable.html?is-external=true" title="class or interface in java.io">Closeable</A></DL> </PRE> <P> Internal scanners differ from client-side scanners in that they operate on HStoreKeys and byte[] instead of RowResults. This is because they are actually close to how the data is physically stored, and therefore it is more convenient to interact with them that way. It is also much easier to merge the results across SortedMaps than RowResults. <p>Additionally, we need to be able to determine if the scanner is doing wildcard column matches (when only a column family is specified or if a column regex is specified) or if multiple members of the same column family were specified. If so, we need to ignore the timestamp to ensure that we get all the family members, as they may have been last updated at different times. <P> <P> <HR> <P> <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/hadoop/hbase/regionserver/InternalScanner.html#close()">close</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Closes the scanner and releases any resources it has allocated</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/hadoop/hbase/regionserver/InternalScanner.html#next(java.util.List)">next</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../../../org/apache/hadoop/hbase/KeyValue.html" title="class in org.apache.hadoop.hbase">KeyValue</A>&gt;&nbsp;results)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Grab the next row's worth of values.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/hadoop/hbase/regionserver/InternalScanner.html#next(java.util.List, int)">next</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../../../org/apache/hadoop/hbase/KeyValue.html" title="class in org.apache.hadoop.hbase">KeyValue</A>&gt;&nbsp;result, int&nbsp;limit)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Grab the next row's worth of values with a limit on the number of values to return.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/hadoop/hbase/regionserver/InternalScanner.html#next(java.util.List, int, java.lang.String)">next</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../../../org/apache/hadoop/hbase/KeyValue.html" title="class in org.apache.hadoop.hbase">KeyValue</A>&gt;&nbsp;result, int&nbsp;limit, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;metric)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Grab the next row's worth of values with a limit on the number of values to return.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/hadoop/hbase/regionserver/InternalScanner.html#next(java.util.List, java.lang.String)">next</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../../../org/apache/hadoop/hbase/KeyValue.html" title="class in org.apache.hadoop.hbase">KeyValue</A>&gt;&nbsp;results, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;metric)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Grab the next row's worth of values.</TD> </TR> </TABLE> &nbsp; <P> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="next(java.util.List)"><!-- --></A><H3> next</H3> <PRE> boolean <B>next</B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../../../org/apache/hadoop/hbase/KeyValue.html" title="class in org.apache.hadoop.hbase">KeyValue</A>&gt;&nbsp;results) throws <A HREF="http://java.sun.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></PRE> <DL> <DD>Grab the next row's worth of values. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>results</CODE> - return output array <DT><B>Returns:</B><DD>true if more rows exist after this one, false if scanner is done <DT><B>Throws:</B> <DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></CODE> - e</DL> </DD> </DL> <HR> <A NAME="next(java.util.List, java.lang.String)"><!-- --></A><H3> next</H3> <PRE> boolean <B>next</B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../../../org/apache/hadoop/hbase/KeyValue.html" title="class in org.apache.hadoop.hbase">KeyValue</A>&gt;&nbsp;results, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;metric) throws <A HREF="http://java.sun.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></PRE> <DL> <DD>Grab the next row's worth of values. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>results</CODE> - return output array<DD><CODE>metric</CODE> - the metric name <DT><B>Returns:</B><DD>true if more rows exist after this one, false if scanner is done <DT><B>Throws:</B> <DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></CODE> - e</DL> </DD> </DL> <HR> <A NAME="next(java.util.List, int)"><!-- --></A><H3> next</H3> <PRE> boolean <B>next</B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../../../org/apache/hadoop/hbase/KeyValue.html" title="class in org.apache.hadoop.hbase">KeyValue</A>&gt;&nbsp;result, int&nbsp;limit) throws <A HREF="http://java.sun.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></PRE> <DL> <DD>Grab the next row's worth of values with a limit on the number of values to return. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>result</CODE> - return output array<DD><CODE>limit</CODE> - limit on row count to get <DT><B>Returns:</B><DD>true if more rows exist after this one, false if scanner is done <DT><B>Throws:</B> <DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></CODE> - e</DL> </DD> </DL> <HR> <A NAME="next(java.util.List, int, java.lang.String)"><!-- --></A><H3> next</H3> <PRE> boolean <B>next</B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../../../org/apache/hadoop/hbase/KeyValue.html" title="class in org.apache.hadoop.hbase">KeyValue</A>&gt;&nbsp;result, int&nbsp;limit, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;metric) throws <A HREF="http://java.sun.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></PRE> <DL> <DD>Grab the next row's worth of values with a limit on the number of values to return. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>result</CODE> - return output array<DD><CODE>limit</CODE> - limit on row count to get<DD><CODE>metric</CODE> - the metric name <DT><B>Returns:</B><DD>true if more rows exist after this one, false if scanner is done <DT><B>Throws:</B> <DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></CODE> - e</DL> </DD> </DL> <HR> <A NAME="close()"><!-- --></A><H3> close</H3> <PRE> void <B>close</B>() throws <A HREF="http://java.sun.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></PRE> <DL> <DD>Closes the scanner and releases any resources it has allocated <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/io/Closeable.html?is-external=true#close()" title="class or interface in java.io">close</A></CODE> in interface <CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/io/Closeable.html?is-external=true" title="class or interface in java.io">Closeable</A></CODE></DL> </DD> <DD><DL> <DT><B>Throws:</B> <DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></CODE></DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/InternalScanner.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/hadoop/hbase/regionserver/IncreasingToUpperBoundRegionSplitPolicy.html" title="class in org.apache.hadoop.hbase.regionserver"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/hadoop/hbase/regionserver/KeyPrefixRegionSplitPolicy.html" title="class in org.apache.hadoop.hbase.regionserver"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/hbase/regionserver/InternalScanner.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="InternalScanner.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved. </BODY> </HTML>
wanhao/IRIndex
docs/apidocs/org/apache/hadoop/hbase/regionserver/InternalScanner.html
HTML
apache-2.0
18,727
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> <title>SLF4J 1.6.1 Reference Package org.slf4j.impl</title> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="style" /> </head> <body> <h3> <a href="package-summary.html" target="classFrame">org.slf4j.impl</a> </h3> <h3>Classes</h3> <ul> <li> <a href="JCLLoggerAdapter.html" target="classFrame">JCLLoggerAdapter</a> </li> <li> <a href="JCLLoggerFactory.html" target="classFrame">JCLLoggerFactory</a> </li> <li> <a href="JDK14LoggerAdapter.html" target="classFrame">JDK14LoggerAdapter</a> </li> <li> <a href="JDK14LoggerFactory.html" target="classFrame">JDK14LoggerFactory</a> </li> <li> <a href="Log4jLoggerAdapter.html" target="classFrame">Log4jLoggerAdapter</a> </li> <li> <a href="Log4jLoggerFactory.html" target="classFrame">Log4jLoggerFactory</a> </li> <li> <a href="Log4jMDCAdapter.html" target="classFrame">Log4jMDCAdapter</a> </li> <li> <a href="SimpleLogger.html" target="classFrame">SimpleLogger</a> </li> <li> <a href="SimpleLoggerFactory.html" target="classFrame">SimpleLoggerFactory</a> </li> <li> <a href="StaticLoggerBinder.html" target="classFrame">StaticLoggerBinder</a> </li> <li> <a href="StaticMDCBinder.html" target="classFrame">StaticMDCBinder</a> </li> <li> <a href="StaticMarkerBinder.html" target="classFrame">StaticMarkerBinder</a> </li> </ul> </body> </html>
pallope17/AviaMe-Final
Librerias/hibernatejar/hibernatejar/slf4j-1.6.1/slf4j-1.6.1/site/xref/org/slf4j/impl/package-frame.html
HTML
apache-2.0
2,133
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Minimal GoJS Sample</title> <meta name="description" content="An almost minimal diagram using a very simple node template and the default link template." /> <!-- Copyright 1998-2017 by Northwoods Software Corporation. --> <meta charset="UTF-8"> <script src="../release/go.js"></script> <script src="../assets/js/goSamples.js"></script> <!-- this is only for the GoJS Samples framework --> <script id="code"> function init() { if (window.goSamples) goSamples(); // init for these samples -- you don't need to call this var $ = go.GraphObject.make; // for conciseness in defining templates myDiagram = $(go.Diagram, "myDiagramDiv", // create a Diagram for the DIV HTML element { initialContentAlignment: go.Spot.Center, // center the content "undoManager.isEnabled": true // enable undo & redo }); // define a simple Node template myDiagram.nodeTemplate = $(go.Node, "Auto", // the Shape will go around the TextBlock $(go.Shape, "RoundedRectangle", { strokeWidth: 0}, // Shape.fill is bound to Node.data.color new go.Binding("fill", "color")), $(go.TextBlock, { margin: 8 }, // some room around the text // TextBlock.text is bound to Node.data.key new go.Binding("text", "key")) ); // but use the default Link template, by not setting Diagram.linkTemplate // create the model data that will be represented by Nodes and Links myDiagram.model = new go.GraphLinksModel( [ { key: "Alpha", color: "lightblue" }, { key: "Beta", color: "orange" }, { key: "Gamma", color: "lightgreen" }, { key: "Delta", color: "pink" } ], [ { from: "Alpha", to: "Beta" }, { from: "Alpha", to: "Gamma" }, { from: "Beta", to: "Beta" }, { from: "Gamma", to: "Delta" }, { from: "Delta", to: "Alpha" } ]); } </script> </head> <body onload="init()"> <div id="sample"> <!-- The DIV for the Diagram needs an explicit size or else we won't see anything. This also adds a border to help see the edges of the viewport. --> <div id="myDiagramDiv" style="border: solid 1px black; width:400px; height:400px"></div> <p> This isn't a truly <i>minimal</i> demonstration of <b>GoJS</b>, because we do specify a custom Node template, but it's pretty simple. The whole source for the sample is shown below if you click on the link. </p> <p> This sample sets the <a>Diagram.nodeTemplate</a>, with a <a>Node</a> template that data binds both the text string and the shape's fill color. For an overview of building your own templates and model data, see the <a href="../learn/index.html">Getting Started tutorial.</a> </p> <p> The <a>Diagram.initialContentAlignment</a> setting causes the diagram's contents to appear in the center of the diagram's viewport. </p> <p> Using the mouse and common keyboard commands, you can pan, select, move, copy, delete, and undo/redo. On touch devices, use your finger to act as the mouse, and hold your finger stationary to bring up a context menu. The default context menu supports most of the standard commands that are enabled at that time for the selected object. </p> <p> For a more elaborate and capable sample, see the <a href="basic.html">Basic</a> sample. For a sample that loads JSON data from the server, see the <a href="minimalJSON.html">Minimal JSON</a> sample. For a sample that loads XML data from the server, see the <a href="minimalXML.html">Minimal XML</a> sample. </p> </div> </body> </html>
dads-software-brotherhood/sekc
src/main/webapp/bower_components/goJs/samples/minimal.html
HTML
apache-2.0
3,772
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Adding a Web Client | AdminUI Documentation</title> <link rel="shortcut icon" href="../img/favicon.ico"> <link rel="stylesheet" href="../css/prism-okaidia.min.css"> <link rel="stylesheet" href="../css/fontawesome-5.7.2.min.css"> <link rel="stylesheet" href="../css/fonts.css"> <link rel="stylesheet" href="../css/site.min.css"> <link rel="stylesheet" href="../css/search.css"> <link rel="stylesheet" href="../css/theme.css"> <link rel="stylesheet" media="print" href="../css/print.css"> <link rel="stylesheet" href="../css/adminui.css"> <script>var base_url = '..';</script> </head> <body class="preload w-100 bg-grey-darkest text-white text-center text-base font-sans leading-normal m-0 adminui"> <header class="bg-grey-darkest text-white bg-repeat theme-header-imagebg no-print" style="background-image: url('../img/escheresque_ste.png');"> <div class="header-overlay-colour"> <div class="container mx-auto px-4 lg:pt-4 lg:px-6 flex items-center"> <a href=".." class="font-bold truncate py-4 lg:py-0 opacity-50"> AdminUI Documentation </a> <a id="nav-link" class="bg-transparent flex -mr-4 lg:-mr-6 ml-auto w-16 lg:hidden self-stretch items-center justify-center" href="#" aria-label="Show Menu" aria-haspopup="true" aria-controls="nav-menu"> <i class="fas fa-bars text-xl js-nav-icon" aria-hidden="true"></i> <span class="sr-only">Open Menu</span> </a> <div class="ml-auto hidden lg:block opacity-50 hover:opacity-100"> <a href="https://www.identityserver.com/documentation" class="btn btn-small btn-light"><span class="fas fa-arrow-left mr-2"></span>Documentation</a> </div> <nav id="nav-menu" class="bg-black overflow-y-auto fixed pin z-40 mt-header hidden lg:hidden" aria-labelledby="nav-link" aria-expanded="false" role="navigation"> <ul class="list-reset overflow-y-auto pin"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../index.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> About </a> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Read First</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../IdentityServer/What_Is_IdentityServer.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> What is IdentityServer </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Read_First/Installation_Scenarios.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Installation Scenarios </a> </li> </ul> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Migrations/Migrations_Help.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Migrations </a> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Configuration & Integration</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Configuration_and_Integration/Configuring_AdminUI.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Configuring AdminUI </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Configuration_and_Integration/Integrating_with_IdentityServer.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Integrating with Identity Server </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Configuration_and_Integration/Integrating_with_Quickstarts.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Integrating with Quickstarts </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Configuration_and_Integration/Enabling_Logging.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Enabling Logging </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Installation</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Installation/Installation_IIS.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> IIS </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Installation/Installation_Azure.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Azure </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Installation/Installation_Docker.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Docker </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Installation/Installer_Walkthrough.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Installer </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Users</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/Users.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Users </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/Searching_for_users.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Searching for Users </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/Adding_users.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding Users </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/Editing_users.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Editing Users </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/User_roles.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> User Roles </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/User_Claims.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> User Claims </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/User_applications.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> User Applications </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/Deleting_Users.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Deleting Users </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Roles</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Roles.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Roles </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Searching_for_Roles.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Searching for Roles </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Creating_roles.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Creating Roles </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Users_in_Role.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Users In Role </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Editing_Roles.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Editing Roles </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Deleting_Roles.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Deleting Roles </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Users_in_Role_Management.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Role Management </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Claim Types</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Claim_Types/Searching_for_claims.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Searching for Claims </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Claim_Types/Creating_claims.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Creating Claims </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Claim_Types/Editing_claims.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Editing Claims </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Claim_Types/Deleting_claims.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Deleting Claims </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Clients</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Clients.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Clients </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Searching_for_clients.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Searching for Clients </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Adding_Clients.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding Clients </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Adding_a_SPA_client.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding a SPA Client </a> </li> <li class="lg:border-0 lg:mb-2 active"> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Adding_a_web_client.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding a Web Client </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Adding_a_robot_client.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding a Robot Client </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Adding_a_Saml_client.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding a SAML Client </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Adding_a_WsFed_client.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding a WS-Fed Client </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Editing_clients.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Editing Clients </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Deleting_clients.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Deleting Clients </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Exporting_Client_Configuration.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Exporting Clients </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Resources</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Resources/Resources.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Resources </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Resources/searching_for_resources.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Searching for Resources </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Resources/creating_resources.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Creating Resources </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Resources/editing_resources.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Editing resources </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Resources/disabling_resources.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Disabling Resources </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Webhooks</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Webhooks/webhooks.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Webhooks </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Webhooks/user_registration_endpoint.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> User Registration Endpoint </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Webhooks/password_reset_endpoint.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Password Reset Endpoint </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>User Settings Endpoints</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../User_settings_endpoints/authorisation.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Authorisation </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../User_settings_endpoints/endpoints.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Endpoints </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Access Policy</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Access_Policy/Access_Policy.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Access Policy </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Access_Policy/Permissions.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Permissions </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Access_Policy/Managing_your_access_policy.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Managing your Access Policy </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Audit</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Audit/View_Audit_Events.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> View Audit Events </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Audit/IdentityServer_Auditing.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> IdentityServer Auditing </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Audit/Auditing_Database.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Auditing Database </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Audit/Audit_Language.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Audit Language </a> </li> </ul> </li> <li> <a class="flex items-start px-6 py-4 text-left" href="https://www.identityserver.com/documentation"> <span class="flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-arrow-left text-navy-lighter mr-2"></span> Documentation </a> </li> </ul> </nav> </div> <div class="text-white pt-4 pb-8 flex"> <div class="container px-4 lg:px-6 w-full text-left mx-auto self-center relative z-10"> <div class="max-w-lg"> <h1 class="font-bold w-full text-3xl lg:text-4xl leading-tight">Adding a Web Client</h1> </div> </div> </div> </div> </header> <main class="bg-grey-lightest text-copy"> <div id="skip"> <div id="content"> <div class="container p-4 lg:p-6 lg:flex items-start text-left mx-auto"> <div class="lg:hidden no-print"> <div role="search"> <form action="../search.html" method="get"> <div class="flex group items-center trans shadow-md lg:shadow-none bg-white lg:bg-white-75 overflow-hidden rounded-lg mb-4 lg:mb-8 focus-within:bg-white"> <label for="q" class="fas fa-search pl-3 cursor-pointer"></label> <input type="search" id="mkdocs-search-query" name="q" placeholder="" class="w-full bg-transparent p-3 focus:outline-none" /> </div> </form> </div> </div> <aside class="w-64 flex-no-shrink hidden lg:block no-print"> <div role="search"> <form action="../search.html" method="get"> <div class="flex group items-center trans shadow-md lg:shadow-none bg-white lg:bg-white-75 overflow-hidden rounded-lg mb-4 lg:mb-8 focus-within:bg-white"> <label for="q" class="fas fa-search pl-3 cursor-pointer"></label> <input type="search" id="mkdocs-search-query" name="q" placeholder="" class="w-full bg-transparent p-3 focus:outline-none" /> </div> </form> </div> <div class="flex mb-2 justify-between items-center"> <h2>Documentation</h2> <span class="js-expand-all text-grey-light cursor-pointer fas fa-plus-square"></span> </div> <ul class="pl-4 list-reset"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../index.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> About </a> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Read First</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../IdentityServer/What_Is_IdentityServer.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> What is IdentityServer </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Read_First/Installation_Scenarios.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Installation Scenarios </a> </li> </ul> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Migrations/Migrations_Help.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Migrations </a> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Configuration & Integration</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Configuration_and_Integration/Configuring_AdminUI.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Configuring AdminUI </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Configuration_and_Integration/Integrating_with_IdentityServer.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Integrating with Identity Server </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Configuration_and_Integration/Integrating_with_Quickstarts.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Integrating with Quickstarts </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Configuration_and_Integration/Enabling_Logging.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Enabling Logging </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Installation</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Installation/Installation_IIS.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> IIS </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Installation/Installation_Azure.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Azure </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Installation/Installation_Docker.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Docker </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Installation/Installer_Walkthrough.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Installer </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Users</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/Users.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Users </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/Searching_for_users.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Searching for Users </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/Adding_users.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding Users </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/Editing_users.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Editing Users </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/User_roles.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> User Roles </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/User_Claims.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> User Claims </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/User_applications.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> User Applications </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Users/Deleting_Users.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Deleting Users </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Roles</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Roles.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Roles </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Searching_for_Roles.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Searching for Roles </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Creating_roles.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Creating Roles </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Users_in_Role.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Users In Role </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Editing_Roles.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Editing Roles </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Deleting_Roles.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Deleting Roles </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Roles/Users_in_Role_Management.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Role Management </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Claim Types</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Claim_Types/Searching_for_claims.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Searching for Claims </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Claim_Types/Creating_claims.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Creating Claims </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Claim_Types/Editing_claims.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Editing Claims </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Claim_Types/Deleting_claims.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Deleting Claims </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Clients</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Clients.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Clients </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Searching_for_clients.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Searching for Clients </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Adding_Clients.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding Clients </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Adding_a_SPA_client.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding a SPA Client </a> </li> <li class="lg:border-0 lg:mb-2 active"> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Adding_a_web_client.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding a Web Client </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Adding_a_robot_client.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding a Robot Client </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Adding_a_Saml_client.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding a SAML Client </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Adding_a_WsFed_client.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Adding a WS-Fed Client </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Editing_clients.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Editing Clients </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Deleting_clients.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Deleting Clients </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="Exporting_Client_Configuration.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Exporting Clients </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Resources</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Resources/Resources.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Resources </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Resources/searching_for_resources.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Searching for Resources </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Resources/creating_resources.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Creating Resources </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Resources/editing_resources.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Editing resources </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Resources/disabling_resources.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Disabling Resources </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Webhooks</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Webhooks/webhooks.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Webhooks </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Webhooks/user_registration_endpoint.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> User Registration Endpoint </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Webhooks/password_reset_endpoint.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Password Reset Endpoint </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>User Settings Endpoints</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../User_settings_endpoints/authorisation.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Authorisation </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../User_settings_endpoints/endpoints.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Endpoints </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Access Policy</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Access_Policy/Access_Policy.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Access Policy </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Access_Policy/Permissions.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Permissions </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Access_Policy/Managing_your_access_policy.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Managing your Access Policy </a> </li> </ul> </li> <li class="lg:mb-2 js-has-children"> <span class="js-toggle cursor-pointer flex items-start px-6 py-4 font-bold text-left lg:font-normal lg:px-0 lg:py-0"> <span class="js-icon flex-no-shrink mt-1 lg:inline-block fas fa-fw fa-plus text-grey-lighter mr-2"></span> <span>Audit</span> </span> <ul class="js-children hidden list-reset overflow-y-auto pl-5 lg:pl-0 lg:pl-4 lg:mt-2"> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Audit/View_Audit_Events.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> View Audit Events </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Audit/IdentityServer_Auditing.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> IdentityServer Auditing </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Audit/Auditing_Database.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Auditing Database </a> </li> <li class="lg:border-0 lg:mb-2 "> <a class="flex items-start px-6 py-4 text-left lg:font-normal lg:px-0 lg:py-0" href="../Audit/Audit_Language.html" style="word-break: break-word"> <span class="flex-no-shrink hidden mt-1 lg:inline-block fas fa-fw fa-angle-right text-grey-light mr-2"></span> Audit Language </a> </li> </ul> </li> </ul> <h3 class="mt-8 mb-2">Adding a Web Client</h3> <ul class="pl-4 list-reset"> <li class="flex mb-2"><span class="font-bold mr-2">-</span><a class="break-words max-w-full" href="#adding-a-web-application">Adding a Web Application</a></li> <li class="flex mb-1"><span class="font-bold mr-2">-</span><a class="break-words max-w-full" href="#callback-url">Callback Url</a></li> <li class="flex mb-1"><span class="font-bold mr-2">-</span><a class="break-words max-w-full" href="#logout-url">Logout Url</a></li> <li class="flex mb-1"><span class="font-bold mr-2">-</span><a class="break-words max-w-full" href="#secrets">Secrets</a></li> <li class="flex mb-1"><span class="font-bold mr-2">-</span><a class="break-words max-w-full" href="#protected-resources">Protected Resources</a></li> <li class="flex mb-1"><span class="font-bold mr-2">-</span><a class="break-words max-w-full" href="#details-review">Details Review</a></li> <li class="flex mb-1"><span class="font-bold mr-2">-</span><a class="break-words max-w-full" href="#back">Back</a></li> <li class="flex mb-1"><span class="font-bold mr-2">-</span><a class="break-words max-w-full" href="#success">Success</a></li> </ul> </aside> <section class="flex-grow w-full p-4 lg:w-1 lg:p-8 lg:ml-10 bg-white rounded-lg shadow-lg"> <div class="cms"> <h2 id="adding-a-web-application">Adding a Web Application</h2> <p>If you choose to Add a Web application, you will see a dialogue enabling you to add:</p> <ul> <li><code>Client ID</code> Unique identifier </li> <li><code>Display Name</code> Application name that will be seen on Consent Screens</li> <li><code>Display URL</code> Application URL that will be seen on Consent Screens</li> <li><code>Logo URL</code> Application Logo that will be seen on Consent Screens. Note - must be HTTPS</li> <li><code>Description</code> Application description for use within AdminUI</li> </ul> <p><img alt="Web App" src="img/webapp.png" /></p> <h3 id="callback-url">Callback Url</h3> <p>You will be asked to enter a Callback URL, which is the endpoint where tokens will be sent to. This can be configured more after setup, and is the full path of the redirect URL. This must be over HTTPS:</p> <p><img alt="Callback URL" src="img/callbackurl2.png" /></p> <h3 id="logout-url">Logout Url</h3> <p>You will next be asked to enter a Logout URL:</p> <p><img alt="Post Logout" src="img/postlogouturl2.png" /></p> <h3 id="secrets">Secrets</h3> <p>You will now be able to edit and add the secrets that are available to this Web Client:</p> <p><img alt="Web App Secret" src="img/webappsecrets2.png" /></p> <p>You can select a Secret Type of either a <code>Shared Secret</code>, an <code>X509 Certificate Thumbprint</code> or an <code>X509 Certificate Name</code>.</p> <p><img alt="Secret Type" src="img/secretype.png" /></p> <p>Once you have filled out and entered the required Secret details, click "Add" and the Secret will appear in the list below:</p> <p><img alt="Secret List" src="img/secretlist.png" /></p> <h3 id="protected-resources">Protected Resources</h3> <p>You will then be asked to select the Protected Resources that this client can access:</p> <p><img alt="Protected Resources" src="img/protectedresources3.png" /></p> <h3 id="details-review">Details Review</h3> <p>You will get the chance to finally review all details at the end of the application process, when you will see a summary of all details entered so far. </p> <p><img alt="Web Client Review" src="img/reviewwebclient.png" /></p> <p>To edit, click the pencil icon and you will be returned to the page to amend those details. For instance, editing the Display Name will return you to the Basic Details </p> <h3 id="back">Back</h3> <p>If at any point after entering the basic details you wish to go back, you can navigate backwards and forwards within the application using the links at the foot of the modal, or cancel out of the entire process:</p> <p><img alt="Next" src="img/backnext.png" /></p> <h3 id="success">Success</h3> <p>You have now successfully added a Web Client.</p> </div> <div class="mt-8 flex justify-between no-print"> <a class="btn btn-line-subtle btn-small flex justify-center w-32" href="Adding_a_SPA_client.html" title="Adding a SPA Client"><span class="fas fa-long-arrow-alt-left mr-2 flex-no-shrink"></span>Previous</a> <a class="btn btn-line-subtle btn-small flex justify-center w-32 ml-auto" href="Adding_a_robot_client.html" title="Adding a Robot Client">Next<span class="fas fa-long-arrow-alt-right ml-2 flex-no-shrink"></span></a> </div> </section> </div> </div> </div> <div class="hidden fa-times fa-minus fa-minus-square"></div> </main> <footer class="bg-grey-darkest text-grey-lighter p-6 relative z-20 no-print"> <div class="container text-sm text-center mx-auto flex-wrap flex items-center justify-center"> <span class="w-full mb-2">Copyright &copy; 2019 <a class='font-bold' href='https://www.rocksolidknowledge.com' target='_blank' rel='noopener'>Rock Solid Knowledge</a></span> <span class="text-xs">Last updated Tuesday 01 October 2019</span> </div> </footer> <script src="../js/jquery-3.3.1.min.js"></script> <script src="../js/theme.js"></script> <script src="../search/main.js"></script> <script src="../js/prism-1.15.0/prism.min.js"></script> <script async src="../js/prism-1.15.0/prism-javascript.min.js"></script> <script async src="../js/prism-1.15.0/prism-typescript.min.js"></script> <script async src="../js/prism-1.15.0/prism-csharp.min.js"></script> <script async src="../js/prism-1.15.0/prism-json.min.js"></script> <script async src="../js/prism-1.15.0/prism-yaml.min.js"></script> <script async src="../js/prism-1.15.0/prism-bash.min.js"></script> </body> </html>
IdentityServer/IdentityServer4.Templates
src/IdentityServer4Admin/wwwroot/admin/documentation/Clients/Adding_a_web_client.html
HTML
apache-2.0
67,910
<!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 (1.8.0_191) on Mon Oct 29 14:51:37 CET 2018 --> <title>AuthenticationService (esoco-lib 1.3.0 API)</title> <meta name="date" content="2018-10-29"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="AuthenticationService (esoco-lib 1.3.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="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&nbsp;Class</li> <li><a href="../../../../de/esoco/lib/security/BCrypt.html" title="class in de.esoco.lib.security"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?de/esoco/lib/security/AuthenticationService.html" target="_top">Frames</a></li> <li><a href="AuthenticationService.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">de.esoco.lib.security</div> <h2 title="Interface AuthenticationService" class="title">Interface AuthenticationService</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Known Implementing Classes:</dt> <dd><a href="../../../../de/esoco/lib/service/ModificationSyncService.html" title="class in de.esoco.lib.service">ModificationSyncService</a></dd> </dl> <hr> <br> <pre>public interface <span class="typeNameLabel">AuthenticationService</span></pre> <div class="block">Definition of services that perform user authentication based on data in a relatable object.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/esoco/lib/security/AuthenticationService.html#authenticate-org.obrel.core.Relatable-">authenticate</a></span>(org.obrel.core.Relatable&nbsp;rAuthData)</code> <div class="block">Authenticates an entity based on the data in the relatable argument.</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="authenticate-org.obrel.core.Relatable-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>authenticate</h4> <pre>boolean&nbsp;authenticate(org.obrel.core.Relatable&nbsp;rAuthData)</pre> <div class="block">Authenticates an entity based on the data in the relatable argument. The relations of the authentication data object must contain the parameters necessary to perform the authentication. What exactly these parameters are depends on the service implementation. For the most basic type of a password authentication the argument should contain of the relations <a href="../../../../de/esoco/lib/security/SecurityRelationTypes.html#LOGIN_NAME"><code>SecurityRelationTypes.LOGIN_NAME</code></a> and <a href="../../../../de/esoco/lib/security/SecurityRelationTypes.html#PASSWORD"><code>SecurityRelationTypes.PASSWORD</code></a>. Alternatively the types <a href="../../../../de/esoco/lib/security/SecurityRelationTypes.html#CREDENTIAL"><code>SecurityRelationTypes.CREDENTIAL</code></a> or <a href="../../../../de/esoco/lib/security/SecurityRelationTypes.html#BINARY_CREDENTIAL"><code>SecurityRelationTypes.BINARY_CREDENTIAL</code></a> may be used (either with or without a login name). <p>Implementations may also choose to use different data for the authentication in which case the required parameters must be documented for the callers. They can also use the relatable argument to return addition information if they need to, e.g. a session ID or authentication token.</p></div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>rAuthData</code> - The relatable object containing the authentication data</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>TRUE if the authentication was successful, FALSE if not</dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev&nbsp;Class</li> <li><a href="../../../../de/esoco/lib/security/BCrypt.html" title="class in de.esoco.lib.security"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?de/esoco/lib/security/AuthenticationService.html" target="_top">Frames</a></li> <li><a href="AuthenticationService.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
esoco/esoco-lib
docs/javadoc/de/esoco/lib/security/AuthenticationService.html
HTML
apache-2.0
9,519
<!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 (1.8.0_202) on Mon Feb 04 03:20:39 CET 2019 --> <title>org.acra.processor.creator</title> <meta name="date" content="2019-02-04"> <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/acra/processor/creator/package-summary.html" target="classFrame">org.acra.processor.creator</a></h1> <div class="indexContainer"> <h2 title="Classes">Classes</h2> <ul title="Classes"> <li><a href="BuildMethodCreator.html" title="class in org.acra.processor.creator" target="classFrame">BuildMethodCreator</a></li> <li><a href="ClassCreator.html" title="class in org.acra.processor.creator" target="classFrame">ClassCreator</a></li> </ul> </div> </body> </html>
ACRA/acra
web/static/javadoc/5.3.0/org/acra/processor/creator/package-frame.html
HTML
apache-2.0
974
<HTML> <HEAD> <meta charset="UTF-8"> <title>Normalizer - biomedicus-core</title> <link rel="stylesheet" href="../../../style.css"> </HEAD> <BODY> <a href="../../index.html">biomedicus-core</a>&nbsp;/&nbsp;<a href="../index.html">edu.umn.biomedicus.normalization</a>&nbsp;/&nbsp;<a href="./index.html">Normalizer</a><br/> <br/> <h1>Normalizer</h1> <code><span class="keyword">class </span><span class="identifier">Normalizer</span>&nbsp;<span class="symbol">:</span>&nbsp;<span class="identifier">DocumentsProcessor</span></code> <p>Performs word normalization on the parse tokens in a document.</p> <p><strong>Since</strong><br/> 1.7.0</p> <h3>Constructors</h3> <table> <tbody> <tr> <td> <p><a href="-init-.html">&lt;init&gt;</a></p> </td> <td> <code><span class="identifier">Normalizer</span><span class="symbol">(</span><span class="identifier" id="edu.umn.biomedicus.normalization.Normalizer$<init>(edu.umn.biomedicus.normalization.NormalizerModel, edu.umn.biomedicus.vocabulary.Vocabulary)/normalizerStore">normalizerStore</span><span class="symbol">:</span>&nbsp;<a href="../-normalizer-model/index.html"><span class="identifier">NormalizerModel</span></a><span class="symbol">, </span><span class="identifier" id="edu.umn.biomedicus.normalization.Normalizer$<init>(edu.umn.biomedicus.normalization.NormalizerModel, edu.umn.biomedicus.vocabulary.Vocabulary)/vocabulary">vocabulary</span><span class="symbol">:</span>&nbsp;<a href="../../edu.umn.biomedicus.vocabulary/-vocabulary/index.html"><span class="identifier">Vocabulary</span></a><span class="symbol">)</span></code> <p>Creates a new normalizer for normalizing a document.</p> </td> </tr> </tbody> </table> <h3>Functions</h3> <table> <tbody> <tr> <td> <p><a href="done.html">done</a></p> </td> <td> <code><span class="keyword">fun </span><span class="identifier">done</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code></td> </tr> <tr> <td> <p><a href="process.html">process</a></p> </td> <td> <code><span class="keyword">fun </span><span class="identifier">process</span><span class="symbol">(</span><span class="identifier" id="edu.umn.biomedicus.normalization.Normalizer$process(edu.umn.nlpengine.Document)/document">document</span><span class="symbol">:</span>&nbsp;<span class="identifier">Document</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html"><span class="identifier">Unit</span></a></code></td> </tr> </tbody> </table> </BODY> </HTML>
NLPIE/BioMedICUS
doc/dokka/biomedicus-core/edu.umn.biomedicus.normalization/-normalizer/index.html
HTML
apache-2.0
2,672
<!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_65) on Wed Apr 08 22:30:55 BST 2015 --> <TITLE> S-Index </TITLE> <META NAME="date" CONTENT="2015-04-08"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="S-Index"; } } </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="../imagerecognition/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="index-5.html"><B>PREV LETTER</B></A>&nbsp; &nbsp;<A HREF="index-7.html"><B>NEXT LETTER</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../index.html?index-filesindex-6.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="index-6.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <A HREF="index-1.html">C</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">G</A> <A HREF="index-4.html">I</A> <A HREF="index-5.html">L</A> <A HREF="index-6.html">S</A> <A HREF="index-7.html">T</A> <HR> <A NAME="_S_"><!-- --></A><H2> <B>S</B></H2> <DL> <DT><A HREF="../imagerecognition/ImageRecognition.html#saveImage(java.lang.String)"><B>saveImage(String)</B></A> - Method in class imagerecognition.<A HREF="../imagerecognition/ImageRecognition.html" title="class in imagerecognition">ImageRecognition</A> <DD>Save the instance image to a file. <DT><A HREF="../imagerecognition/ImageRecognition.html#saveTransformedImage(java.lang.String)"><B>saveTransformedImage(String)</B></A> - Method in class imagerecognition.<A HREF="../imagerecognition/ImageRecognition.html" title="class in imagerecognition">ImageRecognition</A> <DD>Save the intermediate working instance image to a file. <DT><A HREF="../imagerecognition/ImageRecognition.html#searchForBottomAttitudeFeature()"><B>searchForBottomAttitudeFeature()</B></A> - Method in class imagerecognition.<A HREF="../imagerecognition/ImageRecognition.html" title="class in imagerecognition">ImageRecognition</A> <DD>Algorithm to find the Bottom red dock alignment beacon from the instance image <DT><A HREF="../imagerecognition/ImageRecognition.html#searchForLOSFeature()"><B>searchForLOSFeature()</B></A> - Method in class imagerecognition.<A HREF="../imagerecognition/ImageRecognition.html" title="class in imagerecognition">ImageRecognition</A> <DD>Algorithm to find the blue LOS beacon from the instance image <DT><A HREF="../imagerecognition/ImageRecognition.html#searchForTopAttitudeFeature()"><B>searchForTopAttitudeFeature()</B></A> - Method in class imagerecognition.<A HREF="../imagerecognition/ImageRecognition.html" title="class in imagerecognition">ImageRecognition</A> <DD>Algorithm to find the top green dock alignment beacon from the instance image <DT><A HREF="../imagerecognition/ImageRecognition.html#setContrast(int)"><B>setContrast(int)</B></A> - Method in class imagerecognition.<A HREF="../imagerecognition/ImageRecognition.html" title="class in imagerecognition">ImageRecognition</A> <DD>Apply contrast to the instance image </DL> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../imagerecognition/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="index-5.html"><B>PREV LETTER</B></A>&nbsp; &nbsp;<A HREF="index-7.html"><B>NEXT LETTER</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../index.html?index-filesindex-6.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="index-6.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <A HREF="index-1.html">C</A> <A HREF="index-2.html">D</A> <A HREF="index-3.html">G</A> <A HREF="index-4.html">I</A> <A HREF="index-5.html">L</A> <A HREF="index-6.html">S</A> <A HREF="index-7.html">T</A> <HR> </BODY> </HTML>
mattythorne/ss-cornelius
javadoc/index-files/index-6.html
HTML
apache-2.0
7,416
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Ionic makes it incredibly easy to build beautiful and interactive mobile apps using HTML5 and AngularJS."> <meta name="keywords" content="html5,javascript,mobile,drifty,ionic,hybrid,phonegap,cordova,native,ios,android,angularjs"> <meta name="author" content="Drifty"> <meta property="og:image" content="http://ionicframework.com/img/ionic-logo-blog.png"/> <title>$ionicSlideBoxDelegate - Service in module ionic - Ionic Framework</title> <link href="/css/site.css?12" rel="stylesheet"> <!--<script src="//cdn.optimizely.com/js/595530035.js"></script>--> <script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-44023830-1', 'ionicframework.com'); ga('send', 'pageview'); </script> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> </head> <body class="docs docs-page docs-api"> <nav class="navbar navbar-default horizontal-gradient" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle button ionic" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <i class="icon ion-navicon"></i> </button> <a class="navbar-brand" href="/"> <img src="/img/ionic-logo-white.svg" width="123" height="43" alt="Ionic Framework"> </a> <a href="http://blog.ionic.io/announcing-ionic-1-0/" target="_blank"> <img src="/img/ionic1-tag.png" alt="Ionic 1.0 is out!" width="28" height="32" style="margin-left: 140px; margin-top:22px; display:block"> </a> </div> <div class="collapse navbar-collapse navbar-ex1-collapse"> <ul class="nav navbar-nav navbar-right"> <li><a class="getting-started-nav nav-link" href="/getting-started/">Getting Started</a></li> <li><a class="docs-nav nav-link" href="/docs/">Docs</a></li> <li><a class="nav-link" href="http://ionic.io/support">Support</a></li> <li><a class="blog-nav nav-link" href="http://blog.ionic.io/">Blog <span id="blog-badge">1</span></a></li> <li><a class="nav-link" href="http://forum.ionicframework.com/">Forum</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle nav-link " data-toggle="dropdown" role="button" aria-expanded="false">More <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> <div class="arrow-up"></div> <li><a class="products-nav nav-link" href="http://ionic.io/">Ionic Platform</a></li> <li><a class="examples-nav nav-link" href="http://showcase.ionicframework.com/">Showcase</a></li> <li><a class="nav-link" href="http://jobs.ionic.io/">Job Board</a></li> <li><a class="nav-link" href="http://market.ionic.io/">Market</a></li> <li><a class="nav-link" href="http://ionicworldwide.herokuapp.com/">Ionic Worldwide</a></li> <li><a class="nav-link" href="http://play.ionic.io/">Playground</a></li> <li><a class="nav-link" href="http://creator.ionic.io/">Creator</a></li> <li><a class="nav-link" href="http://shop.ionic.io/">Shop</a></li> <!--<li><a class="nav-link" href="http://ngcordova.com/">ngCordova</a></li>--> </ul> </li> </ul> </div> </div> </nav> <div class="header horizontal-gradient"> <div class="container"> <h3>$ionicSlideBoxDelegate</h3> <h4>Service in module ionic</h4> </div> <div class="news"> <div class="container"> <div class="row"> <div class="col-sm-8 news-col"> <div class="picker"> <select onchange="window.location.href=this.options[this.selectedIndex].value"> <option value="/docs/nightly/api/service/$ionicSlideBoxDelegate/" > nightly </option> <option value="/docs/api/service/$ionicSlideBoxDelegate/" > 1.1.0 (latest) </option> <option value="/docs/1.0.1/api/service/$ionicSlideBoxDelegate/" > 1.0.1 </option> <option value="/docs/1.0.0/api/service/$ionicSlideBoxDelegate/" > 1.0.0 </option> <option value="/docs/1.0.0-rc.5/api/service/$ionicSlideBoxDelegate/" > 1.0.0-rc.5 </option> <option value="/docs/1.0.0-rc.4/api/service/$ionicSlideBoxDelegate/" selected> 1.0.0-rc.4 </option> <option value="/docs/1.0.0-rc.3/api/service/$ionicSlideBoxDelegate/" > 1.0.0-rc.3 </option> <option value="/docs/1.0.0-rc.2/api/service/$ionicSlideBoxDelegate/" > 1.0.0-rc.2 </option> <option value="/docs/1.0.0-rc.1/api/service/$ionicSlideBoxDelegate/" > 1.0.0-rc.1 </option> <option value="/docs/1.0.0-rc.0/api/service/$ionicSlideBoxDelegate/" > 1.0.0-rc.0 </option> <option value="/docs/1.0.0-beta.14/api/service/$ionicSlideBoxDelegate/" > 1.0.0-beta.14 </option> <option value="/docs/1.0.0-beta.13/api/service/$ionicSlideBoxDelegate/" > 1.0.0-beta.13 </option> <option value="/docs/1.0.0-beta.12/api/service/$ionicSlideBoxDelegate/" > 1.0.0-beta.12 </option> <option value="/docs/1.0.0-beta.11/api/service/$ionicSlideBoxDelegate/" > 1.0.0-beta.11 </option> <option value="/docs/1.0.0-beta.10/api/service/$ionicSlideBoxDelegate/" > 1.0.0-beta.10 </option> </select> </div> </div> <div class="col-sm-4 search-col"> <div class="search-bar"> <span class="search-icon ionic"><i class="ion-ios7-search-strong"></i></span> <input type="search" id="search-input" value="Search"> </div> </div> </div> </div> </div> </div> <div id="search-results" class="search-results" style="display:none"> <div class="container"> <div class="search-section search-api"> <h4>JavaScript</h4> <ul id="results-api"></ul> </div> <div class="search-section search-css"> <h4>CSS</h4> <ul id="results-css"></ul> </div> <div class="search-section search-content"> <h4>Resources</h4> <ul id="results-content"></ul> </div> </div> </div> <div class="container content-container"> <div class="row"> <div class="col-md-2 col-sm-3 aside-menu"> <div> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/overview/">Overview</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/components/">CSS</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/platform-customization/">Platform Customization</a> </li> </ul> <!-- Docs: JavaScript --> <ul class="nav left-menu active-menu"> <li class="menu-title"> <a href="/docs/api/"> JavaScript </a> </li> <!-- Action Sheet --> <li class="menu-section"> <a href="/docs/api/service/$ionicActionSheet/" class="api-section"> Action Sheet </a> <ul> <li> <a href="/docs/api/service/$ionicActionSheet/"> $ionicActionSheet </a> </li> </ul> </li> <!-- Backdrop --> <li class="menu-section"> <a href="/docs/api/service/$ionicBackdrop/" class="api-section"> Backdrop </a> <ul> <li> <a href="/docs/api/service/$ionicBackdrop/"> $ionicBackdrop </a> </li> </ul> </li> <!-- Content --> <li class="menu-section"> <a href="/docs/api/directive/ionContent/" class="api-section"> Content </a> <ul> <li> <a href="/docs/api/directive/ionContent/"> ion-content </a> </li> <li> <a href="/docs/api/directive/ionRefresher/"> ion-refresher </a> </li> <li> <a href="/docs/api/directive/ionPane/"> ion-pane </a> </li> </ul> </li> <!-- Form Inputs --> <li class="menu-section"> <a href="/docs/api/directive/ionCheckbox/" class="api-section"> Form Inputs </a> <ul> <li> <a href="/docs/api/directive/ionCheckbox/"> ion-checkbox </a> </li> <li> <a href="/docs/api/directive/ionRadio/"> ion-radio </a> </li> <li> <a href="/docs/api/directive/ionToggle/"> ion-toggle </a> </li> </ul> </li> <!-- Gesture and Events --> <li class="menu-section"> <a href="/docs/api/directive/onHold/" class="api-section"> Gestures and Events </a> <ul> <li> <a href="/docs/api/directive/onHold/"> on-hold </a> </li> <li> <a href="/docs/api/directive/onTap/"> on-tap </a> </li> <li> <a href="/docs/api/directive/onDoubleTap/"> on-double-tap </a> </li> <li> <a href="/docs/api/directive/onTouch/"> on-touch </a> </li> <li> <a href="/docs/api/directive/onRelease/"> on-release </a> </li> <li> <a href="/docs/api/directive/onDrag/"> on-drag </a> </li> <li> <a href="/docs/api/directive/onDragUp/"> on-drag-up </a> </li> <li> <a href="/docs/api/directive/onDragRight/"> on-drag-right </a> </li> <li> <a href="/docs/api/directive/onDragDown/"> on-drag-down </a> </li> <li> <a href="/docs/api/directive/onDragLeft/"> on-drag-left </a> </li> <li> <a href="/docs/api/directive/onSwipe/"> on-swipe </a> </li> <li> <a href="/docs/api/directive/onSwipeUp/"> on-swipe-up </a> </li> <li> <a href="/docs/api/directive/onSwipeRight/"> on-swipe-right </a> </li> <li> <a href="/docs/api/directive/onSwipeDown/"> on-swipe-down </a> </li> <li> <a href="/docs/api/directive/onSwipeLeft/"> on-swipe-left </a> </li> <li> <a href="/docs/api/service/$ionicGesture/"> $ionicGesture </a> </li> </ul> </li> <!-- Headers/Footers --> <li class="menu-section"> <a href="/docs/api/directive/ionHeaderBar/" class="api-section"> Headers/Footers </a> <ul> <li> <a href="/docs/api/directive/ionHeaderBar/"> ion-header-bar </a> </li> <li> <a href="/docs/api/directive/ionFooterBar/"> ion-footer-bar </a> </li> </ul> </li> <!-- Keyboard --> <li class="menu-section"> <a href="/docs/api/page/keyboard/" class="api-section"> Keyboard </a> <ul> <li> <a href="/docs/api/page/keyboard/"> Keyboard </a> </li> <li> <a href="/docs/api/directive/keyboardAttach/"> keyboard-attach </a> </li> </ul> </li> <!-- Lists --> <li class="menu-section"> <a href="/docs/api/directive/ionList/" class="api-section"> Lists </a> <ul> <li> <a href="/docs/api/directive/ionList/"> ion-list </a> </li> <li> <a href="/docs/api/directive/ionItem/"> ion-item </a> </li> <li> <a href="/docs/api/directive/ionDeleteButton/"> ion-delete-button </a> </li> <li> <a href="/docs/api/directive/ionReorderButton/"> ion-reorder-button </a> </li> <li> <a href="/docs/api/directive/ionOptionButton/"> ion-option-button </a> </li> <li> <a href="/docs/api/directive/collectionRepeat/"> collection-repeat </a> </li> <li> <a href="/docs/api/service/$ionicListDelegate/"> $ionicListDelegate </a> </li> </ul> </li> <!-- Loading --> <li class="menu-section"> <a href="/docs/api/service/$ionicLoading/" class="api-section"> Loading </a> <ul> <li> <a href="/docs/api/service/$ionicLoading/"> $ionicLoading </a> </li> </ul> <ul> <li> <a href="/docs/api/object/$ionicLoadingConfig/"> $ionicLoadingConfig </a> </li> </ul> </li> <!-- Modal --> <li class="menu-section"> <a href="/docs/api/service/$ionicModal/" class="api-section"> Modal </a> <ul> <li> <a href="/docs/api/service/$ionicModal/"> $ionicModal </a> </li> <li> <a href="/docs/api/controller/ionicModal/"> ionicModal </a> </li> </ul> </li> <!-- Navigation --> <li class="menu-section"> <a href="/docs/api/directive/ionNavView/" class="api-section"> Navigation </a> <ul> <li> <a href="/docs/api/directive/ionNavView/"> ion-nav-view </a> </li> <li> <a href="/docs/api/directive/ionView/"> ion-view </a> </li> <li> <a href="/docs/api/directive/ionNavBar/"> ion-nav-bar </a> </li> <li> <a href="/docs/api/directive/ionNavBackButton/"> ion-nav-back-button </a> </li> <li> <a href="/docs/api/directive/ionNavButtons/"> ion-nav-buttons </a> </li> <li> <a href="/docs/api/directive/ionNavTitle/"> ion-nav-title </a> </li> <li> <a href="/docs/api/directive/navTransition/"> nav-transition </a> </li> <li> <a href="/docs/api/directive/navDirection/"> nav-direction </a> </li> <li> <a href="/docs/api/service/$ionicNavBarDelegate/"> $ionicNavBarDelegate </a> </li> <li> <a href="/docs/api/service/$ionicHistory/"> $ionicHistory </a> </li> </ul> </li> <!-- Platform --> <li class="menu-section"> <a href="/docs/api/service/$ionicPlatform/" class="api-section"> Platform </a> <ul> <li> <a href="/docs/api/service/$ionicPlatform/"> $ionicPlatform </a> </li> </ul> </li> <!-- Popover --> <li class="menu-section"> <a href="/docs/api/service/$ionicPopover/" class="api-section"> Popover </a> <ul> <li> <a href="/docs/api/service/$ionicPopover/"> $ionicPopover </a> </li> <li> <a href="/docs/api/controller/ionicPopover/"> ionicPopover </a> </li> </ul> </li> <!-- Popup --> <li class="menu-section"> <a href="/docs/api/service/$ionicPopup/" class="api-section"> Popup </a> <ul> <li> <a href="/docs/api/service/$ionicPopup/"> $ionicPopup </a> </li> </ul> </li> <!-- Scroll --> <li class="menu-section"> <a href="/docs/api/directive/ionScroll/" class="api-section"> Scroll </a> <ul> <li> <a href="/docs/api/directive/ionScroll/"> ion-scroll </a> </li> <li> <a href="/docs/api/directive/ionInfiniteScroll/"> ion-infinite-scroll </a> </li> <li> <a href="/docs/api/service/$ionicScrollDelegate/"> $ionicScrollDelegate </a> </li> </ul> </li> <!-- Side Menus --> <li class="menu-section"> <a href="/docs/api/directive/ionSideMenus/" class="api-section"> Side Menus </a> <ul> <li> <a href="/docs/api/directive/ionSideMenus/"> ion-side-menus </a> </li> <li> <a href="/docs/api/directive/ionSideMenuContent/"> ion-side-menu-content </a> </li> <li> <a href="/docs/api/directive/ionSideMenu/"> ion-side-menu </a> </li> <li> <a href="/docs/api/directive/exposeAsideWhen/"> expose-aside-when </a> </li> <li> <a href="/docs/api/directive/menuToggle/"> menu-toggle </a> </li> <li> <a href="/docs/api/directive/menuClose/"> menu-close </a> </li> <li> <a href="/docs/api/service/$ionicSideMenuDelegate/"> $ionicSideMenuDelegate </a> </li> </ul> </li> <!-- Slide Box --> <li class="menu-section"> <a href="/docs/api/directive/ionSlideBox/" class="api-section"> Slide Box </a> <ul> <li> <a href="/docs/api/directive/ionSlideBox/"> ion-slide-box </a> </li> <li> <a href="/docs/api/directive/ionSlidePager/"> ion-slide-pager </a> </li> <li> <a href="/docs/api/directive/ionSlide/"> ion-slide </a> </li> <li> <a href="/docs/api/service/$ionicSlideBoxDelegate/"> $ionicSlideBoxDelegate </a> </li> </ul> </li> <!-- Spinner --> <li class="menu-section"> <a href="/docs/api/directive/ionSpinner/" class="api-section"> Spinner </a> <ul> <li> <a href="/docs/api/directive/ionSpinner/"> ion-spinner </a> </li> </ul> </li> <!-- Tabs --> <li class="menu-section"> <a href="/docs/api/directive/ionTabs/" class="api-section"> Tabs </a> <ul> <li> <a href="/docs/api/directive/ionTabs/"> ion-tabs </a> </li> <li> <a href="/docs/api/directive/ionTab/"> ion-tab </a> </li> <li> <a href="/docs/api/service/$ionicTabsDelegate/"> $ionicTabsDelegate </a> </li> </ul> </li> <!-- Tap --> <li class="menu-section"> <a href="/docs/api/page/tap/" class="api-section"> Tap &amp; Click </a> </li> <!-- Utility --> <li class="menu-section"> <a href="#" class="api-section"> Utility </a> <ul> <li> <a href="/docs/api/provider/$ionicConfigProvider/"> $ionicConfigProvider </a> </li> <li> <a href="/docs/api/utility/ionic.Platform/"> ionic.Platform </a> </li> <li> <a href="/docs/api/utility/ionic.DomUtil/"> ionic.DomUtil </a> </li> <li> <a href="/docs/api/utility/ionic.EventController/"> ionic.EventController </a> </li> <li> <a href="/docs/api/service/$ionicPosition/"> $ionicPosition </a> </li> </ul> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/cli/">CLI</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="http://learn.ionicframework.com/">Learn Ionic</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/guide/">Guide</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/ionic-cli-faq/">FAQ</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/getting-help/">Getting Help</a> </li> </ul> <ul class="nav left-menu"> <li class="menu-title"> <a href="/docs/concepts/">Ionic Concepts</a> </li> </ul> </div> </div> <div class="col-md-10 col-sm-9 main-content"> <div class="improve-docs"> <a href='http://github.com/driftyco/ionic/tree/master/js/angular/service/slideBoxDelegate.js#L1'> View Source </a> &nbsp; <a href='http://github.com/driftyco/ionic/edit/master/js/angular/service/slideBoxDelegate.js#L1'> Improve this doc </a> </div> <h1 class="api-title"> $ionicSlideBoxDelegate </h1> <p>Delegate that controls the <a href="/docs/api/directive/ionSlideBox/"><code>ionSlideBox</code></a> directive.</p> <p>Methods called directly on the $ionicSlideBoxDelegate service will control all slide boxes. Use the <a href="/docs/api/service/$ionicSlideBoxDelegate/#$getByHandle">$getByHandle</a> method to control specific slide box instances.</p> <h2>Usage</h2> <div class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt">&lt;ion-view&gt;</span> <span class="nt">&lt;ion-slide-box&gt;</span> <span class="nt">&lt;ion-slide&gt;</span> <span class="nt">&lt;div</span> <span class="na">class=</span><span class="s">&quot;box blue&quot;</span><span class="nt">&gt;</span> <span class="nt">&lt;button</span> <span class="na">ng-click=</span><span class="s">&quot;nextSlide()&quot;</span><span class="nt">&gt;</span>Next slide!<span class="nt">&lt;/button&gt;</span> <span class="nt">&lt;/div&gt;</span> <span class="nt">&lt;/ion-slide&gt;</span> <span class="nt">&lt;ion-slide&gt;</span> <span class="nt">&lt;div</span> <span class="na">class=</span><span class="s">&quot;box red&quot;</span><span class="nt">&gt;</span> Slide 2! <span class="nt">&lt;/div&gt;</span> <span class="nt">&lt;/ion-slide&gt;</span> <span class="nt">&lt;/ion-slide-box&gt;</span> <span class="nt">&lt;/ion-view&gt;</span> </code></pre></div><div class="highlight"><pre><code class="language-js" data-lang="js"><span class="kd">function</span> <span class="nx">MyCtrl</span><span class="p">(</span><span class="nx">$scope</span><span class="p">,</span> <span class="nx">$ionicSlideBoxDelegate</span><span class="p">)</span> <span class="p">{</span> <span class="nx">$scope</span><span class="p">.</span><span class="nx">nextSlide</span> <span class="o">=</span> <span class="kd">function</span><span class="p">()</span> <span class="p">{</span> <span class="nx">$ionicSlideBoxDelegate</span><span class="p">.</span><span class="nx">next</span><span class="p">();</span> <span class="p">}</span> <span class="p">}</span> </code></pre></div> <h2>Methods</h2> <div id="update"></div> <h2> <code>update()</code> </h2> <p>Update the slidebox (for example if using Angular with ng-repeat, resize it for the elements inside).</p> <div id="slide"></div> <h2> <code>slide(to, [speed])</code> </h2> <table class="table" style="margin:0;"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> to </td> <td> <code>number</code> </td> <td> <p>The index to slide to.</p> </td> </tr> <tr> <td> speed <div><em>(optional)</em></div> </td> <td> <code>number</code> </td> <td> <p>The number of milliseconds the change should take.</p> </td> </tr> </tbody> </table> <div id="enableSlide"></div> <h2> <code>enableSlide([shouldEnable])</code> </h2> <table class="table" style="margin:0;"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> shouldEnable <div><em>(optional)</em></div> </td> <td> <code>boolean</code> </td> <td> <p>Whether to enable sliding the slidebox.</p> </td> </tr> </tbody> </table> <ul> <li>Returns: <code>boolean</code> Whether sliding is enabled.</li> </ul> <div id="previous"></div> <h2> <code>previous([speed])</code> </h2> <p>Go to the previous slide. Wraps around if at the beginning.</p> <table class="table" style="margin:0;"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> speed <div><em>(optional)</em></div> </td> <td> <code>number</code> </td> <td> <p>The number of milliseconds the change should take.</p> </td> </tr> </tbody> </table> <div id="next"></div> <h2> <code>next([speed])</code> </h2> <p>Go to the next slide. Wraps around if at the end.</p> <table class="table" style="margin:0;"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> speed <div><em>(optional)</em></div> </td> <td> <code>number</code> </td> <td> <p>The number of milliseconds the change should take.</p> </td> </tr> </tbody> </table> <div id="stop"></div> <h2> <code>stop()</code> </h2> <p>Stop sliding. The slideBox will not move again until explicitly told to do so.</p> <div id="start"></div> <h2> <code>start()</code> </h2> <p>Start sliding again if the slideBox was stopped.</p> <div id="currentIndex"></div> <h2> <code>currentIndex()</code> </h2> <ul> <li>Returns: number The index of the current slide.</li> </ul> <div id="slidesCount"></div> <h2> <code>slidesCount()</code> </h2> <ul> <li>Returns: number The number of slides there are currently.</li> </ul> <div id="$getByHandle"></div> <h2> <code>$getByHandle(handle)</code> </h2> <table class="table" style="margin:0;"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> handle </td> <td> <code>string</code> </td> <td> </td> </tr> </tbody> </table> <ul> <li>Returns: <code>delegateInstance</code> A delegate instance that controls only the <a href="/docs/api/directive/ionSlideBox/"><code>ionSlideBox</code></a> directives with <code>delegate-handle</code> matching the given handle.</li> </ul> <p>Example: <code>$ionicSlideBoxDelegate.$getByHandle(&#39;my-handle&#39;).stop();</code></p> </div> </div> </div> <div class="pre-footer"> <div class="row ionic"> <div class="col-sm-6 col-a"> <h4> <a href="/getting-started/">Getting started <span class="icon ion-arrow-right-c"></span></a> </h4> <p> Learn more about how Ionic was built, why you should use it, and what's included. We'll cover the basics and help you get started from the ground up. </p> </div> <div class="col-sm-6 col-b"> <h4> <a href="/docs/">Documentation <span class="icon ion-arrow-right-c"></span></a> </h4> <p> What are you waiting for? Take a look and get coding! Our documentation covers all you need to know to get an app up and running in minutes. </p> </div> </div> </div> <footer class="footer"> <nav class="base-links"> <dl> <dt>Docs</dt> <dd><a href="http://ionicframework.com/docs/">Documentation</a></dd> <dd><a href="http://ionicframework.com/getting-started/">Getting Started</a></dd> <dd><a href="http://ionicframework.com/docs/overview/">Overview</a></dd> <dd><a href="http://ionicframework.com/docs/components/">Components</a></dd> <dd><a href="http://ionicframework.com/docs/api/">JavaScript</a></dd> <dd><a href="http://ionicframework.com/submit-issue/">Submit Issue</a></dd> </dl> <dl> <dt>Resources</dt> <dd><a href="http://learn.ionicframework.com/">Learn Ionic</a></dd> <dd><a href="http://ngcordova.com/">ngCordova</a></dd> <dd><a href="http://ionicons.com/">Ionicons</a></dd> <dd><a href="http://creator.ionic.io/">Creator</a></dd> <dd><a href="http://showcase.ionicframework.com/">Showcase</a></dd> <dd><a href="http://manning.com/wilken/?a_aid=ionicinactionben&a_bid=1f0a0e1d">The Ionic Book</a></dd> </dl> <dl> <dt>Contribute</dt> <dd><a href="http://forum.ionicframework.com/">Community Forum</a></dd> <dd><a href="http://webchat.freenode.net/?randomnick=1&amp;channels=%23ionic&amp;uio=d4">Ionic IRC</a></dd> <dd><a href="http://ionicframework.com/present-ionic/">Present Ionic</a></dd> <dd><a href="http://ionicframework.com/contribute/">Contribute</a></dd> <dd><a href="https://github.com/driftyco/ionic-learn/issues/new">Write for us</a></dd> <dd><a href="http://shop.ionic.io/">Ionic Shop</a></dd> </dl> <dl class="small-break"> <dt>About</dt> <dd><a href="http://blog.ionic.io/">Blog</a></dd> <dd><a href="http://ionic.io">Services</a></dd> <dd><a href="http://drifty.com">Company</a></dd> <dd><a href="https://s3.amazonaws.com/ionicframework.com/logo-pack.zip">Logo Pack</a></dd> <dd><a href="mailto:hi@ionicframework.com">Contact</a></dd> <dd><a href="http://ionicframework.com/jobs/">Jobs</a></dd> </dl> <dl> <dt>Connect</dt> <dd><a href="https://twitter.com/IonicFramework">Twitter</a></dd> <dd><a href="https://github.com/driftyco/ionic">GitHub</a></dd> <dd><a href="https://www.facebook.com/ionicframework">Facebook</a></dd> <dd><a href="https://plus.google.com/b/112280728135675018538/+Ionicframework/posts">Google+</a></dd> <dd><a href="https://www.youtube.com/channel/UChYheBnVeCfhCmqZfCUdJQw">YouTube</a></dd> <dd><a href="https://twitter.com/ionitron">Ionitron</a></dd> </dl> </nav> <div class="newsletter row"> <div class="newsletter-container"> <div class="col-sm-7"> <div class="newsletter-text">Stay in the loop</div> <div class="sign-up">Sign up to receive emails for the latest updates, features, and news on the framework.</div> </div> <form action="http://codiqa.createsend.com/t/t/s/jytylh/" method="post" class="input-group col-sm-5"> <input id="fieldEmail" name="cm-jytylh-jytylh" class="form-control" type="email" placeholder="Email" required /> <span class="input-group-btn"> <button class="btn btn-default" type="submit">Subscribe</button> </span> </form> </div> </div> <div class="copy"> <div class="copy-container"> <p class="authors"> Code licensed under <a href="/docs/#license">MIT</a>. Docs under <a href="https://tldrlegal.com/license/apache-license-2.0-(apache-2.0)">Apache 2</a> <span>|</span> &copy; 2013-2015 <a href="http://drifty.com/">Drifty Co</a> </p> </div> </div> </footer> <script type="text/javascript"> var _sf_async_config = { uid: 54141, domain: 'ionicframework.com', useCanonical: true }; (function() { function loadChartbeat() { window._sf_endpt = (new Date()).getTime(); var e = document.createElement('script'); e.setAttribute('language', 'javascript'); e.setAttribute('type', 'text/javascript'); e.setAttribute('src','//static.chartbeat.com/js/chartbeat.js'); document.body.appendChild(e); }; var oldonload = window.onload; window.onload = (typeof window.onload != 'function') ? loadChartbeat : function() { oldonload(); loadChartbeat(); }; })(); </script> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script> <script src="/js/site.js?1"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/Cookies.js/0.4.0/cookies.min.js"></script> <script> $('.navbar .dropdown').on('show.bs.dropdown', function(e){ //$(this).find('.dropdown-menu').addClass('animated fadeInDown'); }); // ADD SLIDEUP ANIMATION TO DROPDOWN // $('.navbar .dropdown').on('hide.bs.dropdown', function(e){ //$(this).find('.dropdown-menu').first().stop(true, true).slideUp(200); //$(this).find('.dropdown-menu').removeClass('animated fadeInDown'); }); try { var d = new Date('2015-03-20 05:00:00 -0400'); var ts = d.getTime(); var cd = Cookies.get('_iondj'); if(cd) { cd = JSON.parse(atob(cd)); if(parseInt(cd.lp) < ts) { var bt = document.getElementById('blog-badge'); bt.style.display = 'block'; } cd.lp = ts; } else { var bt = document.getElementById('blog-badge'); bt.style.display = 'block'; cd = { lp: ts } } Cookies.set('_iondj', btoa(JSON.stringify(cd))); } catch(e) { } </script> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> </body> </html>
sachinvettithanam/ionic-site
_site/docs/1.0.0-rc.4/api/service/$ionicSlideBoxDelegate/index.html
HTML
apache-2.0
34,441
<!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 Mon Oct 03 10:36:46 EDT 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>org.wildfly.swarm.ejb (Public javadocs 2016.10.0 API)</title> <meta name="date" content="2016-10-03"> <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.ejb (Public javadocs 2016.10.0 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, 2016.10.0</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/wildfly/swarm/ee/package-summary.html">Prev&nbsp;Package</a></li> <li><a href="../../../../org/wildfly/swarm/infinispan/package-summary.html">Next&nbsp;Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/wildfly/swarm/ejb/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;org.wildfly.swarm.ejb</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/wildfly/swarm/ejb/EJBFraction.html" title="class in org.wildfly.swarm.ejb">EJBFraction</a></td> <td class="colLast">&nbsp;</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, 2016.10.0</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/wildfly/swarm/ee/package-summary.html">Prev&nbsp;Package</a></li> <li><a href="../../../../org/wildfly/swarm/infinispan/package-summary.html">Next&nbsp;Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/wildfly/swarm/ejb/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2016.10.0/apidocs/org/wildfly/swarm/ejb/package-summary.html
HTML
apache-2.0
5,233
<!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: Dist/src/FHXamarinIOSSDK/Services/Device Directory 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('dir_d6f2ff9c3fa8a68ed4e79d998a91c59c.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">Device Directory Reference</div> </div> </div><!--header--> <div class="contents"> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="files"></a> Files</h2></td></tr> <tr class="memitem:_dist_2src_2_f_h_xamarin_i_o_s_s_d_k_2_services_2_device_2_device_service_8cs"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="_dist_2src_2_f_h_xamarin_i_o_s_s_d_k_2_services_2_device_2_device_service_8cs.html">DeviceService.cs</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</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_248dc7cedc1ea0c288f821d4f2f68d94.html">Dist</a></li><li class="navelem"><a class="el" href="dir_3471319f44d198155a41a20922da4993.html">src</a></li><li class="navelem"><a class="el" href="dir_e485ad04aaaf1e866435a3931734ea8d.html">FHXamarinIOSSDK</a></li><li class="navelem"><a class="el" href="dir_f38bdc78ddd46f378af2a2cb2ef524fc.html">Services</a></li><li class="navelem"><a class="el" href="dir_d6f2ff9c3fa8a68ed4e79d998a91c59c.html">Device</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/dir_d6f2ff9c3fa8a68ed4e79d998a91c59c.html
HTML
apache-2.0
4,555
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.3.1"/> <title>Ilwis-Objects: ilwisobjects/geometry/georeference/georefimplementation.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="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </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="ilwisobjectsgeneral.PNG"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">Ilwis-Objects &#160;<span id="projectnumber">1.0</span> </div> <div id="projectbrief">GIS and Remote Sensing framework for data access and processing</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.3.1 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Enumerations</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_40a31ecf9d7e7dd41bc219b8388ab3b1.html">ilwisobjects</a></li><li class="navelem"><a class="el" href="dir_096814ee65d1fcf6674c4126a45408d4.html">geometry</a></li><li class="navelem"><a class="el" href="dir_4181bfe33e01e597b0435233e4cdee3a.html">georeference</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">georefimplementation.h</div> </div> </div><!--header--> <div class="contents"> <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;<span class="preprocessor">#ifndef GEOREFIMPLEMENTATION_H</span></div> <div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define GEOREFIMPLEMENTATION_H</span></div> <div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160;<span class="keyword">namespace </span>Ilwis {</div> <div class="line"><a name="l00005"></a><span class="lineno"><a class="code" href="class_ilwis_1_1_geo_ref_implementation.html"> 5</a></span>&#160;<span class="keyword">class </span>KERNELSHARED_EXPORT <a class="code" href="class_ilwis_1_1_geo_ref_implementation.html">GeoRefImplementation</a> : <span class="keyword">public</span> <a class="code" href="class_ilwis_1_1_geo_ref_interface.html">GeoRefInterface</a>, <span class="keyword">public</span> <a class="code" href="class_ilwis_1_1_identity.html" title="general class to describe the identity of a class">Identity</a></div> <div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160;{</div> <div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160;<span class="keyword">public</span>:</div> <div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160; <a class="code" href="class_ilwis_1_1_geo_ref_implementation.html">GeoRefImplementation</a>(<span class="keyword">const</span> QString&amp; type);</div> <div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160; <span class="keyword">virtual</span> ~<a class="code" href="class_ilwis_1_1_geo_ref_implementation.html">GeoRefImplementation</a>();</div> <div class="line"><a name="l00010"></a><span class="lineno"> 10</span>&#160; <a class="code" href="class_ilwis_1_1_ilwis_data.html">ICoordinateSystem</a> coordinateSystem() <span class="keyword">const</span>;</div> <div class="line"><a name="l00011"></a><span class="lineno"> 11</span>&#160; <span class="keywordtype">void</span> coordinateSystem(<span class="keyword">const</span> <a class="code" href="class_ilwis_1_1_ilwis_data.html">ICoordinateSystem</a>&amp; csy);</div> <div class="line"><a name="l00012"></a><span class="lineno"> 12</span>&#160; <a class="code" href="class_ilwis_1_1_size.html">Size&lt;&gt;</a> size() <span class="keyword">const</span>;</div> <div class="line"><a name="l00013"></a><span class="lineno"> 13</span>&#160; <span class="keywordtype">void</span> size(<span class="keyword">const</span> <a class="code" href="class_ilwis_1_1_size.html">Size&lt;&gt;</a>&amp; sz);</div> <div class="line"><a name="l00014"></a><span class="lineno"> 14</span>&#160; <span class="keywordtype">bool</span> centerOfPixel() <span class="keyword">const</span>;</div> <div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160; <span class="keywordtype">void</span> centerOfPixel(<span class="keywordtype">bool</span> yesno);</div> <div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160; <span class="keywordtype">bool</span> compute();</div> <div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160; <span class="keyword">virtual</span> <span class="keywordtype">bool</span> isCompatible(<span class="keyword">const</span> <a class="code" href="class_ilwis_1_1_ilwis_data.html">IGeoReference</a> &amp;georefOther) <span class="keyword">const</span>;</div> <div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160;<span class="keyword">protected</span>:</div> <div class="line"><a name="l00019"></a><span class="lineno"> 19</span>&#160;</div> <div class="line"><a name="l00020"></a><span class="lineno"> 20</span>&#160; <a class="code" href="class_ilwis_1_1_ilwis_data.html">ICoordinateSystem</a> _csy;</div> <div class="line"><a name="l00021"></a><span class="lineno"> 21</span>&#160; <a class="code" href="class_ilwis_1_1_size.html">Size&lt;&gt;</a> _size;</div> <div class="line"><a name="l00022"></a><span class="lineno"> 22</span>&#160; <span class="keywordtype">bool</span> _centerOfPixel;</div> <div class="line"><a name="l00023"></a><span class="lineno"> 23</span>&#160;};</div> <div class="line"><a name="l00024"></a><span class="lineno"> 24</span>&#160;}</div> <div class="line"><a name="l00025"></a><span class="lineno"> 25</span>&#160;</div> <div class="line"><a name="l00026"></a><span class="lineno"> 26</span>&#160;<span class="preprocessor">#endif // GEOREFIMPLEMENTATION_H</span></div> </div><!-- fragment --></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Fri Mar 28 2014 13:51:04 for Ilwis-Objects by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.3.1 </small></address> </body> </html>
ridoo/IlwisCore
CPPAPI/georefimplementation_8h_source.html
HTML
apache-2.0
9,591
<!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&amp;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&amp;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&amp;dn=expat.txt MIT */ $(document).ready(function(){initNavTree('classoperations__research_1_1_linear_sum_assignment.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> &#124; <a href="#pub-types">Public Types</a> &#124; <a href="#pub-methods">Public Member Functions</a> &#124; <a href="classoperations__research_1_1_linear_sum_assignment-members.html">List of all members</a> </div> <div class="headertitle"><div class="title">LinearSumAssignment&lt; GraphType &gt;</div></div> </div><!--header--> <div class="contents"> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><div class="compoundTemplParams">template&lt;typename GraphType&gt;<br /> class operations_research::LinearSumAssignment&lt; GraphType &gt;</div> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00227">227</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div><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 &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment_1_1_bipartite_left_node_iterator.html">BipartiteLeftNodeIterator</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="pub-types" name="pub-types"></a> Public Types</h2></td></tr> <tr class="memitem:aca73212d30b08a7c287c311b74311a6e"><td class="memItemLeft" align="right" valign="top">typedef GraphType::NodeIndex&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a></td></tr> <tr class="separator:aca73212d30b08a7c287c311b74311a6e"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a28178bb3e97b7c81dc157fe283b8cd64"><td class="memItemLeft" align="right" valign="top">typedef GraphType::ArcIndex&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a28178bb3e97b7c81dc157fe283b8cd64">ArcIndex</a></td></tr> <tr class="separator:a28178bb3e97b7c81dc157fe283b8cd64"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="pub-methods" name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:af45fdf861fabd6a46ce230a9f6101eda"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#af45fdf861fabd6a46ce230a9f6101eda">LinearSumAssignment</a> (const GraphType &amp;graph, <a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a> num_left_nodes)</td></tr> <tr class="separator:af45fdf861fabd6a46ce230a9f6101eda"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:adf78bd1dd4c9cf7158ea23d06dcc89a4"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#adf78bd1dd4c9cf7158ea23d06dcc89a4">LinearSumAssignment</a> (<a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a> num_left_nodes, <a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a28178bb3e97b7c81dc157fe283b8cd64">ArcIndex</a> num_arcs)</td></tr> <tr class="separator:adf78bd1dd4c9cf7158ea23d06dcc89a4"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4f658e59dd3bd0b8cd1269e19b730cee"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a4f658e59dd3bd0b8cd1269e19b730cee">~LinearSumAssignment</a> ()</td></tr> <tr class="separator:a4f658e59dd3bd0b8cd1269e19b730cee"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aececfe5b0affea1dd1b8a38d8c1fb769"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aececfe5b0affea1dd1b8a38d8c1fb769">SetGraph</a> (const GraphType *graph)</td></tr> <tr class="separator:aececfe5b0affea1dd1b8a38d8c1fb769"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:accac1fc7c4ac9bff1591ec627a59a4f7"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#accac1fc7c4ac9bff1591ec627a59a4f7">SetCostScalingDivisor</a> (<a class="el" href="namespaceoperations__research.html#a1d1a935ab48f768867fc7e8607ca97b4">CostValue</a> factor)</td></tr> <tr class="separator:accac1fc7c4ac9bff1591ec627a59a4f7"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab70deec1644ce0de2f383c97830391e7"><td class="memItemLeft" align="right" valign="top">operations_research::PermutationCycleHandler&lt; typename GraphType::ArcIndex &gt; *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#ab70deec1644ce0de2f383c97830391e7">ArcAnnotationCycleHandler</a> ()</td></tr> <tr class="separator:ab70deec1644ce0de2f383c97830391e7"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa4b556b7bee4c7f3fb60781e7ebda1b2"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aa4b556b7bee4c7f3fb60781e7ebda1b2">OptimizeGraphLayout</a> (GraphType *graph)</td></tr> <tr class="separator:aa4b556b7bee4c7f3fb60781e7ebda1b2"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6c98ee1246919ef8b61e5bc400982f49"><td class="memItemLeft" align="right" valign="top">const GraphType &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a6c98ee1246919ef8b61e5bc400982f49">Graph</a> () const</td></tr> <tr class="separator:a6c98ee1246919ef8b61e5bc400982f49"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa5f729a6274027e5e5478e4bd76603ca"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aa5f729a6274027e5e5478e4bd76603ca">Head</a> (<a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a28178bb3e97b7c81dc157fe283b8cd64">ArcIndex</a> arc) const</td></tr> <tr class="separator:aa5f729a6274027e5e5478e4bd76603ca"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa64fbe18913fc55f5d41182666751728"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceoperations__research.html#a1d1a935ab48f768867fc7e8607ca97b4">CostValue</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aa64fbe18913fc55f5d41182666751728">ArcCost</a> (<a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a28178bb3e97b7c81dc157fe283b8cd64">ArcIndex</a> arc) const</td></tr> <tr class="separator:aa64fbe18913fc55f5d41182666751728"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a77a0519df5fb71834593bb661b72921c"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a77a0519df5fb71834593bb661b72921c">SetArcCost</a> (<a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a28178bb3e97b7c81dc157fe283b8cd64">ArcIndex</a> arc, <a class="el" href="namespaceoperations__research.html#a1d1a935ab48f768867fc7e8607ca97b4">CostValue</a> cost)</td></tr> <tr class="separator:a77a0519df5fb71834593bb661b72921c"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:afb41339280a9b3dd128f9a376ec38007"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#afb41339280a9b3dd128f9a376ec38007">FinalizeSetup</a> ()</td></tr> <tr class="separator:afb41339280a9b3dd128f9a376ec38007"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a63b3d12e721188086870cc42cc46a258"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a63b3d12e721188086870cc42cc46a258">ComputeAssignment</a> ()</td></tr> <tr class="separator:a63b3d12e721188086870cc42cc46a258"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5afb9dde1c31f5f053cc83bf6e594db0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceoperations__research.html#a1d1a935ab48f768867fc7e8607ca97b4">CostValue</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a5afb9dde1c31f5f053cc83bf6e594db0">GetCost</a> () const</td></tr> <tr class="separator:a5afb9dde1c31f5f053cc83bf6e594db0"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3be0f6fcc44bc6a4a1e976c1e60b31d0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a3be0f6fcc44bc6a4a1e976c1e60b31d0">NumNodes</a> () const</td></tr> <tr class="separator:a3be0f6fcc44bc6a4a1e976c1e60b31d0"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a11815dc60d6275c8272be0771883d573"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a11815dc60d6275c8272be0771883d573">NumLeftNodes</a> () const</td></tr> <tr class="separator:a11815dc60d6275c8272be0771883d573"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a13537686f25d401f7112b9fa4f63d1ab"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a28178bb3e97b7c81dc157fe283b8cd64">ArcIndex</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a13537686f25d401f7112b9fa4f63d1ab">GetAssignmentArc</a> (<a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a> left_node) const</td></tr> <tr class="separator:a13537686f25d401f7112b9fa4f63d1ab"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa9b122f6d2e28bf78a0339f26cfbd432"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceoperations__research.html#a1d1a935ab48f768867fc7e8607ca97b4">CostValue</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aa9b122f6d2e28bf78a0339f26cfbd432">GetAssignmentCost</a> (<a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a> node) const</td></tr> <tr class="separator:aa9b122f6d2e28bf78a0339f26cfbd432"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad253fe3f1dd016a976d0713d8a54a0ab"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#ad253fe3f1dd016a976d0713d8a54a0ab">GetMate</a> (<a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a> left_node) const</td></tr> <tr class="separator:ad253fe3f1dd016a976d0713d8a54a0ab"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a1286f5a02e4b2a9e89431626e12fd498"><td class="memItemLeft" align="right" valign="top">std::string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a1286f5a02e4b2a9e89431626e12fd498">StatsString</a> () const</td></tr> <tr class="separator:a1286f5a02e4b2a9e89431626e12fd498"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <h2 class="groupheader">Member Typedef Documentation</h2> <a id="a28178bb3e97b7c81dc157fe283b8cd64" name="a28178bb3e97b7c81dc157fe283b8cd64"></a> <h2 class="memtitle"><span class="permalink"><a href="#a28178bb3e97b7c81dc157fe283b8cd64">&#9670;&nbsp;</a></span>ArcIndex</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">typedef GraphType::ArcIndex <a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a28178bb3e97b7c81dc157fe283b8cd64">ArcIndex</a></td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00230">230</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="aca73212d30b08a7c287c311b74311a6e" name="aca73212d30b08a7c287c311b74311a6e"></a> <h2 class="memtitle"><span class="permalink"><a href="#aca73212d30b08a7c287c311b74311a6e">&#9670;&nbsp;</a></span>NodeIndex</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">typedef GraphType::NodeIndex <a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a></td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00229">229</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <h2 class="groupheader">Constructor &amp; Destructor Documentation</h2> <a id="af45fdf861fabd6a46ce230a9f6101eda" name="af45fdf861fabd6a46ce230a9f6101eda"></a> <h2 class="memtitle"><span class="permalink"><a href="#af45fdf861fabd6a46ce230a9f6101eda">&#9670;&nbsp;</a></span>LinearSumAssignment() <span class="overload">[1/2]</span></h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html">LinearSumAssignment</a> </td> <td>(</td> <td class="paramtype">const GraphType &amp;&#160;</td> <td class="paramname"><em>graph</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a>&#160;</td> <td class="paramname"><em>num_left_nodes</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00964">964</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="adf78bd1dd4c9cf7158ea23d06dcc89a4" name="adf78bd1dd4c9cf7158ea23d06dcc89a4"></a> <h2 class="memtitle"><span class="permalink"><a href="#adf78bd1dd4c9cf7158ea23d06dcc89a4">&#9670;&nbsp;</a></span>LinearSumAssignment() <span class="overload">[2/2]</span></h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html">LinearSumAssignment</a> </td> <td>(</td> <td class="paramtype"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a>&#160;</td> <td class="paramname"><em>num_left_nodes</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a28178bb3e97b7c81dc157fe283b8cd64">ArcIndex</a>&#160;</td> <td class="paramname"><em>num_arcs</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00987">987</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="a4f658e59dd3bd0b8cd1269e19b730cee" name="a4f658e59dd3bd0b8cd1269e19b730cee"></a> <h2 class="memtitle"><span class="permalink"><a href="#a4f658e59dd3bd0b8cd1269e19b730cee">&#9670;&nbsp;</a></span>~LinearSumAssignment()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">~<a class="el" href="classoperations__research_1_1_linear_sum_assignment.html">LinearSumAssignment</a> </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00243">243</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <h2 class="groupheader">Member Function Documentation</h2> <a id="ab70deec1644ce0de2f383c97830391e7" name="ab70deec1644ce0de2f383c97830391e7"></a> <h2 class="memtitle"><span class="permalink"><a href="#ab70deec1644ce0de2f383c97830391e7">&#9670;&nbsp;</a></span>ArcAnnotationCycleHandler()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">PermutationCycleHandler&lt; typename GraphType::ArcIndex &gt; * ArcAnnotationCycleHandler</td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l01083">1083</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="aa64fbe18913fc55f5d41182666751728" name="aa64fbe18913fc55f5d41182666751728"></a> <h2 class="memtitle"><span class="permalink"><a href="#aa64fbe18913fc55f5d41182666751728">&#9670;&nbsp;</a></span>ArcCost()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname"><a class="el" href="namespaceoperations__research.html#a1d1a935ab48f768867fc7e8607ca97b4">CostValue</a> ArcCost </td> <td>(</td> <td class="paramtype"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a28178bb3e97b7c81dc157fe283b8cd64">ArcIndex</a>&#160;</td> <td class="paramname"><em>arc</em></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00292">292</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="a63b3d12e721188086870cc42cc46a258" name="a63b3d12e721188086870cc42cc46a258"></a> <h2 class="memtitle"><span class="permalink"><a href="#a63b3d12e721188086870cc42cc46a258">&#9670;&nbsp;</a></span>ComputeAssignment()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">bool ComputeAssignment</td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l01449">1449</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="afb41339280a9b3dd128f9a376ec38007" name="afb41339280a9b3dd128f9a376ec38007"></a> <h2 class="memtitle"><span class="permalink"><a href="#afb41339280a9b3dd128f9a376ec38007">&#9670;&nbsp;</a></span>FinalizeSetup()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">bool FinalizeSetup</td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l01389">1389</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="a13537686f25d401f7112b9fa4f63d1ab" name="a13537686f25d401f7112b9fa4f63d1ab"></a> <h2 class="memtitle"><span class="permalink"><a href="#a13537686f25d401f7112b9fa4f63d1ab">&#9670;&nbsp;</a></span>GetAssignmentArc()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a28178bb3e97b7c81dc157fe283b8cd64">ArcIndex</a> GetAssignmentArc </td> <td>(</td> <td class="paramtype"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a>&#160;</td> <td class="paramname"><em>left_node</em></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00339">339</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="aa9b122f6d2e28bf78a0339f26cfbd432" name="aa9b122f6d2e28bf78a0339f26cfbd432"></a> <h2 class="memtitle"><span class="permalink"><a href="#aa9b122f6d2e28bf78a0339f26cfbd432">&#9670;&nbsp;</a></span>GetAssignmentCost()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname"><a class="el" href="namespaceoperations__research.html#a1d1a935ab48f768867fc7e8607ca97b4">CostValue</a> GetAssignmentCost </td> <td>(</td> <td class="paramtype"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a>&#160;</td> <td class="paramname"><em>node</em></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00346">346</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="a5afb9dde1c31f5f053cc83bf6e594db0" name="a5afb9dde1c31f5f053cc83bf6e594db0"></a> <h2 class="memtitle"><span class="permalink"><a href="#a5afb9dde1c31f5f053cc83bf6e594db0">&#9670;&nbsp;</a></span>GetCost()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="namespaceoperations__research.html#a1d1a935ab48f768867fc7e8607ca97b4">CostValue</a> GetCost</td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l01474">1474</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="ad253fe3f1dd016a976d0713d8a54a0ab" name="ad253fe3f1dd016a976d0713d8a54a0ab"></a> <h2 class="memtitle"><span class="permalink"><a href="#ad253fe3f1dd016a976d0713d8a54a0ab">&#9670;&nbsp;</a></span>GetMate()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a> GetMate </td> <td>(</td> <td class="paramtype"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a>&#160;</td> <td class="paramname"><em>left_node</em></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00351">351</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="a6c98ee1246919ef8b61e5bc400982f49" name="a6c98ee1246919ef8b61e5bc400982f49"></a> <h2 class="memtitle"><span class="permalink"><a href="#a6c98ee1246919ef8b61e5bc400982f49">&#9670;&nbsp;</a></span>Graph()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">const GraphType &amp; Graph </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00282">282</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="aa5f729a6274027e5e5478e4bd76603ca" name="aa5f729a6274027e5e5478e4bd76603ca"></a> <h2 class="memtitle"><span class="permalink"><a href="#aa5f729a6274027e5e5478e4bd76603ca">&#9670;&nbsp;</a></span>Head()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a> Head </td> <td>(</td> <td class="paramtype"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a28178bb3e97b7c81dc157fe283b8cd64">ArcIndex</a>&#160;</td> <td class="paramname"><em>arc</em></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00288">288</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="a11815dc60d6275c8272be0771883d573" name="a11815dc60d6275c8272be0771883d573"></a> <h2 class="memtitle"><span class="permalink"><a href="#a11815dc60d6275c8272be0771883d573">&#9670;&nbsp;</a></span>NumLeftNodes()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a> NumLeftNodes </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00336">336</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="a3be0f6fcc44bc6a4a1e976c1e60b31d0" name="a3be0f6fcc44bc6a4a1e976c1e60b31d0"></a> <h2 class="memtitle"><span class="permalink"><a href="#a3be0f6fcc44bc6a4a1e976c1e60b31d0">&#9670;&nbsp;</a></span>NumNodes()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#aca73212d30b08a7c287c311b74311a6e">NodeIndex</a> NumNodes </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00324">324</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="aa4b556b7bee4c7f3fb60781e7ebda1b2" name="aa4b556b7bee4c7f3fb60781e7ebda1b2"></a> <h2 class="memtitle"><span class="permalink"><a href="#aa4b556b7bee4c7f3fb60781e7ebda1b2">&#9670;&nbsp;</a></span>OptimizeGraphLayout()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void OptimizeGraphLayout </td> <td>(</td> <td class="paramtype">GraphType *&#160;</td> <td class="paramname"><em>graph</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l01089">1089</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="a77a0519df5fb71834593bb661b72921c" name="a77a0519df5fb71834593bb661b72921c"></a> <h2 class="memtitle"><span class="permalink"><a href="#a77a0519df5fb71834593bb661b72921c">&#9670;&nbsp;</a></span>SetArcCost()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void SetArcCost </td> <td>(</td> <td class="paramtype"><a class="el" href="classoperations__research_1_1_linear_sum_assignment.html#a28178bb3e97b7c81dc157fe283b8cd64">ArcIndex</a>&#160;</td> <td class="paramname"><em>arc</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="namespaceoperations__research.html#a1d1a935ab48f768867fc7e8607ca97b4">CostValue</a>&#160;</td> <td class="paramname"><em>cost</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l01010">1010</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="accac1fc7c4ac9bff1591ec627a59a4f7" name="accac1fc7c4ac9bff1591ec627a59a4f7"></a> <h2 class="memtitle"><span class="permalink"><a href="#accac1fc7c4ac9bff1591ec627a59a4f7">&#9670;&nbsp;</a></span>SetCostScalingDivisor()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">void SetCostScalingDivisor </td> <td>(</td> <td class="paramtype"><a class="el" href="namespaceoperations__research.html#a1d1a935ab48f768867fc7e8607ca97b4">CostValue</a>&#160;</td> <td class="paramname"><em>factor</em></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00255">255</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="aececfe5b0affea1dd1b8a38d8c1fb769" name="aececfe5b0affea1dd1b8a38d8c1fb769"></a> <h2 class="memtitle"><span class="permalink"><a href="#aececfe5b0affea1dd1b8a38d8c1fb769">&#9670;&nbsp;</a></span>SetGraph()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">void SetGraph </td> <td>(</td> <td class="paramtype">const GraphType *&#160;</td> <td class="paramname"><em>graph</em></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00248">248</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <a id="a1286f5a02e4b2a9e89431626e12fd498" name="a1286f5a02e4b2a9e89431626e12fd498"></a> <h2 class="memtitle"><span class="permalink"><a href="#a1286f5a02e4b2a9e89431626e12fd498">&#9670;&nbsp;</a></span>StatsString()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">std::string StatsString </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="linear__assignment_8h_source.html#l00358">358</a> of file <a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</a>.</p> </div> </div> <hr/>The documentation for this class was generated from the following file:<ul> <li><a class="el" href="linear__assignment_8h_source.html">linear_assignment.h</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/cpp_graph/classoperations__research_1_1_linear_sum_assignment.html
HTML
apache-2.0
39,574
<!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>labyrinth2015: Ui::QDialogNewGame Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="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">labyrinth2015 &#160;<span id="projectnumber">1.0</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.9.1 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><b>Ui</b></li><li class="navelem"><a class="el" href="classUi_1_1QDialogNewGame.html">QDialogNewGame</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="classUi_1_1QDialogNewGame-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">Ui::QDialogNewGame Class Reference</div> </div> </div><!--header--> <div class="contents"> <div class="dynheader"> Inheritance diagram for Ui::QDialogNewGame:</div> <div class="dyncontent"> <div class="center"> <img src="classUi_1_1QDialogNewGame.png" usemap="#Ui::QDialogNewGame_map" alt=""/> <map id="Ui::QDialogNewGame_map" name="Ui::QDialogNewGame_map"> <area href="classUi__QDialogNewGame.html" alt="Ui_QDialogNewGame" shape="rect" coords="0,0,133,24"/> </map> </div></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a> Additional Inherited Members</h2></td></tr> <tr class="inherit_header pub_methods_classUi__QDialogNewGame"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classUi__QDialogNewGame')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classUi__QDialogNewGame.html">Ui_QDialogNewGame</a></td></tr> <tr class="memitem:a5d4eb59b8c75455780abb931202c7286 inherit pub_methods_classUi__QDialogNewGame"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5d4eb59b8c75455780abb931202c7286"></a> void&#160;</td><td class="memItemRight" valign="bottom"><b>setupUi</b> (QDialog *<a class="el" href="classQDialogNewGame.html">QDialogNewGame</a>)</td></tr> <tr class="separator:a5d4eb59b8c75455780abb931202c7286 inherit pub_methods_classUi__QDialogNewGame"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a122712d31537b9ba76dbc0e722fa7d98 inherit pub_methods_classUi__QDialogNewGame"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a122712d31537b9ba76dbc0e722fa7d98"></a> void&#160;</td><td class="memItemRight" valign="bottom"><b>retranslateUi</b> (QDialog *<a class="el" href="classQDialogNewGame.html">QDialogNewGame</a>)</td></tr> <tr class="separator:a122712d31537b9ba76dbc0e722fa7d98 inherit pub_methods_classUi__QDialogNewGame"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_attribs_classUi__QDialogNewGame"><td colspan="2" onclick="javascript:toggleInherit('pub_attribs_classUi__QDialogNewGame')"><img src="closed.png" alt="-"/>&#160;Public Attributes inherited from <a class="el" href="classUi__QDialogNewGame.html">Ui_QDialogNewGame</a></td></tr> <tr class="memitem:a5cd51f49a26ba8e984a6af4cad0dbc8c inherit pub_attribs_classUi__QDialogNewGame"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5cd51f49a26ba8e984a6af4cad0dbc8c"></a> QLabel *&#160;</td><td class="memItemRight" valign="bottom"><b>label</b></td></tr> <tr class="separator:a5cd51f49a26ba8e984a6af4cad0dbc8c inherit pub_attribs_classUi__QDialogNewGame"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aee25675a04ff2f2918f9cb591d35436c inherit pub_attribs_classUi__QDialogNewGame"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aee25675a04ff2f2918f9cb591d35436c"></a> QLabel *&#160;</td><td class="memItemRight" valign="bottom"><b>label_2</b></td></tr> <tr class="separator:aee25675a04ff2f2918f9cb591d35436c inherit pub_attribs_classUi__QDialogNewGame"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a786ad606b03cd57e9c5b89f40a5d372a inherit pub_attribs_classUi__QDialogNewGame"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a786ad606b03cd57e9c5b89f40a5d372a"></a> QLabel *&#160;</td><td class="memItemRight" valign="bottom"><b>label_3</b></td></tr> <tr class="separator:a786ad606b03cd57e9c5b89f40a5d372a inherit pub_attribs_classUi__QDialogNewGame"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:abb3c5fae4be1947949eba79174d38d16 inherit pub_attribs_classUi__QDialogNewGame"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abb3c5fae4be1947949eba79174d38d16"></a> QSpinBox *&#160;</td><td class="memItemRight" valign="bottom"><b>spinPlayers</b></td></tr> <tr class="separator:abb3c5fae4be1947949eba79174d38d16 inherit pub_attribs_classUi__QDialogNewGame"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aaeff1b707ad7fc920e030ac2910b3c1e inherit pub_attribs_classUi__QDialogNewGame"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aaeff1b707ad7fc920e030ac2910b3c1e"></a> QSpinBox *&#160;</td><td class="memItemRight" valign="bottom"><b>spinCards</b></td></tr> <tr class="separator:aaeff1b707ad7fc920e030ac2910b3c1e inherit pub_attribs_classUi__QDialogNewGame"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:af890adadf9075a2e6d0486fdaeb871bb inherit pub_attribs_classUi__QDialogNewGame"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af890adadf9075a2e6d0486fdaeb871bb"></a> QSpinBox *&#160;</td><td class="memItemRight" valign="bottom"><b>spinSize</b></td></tr> <tr class="separator:af890adadf9075a2e6d0486fdaeb871bb inherit pub_attribs_classUi__QDialogNewGame"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3072ee50c95ee322a4f6d80112111730 inherit pub_attribs_classUi__QDialogNewGame"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3072ee50c95ee322a4f6d80112111730"></a> QPushButton *&#160;</td><td class="memItemRight" valign="bottom"><b>pushButton</b></td></tr> <tr class="separator:a3072ee50c95ee322a4f6d80112111730 inherit pub_attribs_classUi__QDialogNewGame"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a17773bfc80264770569520fa364dacf8 inherit pub_attribs_classUi__QDialogNewGame"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a17773bfc80264770569520fa364dacf8"></a> QPushButton *&#160;</td><td class="memItemRight" valign="bottom"><b>pushButton_2</b></td></tr> <tr class="separator:a17773bfc80264770569520fa364dacf8 inherit pub_attribs_classUi__QDialogNewGame"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"> <p>Definition at line <a class="el" href="ui__qdialognewgame_8h_source.html#l00113">113</a> of file <a class="el" href="ui__qdialognewgame_8h_source.html">ui_qdialognewgame.h</a>.</p> </div><hr/>The documentation for this class was generated from the following file:<ul> <li>gui/<a class="el" href="ui__qdialognewgame_8h_source.html">ui_qdialognewgame.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Sun May 10 2015 17:58:40 for labyrinth2015 by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.9.1 </small></address> </body> </html>
fkolacek/FIT-VUT
mess/ICP-Labyrinth/doc/html/classUi_1_1QDialogNewGame.html
HTML
apache-2.0
10,532
<!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_212) on Thu Nov 07 15:58:18 CET 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class com.contactlab.api.ws.StartSelectionResponse (ContactLab SOAP API Java Client - NEXT 2.23.0 API)</title> <meta name="date" content="2019-11-07"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.contactlab.api.ws.StartSelectionResponse (ContactLab SOAP API Java Client - NEXT 2.23.0 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws">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/contactlab/api/ws/class-use/StartSelectionResponse.html" target="_top">Frames</a></li> <li><a href="StartSelectionResponse.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.contactlab.api.ws.StartSelectionResponse" class="title">Uses of Class<br>com.contactlab.api.ws.StartSelectionResponse</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws">StartSelectionResponse</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.contactlab.api.ws">com.contactlab.api.ws</a></td> <td class="colLast"> <div class="block">Copyright 2012-2015 ContactLab, Italy Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="com.contactlab.api.ws"> <!-- --> </a> <h3>Uses of <a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws">StartSelectionResponse</a> in <a href="../../../../../com/contactlab/api/ws/package-summary.html">com.contactlab.api.ws</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../com/contactlab/api/ws/package-summary.html">com.contactlab.api.ws</a> that return <a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws">StartSelectionResponse</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws">StartSelectionResponse</a></code></td> <td class="colLast"><span class="typeNameLabel">ObjectFactory.</span><code><span class="memberNameLink"><a href="../../../../../com/contactlab/api/ws/ObjectFactory.html#createStartSelectionResponse--">createStartSelectionResponse</a></span>()</code> <div class="block">Create an instance of <a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws"><code>StartSelectionResponse</code></a></div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../com/contactlab/api/ws/package-summary.html">com.contactlab.api.ws</a> that return types with arguments of type <a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws">StartSelectionResponse</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>javax.xml.bind.JAXBElement&lt;<a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws">StartSelectionResponse</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ObjectFactory.</span><code><span class="memberNameLink"><a href="../../../../../com/contactlab/api/ws/ObjectFactory.html#createStartSelectionResponse-com.contactlab.api.ws.StartSelectionResponse-">createStartSelectionResponse</a></span>(<a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws">StartSelectionResponse</a>&nbsp;value)</code> <div class="block">Create an instance of <code>JAXBElement</code><code>&lt;</code><a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws"><code>StartSelectionResponse</code></a><code>&gt;</code>}</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../com/contactlab/api/ws/package-summary.html">com.contactlab.api.ws</a> with parameters of type <a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws">StartSelectionResponse</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>javax.xml.bind.JAXBElement&lt;<a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws">StartSelectionResponse</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ObjectFactory.</span><code><span class="memberNameLink"><a href="../../../../../com/contactlab/api/ws/ObjectFactory.html#createStartSelectionResponse-com.contactlab.api.ws.StartSelectionResponse-">createStartSelectionResponse</a></span>(<a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws">StartSelectionResponse</a>&nbsp;value)</code> <div class="block">Create an instance of <code>JAXBElement</code><code>&lt;</code><a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws"><code>StartSelectionResponse</code></a><code>&gt;</code>}</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/contactlab/api/ws/StartSelectionResponse.html" title="class in com.contactlab.api.ws">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/contactlab/api/ws/class-use/StartSelectionResponse.html" target="_top">Frames</a></li> <li><a href="StartSelectionResponse.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2019 <a href="http://www.contactlab.com">ContactLab</a>. All Rights Reserved.</small></p> </body> </html>
contactlab/soap-api-java-client-next
target/apidocs/com/contactlab/api/ws/class-use/StartSelectionResponse.html
HTML
apache-2.0
10,389
<!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>Stephen Batifol</title> <!-- Bootstrap Core CSS --> <link href="css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> <!-- Custom CSS --> <link href="css/scrolling-nav.css" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="css/styles.css"> <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css"> <!--link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Roboto:700' 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]--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script> $(document).ready(function () { var scroll_start = 0; var startchange = $('#startchange'); var offset = startchange.offset(); var about_section = $('#about'); if (startchange.length) { $(document).scroll(function () { scroll_start = $(this).scrollTop(); if (scroll_start > offset.top) { $(".navbar-default").css('background-color', '#84888b'); $(".active").css('color', "#000000"); //$(".active").css('background-color', "#8a8a8a"); } else { $('.navbar-default').css('background-color', 'transparent'); $(".active").css('color', "#FFFFFF"); //$(".active").css('background-color', "transparent"); } }); } }); </script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-69917903-1', 'auto'); ga('send', 'pageview'); </script> </head> <!-- The #page-top ID is part of the scrolling feature - the data-spy and data-target are part of the built-in Bootstrap scrollspy function --> <body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top"> <!--Image background --> <div class="background-image"></div> <!-- Navigation --> <nav class="navbar navbar-default navbar-fixed-top content" role="navigation"> <div class="container"> <div class="navbar-header page-scroll"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse "> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse navbar-ex1-collapse" data-toggle="collapse"> <ul class="nav navbar-nav"> <!-- Hidden li included to remove active class from about link when scrolled up past about section --> <li class="hidden"> <a class="page-scroll" href="#page-top"></a> </li> <li> <a class="page-scroll active" href="#page-top">Home</a> </li> <li> <a class="page-scroll" href="#about">About Me</a> </li> <li> <a class="page-scroll" href="#experience">Experience</a> </li> <li> <a class="page-scroll" href="#honours">Honours</a> </li> <li> <a class="page-scroll" href="#education">Education</a> </li> <li> <a class="page-scroll" href="#contact">Contact Me</a> </li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container --> </nav> <!-- Intro Section --> <div id="intro" class="container-grey-section col-md-12"> <div class="container intro-section"> <div class="row test-vertical-center" id="startchange"> <div class="col-md-12 intro-sites"> <h1 class="h1-name">STEPHEN BATIFOL</h1> <div class="spacer"></div> <p class="cs-student">GRADUATE STUDENT</p> <h3>MACHINE LEARNING</h3> <span class="social-icon"> <a href="https://angel.co/_stephencs"> <i class="fa fa-angellist fa-5x" alt="AngelList"></i></a> <a href="https://github.com/stephen37/"><i class="fa fa-git fa-5x" alt="Github"></i></a> <a href="https://fr.linkedin.com/pub/stephen-batifol/96/44/558"> <i class="fa fa-linkedin fa-5x" alt="linkedin"></i></a> <!--a href="https://twitter.com/_stephenCS"><i class="fa fa-twitter fa-5x" alt="Twitter"></i></a--> <a href="https://medium.com/@sbatifo/detecting-cards-on-hearthstone-using-transfer-learning-324e62ea7e60"><i class="fa fa-medium fa-5x" alt="Medium"></i></a> </span> <br> <br> </div> <!--a href="#contact" class="btn btn-primary page-scroll" id="contact-button">Contact me</a--> </div> </div> </div> <!-- About Section --> <div id="about" class="container-white-section col-md-12"> <div class="container about-section"> <div class="row"> <div class="col-md-12"> <div class="col-md-12 center"> <h1 class="about-me h1-perso">About Me</h1> <div> <img src="img/pp.jpg" alt="profile_picture" style="width:180px;height:180px;"> </div> <div class="text-presentation padded"> <h2> Hi!</h2> <br/> My Name is Stephen Batifol and I am looking for a <b>PhD in Machine Learning or a Data Scientist position.</b> <br/> <br/> I am a graduate student at <a href="http://www.u-psud.fr/en/index.html">Paris Sud University</a> pursuing my Master's degree in Computer Science, with a major in Machine Learning. I am also doing a Magistère in Computer Science, which is a complementary degree that is taken alongside the rest of my Master's degree and has a minimum GPA requirement for entry. <br/> I studied as an undergraduate at <a href="http://www.u-psud.fr/en/index.html">Paris Sud University</a> graduating <i>Cum Laude</i> in Computer Science. <br/><br/> I wrote my Master's thesis at <a href="http://www.neclab.eu"> NEC Europe Labs</a> in Heidelberg, Germany where I worked on <i>Scalable Latent Feature Profiling with Topics Models</i>. The goal of my thesis was to develop a system that makes latent features understandable for humans. Most of the customers of NEC are not machine learning experts and therefore, do not care about probabilities and are only interested in <i>simple</i> outputs. <br/> <br/> During the summer of 2016, I did a research internship at the <a href="https://www.limsi.fr/en/">LIMSI-CNRS</a> laboratory in the <a href="https://www.limsi.fr/en/research/tlp/topics/topic5">Automatic translation and machine learning</a> group. The goal of my internship was to implement an automatic text segmentation in order to improve machine translation quality. You can find more details in the <a class="page-scroll" href="#experience">experience</a> section below. <br/><br/> The year before that, I worked for <a href="http://enequipe.fr/club">En Equipe</a> where I developed the Android application and their new website. The company has since been acquired, therefore the application and the website are no longer maintained. <br/><br/> <!-- PLACES I'VE INTERNED/STUDIED AT: <br/> <div class="row center-block col-md-12"> <div class="col-md-4 logo"> <img class="img-responsive" src="img/Logo%2520UPSUD_2014_SANS%2520SIGN_UPSaclay_couleur.jpg"> </div> <div class="col-md-4 logo"> <img class="img-responsive" src="img/logo-En%20Equipe.png"> </div> <div class="col-md-4 logo"> <img class="img-responsive" src="img/CNRS_logo.png"> </div> </div> --> <!-- I am mainly an Android and Machine Learning developer, I'm passionate about sports, more precisely boxing, I was also a National boxing champion. <br/>If you are interested in working with me, contact me using the <a href="#page-top" class="page-scroll">websites</a> above and I will get back to you. <br/> Thanks ! --> </div> </div> </div> </div> </div> </div> <!-- Experience Section --> <div class="container-grey-section col-md-12"> <div id="experience" class="container experience-section"> <div class="row"> <div class="title-section"> <h1 class="h1-perso">Experience</h1> </div> <div class="col-lg-12 text" align="left"> <div> <p> <h2>NEC Laboratories Europe<small class="city-text">, Heidelberg, Germany</small></h2> <h5> <b>Thesis: </b>Scalable Latent Feature Profiling with Topics Models. (March 2017 - August 2017)</h5> <p> <ul> <li> Labeled/Profiled latent features with the learned DNAs of objects (products/customers) with the help of LDA. </li> <li> Developed the pre-processing application with Python. </li> <li> Developed a scalable latent variable model in Python based on the <a href="http://www.jmlr.org/papers/volume14/hoffman13a/hoffman13a.pdf">LDA-SVI</a> algorithm </li> <li> Provided insights for decision makers into the latent structure of the purchased data. </li> </ul> </p> </p> </div> <div> <p> <h2>LIMSI-CNRS<small class="city-text">, Orsay, France</small></h2> <h5> Automatic translation and machine learning intern (May 2016 - August 2016)</h5> <p> <ul> <li> Realised an automatic segmenter to improve machine translation quality. </li> <li> Developed the pre-processing application with Python. </li> <li> Researched the optimals predictors to get the best segmentation. </li> <li> Designed a statistical machine translation system. </li> <li> Used machine learning tools such as <a href="https://github.com/JohnLangford/vowpal_wabbit/wiki"> Vowpal wabbit</a>, <a href="https://ncode.limsi.fr/">Ncode</a> and <a href="http://kheafield.com/code/kenlm/">KenLM</a>. </li> </ul> </p> </p> </div> <div> <p> <h2>En Equipe<small class="city-text">, Paris, France</small></h2> <h5>Android and Front-end developer (May 2015 - October 2015)</h5> <p> <ul> <li> Designed and developed the Android<a href="https://play.google.com/store/apps/details?id=fr.enequipe.enequipe"> application</a> of the company. Concept to production-ready in 3 months. </li> <li> Used the Volley and Picasso libraries to transmit network data and images. </li> <li> Redesigned and developed their new <a href="http://www.enequipe.fr/club">website</a> using HTML, CSS, Bootstrap and JavaScript. </li> </ul> </p> </p> </div> </div> </div> </div> </div> <!-- Projects Section --> <div class="container-white-section col-md-12"> <div id="honours" class="container projects-section"> <div class="row"> <div class="title-section"> <h1 class="h1-perso">Honours</h1> </div> <div class="col-lg-12 text" align="left"> <div> <p> <h3 class="title-projects"> AXA Data Challenge </h3> <h4> École Polytechnique </h4> <ul> <li> Ranked <b>2<sup>nd</sup></b> out of 47 teams. </li> <li> The AXA data challenge aimed at developing models for an inbound call forecasting system. </li> <li> The prediction was for seven days ahead in time on a per "half-hour" time slot basis. </li> <li> For this project, we used Python and libraries such as: Scikit-Learn, Pandas and AdaBoost. </li> <li> The model consists of an ensemble technique that uses: SVR, LASSO, AdaBoost Regressor, Bagging Regressor and a Gradient Boosting Regressor. </li> </ul> </p> </div> <div> <p> <h3 class="title-projects"> DataCamp </h3> <h4> École Polytechnique </h4> <ul> <li> Ranked <b>4<sup>th</sup></b> out of 130 students. </li> <li> The goal of the datacamp was to develop prediction models able to identify and quantify chemotherapeutic agents from their Raman spectra </li> <li> Chemotherapy is one of the most used treatment against cancer. It uses chemical substances (chemotherapeutic agents) which kill cells that divide too quickly. These chemical substances are often diluted in a particular solution and packaged in bags, diffusers, or syringes, before being administered. Wrong medication (wrong chemotherapeutic agent or wrong concentration) can have major impacts for patients. To prevent wrong medication, some recent French regulations impose the verification of anti-cancer drugs before their administration. The goal is to check that they contain the good chemotherapeutic agent with the good dosage. </li> </ul> </p> </div> <!-- <div> <p> <h3 class="title-projects">Sentiment analysis</h3> <p> <ul> <li> Developed a Python e-opinion application which evaluates the Facebook comments. </li> <li> Extracted the keywords of the comments using the RAKE algorithm. </li> <li> Sorted the comments using a distance-based metric based on word2vec. </li> </ul> </p> </p> </div> <div> <p> <h3 class="title-projects">Connect Four (Team project)</h3> <p> <ul> <li> Developed a Python software package for a robot humanoid interaction in a Connect Four game against a human player. </li> <li> Developed a gameplay strategy algorithm. </li> <li> Used multiple models such as: <ul> <li> Image recognition for facial and object recognition. </li> <li> Speech recognition and synthesis for human-machine interaction. </li> </ul> </li> <li> Used the robot’s sensors and kinematics data for physical gameplay. </li> </ul> </p> </p> </div> <div> <p> <h3 class="title-projects">Data clustering</h3> <ul> <li> Developed a Python application which clusters companies into economy sectors (based on the dynamics of stock prices) and movies into genres (based on ratings). </li> </ul> </p> </div> --> </div> </div> </div> </div> <!-- Education Section --> <div class=" container-grey-section col-lg-12"> <div id="education" class="container education-section"> <div class="row"> <div class="title-section"> <h1 class="h1-perso">Education</h1> </div> <div align="left"> <h3>M.Sc in Computer Science</h3> <h4>Concentration in Machine Learning</h4> <h4>Paris Sud University, École Polytechnique, ENSTA ParisTech</h4> <strong>September 2015 - August 2017</strong> <br/><br/> <!-- <p> <a href="http://www.universite-paris-saclay.fr/en/education/master/m1-jacques-herbrand-magistere">Jacques Herbrand Magistère </a>of Computer Science - <strong>Graduation :</strong> 2017</p> <p><a href="http://www.universite-paris-saclay.fr/fr/formation/master/m1-informatique-site-dorsay">Master's degree</a> of computer science - <strong>Graduation :</strong> 2017</p> --> <!--div> <p>I am doing a Master's degree and a Magistère in Computer Science. </p> <ul> <li> The goal of the Computer Science <a href="https://www.lri.fr/~conchon/master_informatique/index-en.html">Master’s program</a> is to teach students the theoretical foundations and the various concepts and tools of computer science, so that they can adapt to and anticipate technological developments and integrate quickly in the industrial and scientific world. </li> <li> <p>The <a href="http://www.universite-paris-saclay.fr/en/education/master/m1-jacques-herbrand-magistere">Magistère</a> program is an elite postgraduate program in Computer Science, proposed by Ecole Polytechnique, ENS Cachan and Paris Sud University. <br/> <!--The most prestigious French universities offer "magistères" in Law, Economics, or Sciences, which are open to the highest-ranked students at the end of the first two years of studies. > </p> </li> </ul--> <!-- Here, we collapse the relevant coursework for the master's degree --> <strong><u>Relevant coursework :</u></strong><br><br> <div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true"> <div class="panel panel-default"> <div class="panel-heading" role="tab" id="headingOne"> <h4 class="panel-title"> <a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="false" aria-controls="collapseOne"> First Year </a> </h4> </div> <div id="collapseOne" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne"> <div class="panel-body"> <div class="col-md-4"> <ul> <li> Neural networks to natural language processing </li> <li> Probability, statistics and information theory </li> <li> Introduction to Machine Learning </li> </ul> </div> <div class="col-md-4"> <ul> <li> Networks </li> <li> Advanced Database </li> <li> Parallel and Distributed programming </li> </ul> </div> <div class="col-md-4"> <ul> <li> Advanced algorithms </li> <li> Introduction to compilation </li> <li> Web programming </li> </ul> </div> </div> </div> </div> <div class="panel panel-default"> <div class="panel-heading" role="tab" id="headingTwo"> <h4 class="panel-title"> <a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo"> Second Year </a> </h4> </div> <div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo"> <div class="panel-body"> <div class="col-md-4"> <ul> <li> Machine Learning </li> <li> Deep Learning </li> <li> Data Camp </li> <li> Structured Learning </li> </ul> </div> <div class="col-md-4"> <ul> <li> Information Extraction & Information Retrieval </li> <li> Image & Signal Processing </li> <li> Graphical Models for Large Scale Content Access </li> <li> Optimization </li> </ul> </div> <div class="col-md-4"> <ul> <li> Methods for Big Data Analytics </li> <li> Large-scale Inference & Learning Algorithms </li> <li> Reinforcement Learning </li> <li> Information Extraction : From Document to Isepnterfaces </li> </ul> </div> </div> </div> </div> </div> <!--/div--> <!--<p>The Jacques Herbrand Masters programme is an elite postgraduate programme in Computer Science, giving access to a selection of Master 1 tracks from the Paris-Saclay University, proposed by Ecole Polytechnique, ENS Cachan and Paris Sud University.</p--> <h3>Magistère in Computer Science</h3> <!--h4>Concentration in Machine Learning</h4--> <h4>Paris Sud University</h4> <strong>September 2014 - August 2017</strong><br/> <h4>Complementary Honours Degree for students in the top 10%.</h4> <br/><br/> <h3>B.Sc. in Computer Science</h3> <h4>Paris Sud University - <strong>Graduated :</strong> 2015 - <i>Cum Laude</i><!--with honours<--></h4> <h5></h5> <div class="panel-group" id="accordionBSC" role="tablist" aria-multiselectable="true"> <div class="panel panel-default"> <div class="panel-heading" role="tab" id="headingOneBSC"> <h4 class="panel-title"> <a role="button" data-toggle="collapse" data-parent="#accordionBSC" href="#collapseOneBSC" aria-expanded="false" aria-controls="collapseOneBSC"> Favorite Coursework </a> </h4> </div> <div id="collapseOneBSC" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOneBSC"> <div class="panel-body"> <div class="col-md-4"> <ul> <li> Introduction to Human-computer interaction </li> <li> Computer architecture </li> </ul> </div> <div class="col-md-4"> <ul> <li> Operating systems and concurrent computing </li> <li> Algorithms and data structures </li> </ul> </div> <div class="col-md-4"> <ul> <li> Functionnal programming </li> <li> Databases </li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div id="contact" class="container-white-section col-md-12"> <div class="container contact-section"> <div class="row"> <div class="" id="contact-title"> <h1 class="h1-perso">Contact Me</h1> </div> <div class="col-md-6 right text "> <h1 class="h1-contact">ARE YOU INTERESTED?</h1> <p class="text-contact"> Whether you have an interesting project or just want to say hi, feel free to contact me. <br/> <a class="btn btn-secondary btn-lg contact-button" href="mailto:stephen.batifol@gmail.com?subject=Contact via Website" role="button">Send an email <img src="img/paper-plane.png"></a> </p> </div> <div class="col-md-6 text"> <h1 class="h1-contact">HERE'S MY RÉSUMÉ</h1> <p class="text-contact"> Feel free to check out my résumé. (Updated in September 2017) <br/> <a class="btn btn-secondary btn-lg contact-button" href="resume/resume.pdf" role="button">Résumé <img src="img/pdf.png"></a> </p> </div> </div> </div> </div> <!-- * * * * * Footer * * * * --> <!--div class="navbar navbar-inverse col-lg-12 col-md-12 col-sm-12" role="navigation"> <div class="navbar-text container"> <h3>CONTACT ME!</h3> <div class="row col-md-10 logos center-block text-center"> <div class="col-md-2 col-lg-2"> <a href="https://angel.co/_stephencs"> <i class="fa fa-angellist fa-2x" alt="AngelList"></i></a> </div> <div class="col-md-2 col-lg-2"> <a href="https://github.com/stephen37/"><i class="fa fa-git-square fa-2x" alt="Github"></i></a> </div> <div class="col-md-2 col-lg-2"> <a href="https://fr.linkedin.com/pub/stephen-batifol/96/44/558"> <i class="fa fa-linkedin-square fa-2x" alt="linkedin"></i></a> </div> <div class="col-md-2 col-lg-2"> <a href="https://twitter.com/_stephenCS"><i class="fa fa-twitter-square fa-2x" alt="Twitter"></i></a> </div> <div class="col-md-2 col-lg-2"> <a href="https://plus.google.com/u/1/116282835305895621143/posts"><i class="fa fa-google-plus-square fa-2x" alt="Google Plus"></i></a> </div> </div> <div class="col-md-12"> <p> <i class="fa fa-copyright"></i> <script type="text/javascript"> document.write(new Date().getFullYear()); </script> Batifol </p> </div> </div> </div--> <!-- jQuery --> <script src="js/jquery.js"></script> <!-- Bootstrap Core JavaScript --> <script src="js/bootstrap.min.js"></script> <!-- Scrolling Nav JavaScript --> <script src="js/jquery.easing.min.js"></script> <script src="js/scrolling-nav.js"></script> <!-- Mail Javascript --> <!--script src="js/form-scripts.js"></script--> <!-- Collapse javascript --> <script type="text/javascript"> $(document).on('click', '.navbar-collapse.in', function (event) { if ($(event.target).is('a')) { $(this).collapse('hide'); } }); </script> </body> </html>
stephen37/stephen37.github.io
index.html
HTML
apache-2.0
36,369
<!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">&#160;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_22651_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=4888#src-4888" >testAbaNumberCheck_22651_good</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:40:47 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</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_22651_good</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=3732#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_22651_good_2vo.html
HTML
apache-2.0
9,178
<!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 Tue Aug 14 15:31:51 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.wildfly.swarm.config.infinispan.cache_container.RemoteCommandThreadPoolSupplier (BOM: * : All 2.1.0.Final API)</title> <meta name="date" content="2018-08-14"> <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.infinispan.cache_container.RemoteCommandThreadPoolSupplier (BOM: * : All 2.1.0.Final 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/infinispan/cache_container/RemoteCommandThreadPoolSupplier.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">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.1.0.Final</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/infinispan/cache_container/class-use/RemoteCommandThreadPoolSupplier.html" target="_top">Frames</a></li> <li><a href="RemoteCommandThreadPoolSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.infinispan.cache_container.RemoteCommandThreadPoolSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.infinispan.cache_container.RemoteCommandThreadPoolSupplier</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/infinispan/cache_container/RemoteCommandThreadPoolSupplier.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">RemoteCommandThreadPoolSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.infinispan">org.wildfly.swarm.config.infinispan</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.infinispan"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/RemoteCommandThreadPoolSupplier.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">RemoteCommandThreadPoolSupplier</a> in <a href="../../../../../../../org/wildfly/swarm/config/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</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/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/RemoteCommandThreadPoolSupplier.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">RemoteCommandThreadPoolSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/infinispan/CacheContainer.html" title="type parameter in CacheContainer">T</a></code></td> <td class="colLast"><span class="typeNameLabel">CacheContainer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/CacheContainer.html#remoteCommandThreadPool-org.wildfly.swarm.config.infinispan.cache_container.RemoteCommandThreadPoolSupplier-">remoteCommandThreadPool</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/RemoteCommandThreadPoolSupplier.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">RemoteCommandThreadPoolSupplier</a>&nbsp;supplier)</code> <div class="block">Defines a thread pool used to execute remote commands.</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/infinispan/cache_container/RemoteCommandThreadPoolSupplier.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">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.1.0.Final</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/infinispan/cache_container/class-use/RemoteCommandThreadPoolSupplier.html" target="_top">Frames</a></li> <li><a href="RemoteCommandThreadPoolSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2.1.0.Final/apidocs/org/wildfly/swarm/config/infinispan/cache_container/class-use/RemoteCommandThreadPoolSupplier.html
HTML
apache-2.0
8,268
<!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 May 02 00:35:00 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>CustomSupplier (BOM: * : All 2018.5.0 API)</title> <meta name="date" content="2018-05-02"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="CustomSupplier (BOM: * : All 2018.5.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/CustomSupplier.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.5.0</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/wildfly/swarm/config/mail/mail_session/CustomConsumer.html" title="interface in org.wildfly.swarm.config.mail.mail_session"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../../org/wildfly/swarm/config/mail/mail_session/IMAPServer.html" title="class in org.wildfly.swarm.config.mail.mail_session"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/mail/mail_session/CustomSupplier.html" target="_top">Frames</a></li> <li><a href="CustomSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.wildfly.swarm.config.mail.mail_session</div> <h2 title="Interface CustomSupplier" class="title">Interface CustomSupplier&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/mail/mail_session/Custom.html" title="class in org.wildfly.swarm.config.mail.mail_session">Custom</a>&gt;</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">CustomSupplier&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/mail/mail_session/Custom.html" title="class in org.wildfly.swarm.config.mail.mail_session">Custom</a>&gt;</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">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/mail/mail_session/Custom.html" title="class in org.wildfly.swarm.config.mail.mail_session">Custom</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/mail/mail_session/CustomSupplier.html#get--">get</a></span>()</code> <div class="block">Constructed instance of Custom 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/mail/mail_session/Custom.html" title="class in org.wildfly.swarm.config.mail.mail_session">Custom</a>&nbsp;get()</pre> <div class="block">Constructed instance of Custom 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/CustomSupplier.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.5.0</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/wildfly/swarm/config/mail/mail_session/CustomConsumer.html" title="interface in org.wildfly.swarm.config.mail.mail_session"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../../org/wildfly/swarm/config/mail/mail_session/IMAPServer.html" title="class in org.wildfly.swarm.config.mail.mail_session"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/mail/mail_session/CustomSupplier.html" target="_top">Frames</a></li> <li><a href="CustomSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 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.5.0/apidocs/org/wildfly/swarm/config/mail/mail_session/CustomSupplier.html
HTML
apache-2.0
9,357
{{ partial "fork-github.html" . }} <div id="main-sidebar" class="main-sidebar"> <header class="site-header" id="site-header" role="banner"> <div id="title-container" class="title-container"> <div id="site-avatar" class="site-avatar" style='background-image: url("{{ with .Site.Params.avatar }}{{.}}{{ else }}{{end}}")'> </div> <div class="container"> <h1 id='site-title' class='site-title'> <a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a> </h1> <p class="tagline">{{ with .Site.Params.tagline }} {{.}} {{ else }} {{end}}</p> </div> </div> <button id="toggle-navigation" class="toggle-navigation" aria-expanded="false"> <span class="screen-reader-text">open primary menu</span> <i class="fa fa-bars"></i> </button> {{ partial "social_media.html" . }} <div id="menu-primary" class="menu-container menu-primary" role="navigation"> <nav class="menu"> <ul id="menu-primary-items" class="menu-primary-items"> <li id="menu-item-111" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-111"> <a href="/">Home</a> </li> {{ range .Site.Menus.main }} <li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-111"><a href="{{.URL}}"> {{ .Name }} </a> </li> {{end}} </ul> </nav> </div> </header> <aside class="sidebar sidebar-primary" id="sidebar-primary" role="complementary"> <section id="recent-posts-2" class="widget widget_recent_entries"> <h2 class="widget-title">Contenido reciente</h2> <ul> {{ range first 5 (where .Site.Pages "Section" "post")}} <li> <a href="{{ .Permalink }}">{{ .Title }}</a> </li> {{ end }} </ul> </section> {{ partial "search.html" . }} {{ range $taxonomyname, $taxonomy := .Site.Taxonomies }} <section id="seccions-2" class="widget widget_recent_entries"> <h2 class="widget-title"> <a href="/{{ $taxonomyname | urlize }}">{{ title $taxonomyname }}</a> </h2> <ul> {{ range $key, $value := $taxonomy }} <li> <a href="/{{ $taxonomyname | urlize }}/{{$key}}">{{ $key }}</a> </li> {{ end}} </ul> </section> {{ end }} {{ partial "recentcomments.html" . }} {{ partial "categories.html" . }} {{ partial "archives.html" . }} <section id="archives-3" class="widget widget_archive"> <p>{{ with .Site.Params.copyright }}{{.}}{{ else }}&copy; {{.Now.Format "2006"}}. All rights reserved. {{end}}</p> </section> </aside> </div>
jbovet/website
themes/poet/layouts/partials/sidebar.html
HTML
apache-2.0
2,807
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_111) on Wed Jan 04 22:31:22 EST 2017 --> <title>CAD3M6MUSD3M6M</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="CAD3M6MUSD3M6M"; } } catch(err) { } //--> var methods = {"i0":9}; var tabs = {65535:["t0","All Methods"],1:["t1","Static 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/CAD3M6MUSD3M6M.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev&nbsp;Class</li> <li><a href="../../../../org/drip/sample/dual/CCBSDiscountCurve.html" title="class in org.drip.sample.dual"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/sample/dual/CAD3M6MUSD3M6M.html" target="_top">Frames</a></li> <li><a href="CAD3M6MUSD3M6M.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.drip.sample.dual</div> <h2 title="Class CAD3M6MUSD3M6M" class="title">Class CAD3M6MUSD3M6M</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.drip.sample.dual.CAD3M6MUSD3M6M</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="typeNameLabel">CAD3M6MUSD3M6M</span> extends java.lang.Object</pre> <div class="block">CAD3M6MUSD3M6M demonstrates the setup and construction of the USD 3M Forward Curve from CAD3M6MUSD3M6M CCBS, CAD 3M, CAD 6M, and USD 6M Quotes.</div> <dl> <dt><span class="simpleTagLabel">Author:</span></dt> <dd>Lakshmi Krishnamurthy</dd> </dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/drip/sample/dual/CAD3M6MUSD3M6M.html#CAD3M6MUSD3M6M--">CAD3M6MUSD3M6M</a></span>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>static void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/drip/sample/dual/CAD3M6MUSD3M6M.html#main-java.lang.String:A-">main</a></span>(java.lang.String[]&nbsp;astrArgs)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="CAD3M6MUSD3M6M--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>CAD3M6MUSD3M6M</h4> <pre>public&nbsp;CAD3M6MUSD3M6M()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="main-java.lang.String:A-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>main</h4> <pre>public static final&nbsp;void&nbsp;main(java.lang.String[]&nbsp;astrArgs) throws java.lang.Exception</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.Exception</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> <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/CAD3M6MUSD3M6M.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev&nbsp;Class</li> <li><a href="../../../../org/drip/sample/dual/CCBSDiscountCurve.html" title="class in org.drip.sample.dual"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/sample/dual/CAD3M6MUSD3M6M.html" target="_top">Frames</a></li> <li><a href="CAD3M6MUSD3M6M.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
lakshmiDRIP/DRIP
Javadoc/org/drip/sample/dual/CAD3M6MUSD3M6M.html
HTML
apache-2.0
9,327
<!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 Mon Aug 17 17:11:16 IST 2015 --> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Uses of Class org.apache.solr.response.transform.TransformContext (Solr 5.3.0 API)</title> <meta name="date" content="2015-08-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.transform.TransformContext (Solr 5.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="../../../../../../org/apache/solr/response/transform/TransformContext.html" title="class in org.apache.solr.response.transform">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/transform/class-use/TransformContext.html" target="_top">Frames</a></li> <li><a href="TransformContext.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.transform.TransformContext" class="title">Uses of Class<br>org.apache.solr.response.transform.TransformContext</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/transform/TransformContext.html" title="class in org.apache.solr.response.transform">TransformContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.solr.response.transform">org.apache.solr.response.transform</a></td> <td class="colLast"> <div class="block">APIs and implementations of <a href="../../../../../../org/apache/solr/response/transform/DocTransformer.html" title="class in org.apache.solr.response.transform"><code>DocTransformer</code></a> for modifying documents in Solr request responses</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.solr.response.transform"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/solr/response/transform/TransformContext.html" title="class in org.apache.solr.response.transform">TransformContext</a> in <a href="../../../../../../org/apache/solr/response/transform/package-summary.html">org.apache.solr.response.transform</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/solr/response/transform/package-summary.html">org.apache.solr.response.transform</a> declared as <a href="../../../../../../org/apache/solr/response/transform/TransformContext.html" title="class in org.apache.solr.response.transform">TransformContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../../../../org/apache/solr/response/transform/TransformContext.html" title="class in org.apache.solr.response.transform">TransformContext</a></code></td> <td class="colLast"><span class="strong">DocTransformer.</span><code><strong><a href="../../../../../../org/apache/solr/response/transform/DocTransformer.html#context">context</a></strong></code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/apache/solr/response/transform/package-summary.html">org.apache.solr.response.transform</a> with parameters of type <a href="../../../../../../org/apache/solr/response/transform/TransformContext.html" title="class in org.apache.solr.response.transform">TransformContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">ValueSourceAugmenter.</span><code><strong><a href="../../../../../../org/apache/solr/response/transform/ValueSourceAugmenter.html#setContext(org.apache.solr.response.transform.TransformContext)">setContext</a></strong>(<a href="../../../../../../org/apache/solr/response/transform/TransformContext.html" title="class in org.apache.solr.response.transform">TransformContext</a>&nbsp;context)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">TransformerWithContext.</span><code><strong><a href="../../../../../../org/apache/solr/response/transform/TransformerWithContext.html#setContext(org.apache.solr.response.transform.TransformContext)">setContext</a></strong>(<a href="../../../../../../org/apache/solr/response/transform/TransformContext.html" title="class in org.apache.solr.response.transform">TransformContext</a>&nbsp;context)</code> <div class="block"><strong>Deprecated.</strong>&nbsp;</div> &nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">DocTransformers.</span><code><strong><a href="../../../../../../org/apache/solr/response/transform/DocTransformers.html#setContext(org.apache.solr.response.transform.TransformContext)">setContext</a></strong>(<a href="../../../../../../org/apache/solr/response/transform/TransformContext.html" title="class in org.apache.solr.response.transform">TransformContext</a>&nbsp;context)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">DocTransformer.</span><code><strong><a href="../../../../../../org/apache/solr/response/transform/DocTransformer.html#setContext(org.apache.solr.response.transform.TransformContext)">setContext</a></strong>(<a href="../../../../../../org/apache/solr/response/transform/TransformContext.html" title="class in org.apache.solr.response.transform">TransformContext</a>&nbsp;context)</code> <div class="block">This is called before transform and sets</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/solr/response/transform/TransformContext.html" title="class in org.apache.solr.response.transform">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/transform/class-use/TransformContext.html" target="_top">Frames</a></li> <li><a href="TransformContext.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 &copy; 2000-2015 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>
changwu/mqa
solr-5.3.0/docs/solr-core/org/apache/solr/response/transform/class-use/TransformContext.html
HTML
apache-2.0
10,222
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML><HEAD><TITLE>Invalid Man Page</TITLE></HEAD> <BODY> <H1>Invalid Man Page</H1> The requested file crypt_r.3 is not a valid (unformatted) man page.</BODY></HTML>
cs-education/sysassets
man_pages/html/man3/crypt_r.3.html
HTML
apache-2.0
231
<h1>xml2json Module</h1> <h2>Description</h2> <p>TODO: Enter your module description here</p> <h2>Accessing the xml2json Module</h2> <p>To access this module from JavaScript, you would do the following:</p> <pre><code>var xml2json = require("ti.xml2json"); </code></pre> <p>The xml2json variable is a reference to the Module object.<br /> </p> <h2>Reference</h2> <p>TODO: If your module has an API, you should document the reference here.</p> <h3><strong>_PROJECTNAMEASIDENTIFIER</strong>.function</h3> <p>TODO: This is an example of a module function.</p> <h3><strong>_PROJECTNAMEASIDENTIFIER</strong>.property</h3> <p>TODO: This is an example of a module property.</p> <h2>Usage</h2> <p>TODO: Enter your usage example here</p> <h2>Author</h2> <p>TODO: Enter your author name, email and other contact details you want to share here. </p> <h2>License</h2> <p>TODO: Enter your license/legal information here.</p>
AppWerft/Botanischer-Garten-Hamburg
modules/iphone/ti.xml2json/1.0.1/documentation/index.html
HTML
apache-2.0
911
<!DOCTYPE html> <html> <head> <meta name="author" content="Yeeku.H.Lee(CrazyIt.org)" /> <meta http-equiv="Content-Type" content="text/html; charset=GBK" /> <title> 访问表格元素 </title> </head> <body> <table id="d" border="1"> <caption>疯狂Java体系</caption> <tr> <td>疯狂Java讲义</td> <td>轻量级Java EE企业应用实战</td> </tr> <tr> <td>疯狂Ajax讲义</td> <td>经典Java EE企业应用实战</td> </tr> <tr> <td>疯狂XML讲义</td> <td>疯狂Android讲义</td> </tr> </table> <input type="button" value="表格标题" onclick= "alert(document.getElementById('d').caption.innerHTML);" /> <input type="button" value="第一行、第一格" onclick= "alert(document.getElementById('d').rows[0].cells[0].innerHTML);" /> <input type="button" value="第二行、第二格" onclick= "alert(document.getElementById('d').rows[1].cells[1].innerHTML);" /> <input type="button" value="第三行、第二格" onclick= "alert(document.getElementById('d').rows[2].cells[1].innerHTML);" /> </body> </html>
jinghewang/h5
web/disk/14/14.3/accessTable.html
HTML
apache-2.0
1,100
<!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">&#160;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_14.html">Class Test_AbaRouteValidator_14</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_31249_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_14.html?line=30040#src-30040" >testAbaNumberCheck_31249_good</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:43:42 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</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_31249_good</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=2955#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_14_testAbaNumberCheck_31249_good_2a3.html
HTML
apache-2.0
9,180
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Bootstrap -- 增强Bootstrap</title> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="BootstrapEd是基于Bootstrap,并且,优化Bootstrap在中文WEB环境中的效果;增强Bootstrap中的内置组件;增加有价值的通用组件!Bootstrap是Twitter推出的一个用于前端开发的开源工具包。它由Twitter的设计师Mark Otto和Jacob Thornton合作开发,是一个CSS/HTML框架。"> <meta name="author" content="Bootstrap中文网"> <meta name="keywords" content="Bootstrap,CSS,CSS框架,CSS framework,javascript,bootcss,bootstrap开发,bootstrap代码,bootstrap入门"> <!-- Le styles --> <link href="assets/css/bootstraped.css" rel="stylesheet"> <link href="assets/css/bootstraped-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> <link href="assets/js/google-code-prettify/prettify.css" rel="stylesheet"> <!--[if IE 7]> <link rel="stylesheet" href="assets/css/font-awesome-ie7.min.css"> <![endif]--> <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]--> <!-- Le fav and touch icons --> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png"> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png"> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png"> <link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png"> <link rel="shortcut icon" href="assets/ico/favicon.png"> </head> <body data-spy="scroll" data-target=".bs-docs-sidebar"> <!-- Navbar ================================================== --> <div class="navbar navbar-inverse navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="brand" href="./index.html">Bootstrap</a> <div class="nav-collapse collapse"> <ul class="nav"> <li class="active"> <a href="./index.html">Home</a> </li> <li class=""> <a href="./getting-started.html">Get Started</a> </li> <li class=""> <a href="./scaffolding.html">Scaffolding</a> </li> <li class=""> <a href="./base-css.html">Base CSS</a> </li> <li class=""> <a href="./components.html">Components</a> </li> <li class=""> <a href="./javascript.html">JavaScript</a> </li> <li class=""> <a href="./customize.html">Customize</a> </li> </ul> </div> </div> </div> </div> <div class="jumbotron masthead"> <div class="container"> <h1>BootstrapEd</h1> <p>Bootstrap Extended = 增强Bootstrap!</p> <p> <a href="https://github.com/saiwang/bootstraped/archive/master.zip" class="btn btn-primary btn-large" >下载 Bootstraped</a> </p> <ul class="masthead-links"> <li> <a href="https://github.com/saiwang/bootstraped" >GitHub project</a> </li> <li> <a href="./getting-started.html#examples" >Examples</a> </li> <li> <a href="./extend.html" >Extend</a> </li> <li> Based On Version 2.3.1 </li> </ul> </div> </div> <div class="bs-docs-social"> <div class="container"> <ul class="bs-docs-social-buttons"> <li> <iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=twitter&repo=bootstrap&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100px" height="20px"></iframe> </li> <li> <iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=twitter&repo=bootstrap&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="102px" height="20px"></iframe> </li> <li class="follow-btn"> <a href="https://twitter.com/twbootstrap" class="twitter-follow-button" data-link-color="#0069D6" data-show-count="true">Follow @twbootstrap</a> </li> <li class="tweet-btn"> <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://twitter.github.com/bootstrap/" data-count="horizontal" data-via="twbootstrap" data-related="mdo:Creator of Twitter Bootstrap">Tweet</a> </li> </ul> </div> </div> <div class="container"> <div class="marketing"> <h1>Bootstrap介绍。</h1> <p class="marketing-byline">需要为爱上Bootstrap找N多理由吗? 就在眼前。</p> <div class="row-fluid"> <div class="span4"> <img class="marketing-img" src="assets/img/bs-docs-twitter-github.png"> <h2>人人为我,我为人人。</h2> <p>由<a href="http://twitter.com/mdo">@mdo</a> 和 <a href="http://twitter.com/fat">@fat</a> 在Twitter工作时创建,Bootstrap使用 <a href="/lesscss.html">LESS CSS</a> 并用 <a href="http://nodejs.org">Node</a> 编译,托管在 <a href="http://github.com">GitHub</a> 上,方便大家使用这一框架构建更好的web应用。</p> </div> <div class="span4"> <img class="marketing-img" src="assets/img/bs-docs-responsive-illustrations.png"> <h2>任何人都可以使用。</h2> <p>Bootstrap不光为了看起来好看,而且在现代的桌面浏览器上有极佳的表现(包括IE7!)。在平板电脑和智能手机上面还有 <a href="./scaffolding.html#responsive">响应式CSS</a> 可以使用。</p> </div> <div class="span4"> <img class="marketing-img" src="assets/img/bs-docs-bootstrap-features.png"> <h2>丰富的特色。</h2> <p>12列的响应式<a href="./scaffolding.html#grid">栅格结构</a>、丰富的组件、<a href="./javascript.html">JavaScript插件</a>、排版、表单控件,还有 <a href="./customize.html">基于web的定制工具</a>。</p> </div> </div> <hr class="soften"> <h1>基于Bootstrap构建的网站。</h1> <p class="marketing-byline">更多基于Bootstrap构建的网站列表,请 <a href="http://builtwithbootstrap.tumblr.com/" target="_blank">访问非官方的Tumblr网站</a> 或者 <a href="./getting-started.html#examples">看看下面的几个案例</a>。</p> <div class="row-fluid"> <ul class="thumbnails example-sites"> <li class="span3"> <a class="thumbnail" href="http://soundready.fm/" target="_blank"> <img src="assets/img/example-sites/soundready.png" alt="SoundReady.fm"> </a> </li> <li class="span3"> <a class="thumbnail" href="http://kippt.com/" target="_blank"> <img src="assets/img/example-sites/kippt.png" alt="Kippt"> </a> </li> <li class="span3"> <a class="thumbnail" href="http://www.gathercontent.com/" target="_blank"> <img src="assets/img/example-sites/gathercontent.png" alt="Gather Content"> </a> </li> <li class="span3"> <a class="thumbnail" href="http://www.jshint.com/" target="_blank"> <img src="assets/img/example-sites/jshint.png" alt="JS Hint"> </a> </li> </ul> </div> </div> </div> <!-- Footer ================================================== --> <footer class="footer"> <div class="container"> <p>Designed and built with all the love in the world by <a href="http://twitter.com/mdo" target="_blank">@mdo</a> and <a href="http://twitter.com/fat" target="_blank">@fat</a>.</p> <p>Code licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License v2.0</a>, documentation under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</p> <p><a href="http://glyphicons.com">Glyphicons Free</a> licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</p> <ul class="footer-links"> <li><a href="http://blog.getbootstrap.com">Blog</a></li> <li class="muted">&middot;</li> <li><a href="https://github.com/twitter/bootstrap/issues?state=open">Issues</a></li> <li class="muted">&middot;</li> <li><a href="https://github.com/twitter/bootstrap/blob/master/CHANGELOG.md">Changelog</a></li> </ul> </div> </footer> <!-- Le javascript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <!-- <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script> --> <script src="assets/js/jquery.js"></script> <script src="assets/js/bootstrap-transition.js"></script> <script src="assets/js/bootstrap-alert.js"></script> <script src="assets/js/bootstrap-modal.js"></script> <script src="assets/js/bootstrap-dropdown.js"></script> <script src="assets/js/bootstrap-scrollspy.js"></script> <script src="assets/js/bootstrap-tab.js"></script> <script src="assets/js/bootstrap-tooltip.js"></script> <script src="assets/js/bootstrap-popover.js"></script> <script src="assets/js/bootstrap-button.js"></script> <script src="assets/js/bootstrap-collapse.js"></script> <script src="assets/js/bootstrap-carousel.js"></script> <script src="assets/js/bootstrap-typeahead.js"></script> <script src="assets/js/bootstrap-affix.js"></script> <script src="assets/js/holder/holder.js"></script> <script src="assets/js/google-code-prettify/prettify.js"></script> <script src="assets/js/application.js"></script> <script type="text/javascript"> <script type="text/javascript"> var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://"); document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F517a2779a0fca57efc2fc21e19907a4c' type='text/javascript'%3E%3C/script%3E")); </script> </body> </html>
wangsai/bootstraped
docs/index.html
HTML
apache-2.0
10,766
<!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:19 EST 2017 --> <title>TY1</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="TY1"; } } catch(err) { } //--> var methods = {"i0":9}; var tabs = {65535:["t0","All Methods"],1:["t1","Static 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/TY1.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/drip/sample/treasuryfuturesapi/TU1.html" title="class in org.drip.sample.treasuryfuturesapi"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/drip/sample/treasuryfuturesapi/UB1.html" title="class in org.drip.sample.treasuryfuturesapi"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/sample/treasuryfuturesapi/TY1.html" target="_top">Frames</a></li> <li><a href="TY1.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.drip.sample.treasuryfuturesapi</div> <h2 title="Class TY1" class="title">Class TY1</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.drip.sample.treasuryfuturesapi.TY1</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="typeNameLabel">TY1</span> extends java.lang.Object</pre> <div class="block">TY1 demonstrates the Invocation and Examination of the TY1 10Y UST Treasury Futures.</div> <dl> <dt><span class="simpleTagLabel">Author:</span></dt> <dd>Lakshmi Krishnamurthy</dd> </dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/drip/sample/treasuryfuturesapi/TY1.html#TY1--">TY1</a></span>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>static void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/drip/sample/treasuryfuturesapi/TY1.html#main-java.lang.String:A-">main</a></span>(java.lang.String[]&nbsp;args)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="TY1--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>TY1</h4> <pre>public&nbsp;TY1()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="main-java.lang.String:A-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>main</h4> <pre>public static final&nbsp;void&nbsp;main(java.lang.String[]&nbsp;args) throws java.lang.Exception</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.Exception</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> <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/TY1.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/drip/sample/treasuryfuturesapi/TU1.html" title="class in org.drip.sample.treasuryfuturesapi"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/drip/sample/treasuryfuturesapi/UB1.html" title="class in org.drip.sample.treasuryfuturesapi"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/sample/treasuryfuturesapi/TY1.html" target="_top">Frames</a></li> <li><a href="TY1.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
lakshmiDRIP/DRIP
Javadoc/org/drip/sample/treasuryfuturesapi/TY1.html
HTML
apache-2.0
9,467
<!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.config.ServicesConfig (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.config.ServicesConfig (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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/hazelcast/config/ServicesConfig.html" title="class in com.hazelcast.config"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?com/hazelcast/config//class-useServicesConfig.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ServicesConfig.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>com.hazelcast.config.ServicesConfig</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/hazelcast/config/ServicesConfig.html" title="class in com.hazelcast.config">ServicesConfig</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#com.hazelcast.config"><B>com.hazelcast.config</B></A></TD> <TD>Provides classes for configuring HazelcastInstance.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="com.hazelcast.config"><!-- --></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/hazelcast/config/ServicesConfig.html" title="class in com.hazelcast.config">ServicesConfig</A> in <A HREF="../../../../com/hazelcast/config/package-summary.html">com.hazelcast.config</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../com/hazelcast/config/package-summary.html">com.hazelcast.config</A> that return <A HREF="../../../../com/hazelcast/config/ServicesConfig.html" title="class in com.hazelcast.config">ServicesConfig</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../com/hazelcast/config/ServicesConfig.html" title="class in com.hazelcast.config">ServicesConfig</A></CODE></FONT></TD> <TD><CODE><B>ServicesConfig.</B><B><A HREF="../../../../com/hazelcast/config/ServicesConfig.html#addServiceConfig(com.hazelcast.config.ServiceConfig)">addServiceConfig</A></B>(<A HREF="../../../../com/hazelcast/config/ServiceConfig.html" title="class in com.hazelcast.config">ServiceConfig</A>&nbsp;service)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../com/hazelcast/config/ServicesConfig.html" title="class in com.hazelcast.config">ServicesConfig</A></CODE></FONT></TD> <TD><CODE><B>ServicesConfig.</B><B><A HREF="../../../../com/hazelcast/config/ServicesConfig.html#clear()">clear</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../com/hazelcast/config/ServicesConfig.html" title="class in com.hazelcast.config">ServicesConfig</A></CODE></FONT></TD> <TD><CODE><B>Config.</B><B><A HREF="../../../../com/hazelcast/config/Config.html#getServicesConfig()">getServicesConfig</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../com/hazelcast/config/ServicesConfig.html" title="class in com.hazelcast.config">ServicesConfig</A></CODE></FONT></TD> <TD><CODE><B>ServicesConfig.</B><B><A HREF="../../../../com/hazelcast/config/ServicesConfig.html#setEnableDefaults(boolean)">setEnableDefaults</A></B>(boolean&nbsp;enableDefaults)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../com/hazelcast/config/ServicesConfig.html" title="class in com.hazelcast.config">ServicesConfig</A></CODE></FONT></TD> <TD><CODE><B>ServicesConfig.</B><B><A HREF="../../../../com/hazelcast/config/ServicesConfig.html#setServiceConfigs(java.util.Collection)">setServiceConfigs</A></B>(<A HREF="http://download.oracle.com/javase/1.6.0/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;<A HREF="../../../../com/hazelcast/config/ServiceConfig.html" title="class in com.hazelcast.config">ServiceConfig</A>&gt;&nbsp;services)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../com/hazelcast/config/package-summary.html">com.hazelcast.config</A> with parameters of type <A HREF="../../../../com/hazelcast/config/ServicesConfig.html" title="class in com.hazelcast.config">ServicesConfig</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../com/hazelcast/config/Config.html" title="class in com.hazelcast.config">Config</A></CODE></FONT></TD> <TD><CODE><B>Config.</B><B><A HREF="../../../../com/hazelcast/config/Config.html#setServicesConfig(com.hazelcast.config.ServicesConfig)">setServicesConfig</A></B>(<A HREF="../../../../com/hazelcast/config/ServicesConfig.html" title="class in com.hazelcast.config">ServicesConfig</A>&nbsp;servicesConfig)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../com/hazelcast/config/ServicesConfig.html" title="class in com.hazelcast.config"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?com/hazelcast/config//class-useServicesConfig.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ServicesConfig.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 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/config/class-use/ServicesConfig.html
HTML
apache-2.0
11,419
<!-- Portfolio Grid Section --> <section id="portfolio" class="bg-light-gray"> <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <h2 class="section-heading">Blog</h2> <h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3> </div> </div> <div class="row"> {% for post in site.posts %} <div class="col-md-4 col-sm-6 portfolio-item"> <a href="#portfolioModal{{ post.modal-id }}" class="portfolio-link" data-toggle="modal"> <div class="portfolio-hover"> <div class="portfolio-hover-content"> <i class="fa fa-plus fa-3x"></i> </div> </div> <img src="img/portfolio/{{ post.thumbnail }}" class="img-responsive" alt=""> </a> <div class="portfolio-caption"> <h4>{{ post.title }}</h4> <p class="text-muted">{{ post.subtitle }}</p> </div> </div> {% endfor %} </div> </div> </section>
cerees/cerees.github.io
_includes/portfolio_grid.html
HTML
apache-2.0
1,320
<!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 : Variable Reference: $menu_topic</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='_variables'; filename='index.html'; cookiekey='phpxref'; handleNavFrame(relbase, subdir, filename); logVariable('menu_topic'); // --> </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>Variable Cross Reference</h3> <h2><a href="index.html#menu_topic">$menu_topic</a></h2> <b>Defined at:</b><ul> <li><a href="../bonfire/modules/ui/libraries/contexts.php.html">/bonfire/modules/ui/libraries/contexts.php</A> -> <a href="../bonfire/modules/ui/libraries/contexts.php.source.html#l449"> line 449</A></li> </ul> <br><b>Referenced 3 times:</b><ul> <li><a href="../bonfire/modules/ui/libraries/contexts.php.html">/bonfire/modules/ui/libraries/contexts.php</a> -> <a href="../bonfire/modules/ui/libraries/contexts.php.source.html#l449"> line 449</a></li> <li><a href="../bonfire/modules/ui/libraries/contexts.php.html">/bonfire/modules/ui/libraries/contexts.php</a> -> <a href="../bonfire/modules/ui/libraries/contexts.php.source.html#l450"> line 450</a></li> <li><a href="../bonfire/modules/ui/libraries/contexts.php.html">/bonfire/modules/ui/libraries/contexts.php</a> -> <a href="../bonfire/modules/ui/libraries/contexts.php.source.html#l454"> line 454</a></li> </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/_variables/menu_topic.html
HTML
apache-2.0
5,221
{% extends 'league/base_matches.html' %} {% load cycle from future %} {% block content %} <h1>Match results</h1> <ul class="nav nav-tabs"> <li><a href="{% url 'league:index' %}">Recent results</a></li> <li><a href="{% url 'league:matches' %}">Show all results</a></li> <li class="active"><a href="#">Enter results</a></li> </ul> <h2>New match entered</h2> <h3>{{ match }}</h3> <p>The player statistics have changed as following:</p> <ul> {% for player in player_list %} <li>{{ player.name }} ({% cycle 'Attacker' 'Defender' %})</li> <ul> <li>rank: {{ player.old_rank|floatformat:2 }} &rarr; {{ player.rank|floatformat:2 }}</li> <li>µ: {{ player.old_mu|floatformat:2 }} &rarr; {{ player.mu|floatformat:2 }}</li> <li>σ: {{ player.old_sigma|floatformat:2 }} &rarr; {{ player.sigma|floatformat:2 }}</li> </ul> {% endfor %} </ul> <ul class="nav nav-pills"> <li><a href="{% url 'league:matches_enter' %}">Enter another match</a></li> <li><a href="{% url 'league:index' %}">Back to recent matches</a></li> </ul> {% endblock %}
caladrel/trueskill_kicker
league/templates/league/match_enter_success.html
HTML
apache-2.0
1,114
--- layout: page description: "看书听音乐、带着电脑去旅行。" --- {% 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 %} <div class="post-content-preview"> {{ post.content | strip_html | truncate:200 }} </div> </a> <p class="post-meta"> Posted by {% if post.author %}{{ post.author }}{% else %}{{ site.title }}{% endif %} 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: '//', '/' }}">&larr; Newer Posts</a> </li> {% endif %} {% if paginator.next_page %} <li class="next"> <a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts &rarr;</a> </li> {% endif %} </ul> {% endif %}
leslie-gu/leslie-gu.github.io
index.html
HTML
apache-2.0
1,217
<!doctype html> <!-- Material Design Lite Copyright 2015 Google Inc. All rights reserved. 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 https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License --> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="description" content="A front-end template that helps you build fast, modern mobile web apps."> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> <title>Sistemas de Chat</title> <!-- Add to homescreen for Chrome on Android --> <meta name="mobile-web-app-capable" content="yes"> <link rel="icon" sizes="192x192" href="images/android-desktop.png"> <!-- Add to homescreen for Safari on iOS --> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="apple-mobile-web-app-title" content="Material Design Lite"> <link rel="apple-touch-icon-precomposed" href="images/ios-desktop.png"> <!-- Tile icon for Win8 (144x144 + tile color) --> <meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png"> <meta name="msapplication-TileColor" content="#3372DF"> <link rel="shortcut icon" href="images/favicon.png"> <script src="https://code.jquery.com/jquery-3.1.1.js" integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA=" crossorigin="anonymous"></script> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> <!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones --> <!-- <link rel="canonical" href="http://www.example.com/"> --> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&amp;lang=en"> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> <link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.cyan-light_blue.min.css"> <link rel="stylesheet" href="styles.css"> <style> #view-source { position: fixed; display: block; right: 0; bottom: 0; margin-right: 40px; margin-bottom: 40px; z-index: 900; } </style> </head> <body> <div class="demo-layout mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header"> <header class="demo-header mdl-layout__header mdl-color--grey-100 mdl-color-text--grey-600"> <div class="mdl-layout__header-row"> <span class="mdl-layout-title">Cadastrar Salas</span> <div class="mdl-layout-spacer"></div> <div class="mdl-textfield mdl-js-textfield mdl-textfield--expandable"> <div id="nomeUsuario"> </div> <div class="mdl-textfield__expandable-holder"> <input class="mdl-textfield__input" type="text" id="search"> <label class="mdl-textfield__label" for="search">Enter your query...</label> </div> </div> </div> </header> <div class="demo-drawer mdl-layout__drawer mdl-color--blue-grey-900 mdl-color-text--blue-grey-50"> <nav class="demo-navigation mdl-navigation mdl-color--blue-grey-800"> <a id ="menuLogin" class="mdl-navigation__link" href="./login.html"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">home</i>Login</a> <a id="menuRegistrar" class="mdl-navigation__link" href="./index.html"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">add</i>Registro</a> <a id="menuCadastrarSalas" class="mdl-navigation__link" href="./salas.html"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">contacts</i>Cadastrar Salas</a> <!-- <a id="menuListarSalasPublicar" class="mdl-navigation__link" href="#" onclick="listarSalasPublicas();"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">forum</i>Listar Salas Publicas</a> <a id="menuListarSalasPrivadas" class="mdl-navigation__link" href="#" onclick="listarSalasPrivadas()"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">chat</i>Listar Salas Privadas</a> <a id="menuCadastrarMensagem" class="mdl-navigation__link" href="./cadastrarMensagem.html" onclick=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">playlist_add</i>Cadastrar Mensagem</a> <a id="menuListarMensagens" class="mdl-navigation__link" href="./listarMensagensSalaPrivada.html"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">contact_mail</i>Listar Mensagens da Sala</a> <a id="menuExibirUltimaMensagem" class="mdl-navigation__link" href="./exibirUltimaMensagem.html" onclick=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">sms</i>Exibir Ultima Mensagem</a> --> <a id="menuTornarSalaPrivada" class="mdl-navigation__link" href="./tornarSalaPrivada.html" onclick=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">lock_outline</i>Tornar Sala Privada</a> <a id="menuTornarSalaPublica" class="mdl-navigation__link" href="./tornarSalaPublica.html" onclick=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">lock_open</i>Tornar Sala Publica</a> <a id="menuListarSalasPrivadas" class="mdl-navigation__link" href="./chat.html"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">chat</i>Chat</a> <a id="menuLogout" class="mdl-navigation__link" href="#" onclick="logout()"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">keyboard_arrow_down</i>Logout</a> </nav> </div> <main class="mdl-layout__content mdl-color--grey-100"> <div class="mdl-grid demo-content"> <!-- Conteudo da Pagina --> <form class="form" method="POST" action="http://www.henriquesantos.pro.br/~hctsantos/chat.php?acao=cad_usuario"> <div class="form-group"> <label for="name" class="cols-sm-2 control-label">Nome da Sala</label> <div class="cols-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-user fa" aria-hidden="true"></i></span> <input type="text" class="form-control" name="nomeSala" id="nomeSala" placeholder="Digite o nome da sala"/> </div> </div> </div> <div class="form-group "> <button id="btnLogin" type="button" class="btn btn-primary btn-lg btn-block login-button" onclick="cadastrarSala()">Cadastrar Sala</button> </div> </form> </div> </div> </div> </main> </div> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" style="position: fixed; left: -1000px; height: -1000px;"> <defs> <mask id="piemask" maskContentUnits="objectBoundingBox"> <circle cx=0.5 cy=0.5 r=0.49 fill="white" /> <circle cx=0.5 cy=0.5 r=0.40 fill="black" /> </mask> <g id="piechart"> <circle cx=0.5 cy=0.5 r=0.5 /> <path d="M 0.5 0.5 0.5 0 A 0.5 0.5 0 0 1 0.95 0.28 z" stroke="none" fill="rgba(255, 255, 255, 0.75)" /> </g> </defs> </svg> <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 500 250" style="position: fixed; left: -1000px; height: -1000px;"> <defs> <g id="chart"> <g id="Gridlines"> <line fill="#888888" stroke="#888888" stroke-miterlimit="10" x1="0" y1="27.3" x2="468.3" y2="27.3" /> <line fill="#888888" stroke="#888888" stroke-miterlimit="10" x1="0" y1="66.7" x2="468.3" y2="66.7" /> <line fill="#888888" stroke="#888888" stroke-miterlimit="10" x1="0" y1="105.3" x2="468.3" y2="105.3" /> <line fill="#888888" stroke="#888888" stroke-miterlimit="10" x1="0" y1="144.7" x2="468.3" y2="144.7" /> <line fill="#888888" stroke="#888888" stroke-miterlimit="10" x1="0" y1="184.3" x2="468.3" y2="184.3" /> </g> <g id="Numbers"> <text transform="matrix(1 0 0 1 485 29.3333)" fill="#888888" font-family="'Roboto'" font-size="9">500</text> <text transform="matrix(1 0 0 1 485 69)" fill="#888888" font-family="'Roboto'" font-size="9">400</text> <text transform="matrix(1 0 0 1 485 109.3333)" fill="#888888" font-family="'Roboto'" font-size="9">300</text> <text transform="matrix(1 0 0 1 485 149)" fill="#888888" font-family="'Roboto'" font-size="9">200</text> <text transform="matrix(1 0 0 1 485 188.3333)" fill="#888888" font-family="'Roboto'" font-size="9">100</text> <text transform="matrix(1 0 0 1 0 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">1</text> <text transform="matrix(1 0 0 1 78 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">2</text> <text transform="matrix(1 0 0 1 154.6667 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">3</text> <text transform="matrix(1 0 0 1 232.1667 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">4</text> <text transform="matrix(1 0 0 1 309 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">5</text> <text transform="matrix(1 0 0 1 386.6667 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">6</text> <text transform="matrix(1 0 0 1 464.3333 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">7</text> </g> <g id="Layer_5"> <polygon opacity="0.36" stroke-miterlimit="10" points="0,223.3 48,138.5 154.7,169 211,88.5 294.5,80.5 380,165.2 437,75.5 469.5,223.3 "/> </g> <g id="Layer_4"> <polygon stroke-miterlimit="10" points="469.3,222.7 1,222.7 48.7,166.7 155.7,188.3 212,132.7 296.7,128 380.7,184.3 436.7,125 "/> </g> </g> </defs> </svg> <!-- Butão de + --> <!-- <a href="" target="_self" id="view-source" class="mdl-button mdl-js-button mdl-button--fab mdl-button--colored"><i class="material-icons">add</i></a> --> <script src="https://code.getmdl.io/1.3.0/material.min.js"></script> <script src="js/main.js"></script> </body> </html>
valterh4ck3r/projetoweb
salas.html
HTML
apache-2.0
11,625
<!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:30 MST 2020 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.config.management.SecurityRealm.SecurityRealmResources (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 Class org.wildfly.swarm.config.management.SecurityRealm.SecurityRealmResources (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/management/SecurityRealm.SecurityRealmResources.html" title="class in org.wildfly.swarm.config.management">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/management/class-use/SecurityRealm.SecurityRealmResources.html" target="_top">Frames</a></li> <li><a href="SecurityRealm.SecurityRealmResources.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.config.management.SecurityRealm.SecurityRealmResources" class="title">Uses of Class<br>org.wildfly.swarm.config.management.SecurityRealm.SecurityRealmResources</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/management/SecurityRealm.SecurityRealmResources.html" title="class in org.wildfly.swarm.config.management">SecurityRealm.SecurityRealmResources</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.management">org.wildfly.swarm.config.management</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.management"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/management/SecurityRealm.SecurityRealmResources.html" title="class in org.wildfly.swarm.config.management">SecurityRealm.SecurityRealmResources</a> in <a href="../../../../../../org/wildfly/swarm/config/management/package-summary.html">org.wildfly.swarm.config.management</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/management/package-summary.html">org.wildfly.swarm.config.management</a> that return <a href="../../../../../../org/wildfly/swarm/config/management/SecurityRealm.SecurityRealmResources.html" title="class in org.wildfly.swarm.config.management">SecurityRealm.SecurityRealmResources</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/management/SecurityRealm.SecurityRealmResources.html" title="class in org.wildfly.swarm.config.management">SecurityRealm.SecurityRealmResources</a></code></td> <td class="colLast"><span class="typeNameLabel">SecurityRealm.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/management/SecurityRealm.html#subresources--">subresources</a></span>()</code>&nbsp;</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/management/SecurityRealm.SecurityRealmResources.html" title="class in org.wildfly.swarm.config.management">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/management/class-use/SecurityRealm.SecurityRealmResources.html" target="_top">Frames</a></li> <li><a href="SecurityRealm.SecurityRealmResources.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 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/management/class-use/SecurityRealm.SecurityRealmResources.html
HTML
apache-2.0
7,650
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>CruiseControl.NET : Null Task</title> <link rel="stylesheet" href="styles/site.css" type="text/css" /> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <table class="pagecontent" border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#ffffff"> <tr> <td valign="top" class="pagebody"> <div class="pageheader"> <span class="pagetitle"> CruiseControl.NET : Null Task </span> </div> <div class="pagesubheading"> This page last changed on Dec 04, 2009 by <font color="#0050B2">csut017</font>. </div> <h1><a name="NullTask-NullTask"></a>Null Task</h1> <p>The Null Task is a task that doesn't do anything - it simply returns successfully. This is useful for projects that simply monitor the source control system for changes but don't need to do anything. </p> <h2><a name="NullTask-Version"></a>Version</h2> <p>Available from version 1.0</p> <h2><a name="NullTask-Examples"></a>Examples</h2> <div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;background-color: #ADD6FF;"><b>Minimalist example</b></div><div class="codeContent panelContent"> <pre class="code-xml"><span class="code-tag">&lt;nullTask /&gt;</span></pre> </div></div> <div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;background-color: #ADD6FF;"><b>Full example</b></div><div class="codeContent panelContent"> <pre class="code-xml"><span class="code-tag">&lt;nullTask simulateFailure=<span class="code-quote">"true"</span> /&gt;</span></pre> </div></div> <h2><a name="NullTask-ConfigurationElements"></a>Configuration Elements</h2> <table class='confluenceTable'><tbody> <tr> <th class='confluenceTh'> Element </th> <th class='confluenceTh'> Description </th> <th class='confluenceTh'> Type </th> <th class='confluenceTh'> Required </th> <th class='confluenceTh'> Default </th> <th class='confluenceTh'> Version </th> </tr> <tr> <td class='confluenceTd'> simulateFailure </td> <td class='confluenceTd'> Defines whether to fail the task or not. <br clear="all" />This can be useful in testing scenarios - but is probably most useful for people developing for CruiseControl.NET. </td> <td class='confluenceTd'> Boolean </td> <td class='confluenceTd'> No </td> <td class='confluenceTd'> false </td> <td class='confluenceTd'> 1.5 </td> </tr> </tbody></table> <div class='panelMacro'><table class='infoMacro'><colgroup><col width='24'><col></colgroup><tr><td valign='top'><img src="images/icons/emoticons/information.gif" width="16" height="16" align="absmiddle" alt="" border="0"></td><td><b>Automatically Generated</b><br /> <p>Documentation generated on Friday, 4 Dec 2009 at 12:19:45 AM</p></td></tr></table></div> </td> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td height="12" background="http://confluence.public.thoughtworks.org//images/border/border_bottom.gif"><img src="images/border/spacer.gif" width="1" height="1" border="0"/></td> </tr> <tr> <td align="center"><font color="grey">Document generated by Confluence on Jan 30, 2010 19:06</font></td> </tr> </table> </body> </html>
Gallio/infrastructure
ccnet/WebDashboard/doc/CCNET/Null Task.html
HTML
apache-2.0
3,763
<!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 Mon Nov 04 19:46:12 GMT 2013 --> <title>Uses of Interface org.raspberrypi.cecil.view.CecilViewInterface</title> <meta name="date" content="2013-11-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="Uses of Interface org.raspberrypi.cecil.view.CecilViewInterface"; } //--> </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/raspberrypi/cecil/view/CecilViewInterface.html" title="interface in org.raspberrypi.cecil.view">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?org/raspberrypi/cecil/view/class-use/CecilViewInterface.html" target="_top">Frames</a></li> <li><a href="CecilViewInterface.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.raspberrypi.cecil.view.CecilViewInterface" class="title">Uses of Interface<br>org.raspberrypi.cecil.view.CecilViewInterface</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/raspberrypi/cecil/view/CecilViewInterface.html" title="interface in org.raspberrypi.cecil.view">CecilViewInterface</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.raspberrypi.cecil.view">org.raspberrypi.cecil.view</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.raspberrypi.cecil.view"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/raspberrypi/cecil/view/CecilViewInterface.html" title="interface in org.raspberrypi.cecil.view">CecilViewInterface</a> in <a href="../../../../../org/raspberrypi/cecil/view/package-summary.html">org.raspberrypi.cecil.view</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/raspberrypi/cecil/view/package-summary.html">org.raspberrypi.cecil.view</a> that implement <a href="../../../../../org/raspberrypi/cecil/view/CecilViewInterface.html" title="interface in org.raspberrypi.cecil.view">CecilViewInterface</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/raspberrypi/cecil/view/Frame.html" title="class in org.raspberrypi.cecil.view">Frame</a></strong></code>&nbsp;</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/raspberrypi/cecil/view/CecilViewInterface.html" title="interface in org.raspberrypi.cecil.view">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?org/raspberrypi/cecil/view/class-use/CecilViewInterface.html" target="_top">Frames</a></li> <li><a href="CecilViewInterface.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>
GDP9/CecilRPi
documentation/Javadocs/org/raspberrypi/cecil/view/class-use/CecilViewInterface.html
HTML
apache-2.0
6,164
<!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 Thu Mar 08 14:17:36 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>CustomPrincipalDecoderSupplier (BOM: * : All 2018.3.3 API)</title> <meta name="date" content="2018-03-08"> <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="CustomPrincipalDecoderSupplier (BOM: * : All 2018.3.3 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/CustomPrincipalDecoderSupplier.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.3.3</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/config/elytron/CustomPrincipalDecoderConsumer.html" title="interface in org.wildfly.swarm.config.elytron"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/wildfly/swarm/config/elytron/CustomPrincipalTransformer.html" title="class in org.wildfly.swarm.config.elytron"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/elytron/CustomPrincipalDecoderSupplier.html" target="_top">Frames</a></li> <li><a href="CustomPrincipalDecoderSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.wildfly.swarm.config.elytron</div> <h2 title="Interface CustomPrincipalDecoderSupplier" class="title">Interface CustomPrincipalDecoderSupplier&lt;T extends <a href="../../../../../org/wildfly/swarm/config/elytron/CustomPrincipalDecoder.html" title="class in org.wildfly.swarm.config.elytron">CustomPrincipalDecoder</a>&gt;</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">CustomPrincipalDecoderSupplier&lt;T extends <a href="../../../../../org/wildfly/swarm/config/elytron/CustomPrincipalDecoder.html" title="class in org.wildfly.swarm.config.elytron">CustomPrincipalDecoder</a>&gt;</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">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code><a href="../../../../../org/wildfly/swarm/config/elytron/CustomPrincipalDecoder.html" title="class in org.wildfly.swarm.config.elytron">CustomPrincipalDecoder</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/elytron/CustomPrincipalDecoderSupplier.html#get--">get</a></span>()</code> <div class="block">Constructed instance of CustomPrincipalDecoder 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/elytron/CustomPrincipalDecoder.html" title="class in org.wildfly.swarm.config.elytron">CustomPrincipalDecoder</a>&nbsp;get()</pre> <div class="block">Constructed instance of CustomPrincipalDecoder 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/CustomPrincipalDecoderSupplier.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.3.3</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/config/elytron/CustomPrincipalDecoderConsumer.html" title="interface in org.wildfly.swarm.config.elytron"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/wildfly/swarm/config/elytron/CustomPrincipalTransformer.html" title="class in org.wildfly.swarm.config.elytron"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/elytron/CustomPrincipalDecoderSupplier.html" target="_top">Frames</a></li> <li><a href="CustomPrincipalDecoderSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 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.3.3/apidocs/org/wildfly/swarm/config/elytron/CustomPrincipalDecoderSupplier.html
HTML
apache-2.0
9,504
<!-- ************************************************************************** # # Copyright (C) 2004-2009 Oracle Corporation # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v1.0 # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v10.html # # Contributors: # Kohsuke Kawaguchi # Duncan Mills # #************************************************************************** --> <div> Verwendet SSL bei der Verbindung mit dem SMTP-Server. Vorgabewert ist Port 465. <p> Zusätzliche Einstellungen können mit Hilfe von Systemeigenschaften vorgenommen werden (<a href="https://javamail.java.net/docs/api/">Liste mit möglichen Werten und deren Auswirkungen</a>). </div>
eclipse/hudson.core
hudson-core/src/main/resources/hudson/tasks/Mailer/help-useSsl_de.html
HTML
apache-2.0
827
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Auto Parsers</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../../../index.html" title="Spirit 2.5.4"> <link rel="up" href="../qi_parsers.html" title="Qi Parsers"> <link rel="prev" href="binary.html" title="Binary Parsers"> <link rel="next" href="directive.html" title="Parser Directives"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../boost.png"></td> <td align="center"><a href="../../../../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="binary.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../qi_parsers.html"><img src="../../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="directive.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="spirit.qi.quick_reference.qi_parsers.auto"></a><a class="link" href="auto.html" title="Auto Parsers">Auto Parsers</a> </h5></div></div></div> <p> See here for more information about <a class="link" href="../../reference/auto.html" title="Auto Parser">Auto Parsers</a>. </p> <div class="informaltable"><table class="table"> <colgroup> <col> <col> <col> </colgroup> <thead><tr> <th> <p> Expression </p> </th> <th> <p> Attribute </p> </th> <th> <p> Description </p> </th> </tr></thead> <tbody><tr> <td> <p> <a class="link" href="../../reference/auto.html" title="Auto Parser"><code class="computeroutput"><span class="identifier">auto_</span></code></a> </p> </td> <td> <p> <code class="computeroutput"><span class="identifier">hold_any</span></code> </p> </td> <td> <p> Parse input using a parser created from the supplied attribute type using the <a class="link" href="../../reference/parse_api/create_parser.html" title="API for Automatic Parser Creation"><code class="computeroutput"><span class="identifier">create_parser</span></code></a> API function. </p> </td> </tr></tbody> </table></div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2001-2011 Joel de Guzman, Hartmut Kaiser<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="binary.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../qi_parsers.html"><img src="../../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="directive.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
Im-dex/xray-162
code/3rd-party/boost/libs/spirit/doc/html/spirit/qi/quick_reference/qi_parsers/auto.html
HTML
apache-2.0
4,444
<!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: /home/stefan/src/github/tesseract-ocr/tesseract/lstm/weightmatrix.h File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="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 &#160;<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('a01139.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> &#124; <a href="#namespaces">Namespaces</a> </div> <div class="headertitle"> <div class="title">weightmatrix.h File Reference</div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><code>#include &quot;<a class="el" href="a00515_source.html">genericvector.h</a>&quot;</code><br /> <code>#include &quot;<a class="el" href="a00302_source.html">matrix.h</a>&quot;</code><br /> <code>#include &quot;<a class="el" href="a00611_source.html">tprintf.h</a>&quot;</code><br /> </div> <p><a href="a01139_source.html">Go to the source code of this file.</a></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> Classes</h2></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a04649.html">tesseract::TransposedArray</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a04653.html">tesseract::WeightMatrix</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</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:a01762"><td class="memItemLeft" align="right" valign="top"> &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01762.html">tesseract</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</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_a95ea02ce1f4de3c907258a02be92313.html">lstm</a></li><li class="navelem"><a class="el" href="a01139.html">weightmatrix.h</a></li> <li class="footer">Generated on Sat May 20 2017 22:15:24 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/a01139.html
HTML
apache-2.0
5,384
<!DOCTYPE html > <html> <head> <title>AndStartWithWord - ScalaTest 3.0.2 - org.scalatest.matchers.MatcherFactory5.AndStartWithWord</title> <meta name="description" content="AndStartWithWord - ScalaTest 3.0.2 - org.scalatest.matchers.MatcherFactory5.AndStartWithWord" /> <meta name="keywords" content="AndStartWithWord ScalaTest 3.0.2 org.scalatest.matchers.MatcherFactory5.AndStartWithWord" /> <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.matchers.MatcherFactory5$AndStartWithWord'; 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"> <img alt="Class" src="../../../lib/class_big.png" /> <p id="owner"><a href="../../package.html" class="extype" name="org">org</a>.<a href="../package.html" class="extype" name="org.scalatest">scalatest</a>.<a href="package.html" class="extype" name="org.scalatest.matchers">matchers</a>.<a href="MatcherFactory5.html" class="extype" name="org.scalatest.matchers.MatcherFactory5">MatcherFactory5</a></p> <h1>AndStartWithWord</h1><h3><span class="morelinks"><div>Related Doc: <a href="MatcherFactory5.html" class="extype" name="org.scalatest.matchers.MatcherFactory5">package MatcherFactory5</a> </div></span></h3><span class="permalink"> <a href="../../../index.html#org.scalatest.matchers.MatcherFactory5$AndStartWithWord" 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">final </span> <span class="kind">class</span> </span> <span class="symbol"> <span class="name">AndStartWithWord</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>This class is part of the ScalaTest matchers DSL. Please see the documentation for <a href="../Matchers.html"><code>Matchers</code></a> for an overview of the matchers DSL. </p></div><dl class="attributes block"> <dt>Source</dt><dd><a href="https://github.com/scalatest/scalatest/tree/release-3.0.2/scalatest//scala/genfactories/MatcherFactory5.scala" target="_blank">MatcherFactory5.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.matchers.MatcherFactory5.AndStartWithWord"><span>AndStartWithWord</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.matchers.MatcherFactory5.AndStartWithWord#&lt;init&gt;" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="&lt;init&gt;():MatcherFactory5.this.AndStartWithWord"></a> <a id="&lt;init&gt;:AndStartWithWord"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">new</span> </span> <span class="symbol"> <span class="name">AndStartWithWord</span><span class="params">()</span> </span> </h4><span class="permalink"> <a href="../../../index.html#org.scalatest.matchers.MatcherFactory5$AndStartWithWord@&lt;init&gt;():MatcherFactory5.this.AndStartWithWord" 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.matchers.MatcherFactory5$AndStartWithWord@!=(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.matchers.MatcherFactory5$AndStartWithWord@##():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.matchers.MatcherFactory5$AndStartWithWord@==(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.matchers.MatcherFactory5$AndStartWithWord@asInstanceOf[T0]:T0" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#clone" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="clone():Object"></a> <a id="clone():AnyRef"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">clone</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#org.scalatest.matchers.MatcherFactory5$AndStartWithWord@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.matchers.MatcherFactory5$AndStartWithWord@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.matchers.MatcherFactory5$AndStartWithWord@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.matchers.MatcherFactory5$AndStartWithWord@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.matchers.MatcherFactory5$AndStartWithWord@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.matchers.MatcherFactory5$AndStartWithWord@hashCode():Int" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.Any#isInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isInstanceOf[T0]:Boolean"></a> <a id="isInstanceOf[T0]:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#org.scalatest.matchers.MatcherFactory5$AndStartWithWord@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.matchers.MatcherFactory5$AndStartWithWord@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.matchers.MatcherFactory5$AndStartWithWord@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.matchers.MatcherFactory5$AndStartWithWord@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.matchers.MatcherFactory5.AndStartWithWord#regex" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="regex(regex:scala.util.matching.Regex):org.scalatest.matchers.MatcherFactory5[SCwithString,TC1,TC2,TC3,TC4,TC5]"></a> <a id="regex(Regex):MatcherFactory5[SCwithString,TC1,TC2,TC3,TC4,TC5]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">regex</span><span class="params">(<span name="regex">regex: <span class="extype" name="scala.util.matching.Regex">Regex</span></span>)</span><span class="result">: <a href="MatcherFactory5.html" class="extype" name="org.scalatest.matchers.MatcherFactory5">MatcherFactory5</a>[<span class="extype" name="org.scalatest.matchers.MatcherFactory5.SC">SC</span> with <span class="extype" name="scala.Predef.String">String</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC1">TC1</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC2">TC2</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC3">TC3</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC4">TC4</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC5">TC5</span>]</span> </span> </h4><span class="permalink"> <a href="../../../index.html#org.scalatest.matchers.MatcherFactory5$AndStartWithWord@regex(regex:scala.util.matching.Regex):org.scalatest.matchers.MatcherFactory5[SCwithString,TC1,TC2,TC3,TC4,TC5]" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">This method enables the following syntax given a <code>MatcherFactory5</code>:</code></p><div class="fullcomment"><div class="comment cmt"><p>This method enables the following syntax given a <code>MatcherFactory5</code>:</p><p><pre class="stHighlighted"> aMatcherFactory and startWith regex (decimalRegex) ^ </pre> </p></div></div> </li><li name="org.scalatest.matchers.MatcherFactory5.AndStartWithWord#regex" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="regex(regexWithGroups:org.scalatest.words.RegexWithGroups):org.scalatest.matchers.MatcherFactory5[SCwithString,TC1,TC2,TC3,TC4,TC5]"></a> <a id="regex(RegexWithGroups):MatcherFactory5[SCwithString,TC1,TC2,TC3,TC4,TC5]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">regex</span><span class="params">(<span name="regexWithGroups">regexWithGroups: <a href="../words/RegexWithGroups.html" class="extype" name="org.scalatest.words.RegexWithGroups">RegexWithGroups</a></span>)</span><span class="result">: <a href="MatcherFactory5.html" class="extype" name="org.scalatest.matchers.MatcherFactory5">MatcherFactory5</a>[<span class="extype" name="org.scalatest.matchers.MatcherFactory5.SC">SC</span> with <span class="extype" name="scala.Predef.String">String</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC1">TC1</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC2">TC2</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC3">TC3</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC4">TC4</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC5">TC5</span>]</span> </span> </h4><span class="permalink"> <a href="../../../index.html#org.scalatest.matchers.MatcherFactory5$AndStartWithWord@regex(regexWithGroups:org.scalatest.words.RegexWithGroups):org.scalatest.matchers.MatcherFactory5[SCwithString,TC1,TC2,TC3,TC4,TC5]" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">This method enables the following syntax given a <code>MatcherFactory5</code>:</code></p><div class="fullcomment"><div class="comment cmt"><p>This method enables the following syntax given a <code>MatcherFactory5</code>:</p><p><pre class="stHighlighted"> aMatcherFactory and startWith regex (<span class="stQuotedString">"a(b*)c"</span> withGroup <span class="stQuotedString">"bb"</span>) ^ </pre> </p></div></div> </li><li name="org.scalatest.matchers.MatcherFactory5.AndStartWithWord#regex" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="regex(regexString:String):org.scalatest.matchers.MatcherFactory5[SCwithString,TC1,TC2,TC3,TC4,TC5]"></a> <a id="regex(String):MatcherFactory5[SCwithString,TC1,TC2,TC3,TC4,TC5]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">regex</span><span class="params">(<span name="regexString">regexString: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <a href="MatcherFactory5.html" class="extype" name="org.scalatest.matchers.MatcherFactory5">MatcherFactory5</a>[<span class="extype" name="org.scalatest.matchers.MatcherFactory5.SC">SC</span> with <span class="extype" name="scala.Predef.String">String</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC1">TC1</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC2">TC2</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC3">TC3</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC4">TC4</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory5.TC5">TC5</span>]</span> </span> </h4><span class="permalink"> <a href="../../../index.html#org.scalatest.matchers.MatcherFactory5$AndStartWithWord@regex(regexString:String):org.scalatest.matchers.MatcherFactory5[SCwithString,TC1,TC2,TC3,TC4,TC5]" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">This method enables the following syntax given a <code>MatcherFactory5</code>:</code></p><div class="fullcomment"><div class="comment cmt"><p>This method enables the following syntax given a <code>MatcherFactory5</code>:</p><p><pre class="stHighlighted"> aMatcherFactory and startWith regex (decimal) ^ </pre> </p></div></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#org.scalatest.matchers.MatcherFactory5$AndStartWithWord@synchronized[T0](x$1:=&gt;T0):T0" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#toString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toString():String"></a> <a id="toString():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toString</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#org.scalatest.matchers.MatcherFactory5$AndStartWithWord@toString():String" title="Permalink" target="_top"> <img src="../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <a id="wait():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../index.html#org.scalatest.matchers.MatcherFactory5$AndStartWithWord@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.matchers.MatcherFactory5$AndStartWithWord@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.matchers.MatcherFactory5$AndStartWithWord@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/matchers/MatcherFactory5$AndStartWithWord.html
HTML
apache-2.0
34,246
<!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_65) on Mon Feb 17 14:53:39 PST 2014 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class com.google.zxing.datamatrix.encoder.ErrorCorrection (ZXing Core 2.3.0 API) </TITLE> <META NAME="date" CONTENT="2014-02-17"> <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.google.zxing.datamatrix.encoder.ErrorCorrection (ZXing Core 2.3.0 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/google/zxing/datamatrix/encoder/ErrorCorrection.html" title="class in com.google.zxing.datamatrix.encoder"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-788492-5']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?com/google/zxing/datamatrix/encoder//class-useErrorCorrection.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ErrorCorrection.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>com.google.zxing.datamatrix.encoder.ErrorCorrection</B></H2> </CENTER> No usage of com.google.zxing.datamatrix.encoder.ErrorCorrection <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/google/zxing/datamatrix/encoder/ErrorCorrection.html" title="class in com.google.zxing.datamatrix.encoder"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-788492-5']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?com/google/zxing/datamatrix/encoder//class-useErrorCorrection.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ErrorCorrection.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2007&#x2013;2014. All rights reserved. </BODY> </HTML>
CatherineWong/zxing-glass
core/target/apidocs/com/google/zxing/datamatrix/encoder/class-use/ErrorCorrection.html
HTML
apache-2.0
7,424
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="ja"> <head> <!-- Generated by javadoc (1.8.0_45) on Fri May 20 00:01:19 JST 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>クラス yokohama.yellow_man.sena.jobs.ExportCompanySchedulesの使用</title> <meta name="date" content="2016-05-20"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="\u30AF\u30E9\u30B9 yokohama.yellow_man.sena.jobs.ExportCompanySchedules\u306E\u4F7F\u7528"; } } catch(err) { } //--> </script> <noscript> <div>ブラウザのJavaScriptが無効になっています。</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="ナビゲーション・リンクをスキップ">ナビゲーション・リンクをスキップ</a></div> <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><a href="../../../../../yokohama/yellow_man/sena/jobs/ExportCompanySchedules.html" title="yokohama.yellow_man.sena.jobs内のクラス">クラス</a></li> <li class="navBarCell1Rev">使用</li> <li><a href="../package-tree.html">階層ツリー</a></li> <li><a href="../../../../../deprecated-list.html">非推奨</a></li> <li><a href="../../../../../index-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>次</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?yokohama/yellow_man/sena/jobs/class-use/ExportCompanySchedules.html" target="_top">フレーム</a></li> <li><a href="ExportCompanySchedules.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> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="クラスの使用 yokohama.yellow_man.sena.jobs.ExportCompanySchedules" class="title">クラスの使用<br>yokohama.yellow_man.sena.jobs.ExportCompanySchedules</h2> </div> <div class="classUseContainer">yokohama.yellow_man.sena.jobs.ExportCompanySchedulesはどこからも使用されていません</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="ナビゲーション・リンクをスキップ">ナビゲーション・リンクをスキップ</a></div> <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><a href="../../../../../yokohama/yellow_man/sena/jobs/ExportCompanySchedules.html" title="yokohama.yellow_man.sena.jobs内のクラス">クラス</a></li> <li class="navBarCell1Rev">使用</li> <li><a href="../package-tree.html">階層ツリー</a></li> <li><a href="../../../../../deprecated-list.html">非推奨</a></li> <li><a href="../../../../../index-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>次</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?yokohama/yellow_man/sena/jobs/class-use/ExportCompanySchedules.html" target="_top">フレーム</a></li> <li><a href="ExportCompanySchedules.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> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
yellow-man/sena-doc
javadoc/batch/yokohama/yellow_man/sena/jobs/class-use/ExportCompanySchedules.html
HTML
apache-2.0
4,936
<!-- HTML header for doxygen 1.8.13--> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>Asylo: File Members</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="/favicons/favicon.ico" rel="shortcut icon" type="image/x-icon"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">Asylo </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> </div><!-- top --> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="contents"> <div class="textblock">Here is a list of all file members with links to the files they belong to:</div><ul> <li>ASYLO_ASSIGN_OR_RETURN : <a class="el" href="status__macros_8h.html#aed04a682d62384eea1b02f6eec08d30f">status_macros.h</a> </li> <li>ASYLO_CHECK_OK : <a class="el" href="status_8h.html#a510c1a74f23973bd8e1eccf55846290f">status.h</a> </li> <li>ASYLO_RETURN_IF_ERROR : <a class="el" href="status__macros_8h.html#a884b0600610551e91852b3bc96c732c4">status_macros.h</a> </li> <li>CHECK : <a class="el" href="logging_8h.html#a3e1cfef60e774a81f30eaddf26a3a274">logging.h</a> </li> <li>CHECK_EQ : <a class="el" href="logging_8h.html#a7c0ce053b28d53aa4eaf3eb7fb71663b">logging.h</a> </li> <li>CHECK_GE : <a class="el" href="logging_8h.html#a7cc25402ecd7591b4c39934dd656b1f9">logging.h</a> </li> <li>CHECK_GT : <a class="el" href="logging_8h.html#a7e03ec13560fa94a8fea569960d7efc6">logging.h</a> </li> <li>CHECK_LE : <a class="el" href="logging_8h.html#ae4db23f10f5d4aad6d735f5a74cd6f8c">logging.h</a> </li> <li>CHECK_LT : <a class="el" href="logging_8h.html#a4bd2e815ca2f702a4b6aa744b1ff3b82">logging.h</a> </li> <li>CHECK_NE : <a class="el" href="logging_8h.html#ab25e01a2942b821d66371fc68d53f2eb">logging.h</a> </li> <li>CHECK_NOTNULL : <a class="el" href="logging_8h.html#ab4f4dc044a2ed1eb76fac50c769973fa">logging.h</a> </li> <li>CHECK_OP : <a class="el" href="logging_8h.html#a5e079236bd9b8ce194b290a4f4e5bbcb">logging.h</a> </li> <li>CHECK_OP_LOG : <a class="el" href="logging_8h.html#ad99b8d8c9e55c7dc8b7de868f9269319">logging.h</a> </li> <li>ERROR : <a class="el" href="logging_8h.html#a93a3ba385cad27c4774e5fe64c025d3da2fd6f336d08340583bd620a7f5694c90">logging.h</a> </li> <li>FATAL : <a class="el" href="logging_8h.html#a93a3ba385cad27c4774e5fe64c025d3da651d8a47a6976d6fe05c0e03fb4cd2d0">logging.h</a> </li> <li>INFO : <a class="el" href="logging_8h.html#a93a3ba385cad27c4774e5fe64c025d3da748005382152808a72b1a9177d9dc806">logging.h</a> </li> <li>kAddressName : <a class="el" href="shared__name__kind_8h.html#afef9abbb4efbe298078fc9dd8a30afcea04a037ad839440f36fdd69b75ea50f32">shared_name_kind.h</a> </li> <li>kMemBlockName : <a class="el" href="shared__name__kind_8h.html#afef9abbb4efbe298078fc9dd8a30afcea621e9038c379a0d14aa590fb5df1e34a">shared_name_kind.h</a> </li> <li>kSocketName : <a class="el" href="shared__name__kind_8h.html#afef9abbb4efbe298078fc9dd8a30afcea1a35db811e8dd72628ca323f420a2b8b">shared_name_kind.h</a> </li> <li>kTimerName : <a class="el" href="shared__name__kind_8h.html#afef9abbb4efbe298078fc9dd8a30afceab824b6eb0b4827cff6e96602198b601c">shared_name_kind.h</a> </li> <li>kUnspecifiedName : <a class="el" href="shared__name__kind_8h.html#afef9abbb4efbe298078fc9dd8a30afcea7c9a44128c7112176129050b06b43e7e">shared_name_kind.h</a> </li> <li>LOG : <a class="el" href="logging_8h.html#accad43a85d781d53381cd53a9894b6ae">logging.h</a> </li> <li>LOG_IF : <a class="el" href="logging_8h.html#a09f7d88282cf92c9f231270ac113e5c6">logging.h</a> </li> <li>LogSeverity : <a class="el" href="logging_8h.html#a93a3ba385cad27c4774e5fe64c025d3d">logging.h</a> </li> <li>QFATAL : <a class="el" href="logging_8h.html#a93a3ba385cad27c4774e5fe64c025d3da4f457e2eb75a762499cac70a9200c354">logging.h</a> </li> <li>SharedNameKind : <a class="el" href="shared__name__kind_8h.html#afef9abbb4efbe298078fc9dd8a30afce">shared_name_kind.h</a> </li> <li>VLOG : <a class="el" href="logging_8h.html#afc28ec91d066c96a3a139441e029f326">logging.h</a> </li> <li>WARNING : <a class="el" href="logging_8h.html#a93a3ba385cad27c4774e5fe64c025d3da984de77c680eaff141ec910e25568a81">logging.h</a> </li> </ul> </div><!-- contents --> <!-- HTML footer for doxygen 1.8.13--> <!-- start footer part --> <hr class="footer"/> </body> </html>
google/asylo-site
doxygen/globals.html
HTML
apache-2.0
6,035
<!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_171) on Fri Apr 16 05:17:59 UTC 2021 --> <title>GroupCloneVolumeMember</title> <meta name="date" content="2021-04-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="GroupCloneVolumeMember"; } } catch(err) { } //--> var methods = {"i0":10,"i1":9,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../com/solidfire/element/api/GetVolumeStatsResult.Builder.html" title="class in com.solidfire.element.api"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.Builder.html" title="class in com.solidfire.element.api"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?com/solidfire/element/api/GroupCloneVolumeMember.html" target="_top">Frames</a></li> <li><a href="GroupCloneVolumeMember.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li> <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">com.solidfire.element.api</div> <h2 title="Class GroupCloneVolumeMember" class="title">Class GroupCloneVolumeMember</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>com.solidfire.element.api.GroupCloneVolumeMember</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Serializable</dd> </dl> <hr> <br> <pre>public class <span class="typeNameLabel">GroupCloneVolumeMember</span> extends java.lang.Object implements java.io.Serializable</pre> <div class="block">GroupCloneVolumeMember Represents the relationship between the source Volume and cloned Volume IDs.</div> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../serialized-form.html#com.solidfire.element.api.GroupCloneVolumeMember">Serialized Form</a></dd> </dl> </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">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.Builder.html" title="class in com.solidfire.element.api">GroupCloneVolumeMember.Builder</a></span></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field.summary"> <!-- --> </a> <h3>Field Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> <caption><span>Fields</span><span class="tabEnd">&nbsp;</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 long</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#serialVersionUID">serialVersionUID</a></span></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#GroupCloneVolumeMember--">GroupCloneVolumeMember</a></span>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#GroupCloneVolumeMember-java.lang.Long-java.lang.Long-">GroupCloneVolumeMember</a></span>(java.lang.Long&nbsp;volumeID, java.lang.Long&nbsp;srcVolumeID)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.Builder.html" title="class in com.solidfire.element.api">GroupCloneVolumeMember.Builder</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#asBuilder--">asBuilder</a></span>()</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>static <a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.Builder.html" title="class in com.solidfire.element.api">GroupCloneVolumeMember.Builder</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#builder--">builder</a></span>()</code>&nbsp;</td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#equals-java.lang.Object-">equals</a></span>(java.lang.Object&nbsp;o)</code>&nbsp;</td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>java.lang.Long</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#getSrcVolumeID--">getSrcVolumeID</a></span>()</code> <div class="block">The VolumeID of the source volume.</div> </td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code>java.lang.Long</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#getVolumeID--">getVolumeID</a></span>()</code> <div class="block">The VolumeID of the cloned volume.</div> </td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#hashCode--">hashCode</a></span>()</code>&nbsp;</td> </tr> <tr id="i6" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#setSrcVolumeID-java.lang.Long-">setSrcVolumeID</a></span>(java.lang.Long&nbsp;srcVolumeID)</code>&nbsp;</td> </tr> <tr id="i7" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#setVolumeID-java.lang.Long-">setVolumeID</a></span>(java.lang.Long&nbsp;volumeID)</code>&nbsp;</td> </tr> <tr id="i8" class="altColor"> <td class="colFirst"><code>java.util.Map&lt;java.lang.String,java.lang.Object&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#toMap--">toMap</a></span>()</code>&nbsp;</td> </tr> <tr id="i9" class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.html#toString--">toString</a></span>()</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, finalize, getClass, 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="serialVersionUID"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>serialVersionUID</h4> <pre>public static final&nbsp;long serialVersionUID</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../constant-values.html#com.solidfire.element.api.GroupCloneVolumeMember.serialVersionUID">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="GroupCloneVolumeMember--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GroupCloneVolumeMember</h4> <pre><a href="../../../../com/solidfire/core/annotation/Since.html" title="annotation in com.solidfire.core.annotation">@Since</a>(<a href="../../../../com/solidfire/core/annotation/Since.html#value--">value</a>="7.0") public&nbsp;GroupCloneVolumeMember()</pre> </li> </ul> <a name="GroupCloneVolumeMember-java.lang.Long-java.lang.Long-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>GroupCloneVolumeMember</h4> <pre><a href="../../../../com/solidfire/core/annotation/Since.html" title="annotation in com.solidfire.core.annotation">@Since</a>(<a href="../../../../com/solidfire/core/annotation/Since.html#value--">value</a>="7.0") public&nbsp;GroupCloneVolumeMember(java.lang.Long&nbsp;volumeID, java.lang.Long&nbsp;srcVolumeID)</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="getVolumeID--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getVolumeID</h4> <pre>public&nbsp;java.lang.Long&nbsp;getVolumeID()</pre> <div class="block">The VolumeID of the cloned volume.</div> </li> </ul> <a name="setVolumeID-java.lang.Long-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setVolumeID</h4> <pre>public&nbsp;void&nbsp;setVolumeID(java.lang.Long&nbsp;volumeID)</pre> </li> </ul> <a name="getSrcVolumeID--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getSrcVolumeID</h4> <pre>public&nbsp;java.lang.Long&nbsp;getSrcVolumeID()</pre> <div class="block">The VolumeID of the source volume.</div> </li> </ul> <a name="setSrcVolumeID-java.lang.Long-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setSrcVolumeID</h4> <pre>public&nbsp;void&nbsp;setSrcVolumeID(java.lang.Long&nbsp;srcVolumeID)</pre> </li> </ul> <a name="equals-java.lang.Object-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>equals</h4> <pre>public&nbsp;boolean&nbsp;equals(java.lang.Object&nbsp;o)</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>equals</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd> </dl> </li> </ul> <a name="hashCode--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>hashCode</h4> <pre>public&nbsp;int&nbsp;hashCode()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>hashCode</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd> </dl> </li> </ul> <a name="toMap--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toMap</h4> <pre>public&nbsp;java.util.Map&lt;java.lang.String,java.lang.Object&gt;&nbsp;toMap()</pre> </li> </ul> <a name="toString--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toString</h4> <pre>public&nbsp;java.lang.String&nbsp;toString()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>toString</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd> </dl> </li> </ul> <a name="builder--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>builder</h4> <pre>public static&nbsp;<a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.Builder.html" title="class in com.solidfire.element.api">GroupCloneVolumeMember.Builder</a>&nbsp;builder()</pre> </li> </ul> <a name="asBuilder--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>asBuilder</h4> <pre>public final&nbsp;<a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.Builder.html" title="class in com.solidfire.element.api">GroupCloneVolumeMember.Builder</a>&nbsp;asBuilder()</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../com/solidfire/element/api/GetVolumeStatsResult.Builder.html" title="class in com.solidfire.element.api"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../com/solidfire/element/api/GroupCloneVolumeMember.Builder.html" title="class in com.solidfire.element.api"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?com/solidfire/element/api/GroupCloneVolumeMember.html" target="_top">Frames</a></li> <li><a href="GroupCloneVolumeMember.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li> <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
solidfire/solidfire-sdk-java
docs/com/solidfire/element/api/GroupCloneVolumeMember.html
HTML
apache-2.0
18,971
<!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>Bootstrap </title> <!-- Bootstrap Core CSS --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!-- Custom CSS --> <link href="css/1-col-portfolio.css" rel="stylesheet"> <!-- 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> <!-- Navigation --> <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <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">Početna</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li> <a href="svemir.html">O svemiru</a> </li> <li> <a href="aplikacije.html">Aplikacije</a> </li> <li> <a href="simboli.html">Simboli</a> </li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container --> </nav> <!-- Page Content --> <div class="container"> <!-- Page Heading --> <div class="row"> <div class="col-lg-12"> <hr/> <h1 class="page-header">O svemiru <small></small> </h1> </div> </div> <!-- /.row --> <!-- Project One --> <div class="row"> <div class="col-md-7"> <a href="#"> <img class="img-responsive" src="/home/silva/Desktop/startbootstrap-full-slider-1.0.3/mg/slika16.jpg" alt=""> </a> </div> <div class="col-md-5"> <h3>Definicija</h3> <h4>pojma "svemir"</h4> <p>Svemir je ukupnost svega što postoji , uključujući sav: prostor, vrijeme, materiju, energiju, planete, zvijezde, galaksije, intergalaktički prostor i sve iza toga.</p> <a class="btn btn-primary" href="https://bs.wikipedia.org/wiki/Svemir">Wiki <span class="glyphicon glyphicon-chevron-right"></span></a> </div> </div> <!-- /.row --> <hr> <!-- Project Two --> <div class="row"> <div class="col-md-7"> <a href="#"> <img class="img-responsive" src="/home/silva/Desktop/startbootstrap-full-slider-1.0.3/mg/slika17.jpg" alt=""> </a> </div> <div class="col-md-5"> <h3>Nebeska tijela</h3> <h4>"Je li Mjesec građen od švicarskog ili nekog drugog sira?"</h4> <p><i>Nebeska tijela</i> se dijele na: zvijezde, planete,satelite, planetoide, komete, meteore, crne rupe i neutronske zvijezde. Zvijezde su najrasprostranjenija nebeska tijela u Svemiru. To su užarena plinovita tijela slična Suncu. Planet je nebesko tijelo koje se kreće eliptičnom putanjom oko zvijezde. Za razliku od zvijezda, planeti nemaju vlastiti izvor energije, tj. u njihovoj unutrašnjosti ne dolazi do nuklearne fuzije. Također oko planeta mogu kružiti manja tijela koja nazivamo mjesecima, pratiocima ili prirodnim satelitima. <i>Mjesec (lat. Luna)</i> je Zemljin prirodni satelit i ujedno najbliže nebesko tijelo. Neposredna površina Mjeseca vrlo je rastresita i šupljikava, porozna. Tlo je sastavljeno od sitne prašine, od čestica nastalih taljenjem mnogobrojnih zrnaca (tu su nađene i male staklaste kuglice), i od slijepljenih nehomogenih čestica. Mjesec je i reljefno vrlo zanimljivo nebesko tijelo. Osnovna je razdioba na svjetlija kopna i tamnija mora. </p> <a class="btn btn-primary" href="https://hr.wikipedia.org/wiki/Nebesko_tijelo">Wiki <span class="glyphicon glyphicon-chevron-right"></span></a> </div> </div> <!-- /.row --> <hr> <!-- Project Three --> <div class="row"> <div class="col-md-7"> <a href="#"> <img class="img-responsive" src="/home/silva/Desktop/startbootstrap-full-slider-1.0.3/mg/slika18.jpg" alt=""> </a> </div> <div class="col-md-5"> <h3>Planeti</h3> <h4>u Sunčevom sustavu i izvan</h4> <p>Do početka 1990-ih bilo je poznato 9 planeta, svi u Sunčevom sustavu (solarnom sustavu). Danas se u Sunčevom sustavu broji 8 planeta: Merkur,Venera,Zemlja,Mars,Jupiter,Saturn,Uran,Neptun, dok je Pluton svrstan u kategoriju planetoida, poput Ceresa, Pallaisa, Sedne i drugih. U novije vrijeme razvijene su metode pronalaženja planeta oko drugih zvijezda u bliskom galaktičkom susjedstvu, na udaljenostima od nekoliko svjetlosnih godina. Do sada (sredina 2013.) je potvrđeno 889 ekstrasolarnih planeta. Smatra se da planeti nastaju iz protoplanetarnog diska, u procesu formiranja zvjezdanog sustava. Plin i prašina koji kruže oko protozvijezde zgušnjavaju se u rotirajući disk u kojem se stvaraju nakupine čestica. Ove nakupine povećavaju masu pod utjecajem gravitacije, sudaraju se i formiraju veća tijela - planete.</p> <a class="btn btn-primary" href="https://hr.wikipedia.org/wiki/Planet">Wiki <span class="glyphicon glyphicon-chevron-right"></span></a> </div> </div> <!-- /.row --> <hr> <!-- Project Four --> <div class="row"> <div class="col-md-7"> <a href="#"> <img class="img-responsive" src="/home/silva/Desktop/startbootstrap-full-slider-1.0.3/mg/slika13.jpg" alt=""> </a> </div> <div class="col-md-5"> <h3>Kretanje i sadržaj</h3> <h4>"Ništa se u Svemiru ne dešava slučajno; sve ima svoj uzrok."</h4> <p>Sve u Svemiru plovi i za sve vrijede poznati prirodni zakoni. Teža nebeska tijela uvijek privlače ona lakša, a ona lakša pod uticajem sile gravitacije rotiraju oko tih težih. Ništa se u Svemiru ne dešava slučajno; sve ima svoj uzrok.Svemir je u suštini taman prostor kome se ne nazire ni početak ni kraj; to je svod koji ima dubinu. On nije ni prazan prostor (vakuum), jer je uvijek ispunjen energijom, što svjedoči obilato elektromagnetsko zračenje koje pristiže do nas iz dalekih svemirskih prostranstava. <i>Tamna energija</i> naziv je za hipotetski oblik energije koji prodire u cijeli prostor i ima negativan tlak koji rezultira odbojnom gravitacijskom silom. Tamna energija djeluje suprotno običnoj materiji koja preko gravitacije djeluje privlačno te tako ubrzava širenje svemira. Preostalih 4,9% čini <i>obična energija</i> sastavljena od atoma,iona, elektrona i oblika koji oni sastavljaju. </p> <a class="btn btn-primary" href="https://en.wikipedia.org/wiki/Orbit">Wiki <span class="glyphicon glyphicon-chevron-right"></span></a> </div> </div> <!-- /.row --> <hr> <!-- Project Five --> <div class="row"> <div class="col-md-7"> <a href="#"> <img class="img-responsive" src="/home/silva/Desktop/startbootstrap-full-slider-1.0.3/mg/slika19.jpg" alt=""> </a> </div> <div class="col-md-5"> <h3>Oblik svemira</h3> Važno otvoreno pitanje u kosmologiji je oblik Svemira. Kao prvo, ne zna se pouzdano da li je Svemir ravan, odnosno da li pravila Euklidove geometrije važe uopće. Danas mnogi kosmolozi smatraju da je opservabilni Svemir (prividno) ravan, sa lokalnim naborima gdje masivni objekti remete prostorno-vremenski kontinuum, kao što je jezero (prividno) ravno. Kao drugo, ne zna se pouzdano ni da li je mnogostruko povezan. Svemir nema prostornu granicu prema standardnom modelu Velikog praska, ali ipak može biti prostorno konačan. Ovo se može shvatiti ako koristimo dvodimenzionalnu analogiju: sfera nema ruba, ali pored toga ima konačnu površinu (4 \pi R^2). To je dvodimenzionalna površina sa konstantnom krivinom u trećoj dimenziji. <p></p> <a class="btn btn-primary" href="https://en.wikipedia.org/wiki/Orbit">Wiki <span class="glyphicon glyphicon-chevron-right"></span></a> </div> </div> <!-- /.row --> <hr> <nav> <ul class="pager"> <li><a href="svemir.html">Prethodna</a></li> <li><a href="svemir2.html">Sljedeća</a></li> </ul> </nav> <!-- /.row --> <hr> <!-- Footer --> <footer> <div class="row"> <div class="col-lg-12"> <p>Copyright &copy; Silva Haberl 2015</p> </div> </div> <!-- /.row --> </footer> </div> <!-- /.container --> <!-- jQuery --> <script src="js/jquery.js"></script> <!-- Bootstrap Core JavaScript --> <script src="js/bootstrap.min.js"></script> </body> </html>
silvahaberl/Bootstrap
svemir.html
HTML
apache-2.0
10,376
<!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 Sun Mar 17 11:03:39 MST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.wildfly.swarm.config.elytron.ConstantPrincipalTransformerConsumer (BOM: * : All 2.4.0.Final API)</title> <meta name="date" content="2019-03-17"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.wildfly.swarm.config.elytron.ConstantPrincipalTransformerConsumer (BOM: * : All 2.4.0.Final 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/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">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.4.0.Final</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/elytron/class-use/ConstantPrincipalTransformerConsumer.html" target="_top">Frames</a></li> <li><a href="ConstantPrincipalTransformerConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.elytron.ConstantPrincipalTransformerConsumer" class="title">Uses of Interface<br>org.wildfly.swarm.config.elytron.ConstantPrincipalTransformerConsumer</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/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.elytron">org.wildfly.swarm.config.elytron</a></td> <td class="colLast">&nbsp;</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/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</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> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/Elytron.html" title="type parameter in Elytron">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Elytron.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.html#constantPrincipalTransformer-java.lang.String-org.wildfly.swarm.config.elytron.ConstantPrincipalTransformerConsumer-">constantPrincipalTransformer</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>&nbsp;childKey, <a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a>&nbsp;consumer)</code> <div class="block">Create and configure a ConstantPrincipalTransformer object to the list of subresources</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.elytron"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a> in <a href="../../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</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/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a> that return <a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>default <a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="type parameter in ConstantPrincipalTransformerConsumer">T</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ConstantPrincipalTransformerConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html#andThen-org.wildfly.swarm.config.elytron.ConstantPrincipalTransformerConsumer-">andThen</a></span>(<a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="type parameter in ConstantPrincipalTransformerConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>default <a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="type parameter in ConstantPrincipalTransformerConsumer">T</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ConstantPrincipalTransformerConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html#andThen-org.wildfly.swarm.config.elytron.ConstantPrincipalTransformerConsumer-">andThen</a></span>(<a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="type parameter in ConstantPrincipalTransformerConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</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/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">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.4.0.Final</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/elytron/class-use/ConstantPrincipalTransformerConsumer.html" target="_top">Frames</a></li> <li><a href="ConstantPrincipalTransformerConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 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.4.0.Final/apidocs/org/wildfly/swarm/config/elytron/class-use/ConstantPrincipalTransformerConsumer.html
HTML
apache-2.0
12,392
<!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:16 MST 2020 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>org.wildfly.swarm.webservices (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> <h1 class="bar"><a href="../../../../org/wildfly/swarm/webservices/package-summary.html" target="classFrame">org.wildfly.swarm.webservices</a></h1> <div class="indexContainer"> <h2 title="Classes">Classes</h2> <ul title="Classes"> <li><a href="WebServicesFraction.html" title="class in org.wildfly.swarm.webservices" target="classFrame">WebServicesFraction</a></li> </ul> </div> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2.6.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/webservices/package-frame.html
HTML
apache-2.0
979
<!DOCTYPE html> <html lang="en"> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-73008936-1', 'auto'); ga('send', 'pageview'); </script> <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="" content=""> <title>Build Blue | Social Innovation</title> <!-- Bootstrap Core CSS --> <link rel="stylesheet" href="css/bootstrap.min.css" type="text/css"> <!-- Custom Fonts --> <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="font-awesome/css/font-awesome.min.css" type="text/css"> <!-- Plugin CSS --> <link rel="stylesheet" href="css/animate.min.css" type="text/css"> <!-- Custom CSS --> <link rel="stylesheet" href="css/creative.css" 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 id="page-top"> <?php include_once("analyticstracking.php") ?> <nav id="mainNav" class="navbar navbar-default navbar-fixed-top"> <div class="container-fluid"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <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 page-scroll" href="#page-top">Build Blue</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav navbar-right"> <li> <a class="page-scroll" href="#about">About</a> </li> <li> <a class="page-scroll" href="#services">Upcoming</a> </li> <li> <a class="page-scroll" href="#portfolio">Events</a> </li> <li> <a class="page-scroll" href="#contact">Contact</a> </li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container-fluid --> </nav> <header> <div class="header-content"> <div class="header-content-inner"> <h1>UTSC's Social Innovation Club</h1> <hr> <p>Build Blue is a student-run campus group in the University of Toronto Scarborough Campus (UTSC) that provides resources and support that instill a sense of empowerment and leadership in people and create an environment for community-oriented social innovation. In addition, we provide experimental learning programs and community-wide events that inspire people to engage in a new path of community development.</p> </div> </div> </header> <section class="bg-primary" id="about"> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 text-center"> <h2 class="section-heading">Our Team</h2> <hr class="light"> <p class="text-faded">Our team is comprised of multidisciplinary students in international development studies, business management, arts management, health sciences, political science, and many more. Our diverse team allows us to think outside the box and bring you new ideas.</p> <a href="about" class="btn btn-default btn-xl">About Us!</a> </div> </div> </div> </section> <section id="services"> <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <h2 class="section-heading">What do we do?</h2> <hr class="primary"> </div> </div> </div> <div class="container"> <div class="row"> <div class="col-lg-3 col-md-6 text-center"> <div class="service-box"> <i class="fa fa-4x fa-lightbulb-o text-primary"></i> <h3>Thinking outside the Box</h3> <p class="text-muted">Bringing innovative ideas to life straight to our campus in Scarborough</p> </div> </div> <div class="col-lg-3 col-md-6 text-center"> <div class="service-box"> <i class="fa fa-4x fa-cogs text-primary" data-wow-delay=".1s"></i> <h3>Here for you</h3> <p class="text-muted">Continuously working to provide students with unique social enterprises!</p> </div> </div> <div class="col-lg-3 col-md-6 text-center"> <div class="service-box"> <i class="fa fa-4x fa-book text-primary" data-wow-delay=".2s"></i> <h3>Fostering the entrepreneurial spirit</h3> <p class="text-muted">Learn with us and explore the world of entrepreneurship</p> </div> </div> <div class="col-lg-3 col-md-6 text-center"> <div class="service-box"> <i class="fa fa-4x fa-mortar-board text-primary" data-wow-delay=".3s"></i> <h3>By Students, for Students</h3> <p class="text-muted">We're students just like you. If you've got something innovative, we'll help you bring it to life!</p> </div> </div> </div> </div> </section> <section class="no-padding" id="portfolio"> <div class="container-fluid"> <div class="row no-gutter"> <div class="col-lg-4 col-sm-6"> <a href="events" class="portfolio-box"> <img src="img/portfolio/2.jpg" class="img-responsive" alt=""> <div class="portfolio-box-caption"> <div class="portfolio-box-caption-content"> <div class="project-category text-faded"> <p>Social Innovation Summit</p> </div> </div> </div> </a> </div> <div class="col-lg-4 col-sm-6"> <a href="events" class="portfolio-box"> <img src="img/portfolio/3.jpg" class="img-responsive" alt=""> <div class="portfolio-box-caption"> <div class="portfolio-box-caption-content"> <div class="project-category text-faded"> <p>#SCWALKS</p> </div> </div> </div> </a> </div> <div class="col-lg-4 col-sm-6"> <a href="events" class="portfolio-box"> <img src="img/portfolio/6.jpg" class="img-responsive" alt=""> <div class="portfolio-box-caption"> <div class="portfolio-box-caption-content"> <div class="project-category text-faded"> <p>Reaching out around campus</p> </div> </div> </div> </a> </div> </div> </div> </section> <!-- <aside class="bg-dark"> <div class="container text-center"> <div class="call-to-action"> <h2>Register for some event!</h2> <a href="#" class="btn btn-default btn-xl">Eventbrite link</a> </div> </div> </aside> --> <section id="contact"> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 text-center"> <h2 class="section-heading">Let's Get In Touch!</h2> <hr class="primary"> <p>Ready to start your next project with us? That's great! Send us an email and we will get back to you as soon as possible!</p> </div> <div class="col-lg-4 col-lg-offset-2 text-center"> <i class="fa fa-facebook-square fa-3x"><a href="https://www.facebook.com/bybuildblue"></a></i> <i class="fa fa-twitter fa-3x"></i> <i class="fa fa-instagram fa-3x"></i> <p>@bybuildblue</p> </div> <div class="col-lg-4 text-center"> <i class="fa fa-envelope-o fa-3x wow bounceIn" data-wow-delay=".1s"></i> <p><a href="mailto:hello@bybuildblue.com">hello@bybuildblue.com</a></p> </div> </div> </div> </section> <!-- jQuery --> <script src="js/jquery.js"></script> <!-- Bootstrap Core JavaScript --> <script src="js/bootstrap.min.js"></script> <!-- Plugin JavaScript --> <script src="js/jquery.easing.min.js"></script> <script src="js/jquery.fittext.js"></script> <script src="js/wow.min.js"></script> <!-- Custom Theme JavaScript --> <script src="js/creative.js"></script> </body> </html>
buildblue/buildblue.github.io
index.html
HTML
apache-2.0
10,900
<!DOCTYPE html> <!-- Use angular and named it seagull application --> <html ng-app="seagull"> <head> <title>Seagull</title> <meta charset="UTF-8"> <base href="/"> <!-- Favicon --> <link rel="icon" href="static/img/favicon.ico" type="image/x-icon" /> <link rel="shortcut icon" href="static/img/favicon.ico" type="image/x-icon" /> <!-- Css --> <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/jquery.gritter/css/jquery.gritter.css"> <link rel="stylesheet" type="text/css" href="static/bower_components/animate.css/animate.min.css"> <link rel="stylesheet" type="text/css" href="static/css/style.css"> <!-- JavaScript --> <script src="static/bower_components/angular/angular.min.js"></script> <script src="static/bower_components/angular-route/angular-route.min.js"></script> <script src="static/bower_components/jquery/dist/jquery.min.js"></script> <script src="static/bower_components/bootstrap/dist/js/bootstrap.min.js"></script> <script src="static/bower_components/jquery.gritter/js/jquery.gritter.min.js"></script> <script src="static/bower_components/angular-translate/angular-translate.min.js"></script> <script src="static/bower_components/angular-cookies/angular-cookies.min.js"></script> <script src="static/bower_components/angular-translate-storage-cookie/angular-translate-storage-cookie.min.js"></script> <script src="static/bower_components/angular-translate-storage-local/angular-translate-storage-local.min.js"></script> <script src="static/js/app.js"></script> <script src="static/js/controllers.js"></script> <script src="static/js/style.js"></script> </head> <!-- The controller to change i18n language, refer to static/js/app.js --> <body ng-controller="IndexController" class="animated fadeIn"> <!-- Header with a navigation bar --> <div class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container"> <!-- Home page button --> <div class="navbar-header"> <a class="navbar-brand animate-nav" href="/">{{'pirate'|translate}}</a> </div> <!-- Containers page, images page and configuration page buttons --> <div class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li class="animate-nav"><a href="/images">{{'images'|translate}}</a></li> <li class="animate-nav"><a href="/configuration">{{'configuration'|translate}}</a></li> <li class="animate-nav"><a href="/dockerhub">{{'dockerhub'|translate}}</a></li> </ul> <!-- A more button to change i18n languages and email me --> <ul class="nav navbar-nav navbar-right"> <li class="dropdown"> <a class="dropdown-toggle animate-nav" data-toggle="dropdown" href="">{{'more'|translate}} <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> <li class="animate-nav" ng-hide="isEnUs()"><a href="" ng-click="changeLanguage('en-us')">{{'en_us'|translate}}</a></li> <li class="animate-nav" ng-hide="isZhCn()"><a href="" ng-click="changeLanguage('zh-cn')">{{'zh_cn'|translate}}</a></li> <li class="animate-nav" ng-hide="isZhHant()"><a href="" ng-click="changeLanguage('zh-hant')">{{'zh_hant'|translate}}</a></li> <li class="animate-nav" ng-hide="isDeDe()"><a href="" ng-click="changeLanguage('de-de')">{{'de_de'|translate}}</a></li> <li class="animate-nav"><a href="https://github.com/tobegit3hub/seagull/issues/new" target="_top">{{'need_help'|translate}}</a></li> </ul> </li> </ul> </div> </div> </div> <!-- End of navbar --> <!-- Todo: No need to use <br/> to move content below the navigation bar --> <br/><br/><br/><br/> <!-- Angular views, more on static/js/app.js --> <div class="container"> <div ng-view></div> </div> <!-- No footer --> </body> </html>
zyan03/pirate
views/index.html
HTML
apache-2.0
4,151
<!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 Mon May 01 08:43:47 MST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>KerberosServerIdentitySupplier (Public javadocs 2017.5.0 API)</title> <meta name="date" content="2017-05-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="KerberosServerIdentitySupplier (Public javadocs 2017.5.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/KerberosServerIdentitySupplier.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.5.0</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/wildfly/swarm/config/management/security_realm/KerberosServerIdentityConsumer.html" title="interface in org.wildfly.swarm.config.management.security_realm"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/management/security_realm/KerberosServerIdentitySupplier.html" target="_top">Frames</a></li> <li><a href="KerberosServerIdentitySupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.wildfly.swarm.config.management.security_realm</div> <h2 title="Interface KerberosServerIdentitySupplier" class="title">Interface KerberosServerIdentitySupplier&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/management/security_realm/KerberosServerIdentity.html" title="class in org.wildfly.swarm.config.management.security_realm">KerberosServerIdentity</a>&gt;</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">KerberosServerIdentitySupplier&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/management/security_realm/KerberosServerIdentity.html" title="class in org.wildfly.swarm.config.management.security_realm">KerberosServerIdentity</a>&gt;</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">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/management/security_realm/KerberosServerIdentity.html" title="class in org.wildfly.swarm.config.management.security_realm">KerberosServerIdentity</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/management/security_realm/KerberosServerIdentitySupplier.html#get--">get</a></span>()</code> <div class="block">Constructed instance of KerberosServerIdentity 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/security_realm/KerberosServerIdentity.html" title="class in org.wildfly.swarm.config.management.security_realm">KerberosServerIdentity</a>&nbsp;get()</pre> <div class="block">Constructed instance of KerberosServerIdentity 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/KerberosServerIdentitySupplier.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.5.0</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/wildfly/swarm/config/management/security_realm/KerberosServerIdentityConsumer.html" title="interface in org.wildfly.swarm.config.management.security_realm"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/management/security_realm/KerberosServerIdentitySupplier.html" target="_top">Frames</a></li> <li><a href="KerberosServerIdentitySupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 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.5.0/apidocs/org/wildfly/swarm/config/management/security_realm/KerberosServerIdentitySupplier.html
HTML
apache-2.0
9,921
<!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 Tue Aug 16 17:15:34 EDT 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.wildfly.swarm.config.modcluster.ConfigurationModClusterConfigSupplier (Public javadocs 2016.8.1 API)</title> <meta name="date" content="2016-08-16"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.wildfly.swarm.config.modcluster.ConfigurationModClusterConfigSupplier (Public javadocs 2016.8.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/modcluster/ConfigurationModClusterConfigSupplier.html" title="interface in org.wildfly.swarm.config.modcluster">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, 2016.8.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/modcluster/class-use/ConfigurationModClusterConfigSupplier.html" target="_top">Frames</a></li> <li><a href="ConfigurationModClusterConfigSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.modcluster.ConfigurationModClusterConfigSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.modcluster.ConfigurationModClusterConfigSupplier</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/ConfigurationModClusterConfigSupplier.html" title="interface in org.wildfly.swarm.config.modcluster">ConfigurationModClusterConfigSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</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/modcluster/ConfigurationModClusterConfigSupplier.html" title="interface in org.wildfly.swarm.config.modcluster">ConfigurationModClusterConfigSupplier</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> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/modcluster/ConfigurationModClusterConfigSupplier.html" title="interface in org.wildfly.swarm.config.modcluster">ConfigurationModClusterConfigSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/Modcluster.html" title="type parameter in Modcluster">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Modcluster.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Modcluster.html#configurationModClusterConfig-org.wildfly.swarm.config.modcluster.ConfigurationModClusterConfigSupplier-">configurationModClusterConfig</a></span>(<a href="../../../../../../org/wildfly/swarm/config/modcluster/ConfigurationModClusterConfigSupplier.html" title="interface in org.wildfly.swarm.config.modcluster">ConfigurationModClusterConfigSupplier</a>&nbsp;supplier)</code> <div class="block">The common modcluster configuration.</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/ConfigurationModClusterConfigSupplier.html" title="interface in org.wildfly.swarm.config.modcluster">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, 2016.8.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/modcluster/class-use/ConfigurationModClusterConfigSupplier.html" target="_top">Frames</a></li> <li><a href="ConfigurationModClusterConfigSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2016.8.1/apidocs/org/wildfly/swarm/config/modcluster/class-use/ConfigurationModClusterConfigSupplier.html
HTML
apache-2.0
7,881
<!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:28 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.config.elytron.ClientSslContext (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="Uses of Class org.wildfly.swarm.config.elytron.ClientSslContext (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><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">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, 2018.4.2</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/elytron/class-use/ClientSslContext.html" target="_top">Frames</a></li> <li><a href="ClientSslContext.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.config.elytron.ClientSslContext" class="title">Uses of Class<br>org.wildfly.swarm.config.elytron.ClientSslContext</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/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.elytron">org.wildfly.swarm.config.elytron</a></td> <td class="colLast">&nbsp;</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/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</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/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></code></td> <td class="colLast"><span class="typeNameLabel">Elytron.ElytronResources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.ElytronResources.html#clientSslContext-java.lang.String-">clientSslContext</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;key)</code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../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/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Elytron.ElytronResources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.ElytronResources.html#clientSslContexts--">clientSslContexts</a></span>()</code> <div class="block">Get the list of ClientSslContext 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/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/Elytron.html" title="type parameter in Elytron">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Elytron.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.html#clientSslContext-org.wildfly.swarm.config.elytron.ClientSslContext-">clientSslContext</a></span>(<a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&nbsp;value)</code> <div class="block">Add the ClientSslContext 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/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/Elytron.html" title="type parameter in Elytron">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Elytron.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.html#clientSslContexts-java.util.List-">clientSslContexts</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&gt;&nbsp;value)</code> <div class="block">Add all ClientSslContext objects to this subresource</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.elytron"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a> in <a href="../../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</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/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a> with type parameters of type <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&lt;T&gt;&gt;</span></code> <div class="block">An SSLContext for use on the client side of a connection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContextConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ClientSslContextConsumer</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&lt;T&gt;&gt;</span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContextSupplier.html" title="interface in org.wildfly.swarm.config.elytron">ClientSslContextSupplier</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&gt;</span></code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a> that return <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></code></td> <td class="colLast"><span class="typeNameLabel">ClientSslContextSupplier.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContextSupplier.html#get--">get</a></span>()</code> <div class="block">Constructed instance of ClientSslContext 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/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">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, 2018.4.2</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/elytron/class-use/ClientSslContext.html" target="_top">Frames</a></li> <li><a href="ClientSslContext.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 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/elytron/class-use/ClientSslContext.html
HTML
apache-2.0
15,423
<!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 Jul 17 09:40:08 MST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.keycloak.server.KeycloakServerFraction (BOM: * : All 2.4.1.Final-SNAPSHOT API)</title> <meta name="date" content="2019-07-17"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.wildfly.swarm.keycloak.server.KeycloakServerFraction (BOM: * : All 2.4.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/keycloak/server/KeycloakServerFraction.html" title="class in org.wildfly.swarm.keycloak.server">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.4.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/keycloak/server/class-use/KeycloakServerFraction.html" target="_top">Frames</a></li> <li><a href="KeycloakServerFraction.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.keycloak.server.KeycloakServerFraction" class="title">Uses of Class<br>org.wildfly.swarm.keycloak.server.KeycloakServerFraction</h2> </div> <div class="classUseContainer">No usage of org.wildfly.swarm.keycloak.server.KeycloakServerFraction</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/keycloak/server/KeycloakServerFraction.html" title="class in org.wildfly.swarm.keycloak.server">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.4.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/keycloak/server/class-use/KeycloakServerFraction.html" target="_top">Frames</a></li> <li><a href="KeycloakServerFraction.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 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.4.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/keycloak/server/class-use/KeycloakServerFraction.html
HTML
apache-2.0
5,081
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <title>Exceptional - ScalaTest 2.2.6 - org.scalatest.Exceptional</title> <meta name="description" content="Exceptional - ScalaTest 2.2.6 - org.scalatest.Exceptional" /> <meta name="keywords" content="Exceptional ScalaTest 2.2.6 org.scalatest.Exceptional" /> <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.Exceptional'; 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="Exceptional$.html" title="Go to companion"><img 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="Exceptional$.html" title="Go to companion">Exceptional</a></h1> </div> <h4 id="signature" class="signature"> <span class="modifier_kind"> <span class="modifier">sealed abstract </span> <span class="kind">class</span> </span> <span class="symbol"> <span class="name">Exceptional</span><span class="result"> extends <a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a></span> </span> </h4> <div id="comment" class="fullcommenttop"><div class="comment cmt"><p>Superclass for the two outcomes of running a test that contain an exception: <code>Failed</code> and <code>Canceled</code>.</p><p>This class provides a <code>toOption</code> method that returns a <code>Some</code> wrapping the contained exception, and an <code>isExceptional</code> field with the value <code>true</code>. It's companion object provides an extractor that enables patterns that match a test that either failed or canceled, as in:</p><p><pre> outcome match { case Exceptional(ex) =&gt; // handle failed or canceled case case _ =&gt; // handle succeeded, pending, or omitted case } </pre> </p></div><dl class="attributes block"> <dt>Source</dt><dd><a href="https://github.com/scalatest/scalatest/tree/release-2.2.6-for-scala-2.11-and-2.10/src/main/scala/org/scalatest/Outcome.scala" target="_blank">Outcome.scala</a></dd></dl><div class="toggleContainer block"> <span class="toggle">Linear Supertypes</span> <div class="superTypes hiddenContent"><a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a>, <span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div> </div><div class="toggleContainer block"> <span class="toggle">Known Subclasses</span> <div class="subClasses hiddenContent"><a href="Canceled.html" class="extype" name="org.scalatest.Canceled">Canceled</a>, <a href="Failed.html" class="extype" name="org.scalatest.Failed">Failed</a></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.Exceptional"><span>Exceptional</span></li><li class="in" name="org.scalatest.Outcome"><span>Outcome</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> <a href="http://docs.scala-lang.org/overviews/scaladoc/usage.html#members" target="_blank">Learn more about member selection</a> </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.Exceptional#&lt;init&gt;" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="&lt;init&gt;(ex:Throwable):org.scalatest.Exceptional"></a> <a id="&lt;init&gt;:Exceptional"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">new</span> </span> <span class="symbol"> <span class="name">Exceptional</span><span class="params">(<span name="ex">ex: <span class="extype" name="scala.Throwable">Throwable</span></span>)</span> </span> </h4> <p class="shortcomment cmt"></p><div class="fullcomment"><div class="comment cmt"></div><dl class="paramcmts block"><dt class="param">ex</dt><dd class="cmt"><p>the <code>Throwable</code> contained in this <code>Exceptional</code>. </p></dd></dl></div> </li></ol> </div> <div id="values" class="values members"> <h3>Abstract Value Members</h3> <ol><li name="org.scalatest.Outcome#toSucceeded" visbl="pub" data-isabs="true" fullComment="yes" group="Ungrouped"> <a id="toSucceeded:org.scalatest.Succeeded.type"></a> <a id="toSucceeded:Succeeded.type"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">abstract </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toSucceeded</span><span class="result">: <a href="Succeeded$.html" class="extype" name="org.scalatest.Succeeded">Succeeded</a>.type</span> </span> </h4> <p class="shortcomment cmt">Converts this <code>Outcome</code> to a <code>Succeeded</code>.</p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Outcome</code> to a <code>Succeeded</code>.</p><p>When this <code>Outcome</code> instance is not Succeeded, it behaves as followed:</p><ul><li>Failed(ex) - throws ex</li><li>Canceled(tce) - throws tce</li><li>Pending - throws TestPendingException</li></ul></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>Succeeded if this <code>Outcome</code> instance is a Succeeded. </p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a></dd></dl></div> </li></ol> </div> <div id="values" class="values members"> <h3>Concrete Value Members</h3> <ol><li name="scala.AnyRef#!=" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="!=(x$1:AnyRef):Boolean"></a> <a id="!=(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 title="gt4s: $bang$eq" class="name">!=</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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.Any#!=" 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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>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> <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:AnyRef):Boolean"></a> <a id="==(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 title="gt4s: $eq$eq" class="name">==</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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.Any#==" 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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#clone" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="clone():Object"></a> <a id="clone():AnyRef"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">clone</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span> </span> </h4> <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> </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> <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> <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> <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> </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> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="org.scalatest.Outcome#isCanceled" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isCanceled:Boolean"></a> <a id="isCanceled:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">isCanceled</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <p class="shortcomment cmt">Indicates whether this <code>Outcome</code> represents a test that was canceled.</p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Outcome</code> represents a test that was canceled.</p><p>This class's implementation of this method always returns <code>false</code>.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>true if this <code>Outcome</code> is an instance of <code>Canceled</code>. </p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a></dd></dl></div> </li><li name="org.scalatest.Exceptional#isExceptional" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isExceptional:Boolean"></a> <a id="isExceptional:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">isExceptional</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <p class="shortcomment cmt">Indicates that this <code>Outcome</code> represents a test that either failed or was canceled.</p><div class="fullcomment"><div class="comment cmt"><p>Indicates that this <code>Outcome</code> represents a test that either failed or was canceled. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>true </p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="" class="extype" name="org.scalatest.Exceptional">Exceptional</a> → <a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a></dd></dl></div> </li><li name="org.scalatest.Outcome#isFailed" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isFailed:Boolean"></a> <a id="isFailed:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">isFailed</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <p class="shortcomment cmt">Indicates whether this <code>Outcome</code> represents a test that failed.</p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Outcome</code> represents a test that failed.</p><p>This class's implementation of this method always returns <code>false</code>.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>true if this <code>Outcome</code> is an instance of <code>Failed</code>. </p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a></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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="org.scalatest.Outcome#isPending" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isPending:Boolean"></a> <a id="isPending:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">isPending</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <p class="shortcomment cmt">Indicates whether this <code>Outcome</code> represents a test that was pending.</p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Outcome</code> represents a test that was pending.</p><p>This class's implementation of this method always returns <code>false</code>.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>true if this <code>Outcome</code> is an instance of <code>Pending</code>. </p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a></dd></dl></div> </li><li name="org.scalatest.Outcome#isSucceeded" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isSucceeded:Boolean"></a> <a id="isSucceeded:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">isSucceeded</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <p class="shortcomment cmt">Indicates whether this <code>Outcome</code> represents a test that succeeded.</p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Outcome</code> represents a test that succeeded.</p><p>This class's implementation of this method always returns <code>false</code>.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>true if this <code>Outcome</code> is an instance of <code>Succeeded</code>. </p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a></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> <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> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="org.scalatest.Exceptional#toOption" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toOption:Option[Throwable]"></a> <a id="toOption:Option[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">toOption</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="scala.Throwable">Throwable</span>]</span> </span> </h4> <p class="shortcomment cmt">Converts this <code>Exceptional</code> to a <code>Some</code> that wraps the contained exception.</p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Exceptional</code> to a <code>Some</code> that wraps the contained exception. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>A <code>Some</code> wrapping the exception contained in this <code>Exceptional</code>. </p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="" class="extype" name="org.scalatest.Exceptional">Exceptional</a> → <a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a></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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <a id="wait():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <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> </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> <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> </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> <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> </dd></dl></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="org.scalatest.Outcome"> <h3>Inherited from <a href="Outcome.html" class="extype" name="org.scalatest.Outcome">Outcome</a></h3> </div><div class="parent" name="scala.AnyRef"> <h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3> </div><div class="parent" name="scala.Any"> <h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3> </div> </div> <div id="groupedMembers"> <div class="group" name="Ungrouped"> <h3>Ungrouped</h3> </div> </div> </div> <div id="tooltip"></div> <div id="footer"> </div> </body> </html>
scalatest/scalatest-website
public/scaladoc/2.2.6/org/scalatest/Exceptional.html
HTML
apache-2.0
32,939
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]--> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="Asciidoctor 1.5.0"> <meta name="author" content="OPS4J"> <title>Pax Web</title> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic|Noto+Serif:400,400italic,700,700italic|Droid+Sans+Mono:400"> <style> /* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */ /* Remove the comments around the @import statement below when using this as a custom stylesheet */ /*@import "https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic|Noto+Serif:400,400italic,700,700italic|Droid+Sans+Mono:400";*/ article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block} audio,canvas,video{display:inline-block} audio:not([controls]){display:none;height:0} [hidden],template{display:none} script{display:none!important} html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%} body{margin:0} a{background:transparent} a:focus{outline:thin dotted} a:active,a:hover{outline:0} h1{font-size:2em;margin:.67em 0} abbr[title]{border-bottom:1px dotted} b,strong{font-weight:bold} dfn{font-style:italic} hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0} mark{background:#ff0;color:#000} code,kbd,pre,samp{font-family:monospace;font-size:1em} pre{white-space:pre-wrap} q{quotes:"\201C" "\201D" "\2018" "\2019"} small{font-size:80%} sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline} sup{top:-.5em} sub{bottom:-.25em} img{border:0} svg:not(:root){overflow:hidden} figure{margin:0} fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em} legend{border:0;padding:0} button,input,select,textarea{font-family:inherit;font-size:100%;margin:0} button,input{line-height:normal} button,select{text-transform:none} button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} button[disabled],html input[disabled]{cursor:default} input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0} input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box} input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none} button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0} textarea{overflow:auto;vertical-align:top} table{border-collapse:collapse;border-spacing:0} *,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box} html,body{font-size:100%} body{background:#fff;color:rgba(0,0,0,.8);padding:0;margin:0;font-family:"Noto Serif","DejaVu Serif",serif;font-weight:400;font-style:normal;line-height:1;position:relative;cursor:auto} a:hover{cursor:pointer} img,object,embed{max-width:100%;height:auto} object,embed{height:100%} img{-ms-interpolation-mode:bicubic} #map_canvas img,#map_canvas embed,#map_canvas object,.map_canvas img,.map_canvas embed,.map_canvas object{max-width:none!important} .left{float:left!important} .right{float:right!important} .text-left{text-align:left!important} .text-right{text-align:right!important} .text-center{text-align:center!important} .text-justify{text-align:justify!important} .hide{display:none} .antialiased,body{-webkit-font-smoothing:antialiased} img{display:inline-block;vertical-align:middle} textarea{height:auto;min-height:50px} select{width:100%} p.lead,.paragraph.lead>p,#preamble>.sectionbody>.paragraph:first-of-type p{font-size:1.21875em;line-height:1.6} .subheader,.admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{line-height:1.45;color:#7a2518;font-weight:400;margin-top:0;margin-bottom:.25em} div,dl,dt,dd,ul,ol,li,h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0;direction:ltr} a{color:#2156a5;text-decoration:underline;line-height:inherit} a:hover,a:focus{color:#1d4b8f} a img{border:none} p{font-family:inherit;font-weight:400;font-size:1em;line-height:1.6;margin-bottom:1.25em;text-rendering:optimizeLegibility} p aside{font-size:.875em;line-height:1.35;font-style:italic} h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{font-family:"Open Sans","DejaVu Sans",sans-serif;font-weight:300;font-style:normal;color:#ba3925;text-rendering:optimizeLegibility;margin-top:1em;margin-bottom:.5em;line-height:1.0125em} h1 small,h2 small,h3 small,#toctitle small,.sidebarblock>.content>.title small,h4 small,h5 small,h6 small{font-size:60%;color:#e99b8f;line-height:0} h1{font-size:2.125em} h2{font-size:1.6875em} h3,#toctitle,.sidebarblock>.content>.title{font-size:1.375em} h4,h5{font-size:1.125em} h6{font-size:1em} hr{border:solid #ddddd8;border-width:1px 0 0;clear:both;margin:1.25em 0 1.1875em;height:0} em,i{font-style:italic;line-height:inherit} strong,b{font-weight:bold;line-height:inherit} small{font-size:60%;line-height:inherit} code{font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;font-weight:400;color:rgba(0,0,0,.9)} ul,ol,dl{font-size:1em;line-height:1.6;margin-bottom:1.25em;list-style-position:outside;font-family:inherit} ul,ol,ul.no-bullet,ol.no-bullet{margin-left:1.5em} ul li ul,ul li ol{margin-left:1.25em;margin-bottom:0;font-size:1em} ul.square li ul,ul.circle li ul,ul.disc li ul{list-style:inherit} ul.square{list-style-type:square} ul.circle{list-style-type:circle} ul.disc{list-style-type:disc} ul.no-bullet{list-style:none} ol li ul,ol li ol{margin-left:1.25em;margin-bottom:0} dl dt{margin-bottom:.3125em;font-weight:bold} dl dd{margin-bottom:1.25em} abbr,acronym{text-transform:uppercase;font-size:90%;color:rgba(0,0,0,.8);border-bottom:1px dotted #ddd;cursor:help} abbr{text-transform:none} blockquote{margin:0 0 1.25em;padding:.5625em 1.25em 0 1.1875em;border-left:1px solid #ddd} blockquote cite{display:block;font-size:.9375em;color:rgba(0,0,0,.6)} blockquote cite:before{content:"\2014 \0020"} blockquote cite a,blockquote cite a:visited{color:rgba(0,0,0,.6)} blockquote,blockquote p{line-height:1.6;color:rgba(0,0,0,.85)} @media only screen and (min-width:768px){h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{line-height:1.2} h1{font-size:2.75em} h2{font-size:2.3125em} h3,#toctitle,.sidebarblock>.content>.title{font-size:1.6875em} h4{font-size:1.4375em}}table{background:#fff;margin-bottom:1.25em;border:solid 1px #dedede} table thead,table tfoot{background:#f7f8f7;font-weight:bold} table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;color:rgba(0,0,0,.8);text-align:left} table tr th,table tr td{padding:.5625em .625em;font-size:inherit;color:rgba(0,0,0,.8)} table tr.even,table tr.alt,table tr:nth-of-type(even){background:#f8f8f7} table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6} h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{line-height:1.2;word-spacing:-.05em} h1 strong,h2 strong,h3 strong,#toctitle strong,.sidebarblock>.content>.title strong,h4 strong,h5 strong,h6 strong{font-weight:400} .clearfix:before,.clearfix:after,.float-group:before,.float-group:after{content:" ";display:table} .clearfix:after,.float-group:after{clear:both} *:not(pre)>code{font-size:.9375em;font-style:normal!important;letter-spacing:0;padding:.1em .5ex;word-spacing:-.15em;background-color:#f7f7f8;-webkit-border-radius:4px;border-radius:4px;line-height:1.45;text-rendering:optimizeSpeed} pre,pre>code{line-height:1.45;color:rgba(0,0,0,.9);font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;font-weight:400;text-rendering:optimizeSpeed} .keyseq{color:rgba(51,51,51,.8)} kbd{display:inline-block;color:rgba(0,0,0,.8);font-size:.75em;line-height:1.4;background-color:#f7f7f7;border:1px solid #ccc;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 .1em white inset;box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 .1em #fff inset;margin:-.15em .15em 0 .15em;padding:.2em .6em .2em .5em;vertical-align:middle;white-space:nowrap} .keyseq kbd:first-child{margin-left:0} .keyseq kbd:last-child{margin-right:0} .menuseq,.menu{color:rgba(0,0,0,.8)} b.button:before,b.button:after{position:relative;top:-1px;font-weight:400} b.button:before{content:"[";padding:0 3px 0 2px} b.button:after{content:"]";padding:0 2px 0 3px} p a>code:hover{color:rgba(0,0,0,.9)} #header,#content,#footnotes,#footer{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:62.5em;*zoom:1;position:relative;padding-left:.9375em;padding-right:.9375em} #header:before,#header:after,#content:before,#content:after,#footnotes:before,#footnotes:after,#footer:before,#footer:after{content:" ";display:table} #header:after,#content:after,#footnotes:after,#footer:after{clear:both} #content{margin-top:1.25em} #content:before{content:none} #header>h1:first-child{color:rgba(0,0,0,.85);margin-top:2.25rem;margin-bottom:0} #header>h1:first-child+#toc{margin-top:8px;border-top:1px solid #ddddd8} #header>h1:only-child,body.toc2 #header>h1:nth-last-child(2){border-bottom:1px solid #ddddd8;padding-bottom:8px} #header .details{border-bottom:1px solid #ddddd8;line-height:1.45;padding-top:.25em;padding-bottom:.25em;padding-left:.25em;color:rgba(0,0,0,.6);display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-flow:row wrap;-webkit-flex-flow:row wrap;flex-flow:row wrap} #header .details span:first-child{margin-left:-.125em} #header .details span.email a{color:rgba(0,0,0,.85)} #header .details br{display:none} #header .details br+span:before{content:"\00a0\2013\00a0"} #header .details br+span.author:before{content:"\00a0\22c5\00a0";color:rgba(0,0,0,.85)} #header .details br+span#revremark:before{content:"\00a0|\00a0"} #header #revnumber{text-transform:capitalize} #header #revnumber:after{content:"\00a0"} #content>h1:first-child:not([class]){color:rgba(0,0,0,.85);border-bottom:1px solid #ddddd8;padding-bottom:8px;margin-top:0;padding-top:1rem;margin-bottom:1.25rem} #toc{border-bottom:1px solid #efefed;padding-bottom:.5em} #toc>ul{margin-left:.125em} #toc ul.sectlevel0>li>a{font-style:italic} #toc ul.sectlevel0 ul.sectlevel1{margin:.5em 0} #toc ul{font-family:"Open Sans","DejaVu Sans",sans-serif;list-style-type:none} #toc a{text-decoration:none} #toc a:active{text-decoration:underline} #toctitle{color:#7a2518;font-size:1.2em} @media only screen and (min-width:768px){#toctitle{font-size:1.375em} body.toc2{padding-left:15em;padding-right:0} #toc.toc2{margin-top:0!important;background-color:#f8f8f7;position:fixed;width:15em;left:0;top:0;border-right:1px solid #efefed;border-top-width:0!important;border-bottom-width:0!important;z-index:1000;padding:1.25em 1em;height:100%;overflow:auto} #toc.toc2 #toctitle{margin-top:0;font-size:1.2em} #toc.toc2>ul{font-size:.9em;margin-bottom:0} #toc.toc2 ul ul{margin-left:0;padding-left:1em} #toc.toc2 ul.sectlevel0 ul.sectlevel1{padding-left:0;margin-top:.5em;margin-bottom:.5em} body.toc2.toc-right{padding-left:0;padding-right:15em} body.toc2.toc-right #toc.toc2{border-right-width:0;border-left:1px solid #efefed;left:auto;right:0}}@media only screen and (min-width:1280px){body.toc2{padding-left:20em;padding-right:0} #toc.toc2{width:20em} #toc.toc2 #toctitle{font-size:1.375em} #toc.toc2>ul{font-size:.95em} #toc.toc2 ul ul{padding-left:1.25em} body.toc2.toc-right{padding-left:0;padding-right:20em}}#content #toc{border-style:solid;border-width:1px;border-color:#e0e0dc;margin-bottom:1.25em;padding:1.25em;background:#f8f8f7;-webkit-border-radius:4px;border-radius:4px} #content #toc>:first-child{margin-top:0} #content #toc>:last-child{margin-bottom:0} #footer{max-width:100%;background-color:rgba(0,0,0,.8);padding:1.25em} #footer-text{color:rgba(255,255,255,.8);line-height:1.44} .sect1{padding-bottom:.625em} @media only screen and (min-width:768px){.sect1{padding-bottom:1.25em}}.sect1+.sect1{border-top:1px solid #efefed} #content h1>a.anchor,h2>a.anchor,h3>a.anchor,#toctitle>a.anchor,.sidebarblock>.content>.title>a.anchor,h4>a.anchor,h5>a.anchor,h6>a.anchor{position:absolute;z-index:1001;width:1.5ex;margin-left:-1.5ex;display:block;text-decoration:none!important;visibility:hidden;text-align:center;font-weight:400} #content h1>a.anchor:before,h2>a.anchor:before,h3>a.anchor:before,#toctitle>a.anchor:before,.sidebarblock>.content>.title>a.anchor:before,h4>a.anchor:before,h5>a.anchor:before,h6>a.anchor:before{content:"\00A7";font-size:.85em;display:block;padding-top:.1em} #content h1:hover>a.anchor,#content h1>a.anchor:hover,h2:hover>a.anchor,h2>a.anchor:hover,h3:hover>a.anchor,#toctitle:hover>a.anchor,.sidebarblock>.content>.title:hover>a.anchor,h3>a.anchor:hover,#toctitle>a.anchor:hover,.sidebarblock>.content>.title>a.anchor:hover,h4:hover>a.anchor,h4>a.anchor:hover,h5:hover>a.anchor,h5>a.anchor:hover,h6:hover>a.anchor,h6>a.anchor:hover{visibility:visible} #content h1>a.link,h2>a.link,h3>a.link,#toctitle>a.link,.sidebarblock>.content>.title>a.link,h4>a.link,h5>a.link,h6>a.link{color:#ba3925;text-decoration:none} #content h1>a.link:hover,h2>a.link:hover,h3>a.link:hover,#toctitle>a.link:hover,.sidebarblock>.content>.title>a.link:hover,h4>a.link:hover,h5>a.link:hover,h6>a.link:hover{color:#a53221} .audioblock,.imageblock,.literalblock,.listingblock,.stemblock,.videoblock{margin-bottom:1.25em} .admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{text-rendering:optimizeLegibility;text-align:left;font-family:"Noto Serif","DejaVu Serif",serif;font-size:1rem;font-style:italic} table.tableblock>caption.title{white-space:nowrap;overflow:visible;max-width:0} .paragraph.lead>p,#preamble>.sectionbody>.paragraph:first-of-type p{color:rgba(0,0,0,.85)} table.tableblock #preamble>.sectionbody>.paragraph:first-of-type p{font-size:inherit} .admonitionblock>table{border-collapse:separate;border:0;background:none;width:100%} .admonitionblock>table td.icon{text-align:center;width:80px} .admonitionblock>table td.icon img{max-width:none} .admonitionblock>table td.icon .title{font-weight:bold;font-family:"Open Sans","DejaVu Sans",sans-serif;text-transform:uppercase} .admonitionblock>table td.content{padding-left:1.125em;padding-right:1.25em;border-left:1px solid #ddddd8;color:rgba(0,0,0,.6)} .admonitionblock>table td.content>:last-child>:last-child{margin-bottom:0} .exampleblock>.content{border-style:solid;border-width:1px;border-color:#e6e6e6;margin-bottom:1.25em;padding:1.25em;background:#fff;-webkit-border-radius:4px;border-radius:4px} .exampleblock>.content>:first-child{margin-top:0} .exampleblock>.content>:last-child{margin-bottom:0} .sidebarblock{border-style:solid;border-width:1px;border-color:#e0e0dc;margin-bottom:1.25em;padding:1.25em;background:#f8f8f7;-webkit-border-radius:4px;border-radius:4px} .sidebarblock>:first-child{margin-top:0} .sidebarblock>:last-child{margin-bottom:0} .sidebarblock>.content>.title{color:#7a2518;margin-top:0;text-align:center} .exampleblock>.content>:last-child>:last-child,.exampleblock>.content .olist>ol>li:last-child>:last-child,.exampleblock>.content .ulist>ul>li:last-child>:last-child,.exampleblock>.content .qlist>ol>li:last-child>:last-child,.sidebarblock>.content>:last-child>:last-child,.sidebarblock>.content .olist>ol>li:last-child>:last-child,.sidebarblock>.content .ulist>ul>li:last-child>:last-child,.sidebarblock>.content .qlist>ol>li:last-child>:last-child{margin-bottom:0} .literalblock pre,.listingblock pre:not(.highlight),.listingblock pre[class="highlight"],.listingblock pre[class^="highlight "],.listingblock pre.CodeRay,.listingblock pre.prettyprint{background:#f7f7f8} .sidebarblock .literalblock pre,.sidebarblock .listingblock pre:not(.highlight),.sidebarblock .listingblock pre[class="highlight"],.sidebarblock .listingblock pre[class^="highlight "],.sidebarblock .listingblock pre.CodeRay,.sidebarblock .listingblock pre.prettyprint{background:#f2f1f1} .literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{-webkit-border-radius:4px;border-radius:4px;word-wrap:break-word;padding:1em;font-size:.8125em} .literalblock pre.nowrap,.literalblock pre[class].nowrap,.listingblock pre.nowrap,.listingblock pre[class].nowrap{overflow-x:auto;white-space:pre;word-wrap:normal} @media only screen and (min-width:768px){.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{font-size:.90625em}}@media only screen and (min-width:1280px){.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{font-size:1em}}.literalblock.output pre{color:#f7f7f8;background-color:rgba(0,0,0,.9)} .listingblock pre.highlightjs{padding:0} .listingblock pre.highlightjs>code{padding:1em;-webkit-border-radius:4px;border-radius:4px} .listingblock pre.prettyprint{border-width:0} .listingblock>.content{position:relative} .listingblock code[data-lang]:before{display:none;content:attr(data-lang);position:absolute;font-size:.75em;top:.425rem;right:.5rem;line-height:1;text-transform:uppercase;color:#999} .listingblock:hover code[data-lang]:before{display:block} .listingblock.terminal pre .command:before{content:attr(data-prompt);padding-right:.5em;color:#999} .listingblock.terminal pre .command:not([data-prompt]):before{content:"$"} table.pyhltable{border-collapse:separate;border:0;margin-bottom:0;background:none} table.pyhltable td{vertical-align:top;padding-top:0;padding-bottom:0} table.pyhltable td.code{padding-left:.75em;padding-right:0} pre.pygments .lineno,table.pyhltable td:not(.code){color:#999;padding-left:0;padding-right:.5em;border-right:1px solid #ddddd8} pre.pygments .lineno{display:inline-block;margin-right:.25em} table.pyhltable .linenodiv{background:none!important;padding-right:0!important} .quoteblock{margin:0 1em 1.25em 1.5em;display:table} .quoteblock>.title{margin-left:-1.5em;margin-bottom:.75em} .quoteblock blockquote,.quoteblock blockquote p{color:rgba(0,0,0,.85);font-size:1.15rem;line-height:1.75;word-spacing:.1em;letter-spacing:0;font-style:italic;text-align:justify} .quoteblock blockquote{margin:0;padding:0;border:0} .quoteblock blockquote:before{content:"\201c";float:left;font-size:2.75em;font-weight:bold;line-height:.6em;margin-left:-.6em;color:#7a2518;text-shadow:0 1px 2px rgba(0,0,0,.1)} .quoteblock blockquote>.paragraph:last-child p{margin-bottom:0} .quoteblock .attribution{margin-top:.5em;margin-right:.5ex;text-align:right} .quoteblock .quoteblock{margin-left:0;margin-right:0;padding:.5em 0;border-left:3px solid rgba(0,0,0,.6)} .quoteblock .quoteblock blockquote{padding:0 0 0 .75em} .quoteblock .quoteblock blockquote:before{display:none} .verseblock{margin:0 1em 1.25em 1em} .verseblock pre{font-family:"Open Sans","DejaVu Sans",sans;font-size:1.15rem;color:rgba(0,0,0,.85);font-weight:300;text-rendering:optimizeLegibility} .verseblock pre strong{font-weight:400} .verseblock .attribution{margin-top:1.25rem;margin-left:.5ex} .quoteblock .attribution,.verseblock .attribution{font-size:.9375em;line-height:1.45;font-style:italic} .quoteblock .attribution br,.verseblock .attribution br{display:none} .quoteblock .attribution cite,.verseblock .attribution cite{display:block;letter-spacing:-.05em;color:rgba(0,0,0,.6)} .quoteblock.abstract{margin:0 0 1.25em 0;display:block} .quoteblock.abstract blockquote,.quoteblock.abstract blockquote p{text-align:left;word-spacing:0} .quoteblock.abstract blockquote:before,.quoteblock.abstract blockquote p:first-of-type:before{display:none} table.tableblock{max-width:100%;border-collapse:separate} table.tableblock td>.paragraph:last-child p>p:last-child,table.tableblock th>p:last-child,table.tableblock td>p:last-child{margin-bottom:0} table.spread{width:100%} table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede} table.grid-all th.tableblock,table.grid-all td.tableblock{border-width:0 1px 1px 0} table.grid-all tfoot>tr>th.tableblock,table.grid-all tfoot>tr>td.tableblock{border-width:1px 1px 0 0} table.grid-cols th.tableblock,table.grid-cols td.tableblock{border-width:0 1px 0 0} table.grid-all *>tr>.tableblock:last-child,table.grid-cols *>tr>.tableblock:last-child{border-right-width:0} table.grid-rows th.tableblock,table.grid-rows td.tableblock{border-width:0 0 1px 0} table.grid-all tbody>tr:last-child>th.tableblock,table.grid-all tbody>tr:last-child>td.tableblock,table.grid-all thead:last-child>tr>th.tableblock,table.grid-rows tbody>tr:last-child>th.tableblock,table.grid-rows tbody>tr:last-child>td.tableblock,table.grid-rows thead:last-child>tr>th.tableblock{border-bottom-width:0} table.grid-rows tfoot>tr>th.tableblock,table.grid-rows tfoot>tr>td.tableblock{border-width:1px 0 0 0} table.frame-all{border-width:1px} table.frame-sides{border-width:0 1px} table.frame-topbot{border-width:1px 0} th.halign-left,td.halign-left{text-align:left} th.halign-right,td.halign-right{text-align:right} th.halign-center,td.halign-center{text-align:center} th.valign-top,td.valign-top{vertical-align:top} th.valign-bottom,td.valign-bottom{vertical-align:bottom} th.valign-middle,td.valign-middle{vertical-align:middle} table thead th,table tfoot th{font-weight:bold} tbody tr th{display:table-cell;line-height:1.6;background:#f7f8f7} tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{color:rgba(0,0,0,.8);font-weight:bold} p.tableblock>code:only-child{background:none;padding:0} p.tableblock{font-size:1em} td>div.verse{white-space:pre} ol{margin-left:1.75em} ul li ol{margin-left:1.5em} dl dd{margin-left:1.125em} dl dd:last-child,dl dd:last-child>:last-child{margin-bottom:0} ol>li p,ul>li p,ul dd,ol dd,.olist .olist,.ulist .ulist,.ulist .olist,.olist .ulist{margin-bottom:.625em} ul.unstyled,ol.unnumbered,ul.checklist,ul.none{list-style-type:none} ul.unstyled,ol.unnumbered,ul.checklist{margin-left:.625em} ul.checklist li>p:first-child>.fa-check-square-o:first-child,ul.checklist li>p:first-child>input[type="checkbox"]:first-child{margin-right:.25em} ul.checklist li>p:first-child>input[type="checkbox"]:first-child{position:relative;top:1px} ul.inline{margin:0 auto .625em auto;margin-left:-1.375em;margin-right:0;padding:0;list-style:none;overflow:hidden} ul.inline>li{list-style:none;float:left;margin-left:1.375em;display:block} ul.inline>li>*{display:block} .unstyled dl dt{font-weight:400;font-style:normal} ol.arabic{list-style-type:decimal} ol.decimal{list-style-type:decimal-leading-zero} ol.loweralpha{list-style-type:lower-alpha} ol.upperalpha{list-style-type:upper-alpha} ol.lowerroman{list-style-type:lower-roman} ol.upperroman{list-style-type:upper-roman} ol.lowergreek{list-style-type:lower-greek} .hdlist>table,.colist>table{border:0;background:none} .hdlist>table>tbody>tr,.colist>table>tbody>tr{background:none} td.hdlist1{padding-right:.75em;font-weight:bold} td.hdlist1,td.hdlist2{vertical-align:top} .literalblock+.colist,.listingblock+.colist{margin-top:-.5em} .colist>table tr>td:first-of-type{padding:0 .75em;line-height:1} .colist>table tr>td:last-of-type{padding:.25em 0} .thumb,.th{line-height:0;display:inline-block;border:solid 4px #fff;-webkit-box-shadow:0 0 0 1px #ddd;box-shadow:0 0 0 1px #ddd} .imageblock.left,.imageblock[style*="float: left"]{margin:.25em .625em 1.25em 0} .imageblock.right,.imageblock[style*="float: right"]{margin:.25em 0 1.25em .625em} .imageblock>.title{margin-bottom:0} .imageblock.thumb,.imageblock.th{border-width:6px} .imageblock.thumb>.title,.imageblock.th>.title{padding:0 .125em} .image.left,.image.right{margin-top:.25em;margin-bottom:.25em;display:inline-block;line-height:0} .image.left{margin-right:.625em} .image.right{margin-left:.625em} a.image{text-decoration:none} span.footnote,span.footnoteref{vertical-align:super;font-size:.875em} span.footnote a,span.footnoteref a{text-decoration:none} span.footnote a:active,span.footnoteref a:active{text-decoration:underline} #footnotes{padding-top:.75em;padding-bottom:.75em;margin-bottom:.625em} #footnotes hr{width:20%;min-width:6.25em;margin:-.25em 0 .75em 0;border-width:1px 0 0 0} #footnotes .footnote{padding:0 .375em;line-height:1.3;font-size:.875em;margin-left:1.2em;text-indent:-1.2em;margin-bottom:.2em} #footnotes .footnote a:first-of-type{font-weight:bold;text-decoration:none} #footnotes .footnote:last-of-type{margin-bottom:0} #content #footnotes{margin-top:-.625em;margin-bottom:0;padding:.75em 0} .gist .file-data>table{border:0;background:#fff;width:100%;margin-bottom:0} .gist .file-data>table td.line-data{width:99%} div.unbreakable{page-break-inside:avoid} .big{font-size:larger} .small{font-size:smaller} .underline{text-decoration:underline} .overline{text-decoration:overline} .line-through{text-decoration:line-through} .aqua{color:#00bfbf} .aqua-background{background-color:#00fafa} .black{color:#000} .black-background{background-color:#000} .blue{color:#0000bf} .blue-background{background-color:#0000fa} .fuchsia{color:#bf00bf} .fuchsia-background{background-color:#fa00fa} .gray{color:#606060} .gray-background{background-color:#7d7d7d} .green{color:#006000} .green-background{background-color:#007d00} .lime{color:#00bf00} .lime-background{background-color:#00fa00} .maroon{color:#600000} .maroon-background{background-color:#7d0000} .navy{color:#000060} .navy-background{background-color:#00007d} .olive{color:#606000} .olive-background{background-color:#7d7d00} .purple{color:#600060} .purple-background{background-color:#7d007d} .red{color:#bf0000} .red-background{background-color:#fa0000} .silver{color:#909090} .silver-background{background-color:#bcbcbc} .teal{color:#006060} .teal-background{background-color:#007d7d} .white{color:#bfbfbf} .white-background{background-color:#fafafa} .yellow{color:#bfbf00} .yellow-background{background-color:#fafa00} span.icon>.fa{cursor:default} .admonitionblock td.icon [class^="fa icon-"]{font-size:2.5em;text-shadow:1px 1px 2px rgba(0,0,0,.5);cursor:default} .admonitionblock td.icon .icon-note:before{content:"\f05a";color:#19407c} .admonitionblock td.icon .icon-tip:before{content:"\f0eb";text-shadow:1px 1px 2px rgba(155,155,0,.8);color:#111} .admonitionblock td.icon .icon-warning:before{content:"\f071";color:#bf6900} .admonitionblock td.icon .icon-caution:before{content:"\f06d";color:#bf3400} .admonitionblock td.icon .icon-important:before{content:"\f06a";color:#bf0000} .conum[data-value]{display:inline-block;color:#fff!important;background-color:rgba(0,0,0,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold} .conum[data-value] *{color:#fff!important} .conum[data-value]+b{display:none} .conum[data-value]:after{content:attr(data-value)} pre .conum[data-value]{position:relative;top:-.125em} b.conum *{color:inherit!important} .conum:not([data-value]):empty{display:none} h1,h2{letter-spacing:-.01em} dt,th.tableblock,td.content{text-rendering:optimizeLegibility} p,td.content{letter-spacing:-.01em} p strong,td.content strong{letter-spacing:-.005em} p,blockquote,dt,td.content{font-size:1.0625rem} p{margin-bottom:1.25rem} .sidebarblock p,.sidebarblock dt,.sidebarblock td.content,p.tableblock{font-size:1em} .exampleblock>.content{background-color:#fffef7;border-color:#e0e0dc;-webkit-box-shadow:0 1px 4px #e0e0dc;box-shadow:0 1px 4px #e0e0dc} .print-only{display:none!important} @media print{@page{margin:1.25cm .75cm} *{-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important} a{color:inherit!important;text-decoration:underline!important} a.bare,a[href^="#"],a[href^="mailto:"]{text-decoration:none!important} a[href^="http:"]:not(.bare):after,a[href^="https:"]:not(.bare):after,a[href^="mailto:"]:not(.bare):after{content:"(" attr(href) ")";display:inline-block;font-size:.875em;padding-left:.25em} abbr[title]:after{content:" (" attr(title) ")"} pre,blockquote,tr,img{page-break-inside:avoid} thead{display:table-header-group} img{max-width:100%!important} p,blockquote,dt,td.content{font-size:1em;orphans:3;widows:3} h2,h3,#toctitle,.sidebarblock>.content>.title{page-break-after:avoid} #toc,.sidebarblock,.exampleblock>.content{background:none!important} #toc{border-bottom:1px solid #ddddd8!important;padding-bottom:0!important} .sect1{padding-bottom:0!important} .sect1+.sect1{border:0!important} #header>h1:first-child{margin-top:1.25rem} body.book #header{text-align:center} body.book #header>h1:first-child{border:0!important;margin:2.5em 0 1em 0} body.book #header .details{border:0!important;display:block;padding:0!important} body.book #header .details span:first-child{margin-left:0!important} body.book #header .details br{display:block} body.book #header .details br+span:before{content:none!important} body.book #toc{border:0!important;text-align:left!important;padding:0!important;margin:0!important} body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-break-before:always} .listingblock code[data-lang]:before{display:block} #footer{background:none!important;padding:0 .9375em} #footer-text{color:rgba(0,0,0,.6)!important;font-size:.9em} .hide-on-print{display:none!important} .print-only{display:block!important} .hide-for-print{display:none!important} .show-for-print{display:inherit!important}} </style> <style> /* Stylesheet for CodeRay to match GitHub theme | MIT License | http://foundation.zurb.com */ /*pre.CodeRay {background-color:#f7f7f8;}*/ .CodeRay .line-numbers{border-right:1px solid #d8d8d8;padding:0 0.5em 0 .25em} .CodeRay span.line-numbers{display:inline-block;margin-right:.5em;color:rgba(0,0,0,.3)} .CodeRay .line-numbers strong{font-weight: normal} table.CodeRay{border-collapse:separate;border-spacing:0;margin-bottom:0;border:0;background:none} table.CodeRay td{vertical-align: top} table.CodeRay td.line-numbers{text-align:right} table.CodeRay td.line-numbers>pre{padding:0;color:rgba(0,0,0,.3)} table.CodeRay td.code{padding:0 0 0 .5em} table.CodeRay td.code>pre{padding:0} .CodeRay .debug{color:#fff !important;background:#000080 !important} .CodeRay .annotation{color:#007} .CodeRay .attribute-name{color:#000080} .CodeRay .attribute-value{color:#700} .CodeRay .binary{color:#509} .CodeRay .comment{color:#998;font-style:italic} .CodeRay .char{color:#04d} .CodeRay .char .content{color:#04d} .CodeRay .char .delimiter{color:#039} .CodeRay .class{color:#458;font-weight:bold} .CodeRay .complex{color:#a08} .CodeRay .constant,.CodeRay .predefined-constant{color:#008080} .CodeRay .color{color:#099} .CodeRay .class-variable{color:#369} .CodeRay .decorator{color:#b0b} .CodeRay .definition{color:#099} .CodeRay .delimiter{color:#000} .CodeRay .doc{color:#970} .CodeRay .doctype{color:#34b} .CodeRay .doc-string{color:#d42} .CodeRay .escape{color:#666} .CodeRay .entity{color:#800} .CodeRay .error{color:#808} .CodeRay .exception{color:inherit} .CodeRay .filename{color:#099} .CodeRay .function{color:#900;font-weight:bold} .CodeRay .global-variable{color:#008080} .CodeRay .hex{color:#058} .CodeRay .integer,.CodeRay .float{color:#099} .CodeRay .include{color:#555} .CodeRay .inline{color:#00} .CodeRay .inline .inline{background:#ccc} .CodeRay .inline .inline .inline{background:#bbb} .CodeRay .inline .inline-delimiter{color:#d14} .CodeRay .inline-delimiter{color:#d14} .CodeRay .important{color:#555;font-weight:bold} .CodeRay .interpreted{color:#b2b} .CodeRay .instance-variable{color:#008080} .CodeRay .label{color:#970} .CodeRay .local-variable{color:#963} .CodeRay .octal{color:#40e} .CodeRay .predefined{color:#369} .CodeRay .preprocessor{color:#579} .CodeRay .pseudo-class{color:#555} .CodeRay .directive{font-weight:bold} .CodeRay .type{font-weight:bold} .CodeRay .predefined-type{color:inherit} .CodeRay .reserved,.CodeRay .keyword {color:#000;font-weight:bold} .CodeRay .key{color:#808} .CodeRay .key .delimiter{color:#606} .CodeRay .key .char{color:#80f} .CodeRay .value{color:#088} .CodeRay .regexp .delimiter{color:#808} .CodeRay .regexp .content{color:#808} .CodeRay .regexp .modifier{color:#808} .CodeRay .regexp .char{color:#d14} .CodeRay .regexp .function{color:#404;font-weight:bold} .CodeRay .string{color:#d20} .CodeRay .string .string .string{background:#ffd0d0} .CodeRay .string .content{color:#d14} .CodeRay .string .char{color:#d14} .CodeRay .string .delimiter{color:#d14} .CodeRay .shell{color:#d14} .CodeRay .shell .delimiter{color:#d14} .CodeRay .symbol{color:#990073} .CodeRay .symbol .content{color:#a60} .CodeRay .symbol .delimiter{color:#630} .CodeRay .tag{color:#008080} .CodeRay .tag-special{color:#d70} .CodeRay .variable{color:#036} .CodeRay .insert{background:#afa} .CodeRay .delete{background:#faa} .CodeRay .change{color:#aaf;background:#007} .CodeRay .head{color:#f8f;background:#505} .CodeRay .insert .insert{color:#080} .CodeRay .delete .delete{color:#800} .CodeRay .change .change{color:#66f} .CodeRay .head .head{color:#f4f} </style> </head> <body class="article toc2 toc-left"> <div id="header"> <h1>Pax Web</h1> <div class="details"> <span id="author" class="author">OPS4J</span><br> </div> <div id="toc" class="toc2"> <div id="toctitle">Pax Web</div> <ul class="sectlevel1"> <li><a href="#PaxWeb-Introduction">1. Introduction</a> <ul class="sectlevel2"> <li><a href="#_functional_goals">1.1. Functional Goals</a></li> <li><a href="#_design_goals">1.2. Design Goals</a></li> <li><a href="#_non_goals_for_the_short_term">1.3. Non-Goals for the short term</a></li> <li><a href="#_long_term_goal">1.4. Long Term Goal</a></li> </ul> </li> <li><a href="#_user_guide">2. User Guide</a> <ul class="sectlevel2"> <li><a href="#_getting_started">2.1. Getting Started</a> <ul class="sectlevel3"> <li><a href="#_getting_started_on_apache_karaf">2.1.1. Getting started on Apache Karaf</a></li> <li><a href="#_getting_started_on_plain_osgi">2.1.2. Getting started on plain OSGi</a></li> </ul> </li> <li><a href="#_configuration">2.2. Configuration</a> <ul class="sectlevel3"> <li><a href="#_overview">2.2.1. Overview</a></li> <li><a href="#_server_level_configuration_properties">2.2.2. Server-level Configuration Properties</a></li> <li><a href="#_deployment_level_configuration_properties">2.2.3. Deployment-level Configuration Properties</a></li> </ul> </li> <li><a href="#_special_features">2.3. Special Features</a> <ul class="sectlevel3"> <li><a href="#_general_information">2.3.1. General Information</a></li> <li><a href="#_servlet_3_0_capabilities">2.3.2. Servlet 3.0+ Capabilities</a></li> <li><a href="#_java_server_pages_jsp">2.3.3. Java Server Pages (JSP)</a></li> <li><a href="#_java_server_faces_jsf">2.3.4. Java Server Faces (JSF)</a></li> <li><a href="#_contexts_and_dependency_injection_cdi">2.3.5. Contexts and Dependency Injection (CDI)</a></li> </ul> </li> <li><a href="#_http_service_extensions">2.4. Http Service Extensions</a></li> </ul> </li> <li><a href="#_developer_guide">3. Developer Guide</a> <ul class="sectlevel2"> <li><a href="#_source">3.1. Source</a> <ul class="sectlevel3"> <li><a href="#Source-Checkoutsourcecode">3.1.1. Checkout source code</a></li> <li><a href="#Source-Browsesourcecode">3.1.2. Browse source code</a></li> </ul> </li> <li><a href="#_build">3.2. Build</a></li> <li><a href="#_artifacts">3.3. Artifacts</a> <ul class="sectlevel3"> <li><a href="#Artifacts-pax-web-deployer">3.3.1. pax-web-deployer</a></li> <li><a href="#Artifacts-pax-web-descriptor">3.3.2. pax-web-descriptor</a></li> <li><a href="#Artifacts-pax-web-extender">3.3.3. pax-web-extender</a></li> <li><a href="#Artifacts-pax-web-features">3.3.4. pax-web-features</a></li> <li><a href="#Artifacts-pax-web-jaas">3.3.5. pax-web-jaas</a></li> <li><a href="#Artifacts-pax-web-jsp">3.3.6. pax-web-jsp</a></li> <li><a href="#Artifacts-pax-web-spi">3.3.7. pax-web-spi</a></li> <li><a href="#Artifacts-pax-web-undertow">3.3.8. pax-web-undertow</a></li> </ul> </li> </ul> </li> </ul> </div> </div> <div id="content"> <div id="preamble"> <div class="sectionbody"> <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.1.0/css/font-awesome.min.css"> <div class="paragraph"> <p><span class="image"><img src="images/pax-web.png" alt="image"></span><br> <a href="http://www.osgi.org">OSGi</a> R5 Http Service and Web Applications implementation using <a href="http://undertow.io">Undertow</a>.</p> </div> </div> </div> <div class="sect1"> <h2 id="PaxWeb-Introduction">1. Introduction</h2> <div class="sectionbody"> <div class="paragraph"> <p>Pax Web 5.x is a servlet container for OSGi web applications. The 5.x release line is currently experimental and significantly different from the stable 3.x and 4.x release lines.</p> </div> <div class="paragraph"> <p>For a stable OSGi servlet container, please take a look at Pax Web 4.x.</p> </div> <div class="paragraph"> <p>Pax Web 5.x explores some new technologies, and at the same time narrows its scope compared to the stable releases, with the ultimate goal of merging the 4.x and 5.x release lines, once the new features of Pax Web 5 have stabilized.</p> </div> <div class="sect2"> <h3 id="_functional_goals">1.1. Functional Goals</h3> <div class="ulist"> <ul> <li> <p>Implement Web Applications Specification 1.0 (OSGi Enterprise 5, Section 128).</p> </li> <li> <p>Implement Http Service Specification 1.2 (OSGi Enterprise 5, Section 102).</p> </li> <li> <p>Support additional features of Servlet 3.1 Specification.</p> </li> <li> <p>Support JSF, CDI and JSP in Web Application Bundles.</p> </li> <li> <p>Support JSF and JSP libraries in separate bundles.</p> </li> <li> <p>Support Equinox and Felix (OSGi 5.0.0 or higher).</p> </li> <li> <p>Provide Karaf Features (for Apache Karaf 3.0.1 or higher).</p> </li> <li> <p>Java EE 7 API compatibility.</p> </li> </ul> </div> </div> <div class="sect2"> <h3 id="_design_goals">1.2. Design Goals</h3> <div class="ulist"> <ul> <li> <p>Integrate (an OSGified version of) the Undertow servlet container.</p> </li> <li> <p>Integrate the JSF 2.2 reference implementation (Mojarra 2.2.8 or higher).</p> </li> <li> <p>Simplify OSGi service dependency tracking based on Declarative Services (including DS annotations).</p> </li> <li> <p>Simplify the interaction with Pax CDI.</p> </li> </ul> </div> </div> <div class="sect2"> <h3 id="_non_goals_for_the_short_term">1.3. Non-Goals for the short term</h3> <div class="ulist"> <ul> <li> <p>Support for Jetty or Tomcat (but still provide a SPI for other web containers)</p> </li> <li> <p>API compatibility with Pax Web &#8656; 4.x.</p> </li> </ul> </div> </div> <div class="sect2"> <h3 id="_long_term_goal">1.4. Long Term Goal</h3> <div class="ulist"> <ul> <li> <p>Merge with the master branch so that a future Pax Web release will support Jetty, Tomcat and Undertow</p> </li> </ul> </div> </div> </div> </div> <div class="sect1"> <h2 id="_user_guide">2. User Guide</h2> <div class="sectionbody"> <div class="paragraph"> <p>This guide explains the usage of Pax Web for developers wishing to build their own OSGi-enabled web applications. The reader is expected to be familiar with the OSGi and Servlet specifications.</p> </div> <div class="sect2"> <h3 id="_getting_started">2.1. Getting Started</h3> <div class="paragraph"> <p>Pax Web can run on any OSGi framework. For OSGi novices, it may be easier to work with <a href="http://karaf.apache.org">Apache Karaf</a>, an OSGi runtime environment including a powerful shell and advanced provisioning and configuration methods.</p> </div> <div class="paragraph"> <p>OSGi experts may prefer to directly work with Pax Web bundles and their dependencies on a standalone OSGi framework implementation.</p> </div> <div class="paragraph"> <p>Both approaches are possible - Pax Web does not depend on Karaf.</p> </div> <div class="sect3"> <h4 id="_getting_started_on_apache_karaf">2.1.1. Getting started on Apache Karaf</h4> <div class="sect4"> <h5 id="_installation">Installation</h5> <div class="paragraph"> <p>Apache Karaf is a convenient environment for getting started with Pax Web, thanks to Pax Web Karaf features which let you install Pax Web and its dependencies with a few simple commands.</p> </div> <div class="paragraph"> <p>First of all, download and install a distribution of Apache Karaf 3.0.1 or higher. Unpack the distribution and run</p> </div> <div class="literalblock"> <div class="content"> <pre>bin/karaf</pre> </div> </div> <div class="paragraph"> <p>to start Karaf. Wait for the Karaf shell prompt to appear.</p> </div> <div class="paragraph"> <p>Then enter the following commands</p> </div> <div class="literalblock"> <div class="content"> <pre>karaf@root()&gt; feature:repo-add mvn:org.ops4j.pax.web/pax-web-features/5.0.0/xml/features karaf@root()&gt; feature:install pax-web-undertow</pre> </div> </div> <div class="paragraph"> <p>replacing the version 5.0.0 of Pax Web by the version you are actually using. Listing the installed bundles by entering</p> </div> <div class="literalblock"> <div class="content"> <pre>karaf@root()&gt; la</pre> </div> </div> <div class="paragraph"> <p>you should see the following output:</p> </div> <div class="literalblock"> <div class="content"> <pre> ... 78 | Active | 30 | 1.3.2 | Apache Felix EventAdmin 79 | Active | 30 | 1.0.10 | Apache Felix Metatype Service 80 | Active | 30 | 1.8.2 | Apache Felix Declarative Services 81 | Active | 30 | 3.0.1 | Apache Karaf :: SCR :: Shell Commands 82 | Active | 40 | 3.1.0 | Java Servlet API 83 | Active | 40 | 1.2 | javax.annotation API 84 | Active | 40 | 3.1.4.GA | JBoss Logging 3 85 | Active | 40 | 1.0.15.1 | OPS4J Pax Tipi - undertow-core 86 | Active | 40 | 1.0.15.1 | OPS4J Pax Tipi - undertow-servlet 87 | Active | 40 | 3.2.2.2 | OPS4J Pax Tipi - xnio-api 88 | Active | 40 | 3.2.2.2 | OPS4J Pax Tipi - xnio-nio 89 | Active | 40 | 5.0.2 | ASM all classes with debug info 90 | Active | 40 | 3.18.0 | Apache XBean OSGI Bundle Utilities 91 | Active | 40 | 3.18.0 | Apache XBean :: Classpath Resource Finder 92 | Active | 40 | 5.0.0.201305092017 | osgi.cmpn 93 | Active | 40 | 1.4.0 | OPS4J Base - Service Provider Access 94 | Active | 40 | 1.4.0 | OPS4J Base - IO 95 | Active | 40 | 0.0.2 | Apache Felix JAAS Support 96 | Active | 40 | 5.0.0.SNAPSHOT | OPS4J Pax Web - Service Provider Interface 97 | Active | 40 | 5.0.0.SNAPSHOT | OPS4J Pax Web - Web Bundle Extender 98 | Active | 40 | 5.0.0.SNAPSHOT | OPS4J Pax Web - Undertow Adapter 99 | Active | 40 | 5.0.0.SNAPSHOT | OPS4J Pax Web - Deployment Descriptor Model 100 | Active | 40 | 5.0.0.SNAPSHOT | OPS4J Pax Web - JAAS Authentication Support</pre> </div> </div> <div class="paragraph"> <p>Pax Web is now listening on the default port 8080. Opening a web browser on <code><a href="http://localhost:8080" class="bare">http://localhost:8080</a></code>, you should see an empty page.</p> </div> <div class="paragraph"> <p>The <code>pax-web-undertow</code> feature contains a minimal configuration of Pax Web with the Undertow Servlet Container, not including any support for JSP, JSF or CDI.</p> </div> <div class="paragraph"> <p>The latter are supported by additional Karaf features</p> </div> <div class="ulist"> <ul> <li> <p>pax-web-jsp</p> </li> <li> <p>jsf-mojarra</p> </li> <li> <p>pax-web-undertow-cdi-1.2-weld</p> </li> </ul> </div> </div> <div class="sect4"> <h5 id="_deploying_web_bundles">Deploying Web Bundles</h5> <div class="paragraph"> <p>You can install any web application bundle (WAB) using the Karaf console:</p> </div> <div class="literalblock"> <div class="content"> <pre>karaf@root()&gt; bundle:install mvn:org.ops4j.pax.web.samples/pax-web-sample-static/5.0.0 Bundle ID: 106 karaf@root()&gt; start 106</pre> </div> </div> <div class="paragraph"> <p>After starting the bundle, you can open <code><a href="http://localhost:8080/sample-static" class="bare">http://localhost:8080/sample-static</a></code> in your web browser. The context path of the web application is determined by the <code>Web-ContextPath</code> manifest header of the web bundle.</p> </div> <div class="paragraph"> <p>After installing the <code>pax-web-deployer</code> bundle or the <code>pax-web-war</code> feature, you can deploy a bundle via the file system, by simply copying it to <code>$KARAF_HOME/deploy</code>.</p> </div> </div> <div class="sect4"> <h5 id="_deploying_plain_old_wars">Deploying plain old WARs</h5> <div class="paragraph"> <p>Once you have installed the <code>pax-web-war</code> feature via</p> </div> <div class="literalblock"> <div class="content"> <pre>karaf@root()&gt; feature:install pax-web-war</pre> </div> </div> <div class="paragraph"> <p>file system deployment via <code>$KARAF_HOME/deploy</code> even works for ordinary web archives, lacking the OSGi manifest headers.</p> </div> <div class="paragraph"> <p>A suitable OSGi manifest is generated on the fly by the Pax URL war: protocol handler.</p> </div> <div class="paragraph"> <p>You can also use this special URL protocol to deploy plain old WARs from the Karaf shell:</p> </div> <div class="literalblock"> <div class="content"> <pre>karaf@root()&gt; install war:mvn:org.ops4j.pax.web.samples/pax-web-sample-war/5.0.0/war?Web-ContextPath=/sample-war Bundle ID: 107 karaf@root()&gt; start 107</pre> </div> </div> </div> <div class="sect4"> <h5 id="_changing_the_configuration">Changing the configuration</h5> <div class="paragraph"> <p>Pax Web can be configured using the OSGi Configuration Admin service. In Karaf, changing the configuration is as easy as creating or editing a file named <code>org.ops4j.pax.web.undertow.cfg</code> in the <code>$KARAF_HOME/etc</code> directory.</p> </div> <div class="paragraph"> <p>For example, to change the HTTP port used by Pax Web, create or edit the following property in this file:</p> </div> <div class="literalblock"> <div class="content"> <pre>org.osgi.service.http.port = 9876</pre> </div> </div> <div class="paragraph"> <p>See the <a href="#_configuration">Configuration</a> section for more details on configuration properties.</p> </div> </div> </div> <div class="sect3"> <h4 id="_getting_started_on_plain_osgi">2.1.2. Getting started on plain OSGi</h4> <div class="paragraph"> <p>If you plan to work with Pax Web on a stand-alone OSGi framework, you will require a number of bundle dependencies, in addition to Pax Web&#8217;s own bundles.</p> </div> <div class="paragraph"> <p>Even when not using Karaf, looking at Pax Web&#8217;s feature repository file may be the easiest way to find the required dependencies. Alternatively, you can take a look at Pax Web&#8217;s integration tests as a starting point for your own setup.</p> </div> <div class="paragraph"> <p>For file system deployments and file-based configuration, you should include the <a href="http://felix.apache.org/site/apache-felix-file-install.html">Apache Felix File Install</a> bundle.</p> </div> </div> </div> <div class="sect2"> <h3 id="_configuration">2.2. Configuration</h3> <div class="sect3"> <h4 id="_overview">2.2.1. Overview</h4> <div class="paragraph"> <p>Pax Web can be configured using configuration properties provided by the OSGi Configuration Admin service, as OSGi framework properties or as Java system properties.</p> </div> <div class="paragraph"> <p>There are two levels of configuration: per server and per deployment.</p> </div> <div class="paragraph"> <p>Per deployment configuration is only supported via Configuration Admin.</p> </div> </div> <div class="sect3"> <h4 id="_server_level_configuration_properties">2.2.2. Server-level Configuration Properties</h4> <table class="tableblock frame-all grid-all spread"> <colgroup> <col style="width: 33%;"> <col style="width: 33%;"> <col style="width: 33%;"> </colgroup> <thead> <tr> <th class="tableblock halign-left valign-top">Property key</th> <th class="tableblock halign-left valign-top">Default value</th> <th class="tableblock halign-left valign-top">Meaning</th> </tr> </thead> <tbody> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">org.ops4j.pax.web.hosts</p></td> <td class="tableblock halign-left valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Comma-separated list of virtual host names</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">org.ops4j.pax.web.host.&lt;hostname&gt;.aliases</p></td> <td class="tableblock halign-left valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Comma-separated list of aliases for a virtual host</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">org.ops4j.pax.web.ssl.keystore.type</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">JKS</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">SSL Keystore format</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">org.ops4j.pax.web.ssl.password</p></td> <td class="tableblock halign-left valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Password for the keystore</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">org.ops4j.pax.web.undertow.accesslog.format</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">common</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Access log format</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">org.ops4j.pax.web.undertow.accesslog.enabled</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Is the access log enabled?</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">org.osgi.service.http.enabled</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Is the HTTP protocol enabled?</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">org.osgi.service.http.port</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">8080</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">HTTP port</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">org.osgi.service.http.port.secure</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">8443</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">HTTPS port</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">org.osgi.service.http.secure.enabled</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Is the HTTPS protocol enabled?</p></td> </tr> </tbody> </table> <div class="paragraph"> <p>While looking for a configuration property, Pax Web will first use the property configured via Configuration Admin. If the property is not found, it will look for a framework property with the same name, falling back to a system property of the same name. If no property is defined, a default value is applied as indicated above.</p> </div> <div class="paragraph"> <p>The PID used for Configuration Admin is <code>org.ops4j.pax.web.undertow</code>.</p> </div> </div> <div class="sect3"> <h4 id="_deployment_level_configuration_properties">2.2.3. Deployment-level Configuration Properties</h4> <div class="paragraph"> <p>Pax Web supports deployment-level configuration via Configuration Admin, letting the user override the context path or assign the deployment to a given virtual host.</p> </div> <div class="paragraph"> <p>This mechanism is based on a factory configuration with PID <code>org.ops4j.pax.web.deployment</code>.</p> </div> <div class="paragraph"> <p>For each deployment, Pax Web applies a configuration of this PID where the property <code>bundle.symbolicName</code> matches the bundle symbolic name of the deployment or generates a default configuration from the bundle manifest.</p> </div> <div class="paragraph"> <p>The following properties are supported:</p> </div> <table class="tableblock frame-all grid-all spread"> <colgroup> <col style="width: 33%;"> <col style="width: 33%;"> <col style="width: 33%;"> </colgroup> <thead> <tr> <th class="tableblock halign-left valign-top">Property key</th> <th class="tableblock halign-left valign-top">Default value</th> <th class="tableblock halign-left valign-top">Meaning</th> </tr> </thead> <tbody> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">bundle.symbolicName</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Value of <code>Bundle-SymbolicName</code> manifest header</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Used to assign a configuration to a given bundle</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">contextPath</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Value of <code>Web-ContextPath</code> manifest header</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Overrides the web context path for the given deployment.</p></td> </tr> <tr> <td class="tableblock halign-left valign-top"><p class="tableblock">virtual.host</p></td> <td class="tableblock halign-left valign-top"></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Name of virtual host for this deployment. The host must be configured at server level.</p></td> </tr> </tbody> </table> </div> </div> <div class="sect2"> <h3 id="_special_features">2.3. Special Features</h3> <div class="sect3"> <h4 id="_general_information">2.3.1. General Information</h4> <div class="paragraph"> <p>The OSGi Web Applications Specification 1.0 is based on Servlet 2.5, whereas the current Java EE 7 umbrella specification includes Servlet 3.1.</p> </div> <div class="paragraph"> <p>Pax Web aims at filling the gap by supporting a subset of additional Java EE 7 features from the Servlet, JSP, JSF and CDI specifications. Features not mentioned explicitly in this section are not currently covered by integration tests and may or may not work.</p> </div> </div> <div class="sect3"> <h4 id="_servlet_3_0_capabilities">2.3.2. Servlet 3.0+ Capabilities</h4> <div class="ulist"> <ul> <li> <p>Servlet container initializers are supported, but the <code>@HandlesTypes</code> annotation is currently ignored.</p> </li> <li> <p>Annotation scanning is supported. Pax Web will discover classes annotated with <code>@WebServlet</code>, <code>@WebFilter</code> and <code>@WebListener</code> contained in a web bundle.</p> </li> </ul> </div> </div> <div class="sect3"> <h4 id="_java_server_pages_jsp">2.3.3. Java Server Pages (JSP)</h4> <div class="paragraph"> <p>Java Server Pages are supported by the optional <code>pax-web-jsp</code> bundle which depends on the Jasper component from the Apache Tomcat project and on the Eclipse Java Compiler (ECJ).</p> </div> <div class="paragraph"> <p>Working with Karaf, you can install the <code>pax-web-jsp</code> Karaf feature to enable JSP support with all required dependencies.</p> </div> <div class="paragraph"> <p>In order to use tag libraries from other bundles, your web bundles must be wired to the required tag library bundles, e.g. by <code>Require-Bundle</code>.</p> </div> </div> <div class="sect3"> <h4 id="_java_server_faces_jsf">2.3.4. Java Server Faces (JSF)</h4> <div class="paragraph"> <p>Pax Web supports the JSF 2.2 reference implementation Mojarra by means of the optional Karaf feature <code>jsf-mojarra</code>. JSF is also supported in stand-alone OSGi mode, if you take care to manually install the required dependencies listed in the Karaf feature.</p> </div> <div class="paragraph"> <p>Note that the Mojarra feature (or more precisely, the JSTL implementation) requires a number of additional system packages which need to be appended to the <code>org.osgi.framework.system.packages.extra</code> property.</p> </div> <div class="paragraph"> <p>When using Karaf, edit <code>etc/config.properties</code> as follows:</p> </div> <div class="literalblock"> <div class="content"> <pre>org.osgi.framework.system.packages.extra= \ com.sun.org.apache.xalan.internal.res, \ com.sun.org.apache.xml.internal.utils, \ com.sun.org.apache.xml.internal.utils, \ com.sun.org.apache.xpath.internal, \ com.sun.org.apache.xpath.internal.jaxp, \ com.sun.org.apache.xpath.internal.objects, \ org.apache.karaf.branding, \ org.apache.html.dom; version="2.11.0", \ ...</pre> </div> </div> <div class="paragraph"> <p>In order to use JSF components from other bundles, your web bundles must be wired to the required component bundles, e.g. by <code>Require-Bundle</code>. See the included sample <code>pax-web-sample-primefaces</code> and the corresponding integration test <code>PrimeFacesTest</code>.</p> </div> </div> <div class="sect3"> <h4 id="_contexts_and_dependency_injection_cdi">2.3.5. Contexts and Dependency Injection (CDI)</h4> <div class="paragraph"> <p>Pax Web also supports CDI 1.1 and 1.2 by integrating Pax CDI. CDI and JSF support do not depend on each other, but can be used in combination.</p> </div> <div class="paragraph"> <p>At the moment, Weld is the only CDI implementation supporting CDI 1.1 or higher. Pax Web provides the following optional Karaf features including Weld 2.1.x for CDI 1.1 or Weld 2.2.x for CDI 1.2:</p> </div> <div class="ulist"> <ul> <li> <p>pax-web-undertow-cdi-1.1-weld</p> </li> <li> <p>pax-web-undertow-cdi-1.2-weld</p> </li> </ul> </div> <div class="paragraph"> <p>Again, CDI support does not require Karaf. Stand-alone OSGi users should simply derive the list of required bundles from the feature definition and install them manually.</p> </div> </div> </div> <div class="sect2"> <h3 id="_http_service_extensions">2.4. Http Service Extensions</h3> <div class="paragraph"> <p>Pax Web 5.x does not include any of the OSGi Http Service extensions provided by Pax Web 4.x.</p> </div> <div class="paragraph"> <p>These are expected to be superseded by the new Http Whiteboard specification published with the <a href="http://blog.osgi.org/2014/06/draft-osgi-enterprise-r6-specification.html">OSGi Enterprise 6 draft</a>.</p> </div> </div> </div> </div> <div class="sect1"> <h2 id="_developer_guide">3. Developer Guide</h2> <div class="sectionbody"> <div class="paragraph"> <p>This guide explains the design and the development process of Pax Web.</p> </div> <div class="paragraph"> <p>It is aimed at developers wishing to understand the internals of Pax Web or to contribute to the code base.</p> </div> <div class="sect2"> <h3 id="_source">3.1. Source</h3> <div class="sect3"> <h4 id="Source-Checkoutsourcecode">3.1.1. Checkout source code</h4> <div class="paragraph"> <p>You can check out the source code of Pax Web and switch to the 5.x branch by using the following commands:</p> </div> <div class="listingblock"> <div class="content"> <pre>git clone git://github.com/ops4j/org.ops4j.pax.web.git cd org.ops4j.pax.web git checkout undertow</pre> </div> </div> <div class="paragraph"> <p>or you may use your IDE specific support for Git.</p> </div> </div> <div class="sect3"> <h4 id="Source-Browsesourcecode">3.1.2. Browse source code</h4> <div class="paragraph"> <p>You can browse the source code by pointing your browser to <code><a href="https://github.com/ops4j/org.ops4j.pax.web/tree/undertow" class="bare">https://github.com/ops4j/org.ops4j.pax.web/tree/undertow</a></code>.</p> </div> </div> </div> <div class="sect2"> <h3 id="_build">3.2. Build</h3> <div class="paragraph"> <p>This chapter explains how to build Pax Web by using <a href="http://maven.apache.org">Apache Maven</a>. You may also use another means for building as for example your preferred IDE, since most IDEs will support Maven.</p> </div> <div class="paragraph"> <p>To build Pax Web follow these steps:</p> </div> <div class="ulist"> <ul> <li> <p>Download and <a href="http://maven.apache.org/download.html#Installation">install Apache Maven</a></p> </li> <li> <p>Check out the latest source from the OPS4J Pax Web GitHub Repository</p> </li> <li> <p>In a terminal window, go the the root folder where you have downloaded the source and execute the following command:</p> <div class="listingblock"> <div class="content"> <pre>mvn install</pre> </div> </div> </li> </ul> </div> </div> <div class="sect2"> <h3 id="_artifacts">3.3. Artifacts</h3> <div class="paragraph"> <p>This section describes the individual bundles and other artifacts provided by Pax Web 5.x.</p> </div> <div class="sect3"> <h4 id="Artifacts-pax-web-deployer">3.3.1. pax-web-deployer</h4> <div class="paragraph"> <p>This artifact is an optional bundle which supports file system deployment of traditional WARs without an OSGi manifest. This feature is based on Apache Felix File Install and the Pax URL WAR protocol handler (more specifically, the <code>webbundle:</code> protocol).</p> </div> </div> <div class="sect3"> <h4 id="Artifacts-pax-web-descriptor">3.3.2. pax-web-descriptor</h4> <div class="paragraph"> <p><code>pax-web-descriptor</code> contains a JAXB model of the <code>web.xml</code> deployment descriptor generated from the corresponding XML schema. This model is used at run-time to unmarshal deployment descriptors and to transport deployment metadata between Pax Web bundles.</p> </div> </div> <div class="sect3"> <h4 id="Artifacts-pax-web-extender">3.3.3. pax-web-extender</h4> <div class="paragraph"> <p>This artifact implements the OSGi extender pattern for web application bundles. In general, an OSGi extender listens to bundle events and adds functionality to some of the observed bundles.</p> </div> <div class="paragraph"> <p>The <code>pax-web-extender</code> monitors web application bundles, identified by the <code>Web-ContextPath</code> manifest header, parses their deployment metadata and deploys them to the servlet container.</p> </div> </div> <div class="sect3"> <h4 id="Artifacts-pax-web-features">3.3.4. pax-web-features</h4> <div class="paragraph"> <p>This artifact contains feature definitions to provision Pax Web in Apache Karaf 3.0.0 or higher.</p> </div> </div> <div class="sect3"> <h4 id="Artifacts-pax-web-jaas">3.3.5. pax-web-jaas</h4> <div class="paragraph"> <p>This artifact contains some helper classes to implement JAAS based login configurations for web applications.</p> </div> </div> <div class="sect3"> <h4 id="Artifacts-pax-web-jsp">3.3.6. pax-web-jsp</h4> <div class="paragraph"> <p>This artifact contains JSP support based on Jasper and some other modules of Apache Tomcat 8.x. It is an optional component that will be used by the runtime if present. If you do not use JSPs in your project, you can leave out this artifact from your setup.</p> </div> </div> <div class="sect3"> <h4 id="Artifacts-pax-web-spi">3.3.7. pax-web-spi</h4> <div class="paragraph"> <p>This artifact contains some model classes and interfaces to be implemented for a specific servlet container adapter. This service provider interface (SPI) currently has just one implementation in <code>pax-web-undertow</code>.</p> </div> </div> <div class="sect3"> <h4 id="Artifacts-pax-web-undertow">3.3.8. pax-web-undertow</h4> <div class="paragraph"> <p>This artifact implements the <code>pax-web-spi</code> service provider interface based on Undertow. It <strong>does not include</strong> Undertow, so you will have to provision Undertow separately.</p> </div> <div class="paragraph"> <p>Note that the official Undertow artifacts and their XNIO dependencies currently do not include OSGi headers in their manifests.</p> </div> <div class="paragraph"> <p>For this reason, OPS4J provides OSGified versions of these artifacts in the Pax Tipi project.</p> </div> </div> </div> </div> </div> </div> <div id="footer"> <div id="footer-text"> Last updated 2014-09-18 18:02:46 MESZ </div> </div> </body> </html>
ops4j/ops4j.github.io
pax/web/5.x/index.html
HTML
apache-2.0
64,962
<!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_45) on Sat Feb 21 11:43:11 PST 2015 --> <title>Uses of Package main.java.positionalIndex</title> <meta name="date" content="2015-02-21"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package main.java.positionalIndex"; } //--> </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?main/java/positionalIndex/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 main.java.positionalIndex" class="title">Uses of Package<br>main.java.positionalIndex</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="../../../main/java/positionalIndex/package-summary.html">main.java.positionalIndex</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#main.java.datatabulation">main.java.datatabulation</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#main.java.positionalIndex">main.java.positionalIndex</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#main.java.positionalIndex.indexingCreatingSystem">main.java.positionalIndex.indexingCreatingSystem</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#main.java.project">main.java.project</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#main.java.queryprocessor">main.java.queryprocessor</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#main.java.queryprocessor.queryLiteral">main.java.queryprocessor.queryLiteral</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#main.java.rankedretrieval">main.java.rankedretrieval</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="main.java.datatabulation"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../main/java/positionalIndex/package-summary.html">main.java.positionalIndex</a> used by <a href="../../../main/java/datatabulation/package-summary.html">main.java.datatabulation</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../main/java/positionalIndex/class-use/LogarithmicEngine.html#main.java.datatabulation">LogarithmicEngine</a> <div class="block">Otherwise known as Logarithmic Merging</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="main.java.positionalIndex"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../main/java/positionalIndex/package-summary.html">main.java.positionalIndex</a> used by <a href="../../../main/java/positionalIndex/package-summary.html">main.java.positionalIndex</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../main/java/positionalIndex/class-use/PositionalIndex.html#main.java.positionalIndex">PositionalIndex</a>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="main.java.positionalIndex.indexingCreatingSystem"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../main/java/positionalIndex/package-summary.html">main.java.positionalIndex</a> used by <a href="../../../main/java/positionalIndex/indexingCreatingSystem/package-summary.html">main.java.positionalIndex.indexingCreatingSystem</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../main/java/positionalIndex/class-use/InMemoryPositionalIndex.html#main.java.positionalIndex.indexingCreatingSystem">InMemoryPositionalIndex</a> <div class="block">The in memory index that we use to index our files to.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="main.java.project"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../main/java/positionalIndex/package-summary.html">main.java.positionalIndex</a> used by <a href="../../../main/java/project/package-summary.html">main.java.project</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../main/java/positionalIndex/class-use/LogarithmicEngine.html#main.java.project">LogarithmicEngine</a> <div class="block">Otherwise known as Logarithmic Merging</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="main.java.queryprocessor"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../main/java/positionalIndex/package-summary.html">main.java.positionalIndex</a> used by <a href="../../../main/java/queryprocessor/package-summary.html">main.java.queryprocessor</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../main/java/positionalIndex/class-use/PositionalIndex.html#main.java.queryprocessor">PositionalIndex</a>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="main.java.queryprocessor.queryLiteral"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../main/java/positionalIndex/package-summary.html">main.java.positionalIndex</a> used by <a href="../../../main/java/queryprocessor/queryLiteral/package-summary.html">main.java.queryprocessor.queryLiteral</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../main/java/positionalIndex/class-use/PositionalIndex.html#main.java.queryprocessor.queryLiteral">PositionalIndex</a>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="main.java.rankedretrieval"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../main/java/positionalIndex/package-summary.html">main.java.positionalIndex</a> used by <a href="../../../main/java/rankedretrieval/package-summary.html">main.java.rankedretrieval</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../main/java/positionalIndex/class-use/LogarithmicEngine.html#main.java.rankedretrieval">LogarithmicEngine</a> <div class="block">Otherwise known as Logarithmic Merging</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?main/java/positionalIndex/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>
davidgaskins/informationRetrievalProject
doc/main/java/positionalIndex/package-use.html
HTML
apache-2.0
10,890
{extend name="public/content" /} {block name="myBeforeStyle"} <link href="__ROOT__/public/static/admin/css/plugins/iCheck/custom.css" rel="stylesheet"> {/block} {block name="content"} <div class="wrapper wrapper-content animated fadeInRight"> <div class="row"> <div class="col-sm-12"> <div class="ibox float-e-margins"> <div class="ibox-title"> <h5>快速添加N个帐号 <small></small></h5> </div> <div class="ibox-content"> <form method="post" class="form-horizontal" action="{:url('insertQuick')}"> <div class="form-group"> <label class="col-sm-2 control-label">帐号个数 *</label> <div class="col-sm-10"> <input type="number" class="form-control" name="account_number" value="10" required> <span class="help-block m-b-none">一次性生成帐号的个数</span> </div> </div> <div class="hr-line-dashed"></div> <div class="form-group"> <label class="col-sm-2 control-label">用户名长度 *</label> <div class="col-sm-10"> <input type="number" class="form-control" name="username_number" value="8" required> <span class="help-block m-b-none">登录使用的帐号(包含数字、小写字母混合组成)</span> </div> </div> <div class="hr-line-dashed"></div> <div class="form-group"> <label class="col-sm-2 control-label">用户名后缀</label> <div class="col-sm-10"> <input type="text" class="form-control" name="username_postfix"> <span class="help-block m-b-none">可以设置统一用户名后缀</span> </div> </div> <div class="hr-line-dashed"></div> <div class="form-group"> <label class="col-sm-2 control-label">密码 *</label> <div class="col-sm-10"> <input type="text" class="form-control" name="password" value="123456" required> <span class="help-block m-b-none">统一默认密码</span> </div> </div> <div class="hr-line-dashed"></div> <div class="form-group"> <label class="col-sm-2 control-label">统一姓名</label> <div class="col-sm-10"> <input type="text" class="form-control" name="actual_name" value="经销商" required> </div> </div> <div class="hr-line-dashed"></div> <div class="form-group"> <div class="col-sm-4 col-sm-offset-2"> <button class="btn btn-primary" type="submit">保存内容</button>&nbsp;&nbsp; <button class="btn btn-warning" type="reset">重置内容</button>&nbsp;&nbsp; <button class="btn btn-primary btn_url" type="button" data-url="{:url('index')}"> <i class="fa fa-level-up"></i>&nbsp;&nbsp;<span class="bold">返回上一层</span> </button> </div> </div> </form> </div> </div> </div> </div> </div> {/block} {block name="myAfterScript"} <!-- Peity --> <script src="__ROOT__/public/static/admin/js/plugins/peity/jquery.peity.min.js"></script> <!-- 自定义js --> <script src="__ROOT__/public/static/admin/js/content.js?v=1.0.0"></script> <!-- iCheck --> <script src="__ROOT__/public/static/admin/js/plugins/iCheck/icheck.min.js"></script> <!-- Peity --> <script src="__ROOT__/public/static/admin/js/demo/peity-demo.js"></script> <script> $(document).ready(function () { $('.i-checks').iCheck({ checkboxClass: 'icheckbox_square-green', radioClass: 'iradio_square-green', }); }); </script> {/block}
hanhang/mf315
admin/view/dealer/add_quick.html
HTML
apache-2.0
4,915
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc --> <title>TaskEnqueuer (actorish4j v0.7.5 API)</title> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="TaskEnqueuer (actorish4j v0.7.5 API)"; } } catch(err) { } //--> var methods = {"i0":10,"i1":10,"i2":9,"i3":10,"i4":10,"i5":10}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../io/github/actorish4j/StateMachine.StateFunc.html" title="interface in io.github.actorish4j"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../io/github/actorish4j/TaskEnqueuer.Conf.html" title="class in io.github.actorish4j"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?io/github/actorish4j/TaskEnqueuer.html" target="_top">Frames</a></li> <li><a href="TaskEnqueuer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">io.github.actorish4j</div> <h2 title="Class TaskEnqueuer" class="title">Class TaskEnqueuer</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li><a href="../../../io/github/actorish4j/Enqueuer.html" title="class in io.github.actorish4j">io.github.actorish4j.Enqueuer</a>&lt;<a href="../../../io/github/actorish4j/AsyncRunnable.html" title="interface in io.github.actorish4j">AsyncRunnable</a>&gt;</li> <li> <ul class="inheritance"> <li>io.github.actorish4j.TaskEnqueuer</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public final class <span class="typeNameLabel">TaskEnqueuer</span> extends <a href="../../../io/github/actorish4j/Enqueuer.html" title="class in io.github.actorish4j">Enqueuer</a>&lt;<a href="../../../io/github/actorish4j/AsyncRunnable.html" title="interface in io.github.actorish4j">AsyncRunnable</a>&gt;</pre> <div class="block">TaskEnqueuer is the <a href="../../../io/github/actorish4j/Enqueuer.html" title="class in io.github.actorish4j"><code>Enqueuer</code></a> that polls and executes async tasks <a href="../../../io/github/actorish4j/AsyncRunnable.html" title="interface in io.github.actorish4j"><code>AsyncRunnable</code></a> one by one <p> TaskEnqueuer guarantees that <ul><li> Async tasks will be executed in the order of their arrival <li> Async tasks will NEVER run concurrently i.e. next AsyncRunnable will wait for the completion of the CompletionStage of the previous AsyncRunnable </ul> <p> TaskEnqueuer can be used as the direct replacement for the single-threaded ExecutorService, if you tasks are asynchronous computations. <p> This class doesn't follow ExecutorService submit()/execute() API deliberately because it can be misused for blocking tasks.</div> </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">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../io/github/actorish4j/TaskEnqueuer.Conf.html" title="class in io.github.actorish4j">TaskEnqueuer.Conf</a></span></code> <div class="block">Configuration object.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../io/github/actorish4j/TaskEnqueuer.RejectsListener.html" title="interface in io.github.actorish4j">TaskEnqueuer.RejectsListener</a></span></code> <div class="block">This hook may be helpful if you need to count how many times RejectedExecutionException was thrown in mustOffer-methods of <a href="../../../io/github/actorish4j/TaskEnqueuer.html" title="class in io.github.actorish4j"><code>TaskEnqueuer</code></a>.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="nested.classes.inherited.from.class.io.github.actorish4j.Enqueuer"> <!-- --> </a> <h3>Nested classes/interfaces inherited from class&nbsp;io.github.actorish4j.<a href="../../../io/github/actorish4j/Enqueuer.html" title="class in io.github.actorish4j">Enqueuer</a></h3> <code><a href="../../../io/github/actorish4j/Enqueuer.QueueFactory.html" title="interface in io.github.actorish4j">Enqueuer.QueueFactory</a>&lt;<a href="../../../io/github/actorish4j/Enqueuer.QueueFactory.html" title="type parameter in Enqueuer.QueueFactory">T</a>&gt;</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">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../io/github/actorish4j/TaskEnqueuer.html#TaskEnqueuer--">TaskEnqueuer</a></span>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../io/github/actorish4j/TaskEnqueuer.html#TaskEnqueuer-java.util.function.Consumer-">TaskEnqueuer</a></span>(java.util.function.Consumer&lt;<a href="../../../io/github/actorish4j/TaskEnqueuer.Conf.html" title="class in io.github.actorish4j">TaskEnqueuer.Conf</a>&gt;&nbsp;configInit)</code> <div class="block">This constructor form can save you a few lines of code: you don't need to create configuration object yourself.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../io/github/actorish4j/TaskEnqueuer.html#TaskEnqueuer-io.github.actorish4j.TaskEnqueuer.Conf-">TaskEnqueuer</a></span>(<a href="../../../io/github/actorish4j/TaskEnqueuer.Conf.html" title="class in io.github.actorish4j">TaskEnqueuer.Conf</a>&nbsp;config)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../io/github/actorish4j/TaskEnqueuer.html#mustOffer-io.github.actorish4j.AsyncRunnable-">mustOffer</a></span>(<a href="../../../io/github/actorish4j/AsyncRunnable.html" title="interface in io.github.actorish4j">AsyncRunnable</a>&nbsp;task)</code> <div class="block">Be careful this method will throw RejectedExecutionException, if queue overflows</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>&lt;V&gt;&nbsp;java.util.concurrent.CompletionStage&lt;V&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../io/github/actorish4j/TaskEnqueuer.html#mustOfferCall-io.github.actorish4j.AsyncCallable-">mustOfferCall</a></span>(<a href="../../../io/github/actorish4j/AsyncCallable.html" title="interface in io.github.actorish4j">AsyncCallable</a>&lt;V&gt;&nbsp;ac)</code> <div class="block">Be careful this method will throw RejectedExecutionException, if queue overflows</div> </td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>static <a href="../../../io/github/actorish4j/TaskEnqueuer.Conf.html" title="class in io.github.actorish4j">TaskEnqueuer.Conf</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../io/github/actorish4j/TaskEnqueuer.html#newConf--">newConf</a></span>()</code>&nbsp;</td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>&lt;V&gt;&nbsp;java.util.Optional&lt;java.util.concurrent.CompletionStage&lt;V&gt;&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../io/github/actorish4j/TaskEnqueuer.html#offerCall-io.github.actorish4j.AsyncCallable-">offerCall</a></span>(<a href="../../../io/github/actorish4j/AsyncCallable.html" title="interface in io.github.actorish4j">AsyncCallable</a>&lt;V&gt;&nbsp;ac)</code>&nbsp;</td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code>protected java.util.concurrent.CompletionStage&lt;?&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../io/github/actorish4j/TaskEnqueuer.html#pollAsync-java.util.Queue-">pollAsync</a></span>(java.util.Queue&lt;<a href="../../../io/github/actorish4j/AsyncRunnable.html" title="interface in io.github.actorish4j">AsyncRunnable</a>&gt;&nbsp;queue)</code> <div class="block">internal method, todo: exclude from docs.</div> </td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../io/github/actorish4j/TaskEnqueuer.html#toString--">toString</a></span>()</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.io.github.actorish4j.Enqueuer"> <!-- --> </a> <h3>Methods inherited from class&nbsp;io.github.actorish4j.<a href="../../../io/github/actorish4j/Enqueuer.html" title="class in io.github.actorish4j">Enqueuer</a></h3> <code><a href="../../../io/github/actorish4j/Enqueuer.html#associatedId--">associatedId</a>, <a href="../../../io/github/actorish4j/Enqueuer.html#offer-T-">offer</a>, <a href="../../../io/github/actorish4j/Enqueuer.html#offerMany-java.lang.Iterable-">offerMany</a>, <a href="../../../io/github/actorish4j/Enqueuer.html#threadPool--">threadPool</a>, <a href="../../../io/github/actorish4j/Enqueuer.html#underlyingEnq--">underlyingEnq</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, 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"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="TaskEnqueuer-io.github.actorish4j.TaskEnqueuer.Conf-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>TaskEnqueuer</h4> <pre>public&nbsp;TaskEnqueuer(<a href="../../../io/github/actorish4j/TaskEnqueuer.Conf.html" title="class in io.github.actorish4j">TaskEnqueuer.Conf</a>&nbsp;config)</pre> </li> </ul> <a name="TaskEnqueuer--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>TaskEnqueuer</h4> <pre>public&nbsp;TaskEnqueuer()</pre> </li> </ul> <a name="TaskEnqueuer-java.util.function.Consumer-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>TaskEnqueuer</h4> <pre>public&nbsp;TaskEnqueuer(java.util.function.Consumer&lt;<a href="../../../io/github/actorish4j/TaskEnqueuer.Conf.html" title="class in io.github.actorish4j">TaskEnqueuer.Conf</a>&gt;&nbsp;configInit)</pre> <div class="block">This constructor form can save you a few lines of code: you don't need to create configuration object yourself.</div> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="newConf--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>newConf</h4> <pre>public static&nbsp;<a href="../../../io/github/actorish4j/TaskEnqueuer.Conf.html" title="class in io.github.actorish4j">TaskEnqueuer.Conf</a>&nbsp;newConf()</pre> </li> </ul> <a name="mustOffer-io.github.actorish4j.AsyncRunnable-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>mustOffer</h4> <pre>public&nbsp;void&nbsp;mustOffer(<a href="../../../io/github/actorish4j/AsyncRunnable.html" title="interface in io.github.actorish4j">AsyncRunnable</a>&nbsp;task) throws java.util.concurrent.RejectedExecutionException</pre> <div class="block">Be careful this method will throw RejectedExecutionException, if queue overflows</div> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.util.concurrent.RejectedExecutionException</code></dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../io/github/actorish4j/Enqueuer.html#offer-T-"><code>if you want boolean result instead of RejectedExecutionException</code></a>, <a href="../../../io/github/actorish4j/TaskEnqueuer.html#offerCall-io.github.actorish4j.AsyncCallable-"><code>if your task has some usefull result of its execution</code></a></dd> </dl> </li> </ul> <a name="offerCall-io.github.actorish4j.AsyncCallable-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>offerCall</h4> <pre>public&nbsp;&lt;V&gt;&nbsp;java.util.Optional&lt;java.util.concurrent.CompletionStage&lt;V&gt;&gt;&nbsp;offerCall(<a href="../../../io/github/actorish4j/AsyncCallable.html" title="interface in io.github.actorish4j">AsyncCallable</a>&lt;V&gt;&nbsp;ac)</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>Optional.empty if queue overflow.</dd> </dl> </li> </ul> <a name="mustOfferCall-io.github.actorish4j.AsyncCallable-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>mustOfferCall</h4> <pre>public&nbsp;&lt;V&gt;&nbsp;java.util.concurrent.CompletionStage&lt;V&gt;&nbsp;mustOfferCall(<a href="../../../io/github/actorish4j/AsyncCallable.html" title="interface in io.github.actorish4j">AsyncCallable</a>&lt;V&gt;&nbsp;ac) throws java.util.concurrent.RejectedExecutionException</pre> <div class="block">Be careful this method will throw RejectedExecutionException, if queue overflows</div> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.util.concurrent.RejectedExecutionException</code></dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../io/github/actorish4j/TaskEnqueuer.html#offerCall-io.github.actorish4j.AsyncCallable-"><code>if you don't like exceptions.</code></a></dd> </dl> </li> </ul> <a name="pollAsync-java.util.Queue-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>pollAsync</h4> <pre>protected&nbsp;java.util.concurrent.CompletionStage&lt;?&gt;&nbsp;pollAsync(java.util.Queue&lt;<a href="../../../io/github/actorish4j/AsyncRunnable.html" title="interface in io.github.actorish4j">AsyncRunnable</a>&gt;&nbsp;queue)</pre> <div class="block">internal method, todo: exclude from docs.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../io/github/actorish4j/Enqueuer.html#pollAsync-java.util.Queue-">pollAsync</a></code>&nbsp;in class&nbsp;<code><a href="../../../io/github/actorish4j/Enqueuer.html" title="class in io.github.actorish4j">Enqueuer</a>&lt;<a href="../../../io/github/actorish4j/AsyncRunnable.html" title="interface in io.github.actorish4j">AsyncRunnable</a>&gt;</code></dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../io/github/actorish4j/Poller.html#pollByChunk-int-java.util.function.Function-"><code>Poller.pollByChunk(int, Function)</code></a>, <a href="../../../io/github/actorish4j/Poller.html#pollByOne-java.util.function.Function-"><code>Poller.pollByOne(Function)</code></a></dd> </dl> </li> </ul> <a name="toString--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>toString</h4> <pre>public&nbsp;java.lang.String&nbsp;toString()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>toString</code>&nbsp;in class&nbsp;<code>java.lang.Object</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> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../io/github/actorish4j/StateMachine.StateFunc.html" title="interface in io.github.actorish4j"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../io/github/actorish4j/TaskEnqueuer.Conf.html" title="class in io.github.actorish4j"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?io/github/actorish4j/TaskEnqueuer.html" target="_top">Frames</a></li> <li><a href="TaskEnqueuer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
dlepex/jcext
docs/io/github/actorish4j/TaskEnqueuer.html
HTML
apache-2.0
21,751
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=euc-kr"> <script language='javascript' src='/gpkisecureweb/var.js'></script> <script language='javascript' src='/gpkisecureweb/install.js'></script> <script language='javascript' src='/gpkisecureweb/GPKIFunc.js'></script> </head> <style type="text/css"> <!-- .main { COLOR: #535353; FONT-FAMILY: "±¼¸²", "Arial", "seoul"; FONT-SIZE: 9pt; LINE-HEIGHT: 15px; letter-spacing : -0.9px; list-style-type : decimal; font-variant : normal; } --> </style> <!--º¸¾ÈÇÁ·Î±×·¥ ó¸® ½ÃÀÛ--> <body bgcolor="white"> <table width="404" border="3" cellspacing="0" cellpadding="0" align="center" bordercolor="#337DD8"> <tr><td> <table border="1" cellspacing="0" cellpadding="0" align="center" bordercolor="#A6C7EF"> <tr><td> <table border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <!-- <td><center><img src="image/logo.gif" alt="" border="0"></center></td> --> </tr> <tr> <td align="center"><br><img src="./image/dot_line.gif" alt="" width="360" height="10" border="0"></td> </tr> <tr> <td align="center" class="main"><br><b> GPKI ÀÎÁõ°ü¸®¼¾ÅÍÀÔ´Ï´Ù..</b></td> </tr> <tr> <td align="center" class="main"><br> <b>[ ÇÁ·Î±×·¥ ¼³Ä¡½Ã ÁÖÀÇ»çÇ× ]</b><br><br> </td> </tr> <tr><td class="main"> &nbsp; 1. óÀ½ Á¢¼ÓÇϽô ºÐÀº <b>[º¸¾È°æ°í]</b>âÀÌ Ç¥½ÃµÇ¸é ¹Ýµå½Ã <b>[¿¹(Y)]</b>¸¦<br> &nbsp; &nbsp; &nbsp;´©¸£¼Å¼­ ÇÁ·Î±×·¥À» ¼³Ä¡ÇÏ¼Å¾ß ÇÕ´Ï´Ù.<br> &nbsp; &nbsp; &nbsp;*º¸¾È¿¡ ÇÊ¿äÇÑ ÇÁ·Î±×·¥ ¼³Ä¡À̹ǷΠ[¾Æ´Ï¿À(N)]¸¦ ¼±ÅÃÇϽøé <br> &nbsp; &nbsp; &nbsp;¼­ºñ½º¸¦ ÀÌ¿ëÇÏ½Ç ¼ö ¾ø½À´Ï´Ù.<br><br> &nbsp; 2. º¸¾ÈÇÁ·Î±×·¥ ¼³Ä¡Áß ¿À·ù°¡ ¹ß»ýÇϰųª Àå½Ã°£ È­¸éÀÌ Á¤ÁöÇØ <br> &nbsp; &nbsp; &nbsp;ÀÖÀ» °æ¿ì, ¾Æ·¡ÀÇ [º¸¾ÈÇÁ·Î±×·¥ ³»·Á¹Þ±â]¸¦ ´­·¯ ´Ù¿î¹ÞÀ¸½Å<br> &nbsp; &nbsp; &nbsp;ÇÁ·Î±×·¥ ½ÇÇà ÇÏ¿© º¸¾ÈÇÁ·Î±×·¥À» ¼öµ¿¼³Ä¡½Ê½Ã¿À.<br><br> &nbsp; 3. ¼³Ä¡¿¹»ó½Ã°£ <br> &nbsp; &nbsp; &nbsp;- Ãʰí¼Ó ÀÎÅÍ³Ý »ç¿ëÀÚ : ¾à 30ÃÊ<br> &nbsp; &nbsp; &nbsp;- ÀüÈ­¸ðµ© »ç¿ëÀÚ : ¾à 2~3ºÐ<br> <br> </td></tr> <tr><td align="center"> <a href='./setup/install_off_v1.0.2.9.exe'><img src="./image/security_down.gif" width="136" height="29" alt="" border="0"></a> </td> </tr> </table> </td></tr></table> </td></tr></table> <Script Language='JavaScript'> <!-- document.write(Object_GPKIInstaller); --> </Script> <Script Language='JavaScript'> <!-- if(HaveObject()) { if(BrowserVersionCheck()) { if(VersionCheckAndDownload()) { location.href = ServiceStartPageURL; } } } --> </Script> <br> </body> </html>
Gaia3D/simpleGISService
src/main/webapp/resource/gpkisecureweb/install.html
HTML
apache-2.0
2,599
<!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:43:09 MST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.wildfly.swarm.config.management.access.ApplicationClassificationConstraintConsumer (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="Uses of Interface org.wildfly.swarm.config.management.access.ApplicationClassificationConstraintConsumer (BOM: * : All 2.5.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/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">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.5.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/management/access/class-use/ApplicationClassificationConstraintConsumer.html" target="_top">Frames</a></li> <li><a href="ApplicationClassificationConstraintConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.management.access.ApplicationClassificationConstraintConsumer" class="title">Uses of Interface<br>org.wildfly.swarm.config.management.access.ApplicationClassificationConstraintConsumer</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/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">ApplicationClassificationConstraintConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.management">org.wildfly.swarm.config.management</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.management.access">org.wildfly.swarm.config.management.access</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.management"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">ApplicationClassificationConstraintConsumer</a> in <a href="../../../../../../../org/wildfly/swarm/config/management/package-summary.html">org.wildfly.swarm.config.management</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/management/package-summary.html">org.wildfly.swarm.config.management</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">ApplicationClassificationConstraintConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/management/AuthorizationAccess.html" title="type parameter in AuthorizationAccess">T</a></code></td> <td class="colLast"><span class="typeNameLabel">AuthorizationAccess.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/management/AuthorizationAccess.html#applicationClassificationConstraint-org.wildfly.swarm.config.management.access.ApplicationClassificationConstraintConsumer-">applicationClassificationConstraint</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">ApplicationClassificationConstraintConsumer</a>&nbsp;consumer)</code> <div class="block">Configuration of the application classification constraints.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.management.access"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">ApplicationClassificationConstraintConsumer</a> in <a href="../../../../../../../org/wildfly/swarm/config/management/access/package-summary.html">org.wildfly.swarm.config.management.access</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/management/access/package-summary.html">org.wildfly.swarm.config.management.access</a> that return <a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">ApplicationClassificationConstraintConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>default <a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">ApplicationClassificationConstraintConsumer</a>&lt;<a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="type parameter in ApplicationClassificationConstraintConsumer">T</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ApplicationClassificationConstraintConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html#andThen-org.wildfly.swarm.config.management.access.ApplicationClassificationConstraintConsumer-">andThen</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">ApplicationClassificationConstraintConsumer</a>&lt;<a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="type parameter in ApplicationClassificationConstraintConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../org/wildfly/swarm/config/management/access/package-summary.html">org.wildfly.swarm.config.management.access</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">ApplicationClassificationConstraintConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>default <a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">ApplicationClassificationConstraintConsumer</a>&lt;<a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="type parameter in ApplicationClassificationConstraintConsumer">T</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ApplicationClassificationConstraintConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html#andThen-org.wildfly.swarm.config.management.access.ApplicationClassificationConstraintConsumer-">andThen</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">ApplicationClassificationConstraintConsumer</a>&lt;<a href="../../../../../../../org/wildfly/swarm/config/management/access/ApplicationClassificationConstraintConsumer.html" title="type parameter in ApplicationClassificationConstraintConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</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/management/access/ApplicationClassificationConstraintConsumer.html" title="interface in org.wildfly.swarm.config.management.access">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.5.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/management/access/class-use/ApplicationClassificationConstraintConsumer.html" target="_top">Frames</a></li> <li><a href="ApplicationClassificationConstraintConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 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/management/access/class-use/ApplicationClassificationConstraintConsumer.html
HTML
apache-2.0
13,315
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>component</title> </head> <body> <div id="app"> <mytab msg="hello"></mytab> </div> <div id="parent"> <child v-on:child-word="handle"></child> <p>message:{{messages}}</p> </div> <template id="child"> <input v-model="word"> <button v-on:click="notify"> add </button> </template> </body> <script type="text/javascript" src="vue.js"> </script> <script type="text/javascript"> Vue.component('mytab',{ props: ['msg'], template: '<div>my component</div>{{ msg }}<p></p>', }) new Vue({ el: '#app' }) Vue.component('child',{ template: '#child', // data:function () { // return { word : 'myword' } // }, methods: { notify: function () { if (this.word) { this.$dispatch('child-word',this.word) this.word = '' } } } }) var parent = new Vue({ el: '#parent', data: { messages: [] }, methods: { handle: function (msg) { this.messages.push(msg) } } // events: { // 'child-word': function (msg) { // this.messages.push(msg) // } // } }) </script> </html>
wuanlife/Jianbing_Web
Rizzle/demoforVUE/component.html
HTML
apache-2.0
1,358
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>百度新闻管理</title> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- 新 Bootstrap 核心 CSS 文件 --> <link rel="stylesheet" href="../css/bootstrap.min.css"> <link rel="stylesheet" href="../css/bootstrap-datetimepicker.min.css" /> </head> <body> <nav class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container-fluid"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <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="#">百度新闻后台</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li class="active"> <a href="index.html">首页</a> </li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container-fluid --> </nav> <div class="container-fluid"> <div class="row"> <div class="col-md-6 col-sm-12"> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">新闻编辑</h3> </div> <div class="panel-body"> <form role="form"> <div class="form-group"> <label for="newstitle">新闻标题</label> <input type="text" class="form-control" id="newstitle" placeholder="请输入新闻标题"> </div> <div class="form-group"> <label for="newstype">新闻类型</label> <select class="form-control" id='newstype'> <!--<option>精选</option> <option>百家</option> <option>本地</option> <option>娱乐</option> <option>社会</option> <option>军事</option> <option>女人</option> <option>搞笑</option> <option>互联网</option> <option>科技</option>--> </select> </div> <div class="form-group"> <label for="newsimg">新闻图片</label> <input type="text" class="form-control" id="newsimg" placeholder="请输入图片路径"> </div> <div class="form-group"> <label for="newstime">新闻时间</label> <input type="datetime" class="form-control form_datetime1" readonly id="newstime" placeholder="请选择新闻时间"> </div> <div class="form-group"> <label for="newssrc">新闻来源</label> <input type="text" class="form-control" id="newssrc" placeholder="请输入新闻来源"> </div> <button type="button" class="btn btn-primary" id='addNews'>提交新闻</button> </form> </div> </div> </div> <div class="col-md-6 col-sm-12"> <!--新闻列表--> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">新闻列表</h3> </div> <div class="panel-body"> <table class="table" id='newstable'> <thead> <tr> <th>id</th> <th>类型</th> <th>新闻标题</th> <!--<th>图片地址</th> <th>新闻来演</th>--> <th>新闻时间</th> <th>操作</th> </tr> </thead> <tbody> <tr> <td>123</td> <td>百家</td> <td>测试</td> <td>img/pic.png</td> <td>极客学院</td> <td>2016-11-17</td> <td> <button type="button" class="btn btn-danger btn-xs">编辑</button> <button type="button" class="btn btn-primary btn-xs">删除</button> </td> </tr> </tbody> </table> </div> </div> </div> </div> </div> <!--delete Modal --> <div class="modal fade" id="deleteModal" tabindex="-1" role="dialog" aria-labelledby="" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button> <h4 class="modal-title" id="myModalLabel">警告</h4> </div> <div class="modal-body"> 删除无法回复 </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">取消</button> <button type="button" class="btn btn-primary" id='confirmDelete'>确认</button> </div> </div> </div> </div> <!--update Modal --> <div class="modal fade" id="updateModal" tabindex="-1" role="dialog" aria-labelledby="" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button> <h4 class="modal-title" id="myModalLabel">编辑</h4> </div> <div class="modal-body"> <form role="form"> <div class="form-group"> <label for="unewstitle">新闻标题</label> <input type="text" class="form-control" id="unewstitle" placeholder="请输入新闻标题"> </div> <div class="form-group"> <label for="unewstype">新闻类型</label> <select class="form-control" id='unewstype'> <!--<option>精选</option> <option>百家</option> <option>本地</option> <option>娱乐</option> <option>社会</option> <option>军事</option> <option>女人</option> <option>搞笑</option> <option>互联网</option> <option>科技</option>--> </select> </div> <div class="form-group"> <label for="unewsimg">新闻图片</label> <input type="text" class="form-control" id="unewsimg" placeholder="请输入图片路径"> </div> <div class="form-group"> <label for="unewstime">新闻时间</label> <input type="datetime" class="form-control form_datetime1" readonly id="unewstime" placeholder="请输入新闻时间"> </div> <div class="form-group"> <label for="unewssrc">新闻来源</label> <input type="text" class="form-control" id="unewssrc" placeholder="请输入新闻来源"> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">取消</button> <button type="button" class="btn btn-primary" id='confirmUpdate'>确认</button> </div> </div> </div> </div> <!-- jQuery文件。务必在bootstrap.min.js 之前引入 --> <script src="../js/jquery.js"></script> <!-- 最新的 Bootstrap 核心 JavaScript 文件 --> <script type="text/javascript" src="../js/bootstrap.min.js"></script> <script type="text/javascript" src="../js/bootstrap-datetimepicker.js"></script> <script type="text/javascript" src="../js/bootstrap-datetimepicker.min.js"></script> <script type="text/javascript" src="../js/xss.js"></script> <script type="text/javascript" src="../js/moment.js"></script> <script type="text/javascript" src="../js/index.js"></script> </body> </html>
blue-view/jikexueyuan
task9/public/admin/index.html
HTML
apache-2.0
7,636
<table border="1" id="table1" style="border-collapse: collapse"> <tr> <td height="25" align="center"><span style="font-size: 16px">东周/春秋</span></td> <td height="25" align="center"><span style="font-size: 16px">公元前720年</span></td> <td height="25" align="center"><span style="font-size: 16px">辛酉</span></td> <td height="25px" align="center"><span style="font-size: 16px">周平王宜臼五十一年</span></td> </tr> <tr> <td colspan="4"> <table border="0" width="100%"> <tr> <td valign="top"> <b>历史纪事</b> </td> <td> <div>周平王死   周平王五十一年(前七二0)三月周平王死,在位五十一年。当时周王实力已大为削弱,无力操办像样的丧礼,遂派周大夫武氏之子到鲁国求索助丧用的财物。 宋穆公死   宋宣公在位时,曾立与夷为太子。宋宣公十九年(前七二九)宋宣公病,让位于其弟和,认为父死子继,兄死弟及,是天下通义,弟继承史的君位并不违礼。其弟和再三谦让,不得已才继位,是为宋穆公。周平王五十一年(前七二0),宋穆公病,召见大司马孔父,表示不让自己的儿子公子冯继位,并命他离开宋国都城去郑国,以便让位于与夷。此年八月,宋穆公死,与夷继位,是为宋殇公。 周郑交恶   周王室东迁,主要依靠郑、晋的力量,故周、郑关系甚密。郑的国力日益强盛后,庄公行为渐渐骄慢。周平王姬宜臼担心朝政大权会被庄公操纵控制,遂刻意削弱庄公的权力,准备将一部分事权交虢公掌管。庄公得知后,当面质问姬宜臼,姬宜臼畏惧庄公,只好否认此事。但庄公不信,于“周郑交质”,姬宜臼与庄公各把自己的儿子作为人质交与对方。三月,姬宜臼死,子姬林(周桓王)继位,郑国当年两次派兵强割周王畿内的庄稼以示威,姬林对郑采取强硬态度,周桓王三年(前七一七)郑庄公朝周,姬林故意对他无礼,以为报复。二年后又任命虢公忌文为周室右卿士,以分庄公之权。庄公此时意识到与王室交恶对自己并不有利,转取忍让态度,毁林气盛,见到郑的退让,便试图就此大张王权。周桓王八年(前七一二),他行使两周时期天子予夺封邑的权力,用本不属于王室所有的苏氏12邑换取郑之四邑,郑国实际损失了4邑。后又索性免除郑庄公的左卿士职位,郑庄公于是不朝。秋天,姬林率周军及蔡、卫、陈等诸侯之师伐郑,郑庄公率郑军抵抗,双方作战于繻葛(郑地,今河南长葛)。郑军先击贵蔡、卫、陈等诸侯的军队。然后全军合攻周师,周师大败。</div></td> </tr> </table> </td> </tr> <tr> <td colspan="4"> <table border="0" width="100%"> <tr> <td valign="top"> <b>文化纪事</b> </td> <td> <div>  《春秋》载二月朔日蚀(前720年2月22日),是为全世界有确实日期的日蚀记录之始。</div></td> </tr> </table> </td> </tr> <tr> <td colspan="4"> <table border="0" width="100%"> <tr> <td valign="top"> <b>杂谭逸事</b> </td> <td> <div>周郑交质   郑周关系原很密切,郑庄公与其父郑武公都曾是周平王的卿士。周平王害怕郑国势力过于强大,便不专任郑庄公,而让虢公分掌朝政。郑庄公怨恨此事,周平王极力否认,郑庄公不信,周平王便和郑庄公交换人质以为保证。周平王之子王子狐到郑为人质,郑庄公的太子公忽到周为人质。周平王五十一年(前七二0)三月,周平王死,周人准备把政权交给虢公,引起郑国不满。此年四月,郑国大夫祭足率领军队将周王畿内温(今河南温县南)地的妻子全部割去,秋天又割取成周(今河南洛阳市东)的谷子。周、郑从此结下仇恨。 石腊谏宠州吁   州吁是卫庄公宠妾所生。卫庄公曾娶齐国太子得臣之妹庄姜为妻,庄姜美貌无子,卫人作《硕人》之诗称赞她。卫庄公又娶陈国之女厉妫,生子而早死,厉妫之妹戴妫,随厉妫嫁给卫庄公,生下一子,庄姜将他当作自己的儿子。州吁为宠妾所生,地位卑残,但倍受卫庄公喜爱。州吁喜欢武事,姿意非为,卫庄公丝毫不加约束。庄姜厌恶州吁。卫大夫石腊劝谏卫庄公,若是喜欢儿子,应以道义教导,使之不走上邪路。骄傲、无礼、违法、放荡等足以使人走上邪路的恶德所以会发生,都是由于过分宠爱的缘故。若是准备立州吁为太子,就早作决定,犹豫不决,就会酿成祸乱。受宠而不骄傲、骄傲而能安于地位下降、地位下降而不怨恨、怨恨而能克制者很少。他希望卫庄公不再宠爱州吁,以免除祸害。卫庄公不听其谏劝。石腊之子石厚与州吁交往密切,石腊禁止石厚与州吁交往,石厚不听。卫庄公死后,戴妫所生之子继位为卫桓公,石腊便退休归家,以避祸乱。</div></td> </tr> </table> </td> </tr> <tr> <td colspan="4"> <table border="0" width="100%"> <tr> <td valign="top"> <b>注释</b></td> <td> <div></div></td> </tr> </table> </td> </tr> <tr> </tr></table>
ilearninging/xxhis
all/208.html
HTML
apache-2.0
5,319
<!DOCTYPE html> <html> <head> <title>Free Recipe Nutrition Calculator</title> <meta charset="utf-8"> <meta name="description" content="A simple free tool to calculate all the basic nutrients of a recipe! Useful for chefs, dietitians, athletes, food industries, or individuals who want to know exactly what they eat!"/> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous"> <link rel="stylesheet" type="text/css" href="css/style.css"> <script src='https://raw.githubusercontent.com/j8n/recipeNutritionCalculator/master/App.js'></script> </head> <body> <!-- nav end --> <div class="container"> <div class="row py-3"> <div class="col-12 text-center py-5"> <div class="c-brand">Recipe Nutrition Calculator</div> </div> </div> <div class="row justify-content-md-center mx-0 py-3"> <div class="col-12"> <button class="btn btn-success mr-1" id="calculate-button">Calculate</button> <button class="btn btn-success mr-1" id="add-ingredient-button">Add Ingredient</button> <button class="btn btn-success" id="remove-last-ingredient-button">Remove Last Ingredient</button> <div class="my-4"> <h5>Ingredients</h5> <div class="table-responsive"> <table class="c-table table table-bordered"> <thead> <tr> <th>#</th> <th>Ingredient Name</th> <th>Ingredient Amount (g)</th> <th>Energy (kcal) (%)</th> <th>Carbohydrates (%)</th> <th>Sugars (g) (%)</th> <th>Protein (g) (%)</th> <th>Fat, Total (g) (%)</th> <th>Saturated fatty acids (g) (%)</th> <th>Trans fatty acid (g) (%)</th> <th>Sodium (g) (%)</th> </tr> </thead> <tbody id="list-table-body"></tbody> </table> </div><!-- table responsive end --> </div> <div class="my-4"> <div class="table-responsive"> <h5>Recipe Nutrition Information</h5> <table width="100%" class="c-table table table-bordered"> <tr> <td colspan="9"><h6>Total</h6></td> </tr> <tr> <th>Amount (g)</th> <th>Energy (kcal)</th> <th>Carbohydrates</th> <th>Sugars (g)</th> <th>Protein (g)</th> <th>Fat (g)</th> <th>Saturated fatty acids (g)</th> <th>Trans fatty acids (g)</th> <th>Sodium</th> </tr> <tr> <td id="total-amount">0</td> <td id="total-energy">0</td> <td id="total-carbs">0</td> <td id="total-sugars">0</td> <td id="total-protein">0</td> <td id="total-fat">0</td> <td id="total-fat-saturated">0</td> <td id="total-fat-trans">0</td> <td id="total-sodium">0</td> </tr> <tr> <td colspan="9"><h6>Percentage</h6></td> </tr> <tr> <th></th> <th>Energy (kcal)</th> <th>Carbohydrates</th> <th>Sugars (g)</th> <th>Protein (g)</th> <th>Fat (g)</th> <th>Saturated fatty acids (g)</th> <th>Trans fatty acids (g)</th> <th>Sodium</th> </tr> <tr> <td></td> <td id="total-energy-percent">0</td> <td id="total-carbs-percent">0</td> <td id="total-sugars-percent">0</td> <td id="total-protein-percent">0</td> <td id="total-fat-percent">0</td> <td id="total-fat-saturated-percent">0</td> <td id="total-fat-trans-percent">0</td> <td id="total-sodium-percent">0</td> </tr> </table> </div><!-- table responsive end --> </div> <div class="my-4"> <div class="my-5"> <h5>What?</h5> <p>Just a simple tool to calculate all the basic nutrients of a recipe! Useful for chefs, dietitians, athletes, or for anyone who want to know exactly what he eat!</p> </div> <div class="my-5"> <h5>How?</h5> <p>Add all your recipe ingredients and it's nutrients (per 100g), and press the 'Calculate' button at the top left! The application finds the total nutrients of the recipe (calories, carbs, protein, fat, etc) and the percentage (per 100g)!</p> <p> You can add ingredient in the list pressing the 'Add Ingredient' button and remove the last, pressing the 'Remove Last Ingredient' button!</p> </div> </div> </div><!-- col end --> </div><!-- row end --> </div><!-- container end --> <div class="footer mt-5 pb-1 text-center"> <div class="row mx-0 py-1"> <div class="col-12 "> <a href="https://github.com/j8n/recipeNutritionCalculator"><i class="fab fa-github"></i></a> </div><!-- col end --> </div><!-- row end --> </div><!-- footer end --> </body> <script type="text/javascript" src="https://gitcdn.xyz/repo/j8n/recipeNutritionCalculator/master/App.js"></script> <script> window.onload = function(){ App.setup(); } </script> </html>
j8n/j8n.github.io
recipeNutritionCalculator/index.html
HTML
apache-2.0
5,196
<html> <head> <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> <title>PerfStat Tool: Perfomance Monitoring & Status Notification</title> <link rel="stylesheet" type="text/css" href="../../../perfStatResources/styleSheets/contentFrame.css" media="screen"> <link rel="stylesheet" type="text/css" href="../../../perfStatResources/styleSheets/forms.css" media="screen"> <script language="javascript" src="../../../perfStatResources/javaScripts/contentFrame.js"></script> </head> <body> <div class="navHeader">Report Monitor :: <a href="../reportList/index.pl">My Reports</a> :: Share Report</div> <table cellpadding="2" cellspacing="1" border="0" class="table1"> <tr> <td class="tdTop" nowrap="nowrap" colspan="2" valign="middle" align="left">Add Shared User</td> </tr> % if (keys(%$potentialShareMembers) != 0) { <tr> <th nowrap="nowrap" valign="middle" align="left">User Name</th> <th nowrap="nowrap">Actions</th> </tr> <tr> <form action="index.pl" method="post"> <input type="hidden" name="action" value="insertSharedUser"> <input type="hidden" name="adminName" value="<%$adminName%>"> <input type="hidden" name="userName" value="<%$userName%>"> <input type="hidden" name="reportName" value="<%$reportName%>"> <td class="liteGray" align="left" valign="middle"> <select name="memberName" size="1"> %foreach my $userName (sort(keys(%$potentialShareMembers))) { <option value="<%$userName%>"><%$userName%></option> %} </select> </td> <td class="darkGray" align="center" valign="middle"><input class="liteButton" type="submit" value="ENTER"></td> </form> </tr> % } else { <tr> <td class="liteGray" align="left" valign="middle"> % if (keys(%$shareMembers) == 0) { <span class="table1Text1">No users are available</span> % } else { <span class="table1Text1">All available users are already have access</span> % } </td> </tr> % } </table> % if (keys(%$shareMembers) != 0) { <table width="100%" cellpadding="2" cellspacing="1" border="0" class="table1"> <tr> <td class="tdTop" nowrap="nowrap" colspan="2" valign="middle" align="left">Shared User List</td> </tr> <tr> <th nowrap="nowrap" width="10">Actions</th> <th nowrap="nowrap" valign="middle" align="left">Shared User Name</th> </tr> %foreach my $memberName (sort(keys(%$shareMembers))) { %my $permissions = $shareMembers->{$memberName}; %my $queryString = "adminName=" . URLEncode($adminName) . "&userName=" . URLEncode($userName) . "&reportName=". URLEncode($reportName) . "&memberName=". URLEncode($memberName); <tr> <td class="liteGray" align="center" valign="middle" width="10"> <table width="100%" cellpadding="1" cellspacing="1" border="0" class="table2"> <tr> <th nowrap="nowrap"><a href="index.pl?action=removeSharedUser&<%$queryString%>" onclick="return warnOnClickAnchor('Are you sure you want to remove <%$memberName%>');">Remove From List</a></th> </tr> </table> </td> <td class="liteGray" align="left" valign="top"><span class="table1Text1"><%$memberName%></span></td> </tr> %} </table> % } else { <table width="100%" cellpadding="2" cellspacing="1" border="0" class="table1"> <tr> <td class="tdTop" nowrap="nowrap" colspan="3" valign="middle" align="left">Share List</td> </tr> <tr> <th nowrap="nowrap" valign="middle" align="left">Shared User Name</th> <th nowrap="nowrap" valign="middle" align="left">Permissions</th> </tr> <tr> <td class="liteGray" align="left" valign="top"><span class="table1Text1">&nbsp;</span></td> <td class="liteGray" nowrap="nowrap" valign="top" align="left"><span class="table1Text2">&nbsp;</span></td> </tr> </table> % } </body> </html>
ktenzer/perfstat
server/unix/build/1.52/cgi/reportMonitor/content/shareReport/dsp_share.html
HTML
apache-2.0
3,852
<!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 (1.8.0_101) on Sun Dec 04 19:45:47 CST 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>R.anim</title> <meta name="date" content="2016-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="R.anim"; } } catch(err) { } //--> </script> <noscript> <div>您的浏览器已禁用 JavaScript。</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="跳过导航链接">跳过导航链接</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="../../../../overview-summary.html">概览</a></li> <li><a href="package-summary.html">程序包</a></li> <li class="navBarCell1Rev">类</li> <li><a href="package-tree.html">树</a></li> <li><a href="../../../../deprecated-list.html">已过时</a></li> <li><a href="../../../../index-files/index-1.html">索引</a></li> <li><a href="../../../../help-doc.html">帮助</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../banner/edgar/com/banner/R.html" title="banner.edgar.com.banner中的类"><span class="typeNameLink">上一个类</span></a></li> <li><a href="../../../../banner/edgar/com/banner/R.array.html" title="banner.edgar.com.banner中的类"><span class="typeNameLink">下一个类</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?banner/edgar/com/banner/R.anim.html" target="_top">框架</a></li> <li><a href="R.anim.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>概要:&nbsp;</li> <li>嵌套&nbsp;|&nbsp;</li> <li><a href="#field.summary">字段</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">构造器</a>&nbsp;|&nbsp;</li> <li><a href="#methods.inherited.from.class.java.lang.Object">方法</a></li> </ul> <ul class="subNavList"> <li>详细资料:&nbsp;</li> <li><a href="#field.detail">字段</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">构造器</a>&nbsp;|&nbsp;</li> <li>方法</li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">banner.edgar.com.banner</div> <h2 title="类 R.anim" class="title">类 R.anim</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>banner.edgar.com.banner.R.anim</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>封闭类:</dt> <dd><a href="../../../../banner/edgar/com/banner/R.html" title="banner.edgar.com.banner中的类">R</a></dd> </dl> <hr> <br> <pre>public static final class <span class="typeNameLabel">R.anim</span> extends java.lang.Object</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field.summary"> <!-- --> </a> <h3>字段概要</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="字段概要表, 列表字段和解释"> <caption><span>字段</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">限定符和类型</th> <th class="colLast" scope="col">字段和说明</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../banner/edgar/com/banner/R.anim.html#abc_fade_in">abc_fade_in</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../banner/edgar/com/banner/R.anim.html#abc_fade_out">abc_fade_out</a></span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../banner/edgar/com/banner/R.anim.html#abc_grow_fade_in_from_bottom">abc_grow_fade_in_from_bottom</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../banner/edgar/com/banner/R.anim.html#abc_popup_enter">abc_popup_enter</a></span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../banner/edgar/com/banner/R.anim.html#abc_popup_exit">abc_popup_exit</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../banner/edgar/com/banner/R.anim.html#abc_shrink_fade_out_from_bottom">abc_shrink_fade_out_from_bottom</a></span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../banner/edgar/com/banner/R.anim.html#abc_slide_in_bottom">abc_slide_in_bottom</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../banner/edgar/com/banner/R.anim.html#abc_slide_in_top">abc_slide_in_top</a></span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../banner/edgar/com/banner/R.anim.html#abc_slide_out_bottom">abc_slide_out_bottom</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../banner/edgar/com/banner/R.anim.html#abc_slide_out_top">abc_slide_out_top</a></span></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>构造器概要</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释"> <caption><span>构造器</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">构造器和说明</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../banner/edgar/com/banner/R.anim.html#anim--">anim</a></span>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>方法概要</h3> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>从类继承的方法&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ FIELD DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="field.detail"> <!-- --> </a> <h3>字段详细资料</h3> <a name="abc_fade_in"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>abc_fade_in</h4> <pre>public static final&nbsp;int abc_fade_in</pre> <dl> <dt><span class="seeLabel">另请参阅:</span></dt> <dd><a href="../../../../constant-values.html#banner.edgar.com.banner.R.anim.abc_fade_in">常量字段值</a></dd> </dl> </li> </ul> <a name="abc_fade_out"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>abc_fade_out</h4> <pre>public static final&nbsp;int abc_fade_out</pre> <dl> <dt><span class="seeLabel">另请参阅:</span></dt> <dd><a href="../../../../constant-values.html#banner.edgar.com.banner.R.anim.abc_fade_out">常量字段值</a></dd> </dl> </li> </ul> <a name="abc_grow_fade_in_from_bottom"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>abc_grow_fade_in_from_bottom</h4> <pre>public static final&nbsp;int abc_grow_fade_in_from_bottom</pre> <dl> <dt><span class="seeLabel">另请参阅:</span></dt> <dd><a href="../../../../constant-values.html#banner.edgar.com.banner.R.anim.abc_grow_fade_in_from_bottom">常量字段值</a></dd> </dl> </li> </ul> <a name="abc_popup_enter"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>abc_popup_enter</h4> <pre>public static final&nbsp;int abc_popup_enter</pre> <dl> <dt><span class="seeLabel">另请参阅:</span></dt> <dd><a href="../../../../constant-values.html#banner.edgar.com.banner.R.anim.abc_popup_enter">常量字段值</a></dd> </dl> </li> </ul> <a name="abc_popup_exit"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>abc_popup_exit</h4> <pre>public static final&nbsp;int abc_popup_exit</pre> <dl> <dt><span class="seeLabel">另请参阅:</span></dt> <dd><a href="../../../../constant-values.html#banner.edgar.com.banner.R.anim.abc_popup_exit">常量字段值</a></dd> </dl> </li> </ul> <a name="abc_shrink_fade_out_from_bottom"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>abc_shrink_fade_out_from_bottom</h4> <pre>public static final&nbsp;int abc_shrink_fade_out_from_bottom</pre> <dl> <dt><span class="seeLabel">另请参阅:</span></dt> <dd><a href="../../../../constant-values.html#banner.edgar.com.banner.R.anim.abc_shrink_fade_out_from_bottom">常量字段值</a></dd> </dl> </li> </ul> <a name="abc_slide_in_bottom"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>abc_slide_in_bottom</h4> <pre>public static final&nbsp;int abc_slide_in_bottom</pre> <dl> <dt><span class="seeLabel">另请参阅:</span></dt> <dd><a href="../../../../constant-values.html#banner.edgar.com.banner.R.anim.abc_slide_in_bottom">常量字段值</a></dd> </dl> </li> </ul> <a name="abc_slide_in_top"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>abc_slide_in_top</h4> <pre>public static final&nbsp;int abc_slide_in_top</pre> <dl> <dt><span class="seeLabel">另请参阅:</span></dt> <dd><a href="../../../../constant-values.html#banner.edgar.com.banner.R.anim.abc_slide_in_top">常量字段值</a></dd> </dl> </li> </ul> <a name="abc_slide_out_bottom"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>abc_slide_out_bottom</h4> <pre>public static final&nbsp;int abc_slide_out_bottom</pre> <dl> <dt><span class="seeLabel">另请参阅:</span></dt> <dd><a href="../../../../constant-values.html#banner.edgar.com.banner.R.anim.abc_slide_out_bottom">常量字段值</a></dd> </dl> </li> </ul> <a name="abc_slide_out_top"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>abc_slide_out_top</h4> <pre>public static final&nbsp;int abc_slide_out_top</pre> <dl> <dt><span class="seeLabel">另请参阅:</span></dt> <dd><a href="../../../../constant-values.html#banner.edgar.com.banner.R.anim.abc_slide_out_top">常量字段值</a></dd> </dl> </li> </ul> </li> </ul> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>构造器详细资料</h3> <a name="anim--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>anim</h4> <pre>public&nbsp;anim()</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="跳过导航链接">跳过导航链接</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="../../../../overview-summary.html">概览</a></li> <li><a href="package-summary.html">程序包</a></li> <li class="navBarCell1Rev">类</li> <li><a href="package-tree.html">树</a></li> <li><a href="../../../../deprecated-list.html">已过时</a></li> <li><a href="../../../../index-files/index-1.html">索引</a></li> <li><a href="../../../../help-doc.html">帮助</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../banner/edgar/com/banner/R.html" title="banner.edgar.com.banner中的类"><span class="typeNameLink">上一个类</span></a></li> <li><a href="../../../../banner/edgar/com/banner/R.array.html" title="banner.edgar.com.banner中的类"><span class="typeNameLink">下一个类</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?banner/edgar/com/banner/R.anim.html" target="_top">框架</a></li> <li><a href="R.anim.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>概要:&nbsp;</li> <li>嵌套&nbsp;|&nbsp;</li> <li><a href="#field.summary">字段</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">构造器</a>&nbsp;|&nbsp;</li> <li><a href="#methods.inherited.from.class.java.lang.Object">方法</a></li> </ul> <ul class="subNavList"> <li>详细资料:&nbsp;</li> <li><a href="#field.detail">字段</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">构造器</a>&nbsp;|&nbsp;</li> <li>方法</li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
xiexiang89/Android-Auto-BannerView
banner/edgar/com/banner/R.anim.html
HTML
apache-2.0
14,646
<!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_91) on Mon Jun 06 14:51:13 EDT 2016 --> <title>Cassandra.Processor.get_indexed_slices (apache-cassandra API)</title> <meta name="date" content="2016-06-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="Cassandra.Processor.get_indexed_slices (apache-cassandra API)"; } } catch(err) { } //--> var methods = {"i0":10,"i1":10,"i2":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/Cassandra.Processor.get_indexed_slices.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/cassandra/thrift/Cassandra.Processor.get_count.html" title="class in org.apache.cassandra.thrift"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.get_multi_slice.html" title="class in org.apache.cassandra.thrift"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/thrift/Cassandra.Processor.get_indexed_slices.html" target="_top">Frames</a></li> <li><a href="Cassandra.Processor.get_indexed_slices.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.cassandra.thrift</div> <h2 title="Class Cassandra.Processor.get_indexed_slices" class="title">Class Cassandra.Processor.get_indexed_slices&lt;I extends <a href="../../../../org/apache/cassandra/thrift/Cassandra.Iface.html" title="interface in org.apache.cassandra.thrift">Cassandra.Iface</a>&gt;</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.apache.thrift.ProcessFunction&lt;I,<a href="../../../../org/apache/cassandra/thrift/Cassandra.get_indexed_slices_args.html" title="class in org.apache.cassandra.thrift">Cassandra.get_indexed_slices_args</a>&gt;</li> <li> <ul class="inheritance"> <li>org.apache.cassandra.thrift.Cassandra.Processor.get_indexed_slices&lt;I&gt;</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Enclosing class:</dt> <dd><a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.html" title="class in org.apache.cassandra.thrift">Cassandra.Processor</a>&lt;<a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.html" title="type parameter in Cassandra.Processor">I</a> extends <a href="../../../../org/apache/cassandra/thrift/Cassandra.Iface.html" title="interface in org.apache.cassandra.thrift">Cassandra.Iface</a>&gt;</dd> </dl> <hr> <br> <pre>public static class <span class="typeNameLabel">Cassandra.Processor.get_indexed_slices&lt;I extends <a href="../../../../org/apache/cassandra/thrift/Cassandra.Iface.html" title="interface in org.apache.cassandra.thrift">Cassandra.Iface</a>&gt;</span> extends org.apache.thrift.ProcessFunction&lt;I,<a href="../../../../org/apache/cassandra/thrift/Cassandra.get_indexed_slices_args.html" title="class in org.apache.cassandra.thrift">Cassandra.get_indexed_slices_args</a>&gt;</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.get_indexed_slices.html#get_indexed_slices--">get_indexed_slices</a></span>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code><a href="../../../../org/apache/cassandra/thrift/Cassandra.get_indexed_slices_args.html" title="class in org.apache.cassandra.thrift">Cassandra.get_indexed_slices_args</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.get_indexed_slices.html#getEmptyArgsInstance--">getEmptyArgsInstance</a></span>()</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code><a href="../../../../org/apache/cassandra/thrift/Cassandra.get_indexed_slices_result.html" title="class in org.apache.cassandra.thrift">Cassandra.get_indexed_slices_result</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.get_indexed_slices.html#getResult-I-org.apache.cassandra.thrift.Cassandra.get_indexed_slices_args-">getResult</a></span>(<a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.get_indexed_slices.html" title="type parameter in Cassandra.Processor.get_indexed_slices">I</a>&nbsp;iface, <a href="../../../../org/apache/cassandra/thrift/Cassandra.get_indexed_slices_args.html" title="class in org.apache.cassandra.thrift">Cassandra.get_indexed_slices_args</a>&nbsp;args)</code>&nbsp;</td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>protected boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.get_indexed_slices.html#isOneway--">isOneway</a></span>()</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.org.apache.thrift.ProcessFunction"> <!-- --> </a> <h3>Methods inherited from class&nbsp;org.apache.thrift.ProcessFunction</h3> <code>getMethodName, process</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>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="get_indexed_slices--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>get_indexed_slices</h4> <pre>public&nbsp;get_indexed_slices()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="getEmptyArgsInstance--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getEmptyArgsInstance</h4> <pre>public&nbsp;<a href="../../../../org/apache/cassandra/thrift/Cassandra.get_indexed_slices_args.html" title="class in org.apache.cassandra.thrift">Cassandra.get_indexed_slices_args</a>&nbsp;getEmptyArgsInstance()</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>getEmptyArgsInstance</code>&nbsp;in class&nbsp;<code>org.apache.thrift.ProcessFunction&lt;<a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.get_indexed_slices.html" title="type parameter in Cassandra.Processor.get_indexed_slices">I</a> extends <a href="../../../../org/apache/cassandra/thrift/Cassandra.Iface.html" title="interface in org.apache.cassandra.thrift">Cassandra.Iface</a>,<a href="../../../../org/apache/cassandra/thrift/Cassandra.get_indexed_slices_args.html" title="class in org.apache.cassandra.thrift">Cassandra.get_indexed_slices_args</a>&gt;</code></dd> </dl> </li> </ul> <a name="isOneway--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>isOneway</h4> <pre>protected&nbsp;boolean&nbsp;isOneway()</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>isOneway</code>&nbsp;in class&nbsp;<code>org.apache.thrift.ProcessFunction&lt;<a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.get_indexed_slices.html" title="type parameter in Cassandra.Processor.get_indexed_slices">I</a> extends <a href="../../../../org/apache/cassandra/thrift/Cassandra.Iface.html" title="interface in org.apache.cassandra.thrift">Cassandra.Iface</a>,<a href="../../../../org/apache/cassandra/thrift/Cassandra.get_indexed_slices_args.html" title="class in org.apache.cassandra.thrift">Cassandra.get_indexed_slices_args</a>&gt;</code></dd> </dl> </li> </ul> <a name="getResult-org.apache.cassandra.thrift.Cassandra.Iface-org.apache.cassandra.thrift.Cassandra.get_indexed_slices_args-"> <!-- --> </a><a name="getResult-I-org.apache.cassandra.thrift.Cassandra.get_indexed_slices_args-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>getResult</h4> <pre>public&nbsp;<a href="../../../../org/apache/cassandra/thrift/Cassandra.get_indexed_slices_result.html" title="class in org.apache.cassandra.thrift">Cassandra.get_indexed_slices_result</a>&nbsp;getResult(<a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.get_indexed_slices.html" title="type parameter in Cassandra.Processor.get_indexed_slices">I</a>&nbsp;iface, <a href="../../../../org/apache/cassandra/thrift/Cassandra.get_indexed_slices_args.html" title="class in org.apache.cassandra.thrift">Cassandra.get_indexed_slices_args</a>&nbsp;args) throws org.apache.thrift.TException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>getResult</code>&nbsp;in class&nbsp;<code>org.apache.thrift.ProcessFunction&lt;<a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.get_indexed_slices.html" title="type parameter in Cassandra.Processor.get_indexed_slices">I</a> extends <a href="../../../../org/apache/cassandra/thrift/Cassandra.Iface.html" title="interface in org.apache.cassandra.thrift">Cassandra.Iface</a>,<a href="../../../../org/apache/cassandra/thrift/Cassandra.get_indexed_slices_args.html" title="class in org.apache.cassandra.thrift">Cassandra.get_indexed_slices_args</a>&gt;</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>org.apache.thrift.TException</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> <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/Cassandra.Processor.get_indexed_slices.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/cassandra/thrift/Cassandra.Processor.get_count.html" title="class in org.apache.cassandra.thrift"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/apache/cassandra/thrift/Cassandra.Processor.get_multi_slice.html" title="class in org.apache.cassandra.thrift"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/thrift/Cassandra.Processor.get_indexed_slices.html" target="_top">Frames</a></li> <li><a href="Cassandra.Processor.get_indexed_slices.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2016 The Apache Software Foundation</small></p> </body> </html>
jasonwee/videoOnCloud
lib/cassandra/apache-cassandra-3.7/javadoc/org/apache/cassandra/thrift/Cassandra.Processor.get_indexed_slices.html
HTML
apache-2.0
16,155
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div class="SRResult" id="SR_tojson"> <div class="SREntry"> <a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../class_google_drive_1_1_file.html#aa11bb2773679d71f84e4c24ef03c9c20" target="_parent">ToJSON</a> <span class="SRScope">GoogleDrive::File</span> </div> </div> <div class="SRResult" id="SR_tostring"> <div class="SREntry"> <a id="Item1" onkeydown="return searchResults.Nav(event,1)" onkeypress="return searchResults.Nav(event,1)" onkeyup="return searchResults.Nav(event,1)" class="SRSymbol" href="../class_google_drive_1_1_file.html#a5df36b7fc94dec2c650351a6e201c742" target="_parent">ToString</a> <span class="SRScope">GoogleDrive::File</span> </div> </div> <div class="SRResult" id="SR_touchfile"> <div class="SREntry"> <a id="Item2" onkeydown="return searchResults.Nav(event,2)" onkeypress="return searchResults.Nav(event,2)" onkeyup="return searchResults.Nav(event,2)" class="SRSymbol" href="../class_google_drive.html#a5e216990bfa9a661fca50ff93bcbf8b1" target="_parent">TouchFile</a> <span class="SRScope">GoogleDrive</span> </div> </div> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
midworld/unity-googledrive
docs/search/functions_74.html
HTML
apache-2.0
2,009
<ion-view view-title="Recetas" class="imagen-tras-claro"> <ion-content> <div class="list card" ng-repeat="receta in recetas"> <div class="item"> <h2>{{ receta.receta }}</h2> <p>Video de como preparar: {{ receta.receta }}</p> </div> <div class="video-container"> <iframe ng-src="{{ receta.link | trustUrl }}" frameborder="0"></iframe> </div> <a class="item item-icon-left assertive" href="#/app/recetas/{{receta.id}}"> <i class="icon ion-star"></i> Ingredientes </a> </div> </ion-content> </ion-view>
Widrogo/Eba
www/templates/recetas.html
HTML
apache-2.0
680
<!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 Jan 23 20:22:16 EST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.apache.solr.client.solrj.response.FacetField.Count (Solr 4.6.1 API)</title> <meta name="date" content="2014-01-23"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.solr.client.solrj.response.FacetField.Count (Solr 4.6.1 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/apache/solr/client/solrj/response/FacetField.Count.html" title="class in org.apache.solr.client.solrj.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/client/solrj/response//class-useFacetField.Count.html" target="_top">FRAMES</a></li> <li><a href="FacetField.Count.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.client.solrj.response.FacetField.Count" class="title">Uses of Class<br>org.apache.solr.client.solrj.response.FacetField.Count</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/client/solrj/response/FacetField.Count.html" title="class in org.apache.solr.client.solrj.response">FacetField.Count</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.solr.client.solrj.response">org.apache.solr.client.solrj.response</a></td> <td class="colLast"> <div class="block">Convenience classes for dealing with various types of Solr responses.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.solr.client.solrj.response"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../org/apache/solr/client/solrj/response/FacetField.Count.html" title="class in org.apache.solr.client.solrj.response">FacetField.Count</a> in <a href="../../../../../../../org/apache/solr/client/solrj/response/package-summary.html">org.apache.solr.client.solrj.response</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/client/solrj/response/package-summary.html">org.apache.solr.client.solrj.response</a> that return types with arguments of type <a href="../../../../../../../org/apache/solr/client/solrj/response/FacetField.Count.html" title="class in org.apache.solr.client.solrj.response">FacetField.Count</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="http://download.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../../../org/apache/solr/client/solrj/response/FacetField.Count.html" title="class in org.apache.solr.client.solrj.response">FacetField.Count</a>&gt;</code></td> <td class="colLast"><span class="strong">FacetField.</span><code><strong><a href="../../../../../../../org/apache/solr/client/solrj/response/FacetField.html#getValues()">getValues</a></strong>()</code>&nbsp;</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/client/solrj/response/FacetField.Count.html" title="class in org.apache.solr.client.solrj.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/client/solrj/response//class-useFacetField.Count.html" target="_top">FRAMES</a></li> <li><a href="FacetField.Count.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 &copy; 2000-2014 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>
arnaud71/webso-db
docs/solr-solrj/org/apache/solr/client/solrj/response/class-use/FacetField.Count.html
HTML
apache-2.0
7,697
{% extends "tea/base.html" %} {% block title %}Create an account{% endblock %} {% block content %} <h1>Create an account</h1> <form action="" method="post"> {% csrf_token %} <table> {{ form.as_table }} </table> <input type="submit" value="Create the account"> </form> {% endblock %}
Preffer/teain
tea/templates/tea/register_form.html
HTML
apache-2.0
341
<!DOCTYPE html> <html> <head> <title>Still Awesome</title> <script src="https://cdn.firebase.com/js/client/2.0.6/firebase.js"></script> </head> <body> <div id="gallery"></div> <img src="" height="200"> <button id="ready">Ready?</button> <script type="text/javascript"> function viewFile() { var preview = document.getElementById('img'); var source= new Firebase("https://langtime1.firebaseio.com") var what; source.on("value", function(snapshot) { snapshot.forEach(function(snap){ console.log(snap.val()) img="<img src='"+snap.val()+"' height=200 >" document.getElementById('gallery').innerHTML += img; }) }); } viewFile() </script> </body> </html>
iamwave007/aws-nodejs-sample
views/gallery.html
HTML
apache-2.0
725
<?xml version='1.0' encoding='utf-8'?> <html xmlns="http://www.w3.org/1999/xhtml" lang="zh-cn" xml:lang="zh-cn"> <head> <title>产品的起点 - 小记 的交互设计</title> <meta content="IE=edge" http-equiv="X-UA-Compatible"/> <meta content="" name="description"/> <meta content="GitBook 3.2.2" name="generator"/> <meta content="周楷雯 (kevinzhow)" name="author"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <link href="stylesheet.css" rel="stylesheet" type="text/css"/> <link href="page_styles.css" rel="stylesheet" type="text/css"/> </head> <body class="calibre"> <div class="page"> <h1 class="book-chapter" id="calibre_toc_19">产品的起点 - 小记 的交互设计</h1> <div class="section"> <h1 id="product-design-产品的起点---小记-的交互设计" class="calibre7">Product Design: 产品的起点 - <strong class="calibre15">小记</strong> 的交互设计</h1> <p class="calibre8"><strong class="calibre12">小记</strong> 的交互非常简单:</p> <ul class="calibre10"> <li class="calibre11"><p class="calibre8">单击进入</p> </li> <li class="calibre11"><p class="calibre8">双击返回</p> </li> </ul> <p class="calibre8">返回的时候采用放大,渐变的动画。</p> <p class="calibre8">这两个交互在 iOS 系统上并不常见,开始之初会有一定的学习成本。</p> <p class="calibre8">但是从另外一个角度,这个交互可以很好保护 App 所带来的时空感,避免突然被很现代的操作在两个时空拉扯,产生 “山寨” 的感觉。</p> <p class="calibre8">所以虽然略有弊端,但是最后还是决定留下这个交互。</p> <p class="calibre8">Sketch 里已经完成了界面的设计,剩下的就是导入到 Framer 里加工一下交互。</p> <h2 id="导入-sketch-文件" class="calibre9">导入 Sketch 文件</h2> <p class="calibre8">打开你的 Sketch 文件,然后切换到 FramerStudio 里,点击 File -&gt; Import</p> <p class="calibre8"><img src="16.jpg" alt="导入" class="calibre20"/></p> <p class="calibre8">这时候 Framer 自动根据我们的 Sketch 文件里对每个 Artboard 的命名生成了图层。</p> <p class="calibre8">先把主页面显示出来</p> <pre class="calibre33"><code class="pcalibre4 pcalibre3 lang-coffeescript"><span class="hljs-title"># 把 Diary 文件中所有的图层导入到 diaryLayers</span> diaryLayers = Framer.Importer.load <span class="hljs-string">"imported/Diary"</span> <span class="hljs-title"># 创建新的图层</span> container = <span class="hljs-keyword">new</span> Layer width: Screen.width <span class="hljs-title"># Screen 可以直接拿到设备的尺寸</span> height: Screen.height backgroundColor: <span class="hljs-string">"#fff"</span> # 设置背景色为 <span class="hljs-title">#fff</span> container.center() <span class="hljs-title">#使用 Framer 提供的 Center 函数居中显示Layer</span> diaryLayers.Month.visible = <span class="hljs-number">true</span> <span class="hljs-title"># 使 Month 这个 Layer 显示</span> diaryLayers.Month.superLayer = container <span class="hljs-title"># 使用 container 作为 Month 的父层</span> </code></pre> <p class="calibre8">点击中间的日期后切换到日记页面</p> <pre class="calibre33"><code class="pcalibre4 pcalibre3 lang-coffeescript">diaryLayers = Framer.Importer.load <span class="hljs-string">"imported/Diary"</span> diaryContainer = <span class="hljs-keyword">new</span> Layer width: Screen.width height: Screen.height backgroundColor: <span class="hljs-string">"white"</span> # 设置背景色为白色 scale: <span class="hljs-number">0</span> <span class="hljs-title"># 设置缩放为 0 即最小化</span> opacity: <span class="hljs-number">0</span> <span class="hljs-title"># 设置透明度为 0</span> diaryContainer.states.animationOptions = { curve: <span class="hljs-string">"ease-in-out"</span> repeat: <span class="hljs-number">0</span> delay: <span class="hljs-number">0</span> time: <span class="hljs-number">0.4</span> } diaryContainer.states.add default: {opacity:<span class="hljs-number">0</span>, scale: <span class="hljs-number">0</span>} show: {opacity:<span class="hljs-number">1</span>, scale: <span class="hljs-number">1</span>} fadeOut: {opacity:<span class="hljs-number">0</span>, scale: <span class="hljs-number">2.0</span>} diaryContainer.center() diaryLayers.View.visible = <span class="hljs-number">true</span> diaryLayers.View.superLayer = diaryContainer container = <span class="hljs-keyword">new</span> Layer width: Screen.width height: Screen.height backgroundColor: <span class="hljs-string">"#fff"</span> container.center() diaryLayers.Month.visible = <span class="hljs-number">true</span> diaryLayers.Month.superLayer = container diaryLayers.Month.<span class="hljs-number">on</span> Events.Click, <span class="hljs-function">-&gt;</span> diaryContainer.bringToFront() <span class="hljs-title"># 置顶显示</span> diaryContainer.states.<span class="hljs-keyword">switch</span>(<span class="hljs-string">"show"</span>) <span class="hljs-title"># 切换状态</span> </code></pre> <p class="calibre8">双击日记页面后页面消失</p> <pre class="calibre33"><code class="pcalibre4 pcalibre3 lang-coffeescript">clickCount = <span class="hljs-number">0</span> diaryContainer.<span class="hljs-number">on</span> Events.Click, <span class="hljs-function">-&gt;</span> clickCount += <span class="hljs-number">1</span> <span class="hljs-keyword">if</span> clickCount == <span class="hljs-number">2</span> diaryContainer.states.<span class="hljs-keyword">switch</span>(<span class="hljs-string">"fadeOut"</span>) clickCount = <span class="hljs-number">0</span> </code></pre> <p class="calibre8">短短 50 行代码,Framer 和 Sketch 就可以迅速完成交互的原型,这个双击返回的交互贯彻在所有界面。</p> <p class="calibre8">在制作原型的时候需要注意的一点是,只需要做出具体某个交互的演示效果即可,不需要 100% 正常工作,不然花费的精力可能甚至超过你在 iOS 里实现这个效果。</p> <p class="calibre8">你可以从 <a href="http://static-catch.qiniudn.com/Diary.framer.zip" target="_blank" class="calibre13 pcalibre1 pcalibre pcalibre2">这里</a> 获取到 Framer 的工程源码。</p> </div> </div> </body></html>
Jerrywx/AttributeText-Demo
AttributeText-Demo/Resource/pro/xiao_ji_de_jiao_hu_she_ji.html
HTML
apache-2.0
6,541
<!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 Jun 22 04:34:22 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Package org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer (BOM: * : All 2.0.0.Final API)</title> <meta name="date" content="2018-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 Package org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer (BOM: * : All 2.0.0.Final 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>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.0.0.Final</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/undertow/configuration/mod_cluster/balancer/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer" class="title">Uses of Package<br>org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer</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/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/package-summary.html">org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.undertow.configuration.mod_cluster">org.wildfly.swarm.config.undertow.configuration.mod_cluster</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer">org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.undertow.configuration.mod_cluster"> <!-- --> </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/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/package-summary.html">org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer</a> used by <a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/package-summary.html">org.wildfly.swarm.config.undertow.configuration.mod_cluster</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/class-use/LoadBalancingGroup.html#org.wildfly.swarm.config.undertow.configuration.mod_cluster">LoadBalancingGroup</a> <div class="block">A load balancing group</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/class-use/LoadBalancingGroupConsumer.html#org.wildfly.swarm.config.undertow.configuration.mod_cluster">LoadBalancingGroupConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/class-use/LoadBalancingGroupSupplier.html#org.wildfly.swarm.config.undertow.configuration.mod_cluster">LoadBalancingGroupSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/class-use/Node.html#org.wildfly.swarm.config.undertow.configuration.mod_cluster">Node</a> <div class="block">Runtime representation of a mod_cluster node</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/class-use/NodeConsumer.html#org.wildfly.swarm.config.undertow.configuration.mod_cluster">NodeConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/class-use/NodeSupplier.html#org.wildfly.swarm.config.undertow.configuration.mod_cluster">NodeSupplier</a>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer"> <!-- --> </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/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/package-summary.html">org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer</a> used by <a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/package-summary.html">org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/class-use/LoadBalancingGroup.html#org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer">LoadBalancingGroup</a> <div class="block">A load balancing group</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/class-use/LoadBalancingGroupConsumer.html#org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer">LoadBalancingGroupConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/class-use/Node.html#org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer">Node</a> <div class="block">Runtime representation of a mod_cluster node</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/class-use/Node.NodeResources.html#org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer">Node.NodeResources</a> <div class="block">Child mutators for Node</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../../../../org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/class-use/NodeConsumer.html#org.wildfly.swarm.config.undertow.configuration.mod_cluster.balancer">NodeConsumer</a>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.0.0.Final</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/undertow/configuration/mod_cluster/balancer/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2.0.0.Final/apidocs/org/wildfly/swarm/config/undertow/configuration/mod_cluster/balancer/package-use.html
HTML
apache-2.0
10,790
<!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 Sun Dec 25 15:11:46 MST 2016 --> <TITLE> MissingPropertyException </TITLE> <META NAME="date" CONTENT="2016-12-25"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="MissingPropertyException"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../tablesaw/MissingMethodException.html" title="class in tablesaw"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../tablesaw/NewProject.html" title="class in tablesaw"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../index.html?tablesaw/MissingPropertyException.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MissingPropertyException.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#methods_inherited_from_class_tablesaw.TablesawException">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;METHOD</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> tablesaw</FONT> <BR> Class MissingPropertyException</H2> <PRE> java.lang.Object <IMG SRC="../resources/inherit.gif" ALT="extended by ">java.lang.Throwable <IMG SRC="../resources/inherit.gif" ALT="extended by ">java.lang.Exception <IMG SRC="../resources/inherit.gif" ALT="extended by "><A HREF="../tablesaw/TablesawException.html" title="class in tablesaw">tablesaw.TablesawException</A> <IMG SRC="../resources/inherit.gif" ALT="extended by "><A HREF="../tablesaw/ValidationException.html" title="class in tablesaw">tablesaw.ValidationException</A> <IMG SRC="../resources/inherit.gif" ALT="extended by "><B>tablesaw.MissingPropertyException</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable</DD> </DL> <HR> <DL> <DT><PRE>public class <B>MissingPropertyException</B><DT>extends <A HREF="../tablesaw/ValidationException.html" title="class in tablesaw">ValidationException</A></DL> </PRE> <P> Created by bhawkins on 5/5/14. <P> <P> <DL> <DT><B>See Also:</B><DD><A HREF="../serialized-form.html#tablesaw.MissingPropertyException">Serialized Form</A></DL> <HR> <P> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../tablesaw/MissingPropertyException.html#MissingPropertyException(java.lang.String)">MissingPropertyException</A></B>(java.lang.String&nbsp;property)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_tablesaw.TablesawException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class tablesaw.<A HREF="../tablesaw/TablesawException.html" title="class in tablesaw">TablesawException</A></B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../tablesaw/TablesawException.html#getDescription()">getDescription</A>, <A HREF="../tablesaw/TablesawException.html#getMessage()">getMessage</A>, <A HREF="../tablesaw/TablesawException.html#getReturnError()">getReturnError</A></CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Throwable"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Throwable</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>equals, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="MissingPropertyException(java.lang.String)"><!-- --></A><H3> MissingPropertyException</H3> <PRE> public <B>MissingPropertyException</B>(java.lang.String&nbsp;property)</PRE> <DL> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../tablesaw/MissingMethodException.html" title="class in tablesaw"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../tablesaw/NewProject.html" title="class in tablesaw"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../index.html?tablesaw/MissingPropertyException.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MissingPropertyException.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#methods_inherited_from_class_tablesaw.TablesawException">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;METHOD</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
brianhks/tablesaw
docs/javadoc/tablesaw/MissingPropertyException.html
HTML
apache-2.0
10,605
<!DOCTYPE html> <html> <head> <style> #s1 { animation: anim 4s linear 2 forwards; } @keyframes anim { 0% { stop-color: green; } 100% { stop-color: orange; } } </style> </head> <body> <svg height="100" width="200"> <g> <defs> <radialGradient cx="110" cy="45" gradientUnits="userSpaceOnUse" id="circles" r="40"> <stop id="s0" offset="0%" stop-color="red"> </stop> <stop id="s1" offset="90%" stop-color="blue"> </stop> <stop id="s2" offset="100%" stop-color="red"> </stop> </radialGradient> </defs> <rect fill="url(#circles)" height="100" stroke="none" width="200" x="0" y="0"> </rect> </g> </svg> </body> </html>
translate-smil/translate-smil
gallery/css/211-stop-color.html
HTML
apache-2.0
693
<!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 (1.8.0_92) on Wed Jun 28 12:12:47 CEST 2017 --> <title>All Classes (iviewx-java 1.0.0 API)</title> <meta name="date" content="2017-06-28"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <script type="text/javascript" src="script.js"></script> </head> <body> <h1 class="bar">All&nbsp;Classes</h1> <div class="indexContainer"> <ul> <li><a href="de/unihannover/se/iviewxjava/core/chronologic/ChronologicComparable.html" title="interface in de.unihannover.se.iviewxjava.core.chronologic"><span class="interfaceName">ChronologicComparable</span></a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETAoiException.html" title="class in de.unihannover.se.iviewxjava.exception">ETAoiException</a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETBufferException.html" title="class in de.unihannover.se.iviewxjava.exception">ETBufferException</a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETCalibrationException.html" title="class in de.unihannover.se.iviewxjava.exception">ETCalibrationException</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/eyetracker/ETCalibrationManager.html" title="class in de.unihannover.se.iviewxjava.iviewx.eyetracker">ETCalibrationManager</a></li> <li><a href="de/unihannover/se/iviewxjava/core/chronologic/ETChronologicCollection.html" title="class in de.unihannover.se.iviewxjava.core.chronologic">ETChronologicCollection</a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETConnectionException.html" title="class in de.unihannover.se.iviewxjava.exception">ETConnectionException</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/eyetracker/ETConnectionManager.html" title="class in de.unihannover.se.iviewxjava.iviewx.eyetracker">ETConnectionManager</a></li> <li><a href="de/unihannover/se/iviewxjava/core/receiver/stabilization/ETDefaultStabilizationStrategy.html" title="class in de.unihannover.se.iviewxjava.core.receiver.stabilization">ETDefaultStabilizationStrategy</a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETDeviceException.html" title="class in de.unihannover.se.iviewxjava.exception">ETDeviceException</a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETErrorHandler.html" title="class in de.unihannover.se.iviewxjava.exception">ETErrorHandler</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/data/ETEvent.html" title="class in de.unihannover.se.iviewxjava.iviewx.data">ETEvent</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/serialization/json/ETEventJsonSerializer.html" title="class in de.unihannover.se.iviewxjava.iviewx.serialization.json">ETEventJsonSerializer</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/eyetracker/ETEventReceiver.html" title="class in de.unihannover.se.iviewxjava.iviewx.eyetracker">ETEventReceiver</a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETException.html" title="class in de.unihannover.se.iviewxjava.exception">ETException</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/data/ETEye.html" title="enum in de.unihannover.se.iviewxjava.iviewx.data">ETEye</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/data/ETEyeData.html" title="class in de.unihannover.se.iviewxjava.iviewx.data">ETEyeData</a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETFileFormatException.html" title="class in de.unihannover.se.iviewxjava.exception">ETFileFormatException</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/serialization/json/ETJsonOutputType.html" title="enum in de.unihannover.se.iviewxjava.iviewx.serialization.json">ETJsonOutputType</a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETParameterException.html" title="class in de.unihannover.se.iviewxjava.exception">ETParameterException</a></li> <li><a href="de/unihannover/se/iviewxjava/core/receiver/ETPlaybackReceiver.html" title="class in de.unihannover.se.iviewxjava.core.receiver">ETPlaybackReceiver</a></li> <li><a href="de/unihannover/se/iviewxjava/core/receiver/ETReceiver.html" title="class in de.unihannover.se.iviewxjava.core.receiver">ETReceiver</a></li> <li><a href="de/unihannover/se/iviewxjava/core/recorder/ETRecorder.html" title="class in de.unihannover.se.iviewxjava.core.recorder">ETRecorder</a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETRecordingException.html" title="class in de.unihannover.se.iviewxjava.exception">ETRecordingException</a></li> <li><a href="de/unihannover/se/iviewxjava/core/receiver/response/ETResponse.html" title="class in de.unihannover.se.iviewxjava.core.receiver.response">ETResponse</a></li> <li><a href="de/unihannover/se/iviewxjava/core/receiver/response/ETResponseType.html" title="enum in de.unihannover.se.iviewxjava.core.receiver.response">ETResponseType</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/data/ETSample.html" title="class in de.unihannover.se.iviewxjava.iviewx.data">ETSample</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/serialization/json/ETSampleJsonSerializer.html" title="class in de.unihannover.se.iviewxjava.iviewx.serialization.json">ETSampleJsonSerializer</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/eyetracker/ETSampleReceiver.html" title="class in de.unihannover.se.iviewxjava.iviewx.eyetracker">ETSampleReceiver</a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETServerException.html" title="class in de.unihannover.se.iviewxjava.exception">ETServerException</a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETSocketException.html" title="class in de.unihannover.se.iviewxjava.exception">ETSocketException</a></li> <li><a href="de/unihannover/se/iviewxjava/core/receiver/stabilization/ETStabilizationStrategy.html" title="interface in de.unihannover.se.iviewxjava.core.receiver.stabilization"><span class="interfaceName">ETStabilizationStrategy</span></a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETStreamException.html" title="class in de.unihannover.se.iviewxjava.exception">ETStreamException</a></li> <li><a href="de/unihannover/se/iviewxjava/core/reactive/ETStreamService.html" title="class in de.unihannover.se.iviewxjava.core.reactive">ETStreamService</a></li> <li><a href="de/unihannover/se/iviewxjava/exception/ETValidationException.html" title="class in de.unihannover.se.iviewxjava.exception">ETValidationException</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/eyetracker/ETValidationManager.html" title="class in de.unihannover.se.iviewxjava.iviewx.eyetracker">ETValidationManager</a></li> <li><a href="de/unihannover/se/iviewxjava/iviewx/IViewX.html" title="class in de.unihannover.se.iviewxjava.iviewx">IViewX</a></li> </ul> </div> </body> </html>
FG-SE/iviewx-java
docs/javadoc/allclasses-noframe.html
HTML
apache-2.0
6,840
<?xml version="1.0" encoding="ascii"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>wtf.ext.sharedance.SharedanceCommandError</title> <link rel="stylesheet" href="epydoc.css" type="text/css" /> <script type="text/javascript" src="epydoc.js"></script> </head> <body bgcolor="white" text="black" link="blue" vlink="#204080" alink="#204080"> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="wtf-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" ><a href="http://opensource.perlig.de/wtf/">Visit WTF Online</a></th> </tr></table></th> </tr> </table> <table width="100%" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="100%"> <span class="breadcrumbs"> <a href="wtf-module.html">Package&nbsp;wtf</a> :: <a href="wtf.ext-module.html">Package&nbsp;ext</a> :: <a href="wtf.ext.sharedance-module.html">Module&nbsp;sharedance</a> :: Class&nbsp;SharedanceCommandError </span> </td> <td> <table cellpadding="0" cellspacing="0"> <!-- hide/show private --> <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink" onclick="toggle_private();">hide&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="wtf.ext.sharedance.SharedanceCommandError-class.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== CLASS DESCRIPTION ==================== --> <h1 class="epydoc">Class SharedanceCommandError</h1><p class="nomargin-top"><span class="codelink"><a href="wtf.ext.sharedance-pysrc.html#SharedanceCommandError">source&nbsp;code</a></span></p> <pre class="base-tree"> object --+ | exceptions.BaseException --+ | exceptions.Exception --+ | <a href="wtf.Error-class.html">Error</a> --+ | <a href="wtf.ext.sharedance.SharedanceError-class.html">SharedanceError</a> --+ | <strong class="uidshort">SharedanceCommandError</strong> </pre> <hr /> Sharedance command error <!-- ==================== INSTANCE METHODS ==================== --> <a name="section-InstanceMethods"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Instance Methods</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-InstanceMethods" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.Exception</code></b>: <code>__init__</code>, <code>__new__</code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.BaseException</code></b>: <code>__delattr__</code>, <code>__getattribute__</code>, <code>__getitem__</code>, <code>__getslice__</code>, <code>__reduce__</code>, <code>__repr__</code>, <code>__setattr__</code>, <code>__setstate__</code>, <code>__str__</code>, <code>__unicode__</code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__format__</code>, <code>__hash__</code>, <code>__reduce_ex__</code>, <code>__sizeof__</code>, <code>__subclasshook__</code> </p> </td> </tr> </table> <!-- ==================== PROPERTIES ==================== --> <a name="section-Properties"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Properties</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Properties" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code>exceptions.BaseException</code></b>: <code>args</code>, <code>message</code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__class__</code> </p> </td> </tr> </table> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="wtf-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" ><a href="http://opensource.perlig.de/wtf/">Visit WTF Online</a></th> </tr></table></th> </tr> </table> <script type="text/javascript"> <!-- // Private objects are initially displayed (because if // javascript is turned off then we want them to be // visible); but by default, we want to hide them. So hide // them unless we have a cookie that says to show them. checkCookie(); // --> </script> </body> </html>
wontfix-org/wtf
docs/apidoc/wtf.ext.sharedance.SharedanceCommandError-class.html
HTML
apache-2.0
7,323
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title ng-bind="pageTitle"></title> <!-- <link href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet" type="text/css"> --> <!-- <link href="//fonts.googleapis.com/css?family=Titillium+Web:700|Source+Serif+Pro:400,700|Merriweather+Sans:400,700|Source+Sans+Pro:400,300,600,700,300italic,400italic,600italic,700italic" rel="stylesheet" type="text/css"> --> <!-- <link rel="stylesheet" href="//demo.productionready.io/main.css"> --> <!-- Tell the browser to be responsive to screen width --> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <!-- Bootstrap 3.3.6 --> <link rel="stylesheet" href="adminlte/bootstrap/css/bootstrap.min.css"> <!-- Font Awesome --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css"> <!-- Ionicons --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css"> <!-- Theme style --> <link rel="stylesheet" href="adminlte/dist/css/AdminLTE.min.css"> <!-- iCheck --> <link rel="stylesheet" href="adminlte/plugins/iCheck/square/blue.css"> <!-- Theme style --> <link rel="stylesheet" href="adminlte/dist/css/AdminLTE.min.css"> <!-- AdminLTE Skins. Choose a skin from the css/skins folder instead of downloading all of them to reduce the load. --> <link rel="stylesheet" href="adminlte/dist/css/skins/skin-blue.min.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/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body > <div ui-view></div> <script src="main.js"></script> <!-- jQuery 2.2.3 --> <script src="adminlte/plugins/jQuery/jquery-2.2.3.min.js"></script> <!-- Bootstrap 3.3.6 --> <script src="adminlte/bootstrap/js/bootstrap.min.js"></script> <!-- iCheck --> <script src="adminlte/plugins/iCheck/icheck.min.js"></script> <script> $(function () { $('input').iCheck({ checkboxClass: 'icheckbox_square-blue', radioClass: 'iradio_square-blue', increaseArea: '20%' // optional }); }); </script> <!-- SlimScroll --> <script src="adminlte/plugins/slimScroll/jquery.slimscroll.min.js"></script> <!-- FastClick --> <script src="adminlte/plugins/fastclick/fastclick.js"></script> <!-- AdminLTE App --> <script src="adminlte/dist/js/app.min.js"></script> </body> </html>
gustavovaliati/training_Symfony2.8_Angular1.5_AdminLTE
front-root/src/index.html
HTML
apache-2.0
2,909
<!DOCTYPE HTML> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>Source - src/js/__common.js</title> <meta name="generator" content="JsDoc Toolkit" /> <link media="all" rel="stylesheet" href="../../css/common.css" type="text/css" /> <link media="all" rel="stylesheet" href="../../css/bootstrap.min.css" type="text/css" /> <link media="all" rel="stylesheet" href="../../css/prettify.css" type="text/css" /> <link media="print" rel="stylesheet" href="../../css/print.css" type="text/css" /> <style type="text/css"> .icon-jsdoc { background: url("../../img/classicons.png") no-repeat; } </style> <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script> <script src="../../js/prettify.js" type="text/javascript"></script> <script src="../../js/bootstrap.min.js" type="text/javascript"></script> </head> <body><div class="container-fluid"> <!-- ============================== header ================================= --> <!-- begin static/header.html --> <header class="header navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container-fluid"> <a class="brand" href="#"><strong>JsDoc</strong> Reference</a> <ul id="class-file-selector" class="nav"> <li><a href="../../index.html">Class Index</a></li> <li><a href="../../files.html">File Index</a></li> </ul> </div> </div> </header> <!-- end static/header.html --> <!-- ============================== classes index ============================ --> <div class="row-fluid"> <div id="index" class="span3"> <!-- begin publish.classesIndex --> <div class="well" id="class-list"> <ul class="nav nav-list"> <li class="nav-header">Classes</li> <li><a href="../../symbols/Cache.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-class"></i><span class="jsdoc-class-index">Cache</span></span></a></li> <li><a href="../../symbols/Connection.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-class"></i><span class="jsdoc-class-index">Connection</span></span></a></li> <li><a href="../../symbols/Date.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-namespace"></i><span class="jsdoc-class-index">Date</span></span></a></li> <li><a href="../../symbols/Form.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-class"></i><span class="jsdoc-class-index">Form</span></span></a></li> <li><a href="../../symbols/Form-DataXML.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-class"></i><span class="jsdoc-class-index">DataXML</span></span> <span class="pull-right label label-jsdoc label-jsdoc-inner">Inner</span> </a></li> <li><a href="../../symbols/Form-DataXML-Nodeset.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-class"></i><span class="jsdoc-class-index">Nodeset</span></span> <span class="pull-right label label-jsdoc label-jsdoc-inner">Inner</span> </a></li> <li><a href="../../symbols/Form-FormHTML.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-class"></i><span class="jsdoc-class-index">FormHTML</span></span> <span class="pull-right label label-jsdoc label-jsdoc-inner">Inner</span> </a></li> <li><a href="../../symbols/FormHTML%23Branch.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-class"></i><span class="jsdoc-class-index">Branch</span></span></a></li> <li><a href="../../symbols/GUI.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-class"></i><span class="jsdoc-class-index">GUI</span></span></a></li> <li><a href="../../symbols/Print.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-class"></i><span class="jsdoc-class-index">Print</span></span></a></li> <li><a href="../../symbols/Settings.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-class"></i><span class="jsdoc-class-index">Settings</span></span></a></li> <li><a href="../../symbols/State.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-class"></i><span class="jsdoc-class-index">State</span></span></a></li> <li><a href="../../symbols/StorageLocal.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-class"></i><span class="jsdoc-class-index">StorageLocal</span></span></a></li> <li><a href="../../symbols/String.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-namespace"></i><span class="jsdoc-class-index">String</span></span></a></li> <li><a href="../../symbols/_global_.html"><span class="indent" style="padding-left:0px;"><i class="icon-jsdoc icon-jsdoc-namespace"></i><span class="jsdoc-class-index">_global_</span></span></a></li> </ul> </div> <!-- end publish.classesIndex --> </div> <div id="content" class="span9"> <!-- ============================== source code ============================ --> <pre id="source-code" class="prettyprint linenums">/** * @preserve Copyright 2012 Martijn van de Rijdt * * 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. */ /*jslint browser:true, devel:true, jquery:true, smarttabs:true*//*global Modernizr, console:true*/ // CHANGE: it would be better to remove references to store and form in common.js // // Copyright 2012 Martijn van de Rijdt var /** @type {GUI}*/ gui; var /** @type {Print} */ printO; var DEFAULT_SETTINGS = {}; $(document).ready(function(){ "use strict"; gui = new GUI(); gui.init(); // avoid windows console errors if (typeof console == "undefined") {console = {log: function(){}};} if (typeof window.console.debug == "undefined") {console.debug = console.log;} if (getGetVariable('debug') !== 'true'){ window.console.log = function(){}; window.console.debug = function(){}; } //override Modernizr's detection (for development purposes) if (getGetVariable('touch') == 'true'){ Modernizr.touch = true; $('html').addClass('touch'); } else if (getGetVariable('touch') == 'false'){ Modernizr.touch = false; $('html').removeClass('touch'); } printO = new Print(); }); /** * Class GUI deals with the main GUI elements (but not the survey form) * @constructor */ function GUI(){ "use strict"; } /** * Initializes a GUI object. */ GUI.prototype.init = function(){ "use strict"; this.nav.setup(); this.pages().init(); this.setEventHandlers(); // setup additional 'custom' eventHandlers declared other js file if (typeof this.setCustomEventHandlers === 'function'){ this.setCustomEventHandlers(); } $('.dialog [title]').tooltip({}); // checking for support for specific fancy css3 visual stuff if (Modernizr.borderradius &amp;&amp; Modernizr.boxshadow &amp;&amp; Modernizr.csstransitions &amp;&amp; Modernizr.opacity){ $(document).trigger('browsersupport', 'fancy-visuals'); } $('footer').detach().appendTo('#container'); //this.nav.reset(); this.display(); }; /** * final setup of GUI object */ GUI.prototype.setup = function(){ "use strict"; $(window).trigger('resize'); }; /** * Sets the default (common) UI eventhandlers (extended in each class for custom handlers) */ GUI.prototype.setEventHandlers = function(){ "use strict"; var that=this; $(document).on('click', '#feedback-bar .close', function(event){ that.hideFeedback(); return false; }); $(document).on('click', '.touch #feedback-bar', function(event){ that.hideFeedback(); }); $(document).on('click', '#page .close', function(event){ that.pages().close(); return false; }); //$(document).on('click', '.touch #page', function(event){ // that.pages().close(); //}); // capture all internal links to navigation menu items (except the links in the navigation menu itself) $(document).on('click', 'a[href^="#"]:not([href="#"]):not(nav ul li a)', function(event){ var href = $(this).attr('href'); console.log('captured click to nav page, href='+href); //if href is not just an empty anchor it is an internal link and will trigger a navigation menu click if (href !== '#'){ event.preventDefault(); $('nav li a[href="'+href+'"]').click(); } }); // event handlers for navigation menu $('nav ul li a[href^="#"]') .click(function(event){ event.preventDefault(); var targetPage = $(this).attr('href').substr(1); that.pages().open(targetPage); $(this).closest('li').addClass('active'); //$(this).closest('li').addClass('nav-state-active');//.css('border-color', headerBorderColor); }); // handlers for status icons in header $(window).on('onlinestatuschange', function(e,online){ that.updateStatus.connection(online); }); $(document).on('edit', 'form.jr', function(event, status){ //console.log('gui updating edit status icon'); that.updateStatus.edit(status); }); $(document).on('browsersupport', function(e, supported){ that.updateStatus.support(supported); }); $('#page, #feedback-bar').on('change', function(){ that.display(); }); // more info on connection status after clicking icon //$('header #status-connection') // .click(function(event){ // that.showFeedback($(this).attr('title')); // event.stopPropagation(); //prevent closing of simultaneously shown page when clicking icon // //event.cancelBubble(); //IE // }); //move this when feedback bar is shown? //$(window).resize(function(){ // $('#container').css('top', $('header').outerHeight()); //}); }; GUI.prototype.nav = { setup : function(){ "use strict"; $('article.page').each(function(){ var display, title='', id, link; id=$(this).attr('id'); if ($(this).attr('data-display')){ display = $(this).attr('data-display'); } else display = id; if ($(this).attr('data-title')){ title = $(this).attr('data-title'); } else title = id; if ($(this).attr('data-ext-link')){ link = $(this).attr('data-ext-link'); } else link = '#'+id; $('&lt;li class=""&gt;&lt;a href="'+link+'" title="'+title+'" &gt;'+display+'&lt;/a&gt;&lt;/li&gt;') .appendTo($('nav ul')); }); }, reset : function(){ "use strict"; $('nav ul li').removeClass('active');//.css('border-color', headerBackgroundColor); //$('nav ul li a').css('color', buttonBackgroundColorDefault); } }; GUI.prototype.pages = function(){ "use strict"; this.init = function(){ //this.showing = false; this.$pages = $('&lt;pages&gt;&lt;/pages&gt;');// placeholder 'parent' element for the articles (pages) // detaching pages from DOM and storing them in the pages variable $('article.page').detach().appendTo(this.$pages);//.css('display','block'); }; this.get = function(name){ var $page = this.$pages.find('article[id="'+name+'"]');//.clone(true); //switch(name){ // case 'records': //_this.updateRecordList(page); // ?? Why does call with this.up.. not work? // break; // case 'settings': //} $page = ($page.length &gt; 0) ? $page : $('article[id="'+name+'"]'); return $page ; //} }; this.isShowing = function(name){ //no name means any page var idSelector = (typeof name !== 'undefined') ? '[id="'+name+'"]' : ''; return ( $('#page article.page'+idSelector).length &gt; 0 ); }; this.open = function(pg){ var $page; if (this.isShowing(pg)){ return; } $page = this.get(pg);//outsidePage; //console.debug('opening page '+pg); if ($page.length !== 1){ return console.error('page not found'); } if(this.isShowing()){ this.close(); } $('#page .content').prepend($page.show()).trigger('change'); //$('#overlay').show(); //for some reason, the scrollbar needs to be added after a short delay (default duration of show() maybe) //similarly adding the event handler needs to be done a delay otherwise it picks up an even(?) instantly //addScrollBar should be called each time page loads because record list will change /*setTimeout(function(){ $page.find('.scroll-list').addScrollBar(); $('#overlay, header').bind('click.pageEvents', function(){ //triggers a click of the page close button $('#page-close').trigger('click'); }); }, 50);*/ // if the page is visible as well as the feedbackbar the display() method should be called if the window is resized $(window).bind('resize.pageEvents', function(){ $('#page').trigger('change'); }); }; this.close = function(){ var $page; //console.log('closePage() triggered'); $page = $('#page .page').detach(); this.$pages.append($page); $('#page').trigger('change'); this.nav.reset(); $('#overlay').hide(); $('#overlay, header').unbind('.pageEvents'); $(window).unbind('.pageEvents'); }; return this; }; /** * Shows an unobtrusive feedback message to the user. * * @param {string} message * @param {number=} duration duration in seconds for the message to show */ GUI.prototype.showFeedback = function(message, duration){ "use strict"; var $msg, that = this; duration = (duration) ? duration * 1000 : 10 * 1000; // max 2 messages displayed $('#feedback-bar p').eq(1).remove(); // if an already shown message isn't exactly the same if($('#feedback-bar p').html() !== message){ $msg = $('&lt;p&gt;&lt;/p&gt;'); $msg.append(message); $('#feedback-bar').append($msg); } $('#feedback-bar').trigger('change'); // automatically remove feedback after a period setTimeout(function(){ if(typeof $msg !== 'undefined'){ $msg.remove(); } $('#feedback-bar').trigger('change'); }, duration); }; GUI.prototype.hideFeedback = function(){ "use strict"; $('#feedback-bar p').remove(); $('#feedback-bar').trigger('change'); }; /** * Shows a modal alert box with a message. * * @param {string} message * @param {string=} heading * @param {string=} level bootstrap css class */ GUI.prototype.alert = function(message, heading, level){ "use strict"; var closeFn, cls, $alert = $('#dialog-alert'); heading = heading || 'Alert'; level = level || 'error'; cls = (level === 'normal') ? '' : 'alert alert-block alert-'+level; //write content into alert dialog $alert.find('.modal-header h3').text(heading); $alert.find('.modal-body p').removeClass().addClass(cls).html(message).capitalizeStart(); $alert.modal({ keyboard: true, show: true }); $alert.on('hidden', function(){ $alert.find('.modal-header h3, .modal-body p').html(''); }); /* sample test code (for console): gui.alert('What did you just do???', 'Obtrusive alert dialog'); */ }; /** * Function: confirm * * description * * @param {?(Object.&lt;string, (string|boolean)&gt;|string)=} texts - In its simplest form this is just a string but it can * also an object with parameters msg, heading and errorMsg. * @param {Object=} choices - [type/description] */ GUI.prototype.confirm = function(texts, choices){ "use strict"; var msg, heading, errorMsg, closeFn, dialogName, $dialog; if (typeof texts === 'string'){ msg = texts; } else if (typeof texts.msg === 'string'){ msg = texts.msg; } msg = (typeof msg !== 'undefined') ? msg : 'Please confirm action'; heading = (typeof texts.heading !== 'undefined') ? texts.heading : 'Are you sure?'; errorMsg = (typeof texts.errorMsg !== 'undefined') ? texts.errorMsg : ''; dialogName = (typeof texts.dialog !== 'undefined') ? texts.dialog : 'confirm'; choices = (typeof choices !== 'undefined') ? choices : {}; choices.posButton = choices.posButton || 'Confirm'; choices.negButton = choices.negButton || 'Cancel'; choices.posAction = choices.posAction || function(){return false;}; choices.negAction = choices.negAction || function(){return false;}; choices.beforeAction = choices.beforeAction || function(){}; $dialog = $('#dialog-'+dialogName); //write content into confirmation dialog $dialog.find('.modal-header h3').text(heading); $dialog.find('.modal-body .msg').html(msg).capitalizeStart(); $dialog.find('.modal-body .alert-error').html(errorMsg); //instantiate dialog $dialog.modal({ keyboard: true, show: true }); //set eventhanders $dialog.on('shown', function(){ choices.beforeAction.call(); }); $dialog.find('button.positive').on('click', function(){ choices.posAction.call(); $dialog.modal('hide'); }).text(choices.posButton); $dialog.find('button.negative').on('click', function(){ choices.negAction.call(); $dialog.modal('hide'); }).text(choices.negButton); $dialog.on('hide', function(){ //remove eventhandlers $dialog.off('shown hidden hide'); $dialog.find('button.positive, button.negative').off('click'); }); $dialog.on('hidden', function(){ $dialog.find('.modal-body .msg, .modal-body .alert-error, button').text(''); //console.debug('dialog destroyed'); }); /* sample test code (for console): gui.confirm({ msg: 'This is an obtrusive confirmation dialog asking you to make a decision', heading: 'Please confirm this action', errorMsg: 'Oh man, you messed up big time!' },{ posButton: 'Confirmeer', negButton: 'Annuleer', posAction: function(){console.log('you just did something positive!')}, negAction: function(){console.log('you did something negative')}, beforeAction: function(){console.log('doing some preparatory work')} }) gui.confirm('confirm this please'); */ }; /** * Updates various statuses in the GUI (connection, form-edited, browsersupport) * * @type {Object} */ GUI.prototype.updateStatus = { connection : function(online) { "use strict"; console.log('updating online status in menu bar to:'); console.log(online); if (online === true) { $('header #status-connection').removeClass().addClass('ui-icon ui-icon-signal-diag') .attr('title', 'It appears there is currently an Internet connection available.'); $('.drawer #status').removeClass('offline waiting').text(''); } else if (online === false) { $('header #status-connection').removeClass().addClass('ui-icon ui-icon-cancel') .attr('title', 'It appears there is currently no Internet connection'); $('.drawer #status').removeClass('waiting').addClass('offline').text('Offline. '); } else{ $('.drawer #status').removeClass('offline').addClass('waiting').text('Waiting. '); } }, edit : function(editing){ "use strict"; if (editing) { $('header #status-editing').removeClass().addClass('ui-icon ui-icon-pencil') .attr('title', 'Form is being edited.'); } else { $('header #status-editing').removeClass().attr('title', ''); } }, support : function(supported){}, offlineLaunch: function(offlineCapable){ var status = (offlineCapable) ? 'Offline Launch: Yes' : 'Offline Launch: No'; $('.drawer #status-offline-launch').text(status); } }; /** * Makes sure sliders that reveal the feedback bar and page have the correct css 'top' property */ GUI.prototype.display = function(){ "use strict"; //console.log('display() called'); var feedbackTop, pageTop, $header = $('header'), $feedback = $('#feedback-bar'), $page = $('#page'); //the below can probably be simplified, is the this.page().isVisible check necessary at all? if ($feedback.find('p').length &gt; 0){ feedbackTop = ($header.css('position') === 'fixed') ? $header.outerHeight() : 0; // shows feedback-bar if (this.pages().isShowing()){ pageTop = $header.outerHeight() + $feedback.outerHeight(); // shows page } else{ pageTop = 0 - $page.outerHeight(); // hides page } } else{ feedbackTop = ($header.css('position') === 'fixed') ? $header.outerHeight() - $feedback.outerHeight() : 0 - $feedback.outerHeight(); if (this.pages().isShowing()){ pageTop = $header.outerHeight(); // shows page } else{ pageTop = 0 - $page.outerHeight(); } } $feedback.css('top', feedbackTop); $page.css('top', pageTop); }; /** * Updates the settings in the GUI and triggers change events (used when app launches) that are handled in customEventHandlers. * It is generic and could be used for any kind of radio or checkbox settings. * * @param {Object.&lt;string, (boolean|string)&gt;} settings [description] * */ GUI.prototype.setSettings = function(settings){ "use strict"; var $input, that = this; console.log('gui updateSettings() started'); //DEBUG $.each(settings, function(key, value){ //iterate through each item in object //console.log('key:'+key+' value:'+value);// DEBUG $input = (value) ? that.pages().get('settings').find('input[name="'+key+'"][value="'+value+'"]') : that.pages().get('settings').find('input[name="'+key+'"]'); value = (value) ? true : false; if ($input.length &gt; 0){ //could change this to only trigger change event if value is changed but not so important $input.attr('checked', value).trigger('change'); } }); }; /** * Parses a list of forms * @param {?*} list array of object with form information * @param { jQuery } $target jQuery-wrapped target node with a &lt;ul&gt; element as child to append formlist to */ GUI.prototype.parseFormlist = function(list, $target){ var i, listHTML=''; if(!$.isEmptyObject(list)){ for (i in list){ listHTML += '&lt;li&gt;&lt;a class="btn btn-block btn-info" id="'+i+'" title="'+list[i].title+'" '+ 'href="'+list[i].url+'" data-server="'+list[i].server+'" &gt;'+list[i].name+'&lt;/a&gt;&lt;/li&gt;'; } } else{ listHTML = '&lt;p class="alert alert-error"&gt;Error occurred during creation of form list or no forms found&lt;/p&gt;'; } $target.removeClass('empty').find('ul').empty().append(listHTML); //$('#form-list').show(); }; function getGetVariable(variable) { "use strict"; var query = window.location.search.substring(1); var vars = query.split("&amp;"); for (var i = 0; i &lt; vars.length; i++) { var pair = vars[i].split("="); if (pair[0] == variable) { return encodeURI(pair[1]);// URLs are case senstive!.toLowerCase(); } } return false; } /** * Class dealing with printing * @constructor */ function Print(){ "use strict"; //var mpl, // that = this; this.setStyleSheet(); //IE, FF, the 'proper' way: if (typeof window.onbeforeprint !== 'undefined'){ $(window).on('beforeprint', this.printForm); } //Chrome, Safari, Opera: (this approach has problems) //else { // mpl = window.matchMedia('print'); // mpl.addListener(function(mql){ // if (mql.matches &amp;&amp; !that.ongoing){ // that.ongoing = true; // that.printForm(); // that.ongoing = false; // } // return false; // }); //} } Print.prototype.setStyleSheet = function(){ this.styleSheet = this.getStyleSheet(); this.$styleSheetLink = $('link[media="print"]:eq(0)'); }; Print.prototype.getStyleSheet = function(){ for (var i = 0 ; i &lt; document.styleSheets.length ; i++){ if (document.styleSheets[i].media.mediaText === 'print'){ return document.styleSheets[i]; } } return null; }; Print.prototype.styleToAll = function (){ //sometimes, setStylesheet fails upon loading if (!this.styleSheet) this.setStyleSheet(); //Chrome: this.styleSheet.media.mediaText = 'all'; //Firefox: this.$styleSheetLink.attr('media', 'all'); }; Print.prototype.styleReset = function(){ this.styleSheet.media.mediaText = 'print'; this.$styleSheetLink.attr('media', 'print'); }; Print.prototype.printForm = function(){ console.debug('preparing form for printing'); this.styleToAll(); this.addPageBreaks(); this.styleReset(); window.print(); }; Print.prototype.addPageBreaks = function(){ // add Alex' code }; (function($){ "use strict"; // give a set of elements the same (longest) width $.fn.toLargestWidth = function(){ var largestWidth = 0; return this.each(function(){ if ($(this).width() &gt; largestWidth) { largestWidth = $(this).width(); } }).each(function(){ $(this).width(largestWidth); }); }; $.fn.toSmallestWidth = function(){ var smallestWidth = 2000; return this.each(function(){ console.log($(this).width()); if ($(this).width() &lt; smallestWidth) { smallestWidth = $(this).width(); } }).each(function(){ $(this).width(smallestWidth); }); }; //reverse jQuery collection $.fn.reverse = [].reverse; // Alphanumeric plugin for form input elements see http://www.itgroup.com.ph/alphanumeric/ $.fn.alphanumeric = function(p) { p = $.extend({ ichars: "!@#$%^&amp;*()+=[]\\\';,/{}|\":&lt;&gt;?~`.- ", nchars: "", allow: "" }, p); return this.each ( function() { if (p.nocaps) p.nchars += "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; if (p.allcaps) p.nchars += "abcdefghijklmnopqrstuvwxyz"; var s = p.allow.split(''); for (var i=0;i&lt;s.length;i++) if (p.ichars.indexOf(s[i]) != -1) s[i] = "\\" + s[i]; p.allow = s.join('|'); var reg = new RegExp(p.allow,'gi'); var ch = p.ichars + p.nchars; ch = ch.replace(reg,''); $(this).keypress ( function (e) { var k; if (!e.charCode) k = String.fromCharCode(e.which); else k = String.fromCharCode(e.charCode); if (ch.indexOf(k) != -1) e.preventDefault(); if (e.ctrlKey&amp;&amp;k=='v') e.preventDefault(); } ); $(this).bind('contextmenu',function () {return false;}); } ); }; $.fn.numeric = function(p) { var az = "abcdefghijklmnopqrstuvwxyz"; az += az.toUpperCase(); p = $.extend({ nchars: az }, p); return this.each (function() { $(this).alphanumeric(p); } ); }; $.fn.alpha = function(p) { var nm = "1234567890"; p = $.extend({ nchars: nm }, p); return this.each (function() { $(this).alphanumeric(p); } ); }; // plugin to select the first word(s) of a string and capitalize it $.fn.capitalizeStart = function (numWords) { if(!numWords){ numWords = 1; } var node = this.contents().filter(function () { return this.nodeType == 3; }).first(), text = node.text(), first = text.split(" ", numWords).join(" "); if (!node.length) return; node[0].nodeValue = text.slice(first.length); node.before('&lt;span class="capitalize"&gt;' + first + '&lt;/span&gt;'); }; })(jQuery); </pre> </div> </div> <!-- ============================== footer ================================= --> <footer class="footer"> <p>Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blankt">JsDoc Toolkit</a> 2.4.0 on Fri Dec 07 2012 17:49:17 GMT-0700 (MST)</p> </footer> </div> <script type="text/javascript"> prettyPrint(); var i = 1; $('#source-code li').each(function() { $(this).attr({ id: 'line' + (i++) }); }); </script> </body> </html>
makinacorpus/enketo
devinfo/jsdocs/symbols/src/src_js___common.js.html
HTML
apache-2.0
27,319
<!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_71) on Sat May 02 15:29:56 CST 2015 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>edu.xhu.compare</title> <meta name="date" content="2015-05-02"> <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="edu.xhu.compare"; } //--> </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 class="navBarCell1Rev">程序包</li> <li>类</li> <li><a href="package-use.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="../../../edu/xhu/compile/package-summary.html">下一个程序包</a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?edu/xhu/compare/package-summary.html" target="_top">框架</a></li> <li><a href="package-summary.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> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="程序包" class="title">程序包&nbsp;edu.xhu.compare</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="类概要表, 列表类和解释"> <caption><span>类概要</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">类</th> <th class="colLast" scope="col">说明</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../edu/xhu/compare/JudgeCompare.html" title="edu.xhu.compare中的类">JudgeCompare</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../edu/xhu/compare/SimpleCompare.html" title="edu.xhu.compare中的类">SimpleCompare</a></td> <td class="colLast">&nbsp;</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="跳过导航链接"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="../../../overview-summary.html">概览</a></li> <li class="navBarCell1Rev">程序包</li> <li>类</li> <li><a href="package-use.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="../../../edu/xhu/compile/package-summary.html">下一个程序包</a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?edu/xhu/compare/package-summary.html" target="_top">框架</a></li> <li><a href="package-summary.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> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
trayvontang/xhuoj
oj/doc/edu/xhu/compare/package-summary.html
HTML
apache-2.0
4,597
<!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 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>com.google.code.play2.spm.routes Class Hierarchy (Play! 2.x Source Position Mappers 1.0.0-rc1 API)</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="com.google.code.play2.spm.routes Class Hierarchy (Play! 2.x Source Position Mappers 1.0.0-rc1 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>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../com/google/code/play2/spm/package-tree.html">Prev</a></li> <li><a href="../../../../../../com/google/code/play2/spm/template/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/google/code/play2/spm/routes/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">Hierarchy For Package com.google.code.play2.spm.routes</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.<a href="http://docs.oracle.com/javase/1.6.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a> <ul> <li type="circle">com.google.code.play2.spm.<a href="../../../../../../com/google/code/play2/spm/AbstractPlay2SourcePositionMapper.html" title="class in com.google.code.play2.spm"><span class="typeNameLink">AbstractPlay2SourcePositionMapper</span></a> (implements com.google.code.sbt.compiler.api.<a href="http://sbt-compiler-maven-plugin.github.io/sbt-compiler-maven-plugin/1.0.0/sbt-compiler-api/apidocs/com/google/code/sbt/compiler/api/SourcePositionMapper.html?is-external=true" title="class or interface in com.google.code.sbt.compiler.api">SourcePositionMapper</a>) <ul> <li type="circle">com.google.code.play2.spm.routes.<a href="../../../../../../com/google/code/play2/spm/routes/Play2RoutesSourcePositionMapper.html" title="class in com.google.code.play2.spm.routes"><span class="typeNameLink">Play2RoutesSourcePositionMapper</span></a></li> </ul> </li> <li type="circle">com.google.code.play2.spm.routes.<a href="../../../../../../com/google/code/play2/spm/routes/Play2RoutesSourcePosition.html" title="class in com.google.code.play2.spm.routes"><span class="typeNameLink">Play2RoutesSourcePosition</span></a> (implements com.google.code.sbt.compiler.api.<a href="http://sbt-compiler-maven-plugin.github.io/sbt-compiler-maven-plugin/1.0.0/sbt-compiler-api/apidocs/com/google/code/sbt/compiler/api/SourcePosition.html?is-external=true" title="class or interface in com.google.code.sbt.compiler.api">SourcePosition</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>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../com/google/code/play2/spm/package-tree.html">Prev</a></li> <li><a href="../../../../../../com/google/code/play2/spm/template/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/google/code/play2/spm/routes/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2013&#x2013;2017. All rights reserved.</small></p> </body> </html>
play2-maven-plugin/play2-maven-plugin.github.io
play2-maven-plugin/1.0.0-rc1/play2-source-position-mappers/apidocs/com/google/code/play2/spm/routes/package-tree.html
HTML
apache-2.0
6,373
<!DOCTYPE html> <html> <head> <title>Online Complain</title> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> <link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css"> <script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script> <style type="text/css"> img { position: absolute; } #p { position: relative; margin-top: 75px; border: 4px solid black; margin-right:750px; margin-left: 100px; background-color: transparent; color: blue; opacity: 0.9; font: courier; } #p p { margin-left: 85px; } #p button { margin-left: 85px; } .mdl-textfield { margin-left: 85px; } #push { position: relative; margin-top: 55px; margin-right:750px; margin-left: 100px; background-color: transparent; color: blue; font-size: 30px; opacity: 0.9; } #mai { position: relative; margin-top: 75px; margin-right:750px; margin-left: 100px; background-color: transparent; color: blue; } #pop { position: relative; margin-top: 75px; margin-right:750px; margin-left: 100px; background-color: transparent; color: blue; } </style> </head> <body> <div class="mdl-layout mdl-js-layout"> <header class="mdl-layout__header mdl-layout__header--scroll"> <div class="mdl-layout__header-row"> <span class="mdl-layout-title" style="font-size: 30px;">Online Complain Site</span> <div class="mdl-layout-spacer"></div> <nav class="mdl-navigation"> <a class="mdl-navigation__link" id="link2" style="display: none;" onclick="see()">See Complains</a> <a class="mdl-navigation__link" id="link3" style="display: none;" href="">SignOut</a> </nav> </div> </header> <div> <img style="height: 608px; width: 1350px; opacity: 0.5;" src="train3.jpg"> <div id="p"> <br><br><p>Username : <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label"> <input class="mdl-textfield__input" type="text" id="un" autocomplete="off"> <label class="mdl-textfield__label" for="un">Username...</label></div><br><br> <p>Password : </p><div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label"> <input class="mdl-textfield__input" type="password" id="pw"> <label class="mdl-textfield__label" for="pw">Password...</label></div></p><br> <button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" onclick="login()">LogIn</button> <button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" onclick="sbtn()">SignUp</button><br><br><br> </div> <div id="push" style="display: none;"> <h4> Your Complain Here : </h4><textarea id="text" rows="25" cols="75"></textarea><br><br><br> <button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" onclick="sbtdata()">Submit</button> </div> <div id="mai" style="display: none;"> <h4> You might be thinking there are so many complain sites which works like this and also goverment sites which registers your complain. But one key thing betwwn those sites and this is on those sites nothing comes up even as you report 2 or 3 times. But here everything will be listen because every one can now see problems in the train and goverment has to do somathing about it.</h4> </div> <div id="pop" style="display: none;"> <table border="1" style="color:blue;"> <thead> <tr> <td>UserID</td> <td>PNR</td> <td>Category</td> <td>Complain</td> </tr> </thead> <tbody id="table1"> </tbody> </table> <button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" onclick="tf()" id="btn">SHOW COMPLAINS</button> </div> </div> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="https://www.gstatic.com/firebasejs/4.1.3/firebase.js"></script> <script> // Initialize Firebase var config = { apiKey: "AIzaSyCKgPwaAhG9hlSYsIvQ-O_IJZ-cArYT5UU", authDomain: "website-60d93.firebaseapp.com", databaseURL: "https://website-60d93.firebaseio.com", projectId: "website-60d93", storageBucket: "website-60d93.appspot.com", messagingSenderId: "123116158626" }; firebase.initializeApp(config); </script> <script type="text/javascript"> var user = firebase.auth(); var usr = document.getElementById('un').value; var pwd = document.getElementById('pw').value; function sbtn() { user.createUserWithEmailAndPassword(usr,pwd) .then( function (user) { alert("Account Created."); }) .catch( function (err) { alert(err.message); }); } function login() { var usr = document.getElementById('un').value; var pwd = document.getElementById('pw').value; user.signInWithEmailAndPassword(usr,pwd) .then(function (currentUser) { document.getElementById("link1").style.display = "block"; document.getElementById("link2").style.display = "block"; document.getElementById("link3").style.display = "block"; document.getElementById("p").style.display = "none"; document.getElementById("mai").style.display = "block"; }) .catch(function (err) { alert(err.message); }); } function complain() { /*const messaging = firebase.messaging(); messaging.requestPermission() .then(function() { console.log('Notification permission granted.'); // TODO(developer): Retrieve an Instance ID token for use with FCM. // ... }) .catch(function(err) { console.log('Unable to get permission to notify.', err); }); messaging.onTokenRefresh(function() { messaging.getToken() .then(function(refreshedToken) { console.log('Token refreshed.'); // Indicate that the new Instance ID token has not yet been sent to the // app server. setTokenSentToServer(false); // Send Instance ID token to app server. sendTokenToServer(refreshedToken); // ... }) .catch(function(err) { console.log('Unable to retrieve refreshed token ', err); showToken('Unable to retrieve refreshed token ', err); }); }); */ alert("no longer exist") ; } function see() { document.getElementById("push").style.display = "none"; document.getElementById("mai").style.display = "none"; document.getElementById("pop").style.display = "block"; } function sbtdata() { var returnData = document.getElementById("text").value; var firebaseData = firebase.database().ref(); firebaseData.push().set(returnData); document.getElementById("text").value = ""; alert("Your Complain is sent and we will try to look forward to it as soon as possible."); } function tf() { firebase.database().ref().child("complaints").on('child_added', snapshot => { var pnr = snapshot.child("pnr").val(); var userid = snapshot.child("userId").val(); var complain = snapshot.child("complain").val(); var category =snapshot.child("category").val(); //document.getElementById("popdata").value = document.getElementById("popdata").value + "\n" + (document.getElementById("popdata").value = pnr) + "-" + (document.getElementById("popdata").value = userid);; $("table").append("<tr><td>" + userid +"</td><td>" + pnr +"</td><td>" + category +"</td><td>" + complain +"</td></tr>"); document.getElementById("btn").style.display = "none"; }); } </script> </body> </html>
kashyap836/Web_Development
Pune_Hackathon/index.html
HTML
apache-2.0
7,869
<!DOCTYPE html> <!-- saved from url=(0051)http://getbootstrap.com/examples/navbar-static-top/ --> <html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <meta name="description" content=""> <meta name="author" content=""> <link rel="shortcut icon" type="#" href="#" /> <title>NCCUCY_CONFERENCE</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> <link rel="stylesheet" href="main.css"> <!-- Bootstrap core CSS --> <link href="./Static Top Navbar Example for Bootstrap_files/bootstrap.min.css" rel="stylesheet"> <link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet"> <!-- <link rel="stylesheet" href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/bootstrap.css"> --> <!-- Custom styles for this template --> <link href="./Static Top Navbar Example for Bootstrap_files/navbar-static-top.css" rel="stylesheet"> <!-- Just for debugging purposes. Don't actually copy these 2 lines! --> <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]--> <script src="./Static Top Navbar Example for Bootstrap_files/ie-emulation-modes-warning.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script type="text/javascript" src="http://www.parsecdn.com/js/parse-1.4.2.min.js"></script> <link href="css/ihover.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> <script> $(document).ready(function(){ /* 顯示登入者名稱,避免未登入者進入此頁面*/ var current_user = Parse.User.current(); if(!current_user){ alert("未登入,轉至登入頁面進行登入!"); window.location = 'nccucy.html'; return null; } // var username = current_user.get('username'); // var userrole = current_user.get('role'); // $('#name').text(username); // $('#role').text(userrole); //提示 1 : 可用轉址的方式,讓未登入的使用者轉址到 logIn.html //提示 2 : 請在 <span id="name" > 中顯示使用者名稱,在 <span id="role">中顯示角色 }); </script> </head> <body> <!-- Static navbar --> <nav class="navbar navbar-default navbar-static-top"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#"><i class="fa fa-university"></i> NCCUCY</a> </div> <div id="navbar" class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li><a href="nccucy_personal.html"><i class="fa fa-home"></i> Home </a></li> <li class="active"><a href="#"><i class="fa fa-file-text"></i> Conference</a></li> <li><a href="nccucy_Talking.html"><i class="fa fa-comments-o"></i> Talking</a></li> <!-- <li class="dropdown"> <a href="http://getbootstrap.com/examples/navbar-static-top/#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="http://getbootstrap.com/examples/navbar-static-top/#">Action</a></li> <li><a href="http://getbootstrap.com/examples/navbar-static-top/#">Another action</a></li> <li><a href="http://getbootstrap.com/examples/navbar-static-top/#">Something else here</a></li> <li role="separator" class="divider"></li> <li class="dropdown-header">Nav header</li> <li><a href="http://getbootstrap.com/examples/navbar-static-top/#">Separated link</a></li> <li><a href="http://getbootstrap.com/examples/navbar-static-top/#">One more separated link</a></li> </ul> </li> --> </ul> <!-- <ul class="nav navbar-nav navbar-right"> <li><a href="http://getbootstrap.com/examples/navbar/">Default</a></li> <li class="active"><a href="./Static Top Navbar Example for Bootstrap_files/Static Top Navbar Example for Bootstrap.html">Static top <span class="sr-only">(current)</span></a></li> <li><a href="http://getbootstrap.com/examples/navbar-static-top/">Fixed top</a></li> </ul> --> </div><!--/.nav-collapse --> </div> </nav> <div class="jumbotron"> <div class="container"> <!-- Main component for a primary marketing message or call to action --> </div> <!-- /container --> </div> <div class="neighborhood-guides"> <div class="container"> <h2><i class="fa fa-thumbs-o-up"></i> Many Actitvity</h2> <p>這裡有著之前學長姊留下的檢討報告等等的,讓學弟妹可以看看可能遇到甚麼問題,怎麼做會更好。</p> <!-- Left to right--> <div class="row"> <div class="col-sm-4"> <!-- normal --> <div class="ih-item circle effect2 left_to_right"><a href="Confer/wel_tlsh.html"> <div class="img"><img src="http://goo.gl/pDZRFY" alt="img"></div> <div class="info"> <h3>迎新</h3> <p>在斗六高中</p> </div></a></div> <!-- end normal --> </div> <div class="col-sm-4"> <!-- colored --> <div class="ih-item circle effect2 left_to_right"><a href="#"> <div class="img"><img src="http://goo.gl/OyrUPt" alt="img"></div> <div class="info"> <h3>初體驗</h3> <p>迎新宿營給學弟妹第一個嘉雲印象</p> </div></a></div> <!-- end colored --> </div> <div class="col-sm-4"> <!-- colored --> <div class="ih-item circle effect2 left_to_right"><a href="#"> <div class="img"><img src="http://goo.gl/wKJuHb" alt="img"></div> <div class="info"> <h3>期初大會</h3> <p>該審預算呀</p> </div></a></div> <!-- end colored --> </div> </div> <div class="row"> <div class="col-sm-4"> <!-- colored --> <div class="ih-item circle effect2 left_to_right"><a href="#"> <div class="img"><img src="http://goo.gl/QY7Oia" alt="img"></div> <div class="info"> <h3>偶要當歌手</h3> <p>到台視看東看西</p> </div></a></div> <!-- end colored --> </div> <div class="col-sm-4"> <!-- colored --> <div class="ih-item circle effect2 left_to_right"><a href="#"> <div class="img"><img src="http://goo.gl/fZ5Fs4" alt="img"></div> <div class="info"> <h3>會遊</h3> <p>出去玩好開勳</p> </div></a></div> <!-- end colored --> </div> <div class="col-sm-4"> <!-- colored --> <div class="ih-item circle effect2 left_to_right"><a href="#"> <div class="img"><img src="http://goo.gl/P8YwYC" alt="img"></div> <div class="info"> <h3>嘉雲之夜</h3> <p>看看我們怎麼耍寶</p> </div></a></div> <!-- end colored --> </div> </div> <!-- end Left to right--> <!-- <div class="row"> <div class="col-md-4"> <div> <h4>Welcome in Tou-liu Senior High School</h4> </div> <div class="thumbnail"> <img src="http://goo.gl/pDZRFY" > </div> </div> <div class="col-md-4"> <h4>Summer Camp at Sikou Elementary School</h4> <div class="thumbnail"> <img src="http://goo.gl/Jp22g6" > </div> </div> <div class="col-md-4"> <h4>We are NCCUCY</h4> <div class="thumbnail"> <img src="http://goo.gl/haieXV" > </div> </div> </div> --> </div> </div> <div class="learn-more"> <div class="container"> <h2><i class="fa fa-desktop"></i> You can also see here.</h2> <h4><a href="http://bbs.cs.nccu.edu.tw/brd?S_chiayun"> the chiayun bbs</a></h4> </div> </div> <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <script src="./Static Top Navbar Example for Bootstrap_files/jquery.min.js"></script> <script src="./Static Top Navbar Example for Bootstrap_files/bootstrap.min.js"></script> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="./Static Top Navbar Example for Bootstrap_files/ie10-viewport-bug-workaround.js"></script> </body></html>
suwenyu/NCCUCY
NCCUCY_Conference.html
HTML
apache-2.0
10,384