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 |
|---|---|---|---|---|---|
$def with (title, me)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:bibo="http://purl.org/ontology/bibo/"
xmlns:skos="http://www.w3.org/2004/02/skos/core#">
<head profile="http://www.w3.org/2003/g/data-view">
<title>$me.name | $title</title>
</head>
<body>
<div id="content">
<h1 class="title">$me.name</h1>
</div>
</body>
</html>
| bdarcus/mysite | templates/index.html | HTML | mit | 662 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tlc: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- 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.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">dev / tlc - 20180316</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
tlc
<small>
20180316
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-10-27 02:59:51 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-27 02:59:51 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq dev Formal proof management system
dune 2.9.1 Fast, portable, and opinionated build system
ocaml 4.12.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.0 Official release 4.12.0
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "francois.pottier@inria.fr"
authors: [
"Arthur Charguéraud <arthur.chargueraud@inria.fr>"
]
homepage: "https://gitlab.inria.fr/charguer/tlc"
dev-repo: "git+https://gitlab.inria.fr/charguer/tlc.git"
bug-reports: "tlc-users@lists.gforge.inria.fr"
license: "CeCILL-B"
build: [
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
remove: [
[make "uninstall"]
]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.10~"}
]
synopsis: "A general-purpose alternative to Coq's standard library"
description: """
TLC relies on the axioms of functional extensionality, propositional
extensionality, and indefinite description (also known as Hilbert's epsilon
operator). The consequences of these axioms include the law of the excluded
middle as well as proof irrelevance. Accepting these axioms often makes life
significantly simpler.
TLC takes advantage of Coq's type class mechanism. In particular, this allows
for common operators and lemma names for all container data structures and all
order relations.
TLC includes the optimal fixed point combinator, which allows
arbitrarily-complex recursive and co-recursive definitions.
TLC provides a collection of tactics that enhance the default tactics provided
by Coq. These tactics help construct more concise and more robust proof
scripts."""
url {
src: "http://tlc.gforge.inria.fr/releases/tlc-20180316.tar.gz"
checksum: "md5=713dec115afe2e305d7745bb7649d379"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-tlc.20180316 coq.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is dev).
The following dependencies couldn't be met:
- coq-tlc -> coq < 8.10~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-tlc.20180316</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.12.0-2.0.8/extra-dev/dev/tlc/20180316.html | HTML | mit | 7,559 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Variable +searchd-warning+</title><link rel="stylesheet" type="text/css" href="../index.css"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head><body><div id="header"><table cellspacing="0" cellpadding="0" width="100%"><tr><td valign="center">
<b> Common Lisp Sphinx Search API</b></td><td valign="center" align="right"><b>API documentation</b></td></tr></table></div><div class="main"><div class="padded"><p class="noindent">
Package:
<a href="cl-sphinx-search.html">cl-sphinx-search</a></p><h2 class="page-title">
Variable
+searchd-warning+</h2><p style="color: red; font-weight: bold">
No documentation string. Possibly unimplemented or incomplete.
</p></div></div></body></html> | thijs/cl-sphinx-search | doc/pages/cl-sphinx-search__variable__+searchd-warning+.html | HTML | mit | 925 |
<!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 Fri Aug 08 16:33:34 PDT 2014 -->
<title>Uses of Package j3dio.ply</title>
<meta name="date" content="2014-08-08">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package j3dio.ply";
}
//-->
</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?j3dio/ply/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 j3dio.ply" class="title">Uses of Package<br>j3dio.ply</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="../../j3dio/ply/package-summary.html">j3dio.ply</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#j3dio.ply">j3dio.ply</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#j3dio.ply.element">j3dio.ply.element</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="j3dio.ply">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../j3dio/ply/package-summary.html">j3dio.ply</a> used by <a href="../../j3dio/ply/package-summary.html">j3dio.ply</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../j3dio/ply/class-use/ElementInstance.html#j3dio.ply">ElementInstance</a> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../j3dio/ply/class-use/PlyModel.Format.html#j3dio.ply">PlyModel.Format</a> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="j3dio.ply.element">
<!-- -->
</a>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../j3dio/ply/package-summary.html">j3dio.ply</a> used by <a href="../../j3dio/ply/element/package-summary.html">j3dio.ply.element</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../j3dio/ply/class-use/ElementInstance.html#j3dio.ply.element">ElementInstance</a> </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?j3dio/ply/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>
| FracturedRetina/FracturedRetina.github.io | j3dio/doc/doc_v4.2-beta/j3dio/ply/package-use.html | HTML | mit | 5,707 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Array</title>
</head>
<body>
<script>
// empty array
// 重置Array有时候很有必要,尤其是在循环的时候。曾经遇到过一个数组里的值都被最后一个值覆盖的问题
// narrativeLineOfField72Nodes = [];
A1 = [1, 2, 3];
A2 = [1, 2, 3];
// method 1
A1 = [];
// method2
A2.length = 0;
console.log(A1);
console.log(A2);
</script>
</body>
</html> | loveingenioustech/demo | web-demo/src/main/webapp/pages/jsdemo/ArrayDemo.html | HTML | mit | 495 |
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Provide — Miruken documentation</title>
<link rel="stylesheet" href="../../../../../_static/css/theme.css" type="text/css" />
<link rel="index" title="Index"
href="../../../../../genindex.html"/>
<link rel="search" title="Search" href="../../../../../search.html"/>
<link rel="top" title="Miruken documentation" href="../../../../../index.html"/>
<link rel="up" title="Miruken-DotNet" href="../../index.html"/>
<link rel="next" title="Promise" href="promise.html"/>
<link rel="prev" title="Handler" href="handler.html"/>
<script src="../../../../../_static/js/modernizr.min.js"></script>
</head>
<body class="wy-body-for-nav" role="document">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search">
<a href="../../../../../index.html" class="icon icon-home"> Miruken
</a>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="../../../../../search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
<p class="caption"><span class="caption-text">Documentation</span></p>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="../../../../../miruken/Specification/doc/index.html">Specification</a><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../../../miruken/Specification/doc/article/en-US/ConceptsAndFeatures.html">Concepts And Features</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../miruken/Specification/doc/article/en-US/Context.html">Context</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../miruken/Specification/doc/article/en-US/Controller.html">Controller</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../miruken/Specification/doc/article/en-US/Handler.html">Handler</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../miruken/Specification/doc/article/en-US/Protocol.html">Protocol</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../miruken/Specification/doc/article/en-US/ViewRegion.html">ViewRegion</a></li>
</ul>
</li>
<li class="toctree-l1 current"><a class="reference internal" href="../../../../index.html">DotNet</a><ul class="current">
<li class="toctree-l2 current"><a class="reference internal" href="../../index.html">Miruken-DotNet</a><ul class="current">
<li class="toctree-l3"><a class="reference internal" href="protocol.html">Protocol</a></li>
<li class="toctree-l3"><a class="reference internal" href="context.html">Context</a></li>
<li class="toctree-l3"><a class="reference internal" href="handler.html">Handler</a></li>
<li class="toctree-l3 current"><a class="current reference internal" href="#">Provide</a></li>
<li class="toctree-l3"><a class="reference internal" href="promise.html">Promise</a></li>
<li class="toctree-l3"><a class="reference internal" href="configuration/index.html">Configuration</a><ul>
<li class="toctree-l4"><a class="reference internal" href="configuration/configuringCastleWindsor.html">Configuring Castle Windsor</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="../../../../Miruken.Mediate/Doc/index.html">Miruken.Mediate</a><ul>
<li class="toctree-l3"><a class="reference internal" href="../../../../Miruken.Mediate/Doc/article/en-US/overview.html">Overview</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../Miruken.Mediate/Doc/article/en-US/requestAndResponse.html">Request And Response</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../Miruken.Mediate/Doc/article/en-US/handler.html">Handler</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../Miruken.Mediate/Doc/article/en-US/send.html">Send</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../Miruken.Mediate/Doc/article/en-US/publish.html">Publish</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../Miruken.Mediate/Doc/article/en-US/pipeline.html">Pipeline</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../Miruken.Mediate/Doc/article/en-US/validation.html">Validation</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../Miruken.Mediate/Doc/article/en-US/outline.html">Outline</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../Miruken.Mediate/Doc/article/en-US/configuringCastleWindsor.html">Configuring Castle Windsor</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../Miruken.Mediate/Doc/article/en-US/inspiration.html">Inspiration</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="../../../../Miruken.Mvc/Doc/index.html">Miruken Mvc</a><ul>
<li class="toctree-l3"><a class="reference internal" href="../../../../Miruken.Mvc/Doc/article/en-US/about.html">About</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="../../../../SymbolDownloader/Doc/index.html">Symbol Downloader</a><ul>
<li class="toctree-l3"><a class="reference internal" href="../../../../SymbolDownloader/Doc/article/en-US/install.html">Install</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../SymbolDownloader/Doc/article/en-US/visualStudio.html">Visual Studio</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../SymbolDownloader/Doc/article/en-US/usage.html">Usage</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../SymbolDownloader/Doc/article/en-US/configuration.html">Configuration</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../SymbolDownloader/Doc/article/en-US/teamCity.html">Team City</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../../../../../miruken-es5/index.html">ES5</a><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/whereCanIGetMiruken.html">Where Can I Get Miruken-ES5?</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/miruken/index.html">Miruken</a><ul>
<li class="toctree-l3"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/miruken/objects.html">Objects</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/miruken/packages.html">Packages</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/miruken/protocol.html">Protocol</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/miruken/callbackHandlers.html">Callback Handlers</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/miruken/context.html">Context</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/miruken/delegate.html">Delegates</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/mvc/index.html">MVC</a><ul>
<li class="toctree-l3"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/mvc/controller.html">Controller</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/angular/index.html">Angular</a><ul>
<li class="toctree-l3"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/angular/controller.html">Controller</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/angular/navigation.html">Navigation</a></li>
<li class="toctree-l3"><a class="reference internal" href="../../../../../miruken-es5/article/en-US/angular/viewRegion.html">ViewRegion</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../../../../../article/en-US/Environment/index.html">Environment</a><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../../../article/en-US/Environment/jspm.html">JSPM</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../article/en-US/Environment/node.html">Installing Node</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../article/en-US/Environment/python.html">Installing Python</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../article/en-US/Environment/sphinx.html">Sphinx</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../article/en-US/Environment/yarn.html">Yarn</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
<nav class="wy-nav-top" role="navigation" aria-label="top navigation">
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="../../../../../index.html">Miruken</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="../../../../../index.html">Docs</a> »</li>
<li><a href="../../../../index.html">DotNet</a> »</li>
<li><a href="../../index.html">Miruken-DotNet</a> »</li>
<li>Provide</li>
<li class="wy-breadcrumbs-aside">
<a href="../../../../../_sources/miruken-dotnet/Miruken/Doc/article/en-US/provide.rst.txt" rel="nofollow"> View page source</a>
</li>
</ul>
<div class="rst-breadcrumbs-buttons" role="navigation" aria-label="breadcrumb navigation">
<a href="promise.html" class="btn btn-neutral float-right" title="Promise" accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a>
<a href="handler.html" class="btn btn-neutral" title="Handler" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a>
</div>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<div class="section" id="provide">
<h1>Provide<a class="headerlink" href="#provide" title="Permalink to this headline">¶</a></h1>
<p><code class="code docutils literal"><span class="pre">[Provide]</span></code></p>
</div>
</div>
<div class="articleComments">
</div>
</div>
<footer>
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
<a href="promise.html" class="btn btn-neutral float-right" title="Promise" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
<a href="handler.html" class="btn btn-neutral" title="Handler" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
</div>
<hr/>
<div role="contentinfo">
<p>
© Copyright 2014-2018, Miruken.
</p>
</div>
Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
</footer>
</div>
</div>
</section>
</div>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../../../../../',
VERSION:'',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</script>
<script type="text/javascript" src="../../../../../_static/jquery.js"></script>
<script type="text/javascript" src="../../../../../_static/underscore.js"></script>
<script type="text/javascript" src="../../../../../_static/doctools.js"></script>
<script type="text/javascript" src="../../../../../_static/js/theme.js"></script>
<script type="text/javascript">
jQuery(function () {
SphinxRtdTheme.StickyNav.enable();
});
</script>
</body>
</html> | miruken/miruken.github.io | documentation/master/miruken-dotnet/Miruken/Doc/article/en-US/provide.html | HTML | mit | 13,441 |
<!DOCTYPE html>
<html lang="en"></html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tether/1.3.7/css/tether.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.4/css/bootstrap.min.css" integrity="sha384-2hfp1SzUoho7/TsGGGDaFdsuuDL0LX2hnUp6VkX3CUQ2K4K+xjboZdsXyp4oUHZj" crossorigin="anonymous"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/3.5.0/octicons.css"/>
<link rel="stylesheet" href="style.css"/>
<title>Javascript intermediary scripts</title>
</head>
<body id="body">
<button id="scroll" onclick="bottomPage()" class="btn btn-secondary">↓</button>
<div id="page" class="container">
<h1>Nodes selector & DOM manipulation</h1>
<div class="card">
<div class="card-header">
<h1 id="header">List</h1>
<h2>Buy groceries</h2>
</div>
<ul id="myUL">
<li id="one" class="hoverable hot"><em>fresh</em><span> figs</span></li>
<li id="two" class="hoverable hot">pine nuts</li>
<li id="three" class="hoverable hot">honey</li>
<li id="four" class="hoverable">balsamic vinegar</li>
</ul>
</div>
<div class="buttons">
<button onclick="getId()" class="btn btn-sm btn-primary">getElementById</button>
<button onclick="querySel()" class="btn btn-sm btn-primary">querySelector</button>
<button onclick="getClass()" class="btn btn-sm btn-primary">getElementsByClassName</button>
<button onclick="getTag()" class="btn btn-sm btn-primary">getElementsByTagName</button>
<button onclick="queryAll()" class="btn btn-sm btn-primary">querySelectorAll</button>
<button onclick="travDom()" class="btn btn-sm btn-primary">Traverse the DOM</button>
<button onclick="addItem()" class="btn btn-sm btn-primary">Add new node to the DOM</button>
<button onclick="deleteItem()" class="btn btn-sm btn-primary">Delete node from the DOM</button>
<button onclick="attr()" class="btn btn-sm btn-primary">Change attributes</button>
</div>
</div>
<hr/>
<div id="events" class="container">
<h1>Events</h1>
<div class="row">
<div id="messageEmail"></div>
</div>
<input id="email" type="email" placeholder="Enter an email adress"/>
<div class="row">
<div id="messageUsername"></div>
</div>
<input id="username" type="text" placeholder="Enter a username"/>
<div class="row">
<div id="messagePassword"></div>
</div>
<input id="password" type="password" placeholder="Enter a password"/>
<div class="row">
<div id="messageText"></div>
</div>
<textarea id="comment" placeholder="Enter a comment here..."></textarea>
</div>
<div id="delegation" class="container">
<h2>Event delegation</h2>
<ul id="todo" class="list-group">
<li class="list-group-item list-group-item-info">To-do</li>
<li class="list-group-item list-group-item-action">Study<a href="#" class="octicon octicon-trashcan pull-xs-right"></a></li>
<li class="list-group-item list-group-item-action">Go to the gym<a href="#" class="octicon octicon-trashcan pull-xs-right"></a></li>
<li class="list-group-item list-group-item-action">Go to the fishing store<a href="#" class="octicon octicon-trashcan pull-xs-right"></a></li>
<li class="list-group-item list-group-item-action">Buy groceries<a href="#" class="octicon octicon-trashcan pull-xs-right"></a></li>
</ul>
</div>
<hr/>
<div id="focus" class="container">
<h2>Focus & Blur events</h2>
<div class="row">
<div id="msg"></div>
</div>
<input id="randomInput" placeholder="Enter some text..."/>
</div>
<hr/>
<div id="mouse" class="container">
<h2>Mouse events</h2>
<div class="contentExample">
<h4>Some random content</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
<hr/>
<div id="position" class="navbar navbar-dark bg-inverse navbar-fixed-top">
<div id="myBar" class="nav navbar-nav"><span>screenX: </span>
<div id="sx" class="value"></div><span>screenY:</span>
<div id="sy" class="value"> </div><span class="separator">|| </span><span>pageX: </span>
<div id="px" class="value"></div><span>pageY: </span>
<div id="py" class="value"></div><span class="separator">|| </span><span>clientX: </span>
<div id="cx" class="value"></div><span>clientY: </span>
<div id="cy" class="value"> </div>
</div>
</div>
<div id="colors" class="container">
<h2>Playing with colors</h2>
<div id="myCanvasContainer">
<div id="myCanvas">
<div id="myColor"> </div>
</div>
</div>
</div>
<hr/>
<div id="keyboard" class="container">
<h2>Keyboard Events</h2>
<textarea id="userInput" placeholder="Enter your text here... (100 char min)"></textarea>
<div class="row">
<div id="charactersLeft"> </div>
<div id="lastKey"> </div>
</div>
</div>
<hr/>
<div id="forms" class="container">
<h2>Form Events</h2>
<h4>Subscribe to our newsletter!</h4>
<form id="myForm" class="form-inline">
<div class="form-group">
<label for="emailExample" class="sr-only">Email</label>
<input id="emailExample" type="email" placeholder="Enter your email" class="form-control"/>
</div>
<div class="form-group">
<label for="passwordExample" class="sr-only">Password</label>
<input id="passwordExample" type="password" placeholder="Enter a password" class="form-control"/>
</div>
<div class="form-group">
<label for="dropdownExample" class="sr-only">Choose a frequency</label>
<select id="dropdownExample" class="form-control">
<option>Daily</option>
<option>Weekly</option>
<option>Monthly</option>
<option>Yearly</option>
</select>
<div id="confirmMsg"> </div>
</div>
<div class="form-check">
<label class="form-check-label">
<input id="check" type="checkbox" class="form-check-input"/><span>Agree to <a href="#">our Terms of Service</a></span>
</label>
</div>
<button type="submit" class="btn btn-warning">Send</button>
</form>
<div id="errorMsg"> </div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.3.7/js/tether.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.4/js/bootstrap.min.js" integrity="sha384-VjEeINv9OSwtWFLAtmc4JCtEJXXBub00gtSnszmspDLCtC0I4z4nqz7rEFbIZLLU" crossorigin="anonymous"></script>
<script src="script.js"></script> | FabienDeborde/Working-on-JavaScript | Intermediary/index.html | HTML | mit | 7,341 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="GENERATOR" content="VSdocman - documentation generator; https://www.helixoft.com" />
<link rel="icon" href="favicon.ico">
<title>RegisterCompanyVm.CompanyAdministratorIdPhoto Property</title>
<link rel="stylesheet" type="text/css" href="msdn2019/toc.css" />
<script src="msdn2019/toc.js"></script>
<link rel="stylesheet" type="text/css" href="msdn2019/msdn2019.css"></link>
<script src="msdn2019/msdn2019.js" type="text/javascript"></script>
<script src="SyntaxHighlighter/scripts/shCore_helixoft.js" type="text/javascript"></script>
<script src="SyntaxHighlighter/scripts/shBrushVb.js" type="text/javascript"></script>
<script src="SyntaxHighlighter/scripts/shBrushCSharp.js" type="text/javascript"></script>
<script src="SyntaxHighlighter/scripts/shBrushFSharp.js" type="text/javascript"></script>
<script src="SyntaxHighlighter/scripts/shBrushCpp.js" type="text/javascript"></script>
<script src="SyntaxHighlighter/scripts/shBrushJScript.js" type="text/javascript"></script>
<link href="SyntaxHighlighter/styles/shCore.css" rel="stylesheet" type="text/css" />
<link href="SyntaxHighlighter/styles/shThemeMsdnLW.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
SyntaxHighlighter.all();
</script>
<link rel="stylesheet" type="text/css" href="vsdocman_overrides.css"></link>
</head>
<body style="direction: ltr;">
<div id="topic">
<!--HEADER START-->
<div id="header">
<div id="header-top-container">
<div id="header-top-parent-container1">
<div id="header-top-container1">
<div id="runningHeaderText1"><a id="headerLogo" href="#" onclick="window.location.href = getCssCustomProperty('--headerLogoLink'); return false;">logo</a></div>
<div id="runningHeaderText1b"><script>
document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
</script></div>
</div>
</div>
<div id="header-top-container2">
<div id="runningHeaderText">SOLUTION-WIDE PROPERTIES Reference</div>
<div id="search-bar-container">
<form id="search-bar" action="search--.html">
<input id="HeaderSearchInput" type="search" name="search" placeholder="Search" >
<button id="btn-search" class="c-glyph" title="Search">
<span>Search</span>
</button>
</form>
<button id="cancel-search" class="cancel-search" title="Cancel">
<span>Cancel</span>
</button>
</div>
</div>
</div>
<hr />
<div id="header-breadcrumbs"></div>
<div id="headerLinks">
</div>
<hr />
</div>
<!--HEADER END-->
<div id="mainSection">
<div id="toc-area">
<div id="toc-container" class="stickthis full-height">
<div id="-1"></div>
<div id="c-1">
<div id="ci-1" class="inner-for-height"></div>
</div>
</div>
</div>
<div id="mainBody">
<h1 class="title">RegisterCompanyVm.CompanyAdministratorIdPhoto Property</h1>
<div class="metadata">
Namespace:
<a href="topic_000000000000093C.html">Tlece.Recruitment.Models.Register</a>
<br />Assembly: Tlece.Recruitment (in Tlece.Recruitment.dll)
</div>
<div class="section_container">
<div id="syntaxSection" class="section">
<div id="syntaxCodeBlocks">
<div class="codeSnippetContainer">
<div class="codeSnippetTabs">
<div class="codeSnippetTabLeftCornerActive">
</div>
<div class="codeSnippetTab csFirstTab csActiveTab codeVB">
<a>VB</a>
</div>
<div class="codeSnippetTab csNaTab codeCsharp">
<a href="javascript: CodeSnippet_SetLanguage('Csharp');">C#</a>
</div>
<div class="codeSnippetTab csNaTab codeFsharp">
<a href="javascript: CodeSnippet_SetLanguage('Fsharp');">F#</a>
</div>
<div class="codeSnippetTab csNaTab codeCpp">
<a href="javascript: CodeSnippet_SetLanguage('Cpp');">C++</a>
</div>
<div class="codeSnippetTab csLastTab csNaTab codeJScript">
<a href="javascript: CodeSnippet_SetLanguage('JScript');">JScript</a>
</div>
<div class="codeSnippetTabRightCorner">
</div>
<div style="clear:both;">
</div>
</div>
<div class="codeSnippetCodeCollection">
<div class="codeSnippetToolbar">
<a title="Copy to clipboard." href="javascript:void(0)" onclick="CopyCode(this);">Copy</a>
</div>
<div class="codeSnippetCode codeVB">
<pre xml:space="preserve" class="brush: vb">Public Property CompanyAdministratorIdPhoto() As <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.iformfile">IFormFile</a></pre>
</div>
<div class="codeSnippetCode codeNA">
<pre xml:space="preserve">This language is not supported or no code example is available.</pre>
</div>
</div>
</div>
<div class="codeSnippetContainer">
<div class="codeSnippetTabs">
<div class="codeSnippetTabLeftCorner">
</div>
<div class="codeSnippetTab csFirstTab csNaTab codeVB">
<a>VB</a>
</div>
<div class="codeSnippetTab csActiveTab codeCsharp">
<a href="javascript: CodeSnippet_SetLanguage('Csharp');">C#</a>
</div>
<div class="codeSnippetTab csNaTab codeFsharp">
<a href="javascript: CodeSnippet_SetLanguage('Fsharp');">F#</a>
</div>
<div class="codeSnippetTab csNaTab codeCpp">
<a href="javascript: CodeSnippet_SetLanguage('Cpp');">C++</a>
</div>
<div class="codeSnippetTab csLastTab csNaTab codeJScript">
<a href="javascript: CodeSnippet_SetLanguage('JScript');">JScript</a>
</div>
<div class="codeSnippetTabRightCorner">
</div>
<div style="clear:both;">
</div>
</div>
<div class="codeSnippetCodeCollection">
<div class="codeSnippetToolbar">
<a title="Copy to clipboard." href="javascript:void(0)" onclick="CopyCode(this);">Copy</a>
</div>
<div class="codeSnippetCode codeCsharp">
<pre xml:space="preserve" class="brush: csharp">public <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.iformfile">IFormFile</a> CompanyAdministratorIdPhoto {get; set;}</pre>
</div>
<div class="codeSnippetCode codeNA">
<pre xml:space="preserve">This language is not supported or no code example is available.</pre>
</div>
</div>
</div>
<div class="codeSnippetContainer">
<div class="codeSnippetTabs">
<div class="codeSnippetTabLeftCorner">
</div>
<div class="codeSnippetTab csFirstTab csNaTab codeVB">
<a>VB</a>
</div>
<div class="codeSnippetTab csNaTab codeCsharp">
<a href="javascript: CodeSnippet_SetLanguage('Csharp');">C#</a>
</div>
<div class="codeSnippetTab csNaTab codeFsharp">
<a href="javascript: CodeSnippet_SetLanguage('Fsharp');">F#</a>
</div>
<div class="codeSnippetTab csActiveTab codeCpp">
<a href="javascript: CodeSnippet_SetLanguage('Cpp');">C++</a>
</div>
<div class="codeSnippetTab csLastTab csNaTab codeJScript">
<a href="javascript: CodeSnippet_SetLanguage('JScript');">JScript</a>
</div>
<div class="codeSnippetTabRightCorner">
</div>
<div style="clear:both;">
</div>
</div>
<div class="codeSnippetCodeCollection">
<div class="codeSnippetToolbar">
<a title="Copy to clipboard." href="javascript:void(0)" onclick="CopyCode(this);">Copy</a>
</div>
<div class="codeSnippetCode codeCpp">
<pre xml:space="preserve" class="brush: cpp">public: <br />property <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.iformfile">IFormFile</a>^ CompanyAdministratorIdPhoto { <br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.iformfile">IFormFile</a>^ get( ); <br /> void set( <br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.iformfile">IFormFile</a>^ value <br /> ); <br />}</pre>
</div>
<div class="codeSnippetCode codeNA">
<pre xml:space="preserve">This language is not supported or no code example is available.</pre>
</div>
</div>
</div>
<div class="codeSnippetContainer">
<div class="codeSnippetTabs">
<div class="codeSnippetTabLeftCorner">
</div>
<div class="codeSnippetTab csFirstTab csNaTab codeVB">
<a>VB</a>
</div>
<div class="codeSnippetTab csNaTab codeCsharp">
<a href="javascript: CodeSnippet_SetLanguage('Csharp');">C#</a>
</div>
<div class="codeSnippetTab csNaTab codeFsharp">
<a href="javascript: CodeSnippet_SetLanguage('Fsharp');">F#</a>
</div>
<div class="codeSnippetTab csNaTab codeCpp">
<a href="javascript: CodeSnippet_SetLanguage('Cpp');">C++</a>
</div>
<div class="codeSnippetTab csActiveTab csLastTab codeJScript">
<a href="javascript: CodeSnippet_SetLanguage('JScript');">JScript</a>
</div>
<div class="codeSnippetTabRightCornerActive">
</div>
<div style="clear:both;">
</div>
</div>
<div class="codeSnippetCodeCollection">
<div class="codeSnippetToolbar">
<a title="Copy to clipboard." href="javascript:void(0)" onclick="CopyCode(this);">Copy</a>
</div>
<div class="codeSnippetCode codeJScript">
<pre xml:space="preserve" class="brush: js">public function get CompanyAdministratorIdPhoto() : <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.iformfile">IFormFile</a>; <br />public function set CompanyAdministratorIdPhoto(value : <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.iformfile">IFormFile</a>);</pre>
</div>
<div class="codeSnippetCode codeNA">
<pre xml:space="preserve">This language is not supported or no code example is available.</pre>
</div>
</div>
</div>
</div>
<h4 class="subHeading">
Property Value</h4>
<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.iformfile">IFormFile</a>
</div>
</div>
<div class="section_container">
<div class="section_heading">
<span><a href="javascript:void(0)" title="Collapse" onclick="toggleSection(this);">Applies to</a></span>
<div> </div>
</div>
<div id="frameworksSection" class="section">
<h4 class="subHeading">.NET Framework</h4>Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1<br />
</div>
</div>
<div class="section_container">
<div class="section_heading">
<span><a href="javascript:void(0)" title="Collapse" onclick="toggleSection(this);">See Also</a></span>
<div> </div>
</div>
<div id="seeAlsoSection" class="section">
<div>
<a href="topic_000000000000093D.html">RegisterCompanyVm Class</a><br />
<a href="topic_000000000000093C.html">Tlece.Recruitment.Models.Register Namespace</a><br />
</div>
</div>
</div>
</div>
<div id="internal-toc-area">
<div id="internal-toc-container" class="stickthis">
<h3 id="internal-toc-heading">In this article</h3>
<span id="internal-toc-definition-localized-text">Definition</span>
</div>
</div>
</div>
<div id="footer">
<div id="footer-container">
<p><span style="color: #FF0000;">Generated with unregistered version of <a target="_top" href="http://www.helixoft.com/vsdocman/overview.html">VSdocman</a></span> <br />Your own footer text will only be shown in registered version.</p>
</div>
</div>
</div>
</body>
</html>
| asiboro/asiboro.github.io | vsdoc/topic_0000000000000948.html | HTML | mit | 12,132 |
Date: Tue, 05 Nov 1996 20:56:33 GMT
Server: NCSA/1.5
Content-type: text/html
Last-modified: Wed, 18 Sep 1996 20:30:41 GMT
Content-length: 1863
<body background="yellow_s.gif">
<!DOCTYPE HTML PUBLIC "-//W3O//DTD W3 HTML 2.0//EN">
<!Converted with LaTeX2HTML 95 (Thu Jan 19 1995) by Nikos Drakos (nikos@cbl.leeds.ac.uk), CBLU, University of Leeds >
<HEAD>
<TITLE> Office Hours</TITLE>
</HEAD>
<BODY>
<meta name="description" value=" Office Hours">
<meta name="keywords" value="info">
<meta name="resource-type" value="document">
<meta name="distribution" value="global">
<P>
<BR> <HR><!WA0><!WA0><!WA0><!WA0><!WA0><!WA0><!WA0><!WA0><!WA0><A NAME=tex2html39 HREF="http://www.cs.wisc.edu/~cs564-1/info/node4.html"><!WA1><!WA1><!WA1><!WA1><!WA1><!WA1><!WA1><!WA1><!WA1><IMG ALIGN=BOTTOM
ALT="next"
SRC="http://www.cs.wisc.edu/latex2html//next_motif.gif"></A> <!WA2><!WA2><!WA2><!WA2><!WA2><!WA2><!WA2><!WA2><!WA2><A
NAME=tex2html37 HREF="http://www.cs.wisc.edu/~cs564-1/cs564.html"><!WA3><!WA3><!WA3><!WA3><!WA3><!WA3><!WA3><!WA3><!WA3><IMG ALIGN=BOTTOM ALT="up"
SRC="http://www.cs.wisc.edu/latex2html//up_motif.gif"></A> <!WA4><!WA4><!WA4><!WA4><!WA4><!WA4><!WA4><!WA4><!WA4><A
NAME=tex2html31 HREF="http://www.cs.wisc.edu/~cs564-1/info/node2.html"><!WA5><!WA5><!WA5><!WA5><!WA5><!WA5><!WA5><!WA5><!WA5><IMG ALIGN=BOTTOM ALT="previous"
SRC="http://www.cs.wisc.edu/latex2html//previous_motif.gif"></A>
<BR>
<B> Next:</B> <!WA6><!WA6><!WA6><!WA6><!WA6><!WA6><!WA6><!WA6><!WA6><A NAME=tex2html40 HREF="http://www.cs.wisc.edu/~cs564-1/info/node4.html"> Topics to be </A>
<B>Up:</B> <!WA7><!WA7><!WA7><!WA7><!WA7><!WA7><!WA7><!WA7><!WA7><A NAME=tex2html38 HREF="http://www.cs.wisc.edu/~cs564-1/cs564.html">CS564 Fall 1996 Course </A>
<B> Previous:</B> <!WA8><!WA8><!WA8><!WA8><!WA8><!WA8><!WA8><!WA8><!WA8><A NAME=tex2html32 HREF="http://www.cs.wisc.edu/~cs564-1/info/node2.html"> Prerequisites</A>
<BR> <HR> <P>
<H1><A NAME=SECTION00030000000000000000> Office Hours</A></H1>
<P>
<UL><LI>
<b> Raghu Ramakrishnan (Instructor):</b> 7355CS&S, (<tt> raghu@cs</tt>), MW 12:30PM - 1:30PM
<LI>
<b> Xuemei Bao (TA):</b> 1345 CS&S, (<tt> xbao@cs</tt>),2:30PM-3:30PM Tues Thur
</UL>
<P>
If you need to meet with any of the above outside the posted hours, you
can do so by setting up an appointment.
If you have questions that are not addressed by the text or the
project documentation and handouts, I encourage you to send email.
(But do read these sources of clarification first!) Important
points arising out of these and other discussions will
be summarized in a continually updated <em> clarifications</em>
HTML page.
<P>
<BR> <HR>
<P><ADDRESS>
Wed Sep 6 11:38:58 CDT 1996
</ADDRESS>
</BODY>
| ML-SWAT/Web2KnowledgeBase | webkb/other/wisconsin/http:^^www.cs.wisc.edu^~cs564-1^info^node3.html | HTML | mit | 2,699 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Tela 38</title>
<script type='text/javascript' src="../js/Tela38.js"></script>
<link rel="stylesheet" type="text/css" href="../css/style.css"/>
</head>
<body onload="carregar_dados();">
<h3>Nome do Instrumento</h3>
<h3>Porcentagem de itens respondidos</h3>
<fieldset>
<legend>
Paciente:
<a id="nome"> </a>
</legend>
<form onsubmit="proximo(this);">
<img src="../images/Tela38.png" height="264" width="438">
<div>
Iguais: <input type="radio" name="quadrado" id="maior" required/><br/>
Diferentes: <input type="radio" name="quadrado" id="menor"/>
</div>
<br><br>
<button type="button" onclick="salvar_sair()" class="button">Salvar/Sair</button>
<br><br>
<button type="button" onclick="voltar()" class="button">Voltar</button>
<button type="button" onclick="location.href= '../Paciente.html'" class="button">Sair</button>
<input type="submit" value="Submit/Próximo" class="button">
</form>
</fieldset>
</body>
</html>
| augustomelo/BACIVisualizer | bateria_avaliativa/Telas/Tela38.html | HTML | mit | 1,230 |
<html>
<head>
<title>User agent detail - QuickTime/7.6 (qtver=7.6;cpu=IA32;os=Mac 10,5,7)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section">
<h1 class="header center orange-text">User agent detail</h1>
<div class="row center">
<h5 class="header light">
QuickTime/7.6 (qtver=7.6;cpu=IA32;os=Mac 10,5,7)
</h5>
</div>
</div>
<div class="section">
<table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th colspan="2"></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Parse time</th><th>Actions</th></tr><tr><th colspan="14" class="green lighten-3">Source result (test suite)</th></tr><tr><td>whichbrowser/parser<br /><small>/tests/data/desktop/os-osx.yaml</small></td><td>QuickTime 7.6</td><td>OS X El Capitan 10</td><td> </td><td style="border-left: 1px solid #555"></td><td></td><td>desktop</td><td></td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-test">Detail</a>
<!-- Modal Structure -->
<div id="modal-test" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Testsuite result detail</h4>
<p><pre><code class="php">Array
(
[headers] => User-Agent: QuickTime/7.6 (qtver=7.6;cpu=IA32;os=Mac 10,5,7)
[result] => Array
(
[browser] => Array
(
[name] => QuickTime
[version] => 7.6
[type] => app:mediaplayer
)
[os] => Array
(
[name] => OS X
[version] => Array
(
[value] => 10
[nickname] => El Capitan
)
)
[device] => Array
(
[type] => desktop
)
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><th colspan="14" class="green lighten-3">Providers</th></tr><tr><td>BrowscapPhp<br /><small>6012</small></td>
<td colspan="12" class="center-align red lighten-1">
<strong>No result found</strong>
</td>
</tr><tr><td>DonatjUAParser<br /><small>v0.5.0</small></td><td>QuickTime 7.6</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-f1436016-fdf1-4aea-b4be-1d7c99ab0661">Detail</a>
<!-- Modal Structure -->
<div id="modal-f1436016-fdf1-4aea-b4be-1d7c99ab0661" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>DonatjUAParser result detail</h4>
<p><pre><code class="php">Array
(
[platform] =>
[browser] => QuickTime
[version] => 7.6
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>NeutrinoApiCom<br /><small></small></td><td>QuickTime 7.6</td><td><i class="material-icons">close</i></td><td>Mac OS </td><td style="border-left: 1px solid #555"></td><td></td><td>media-player</td><td></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.186</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-9b0fa449-ec1b-40c8-8b1c-9486eb3b9cbc">Detail</a>
<!-- Modal Structure -->
<div id="modal-9b0fa449-ec1b-40c8-8b1c-9486eb3b9cbc" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>NeutrinoApiCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[mobile_screen_height] => 0
[is_mobile] =>
[type] => media-player
[mobile_brand] =>
[mobile_model] =>
[version] => 7.6
[is_android] =>
[browser_name] => QuickTime
[operating_system_family] => Mac OS
[operating_system_version] =>
[is_ios] =>
[producer] => Apple Inc.
[operating_system] => Mac OS
[mobile_screen_width] => 0
[mobile_browser] =>
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>PiwikDeviceDetector<br /><small>3.5.2</small></td><td>QuickTime 7.6</td><td> </td><td> </td><td style="border-left: 1px solid #555"></td><td></td><td></td><td></td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.011</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-21638055-738d-46ba-a1b1-f5114bc26475">Detail</a>
<!-- Modal Structure -->
<div id="modal-21638055-738d-46ba-a1b1-f5114bc26475" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>PiwikDeviceDetector result detail</h4>
<p><pre><code class="php">Array
(
[client] => Array
(
[type] => mediaplayer
[name] => QuickTime
[version] => 7.6
)
[operatingSystem] => Array
(
)
[device] => Array
(
[brand] =>
[brandName] =>
[model] =>
[device] =>
[deviceName] =>
)
[bot] =>
[extra] => Array
(
[isBot] =>
[isBrowser] =>
[isFeedReader] =>
[isMobileApp] =>
[isPIM] =>
[isLibrary] =>
[isMediaPlayer] => 1
[isCamera] =>
[isCarBrowser] =>
[isConsole] =>
[isFeaturePhone] =>
[isPhablet] =>
[isPortableMediaPlayer] =>
[isSmartDisplay] =>
[isSmartphone] =>
[isTablet] =>
[isTV] =>
[isDesktop] =>
[isMobile] =>
[isTouchEnabled] =>
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.0</small></td>
<td colspan="12" class="center-align red lighten-1">
<strong>No result found</strong>
</td>
</tr><tr><td>UAParser<br /><small>v3.4.5</small></td>
<td colspan="12" class="center-align red lighten-1">
<strong>No result found</strong>
</td>
</tr><tr><td>UserAgentStringCom<br /><small></small></td>
<td colspan="12" class="center-align red lighten-1">
<strong>No result found</strong>
</td>
</tr><tr><td>WhatIsMyBrowserCom<br /><small></small></td>
<td colspan="12" class="center-align red lighten-1">
<strong>No result found</strong>
</td>
</tr><tr><td>WhichBrowser<br /><small>2.0.10</small></td><td>QuickTime 7.6</td><td> </td><td>OS X El Capitan 10</td><td style="border-left: 1px solid #555"></td><td></td><td>desktop</td><td></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.015</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-342c8d32-4765-40a8-8a5c-af3a38d19ae4">Detail</a>
<!-- Modal Structure -->
<div id="modal-342c8d32-4765-40a8-8a5c-af3a38d19ae4" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhichBrowser result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[name] => QuickTime
[version] => 7.6
[type] => app:mediaplayer
)
[os] => Array
(
[name] => OS X
[version] => Array
(
[value] => 10
[nickname] => El Capitan
)
)
[device] => Array
(
[type] => desktop
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Woothee<br /><small>v1.2.0</small></td>
<td colspan="12" class="center-align red lighten-1">
<strong>No result found</strong>
</td>
</tr><tr><td>Wurfl<br /><small>1.6.4</small></td>
<td colspan="12" class="center-align red lighten-1">
<strong>No result found</strong>
</td>
</tr></table>
</div>
<div class="section">
<h1 class="header center orange-text">About this comparison</h1>
<div class="row center">
<h5 class="header light">
The primary goal of this project is simple<br />
I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br />
<br />
The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br />
<br />
You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br />
<br />
The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a>
</h5>
</div>
</div>
<div class="card">
<div class="card-content">
Comparison created <i>2016-02-13 13:29:31</i> | by
<a href="https://github.com/ThaDafinser">ThaDafinser</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.1.1/list.min.js"></script>
<script>
$(document).ready(function(){
// the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered
$('.modal-trigger').leanModal();
});
</script>
</body>
</html> | ThaDafinser/UserAgentParserComparison | v4/user-agent-detail/3c/e0/3ce0b2f1-38cf-450d-b17a-913c1d6ba1d0.html | HTML | mit | 12,022 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="pt">
<head>
<!-- Generated by javadoc (1.8.0_60) on Mon Feb 22 14:32:21 BRT 2016 -->
<title>Uses of Class theater.Part</title>
<meta name="date" content="2016-02-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 theater.Part";
}
}
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="../../theater/Part.html" title="class in theater">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?theater/class-use/Part.html" target="_top">Frames</a></li>
<li><a href="Part.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 theater.Part" class="title">Uses of Class<br>theater.Part</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="../../theater/Part.html" title="class in theater">Part</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#theater">theater</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="theater">
<!-- -->
</a>
<h3>Uses of <a href="../../theater/Part.html" title="class in theater">Part</a> in <a href="../../theater/package-summary.html">theater</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../theater/package-summary.html">theater</a> declared as <a href="../../theater/Part.html" title="class in theater">Part</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>private <a href="../../theater/Part.html" title="class in theater">Part</a></code></td>
<td class="colLast"><span class="typeNameLabel">Server.</span><code><span class="memberNameLink"><a href="../../theater/Server.html#part">part</a></span></code>
<div class="block">The part to be interpreted by this Server object.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private <a href="../../theater/Part.html" title="class in theater">Part</a></code></td>
<td class="colLast"><span class="typeNameLabel">Actor.</span><code><span class="memberNameLink"><a href="../../theater/Actor.html#part">part</a></span></code>
<div class="block">The part this Actor interprets.</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="../../theater/package-summary.html">theater</a> that return <a href="../../theater/Part.html" title="class in theater">Part</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../theater/Part.html" title="class in theater">Part</a></code></td>
<td class="colLast"><span class="typeNameLabel">Flowchart.</span><code><span class="memberNameLink"><a href="../../theater/Flowchart.html#buildPart-java.lang.String-java.lang.String-java.lang.Class-theater.Causality-">buildPart</a></span>(java.lang.String characterName,
java.lang.String protocolName,
java.lang.Class<?> actorClass,
<a href="../../theater/Causality.html" title="class in theater">Causality</a> causality)</code>
<div class="block">Builds a part object for a given character.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../theater/Part.html" title="class in theater">Part</a></code></td>
<td class="colLast"><span class="typeNameLabel">Play.</span><code><span class="memberNameLink"><a href="../../theater/Play.html#interpretAs-java.lang.String-">interpretAs</a></span>(java.lang.String mainCharacter)</code>
<div class="block">Explores the method scene and builds a graph of the calls to send, run
and test.</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="../../theater/package-summary.html">theater</a> with parameters of type <a href="../../theater/Part.html" title="class in theater">Part</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">Actor.</span><code><span class="memberNameLink"><a href="../../theater/Actor.html#load-theater.Part-communications.CommunicationResource-">load</a></span>(<a href="../../theater/Part.html" title="class in theater">Part</a> part,
<a href="../../communications/CommunicationResource.html" title="interface in communications">CommunicationResource</a><<a href="../../theater/Actor.html" title="type parameter in Actor">PayloadT</a>> communicationResource)</code>
<div class="block">Initializes an yet uninitialized Actor whith an empty address map.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">Actor.</span><code><span class="memberNameLink"><a href="../../theater/Actor.html#load-theater.Part-communications.CommunicationResource-java.util.Map-">load</a></span>(<a href="../../theater/Part.html" title="class in theater">Part</a> part,
<a href="../../communications/CommunicationResource.html" title="interface in communications">CommunicationResource</a><<a href="../../theater/Actor.html" title="type parameter in Actor">PayloadT</a>> communicationResource,
java.util.Map<java.lang.String,java.lang.String> initialAddressMap)</code>
<div class="block">Initializes an yet uninitialized Actor.</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../theater/package-summary.html">theater</a> with parameters of type <a href="../../theater/Part.html" title="class in theater">Part</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../theater/Actor.html#Actor-theater.Part-communications.CommunicationResource-">Actor</a></span>(<a href="../../theater/Part.html" title="class in theater">Part</a> part,
<a href="../../communications/CommunicationResource.html" title="interface in communications">CommunicationResource</a><<a href="../../theater/Actor.html" title="type parameter in Actor">PayloadT</a>> communicationResource)</code>
<div class="block">Builds a new Actor object and initializes it to interpret a <a href="../../theater/Part.html" title="class in theater"><code>Part</code></a>
over a <a href="../../communications/CommunicationResource.html" title="interface in communications"><code>CommunicationResource</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../theater/Server.html#Server-theater.Part-communications.CommunicationResource-java.util.function.Supplier-int-">Server</a></span>(<a href="../../theater/Part.html" title="class in theater">Part</a> part,
<a href="../../communications/CommunicationResource.html" title="interface in communications">CommunicationResource</a><<a href="../../theater/Server.html" title="type parameter in Server">PayloadT</a>> communicationResource,
java.util.function.Supplier<A> actorFactory,
int size)</code>
<div class="block">Creates a new Server object to interpret the protocol Part given using a
certain CommunicationsResource.</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="../../theater/Part.html" title="class in theater">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?theater/class-use/Part.html" target="_top">Frames</a></li>
<li><a href="Part.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>
| tokahuke/java-for-playwrights | doc/theater/class-use/Part.html | HTML | mit | 11,743 |
<section>
<div flex layout="row" data-ng-controller="HomeController as ul">
<!-- Container #3 Left -->
<md-sidenav md-is-locked-open="$mdMedia('gt-md')" md-component-id="left" class="md-whiteframe-z2" data-ng-include="'/modules/core/views/templates/side-navigation.view.html'"></md-sidenav>
<!-- Container #4 Right -->
<md-content flex id="content">
{% block content %}{% endblock %}
</md-content>
</div>
</section>
| gustavknowit/cv_portal | public/modules/core/views/templates/content-layout.view.html | HTML | mit | 478 |
<!doctype html>
<!-- ASSIGN OUR ANGULAR MODULE -->
<html ng-app="scotchTodo">
<head>
<!-- META -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- Optimize mobile viewport -->
<title>Node/Angular Todo App</title>
<!-- SCROLLS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"><!-- load bootstrap -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css">
<style>
html { overflow-y:scroll; }
body { padding-top:50px; }
#todo-list { margin-bottom:30px; }
#todo-form { margin-bottom:50px; }
</style>
<!-- SPELLS -->
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.16/angular.min.js"></script><!-- load angular -->
<script src="js/controllers/main.js"></script> <!-- load up our controller -->
<script src="js/services/todos.js"></script> <!-- load our todo service -->
<script src="js/core.js"></script> <!-- load our main application -->
</head>
<!-- SET THE CONTROLLER -->
<body ng-controller="mainController">
<div class="container">
<!-- HEADER AND TODO COUNT -->
<div class="jumbotron text-center">
<h1><span class="label label-info">{{ todos.length }}</span></h1>
</div>
<!-- TODO LIST -->
<div id="todo-list" class="row">
<div class="col-sm-4 col-sm-offset-4">
<!-- LOOP OVER THE TODOS IN $scope.todos -->
<div class="checkbox" ng-repeat="todo in todos">
<label>
<input type="checkbox" ng-click="deleteTodo(todo._id)"> {{ todo.text }}
</label>
</div>
<p class="text-center" ng-show="loading">
<span class="fa fa-spinner fa-spin fa-3x"></span>
</p>
</div>
</div>
<!-- FORM TO CREATE TODOS -->
<div id="todo-form" class="row">
<div class="col-sm-8 col-sm-offset-2 text-center">
<form>
<div class="form-group">
<!-- BIND THIS VALUE TO formData.text IN ANGULAR -->
<input type="text" class="form-control input-lg text-center" placeholder="Todo what ever u wnat" ng-model="formData.text">
</div>
<!-- createToDo() WILL CREATE NEW TODOS -->
<button type="submit" class="btn btn-primary btn-lg" ng-click="createTodo()">Add</button>
</form>
</div>
</div>
</div>
</body>
</html>
| aknoormohamed/node-todo | public/index.html | HTML | mit | 2,310 |
<html>
<head>
<title>Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36 OPR/20.0.1387.64</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section">
<h1 class="header center orange-text">User agent detail</h1>
<div class="row center">
Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36 OPR/20.0.1387.64
<p>
Detected by 8 of 8 providers<br />
As bot detected by 0 of 7
</p>
</div>
</div>
<div class="section">
<table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Actions</th></tr><tr><td>BrowscapPhp<br /><small>6011</small></td><td>Opera 20.0</td><td>Blink </td><td>Win8.1 6.3</td><td></td><td>Windows Desktop</td><td>Desktop</td><td></td><td></td><td></td><td></td><td></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-cbfe2df3-330b-4abd-b5df-0ca181549ca9">Detail</a>
<!-- Modal Structure -->
<div id="modal-cbfe2df3-330b-4abd-b5df-0ca181549ca9" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapPhp result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*windows nt 6\.3.*wow64.*\) applewebkit\/.* \(khtml, like gecko\).*chrome\/.*safari\/.*opr\/20\.0.*$/
[browser_name_pattern] => mozilla/5.0 (*windows nt 6.3*wow64*) applewebkit/* (khtml, like gecko)*chrome/*safari/*opr/20.0*
[parent] => Opera 20.0
[comment] => Opera 20.0
[browser] => Opera
[browser_type] => Browser
[browser_bits] => 32
[browser_maker] => Opera Software ASA
[browser_modus] => unknown
[version] => 20.0
[majorver] => 20
[minorver] => 0
[platform] => Win8.1
[platform_version] => 6.3
[platform_description] => Windows 8.1
[platform_bits] => 64
[platform_maker] => Microsoft Corporation
[alpha] =>
[beta] =>
[win16] =>
[win32] =>
[win64] => 1
[frames] => 1
[iframes] => 1
[tables] => 1
[cookies] => 1
[backgroundsounds] =>
[javascript] => 1
[vbscript] =>
[javaapplets] =>
[activexcontrols] =>
[ismobiledevice] =>
[istablet] =>
[issyndicationreader] =>
[crawler] =>
[cssversion] => 3
[aolversion] => 0
[device_name] => Windows Desktop
[device_maker] => Various
[device_type] => Desktop
[device_pointing_method] => mouse
[device_code_name] => Windows Desktop
[device_brand_name] => unknown
[renderingengine_name] => Blink
[renderingengine_version] => unknown
[renderingengine_description] => a WebKit Fork by Google
[renderingengine_maker] => Google Inc
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>DonatjUAParser<br /><small>v0.5.0</small></td><td>Opera Next 20.0.1387.64</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-6fae891b-b0d5-4415-b07d-355015c3af67">Detail</a>
<!-- Modal Structure -->
<div id="modal-6fae891b-b0d5-4415-b07d-355015c3af67" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>DonatjUAParser result detail</h4>
<p><pre><code class="php">Array
(
[platform] => Windows
[browser] => Opera Next
[version] => 20.0.1387.64
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>PiwikDeviceDetector<br /><small>3.5.1</small></td><td>Opera 20.0</td><td>Blink </td><td>Windows 8.1</td><td></td><td></td><td>desktop</td><td></td><td></td><td></td><td></td><td></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-fc0f1b55-50d8-49c2-bb12-4cc1d8144ebf">Detail</a>
<!-- Modal Structure -->
<div id="modal-fc0f1b55-50d8-49c2-bb12-4cc1d8144ebf" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>PiwikDeviceDetector result detail</h4>
<p><pre><code class="php">Array
(
[client] => Array
(
[type] => browser
[name] => Opera
[short_name] => OP
[version] => 20.0
[engine] => Blink
)
[operatingSystem] => Array
(
[name] => Windows
[short_name] => WIN
[version] => 8.1
[platform] => x64
)
[device] => Array
(
[brand] =>
[brandName] =>
[model] =>
[device] => 0
[deviceName] => desktop
)
[bot] =>
[extra] => Array
(
[isBot] =>
[isBrowser] => 1
[isFeedReader] =>
[isMobileApp] =>
[isPIM] =>
[isLibrary] =>
[isMediaPlayer] =>
[isCamera] =>
[isCarBrowser] =>
[isConsole] =>
[isFeaturePhone] =>
[isPhablet] =>
[isPortableMediaPlayer] =>
[isSmartDisplay] =>
[isSmartphone] =>
[isTablet] =>
[isTV] =>
[isDesktop] => 1
[isMobile] =>
[isTouchEnabled] =>
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.0</small></td><td>Opera 20.0.1387.64</td><td><i class="material-icons">close</i></td><td>Windows 8.1</td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8c08f104-4e61-421b-9405-291b09c383dc">Detail</a>
<!-- Modal Structure -->
<div id="modal-8c08f104-4e61-421b-9405-291b09c383dc" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>SinergiBrowserDetector result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Sinergi\BrowserDetector\Browser Object
(
[userAgent:Sinergi\BrowserDetector\Browser:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36 OPR/20.0.1387.64
)
[name:Sinergi\BrowserDetector\Browser:private] => Opera
[version:Sinergi\BrowserDetector\Browser:private] => 20.0.1387.64
[isRobot:Sinergi\BrowserDetector\Browser:private] =>
[isChromeFrame:Sinergi\BrowserDetector\Browser:private] =>
)
[operatingSystem] => Sinergi\BrowserDetector\Os Object
(
[name:Sinergi\BrowserDetector\Os:private] => Windows
[version:Sinergi\BrowserDetector\Os:private] => 8.1
[isMobile:Sinergi\BrowserDetector\Os:private] =>
[userAgent:Sinergi\BrowserDetector\Os:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36 OPR/20.0.1387.64
)
)
[device] => Sinergi\BrowserDetector\Device Object
(
[name:Sinergi\BrowserDetector\Device:private] => unknown
[userAgent:Sinergi\BrowserDetector\Device:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36 OPR/20.0.1387.64
)
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UAParser<br /><small>v3.4.5</small></td><td>Opera 20.0.1387</td><td><i class="material-icons">close</i></td><td>Windows 8.1 </td><td></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8f4c86c5-433e-4536-b799-ad26d77264e0">Detail</a>
<!-- Modal Structure -->
<div id="modal-8f4c86c5-433e-4536-b799-ad26d77264e0" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">UAParser\Result\Client Object
(
[ua] => UAParser\Result\UserAgent Object
(
[major] => 20
[minor] => 0
[patch] => 1387
[family] => Opera
)
[os] => UAParser\Result\OperatingSystem Object
(
[major] =>
[minor] =>
[patch] =>
[patchMinor] =>
[family] => Windows 8.1
)
[device] => UAParser\Result\Device Object
(
[brand] =>
[model] =>
[family] => Other
)
[originalUserAgent] => Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36 OPR/20.0.1387.64
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhichBrowser<br /><small>2.0.9</small></td><td>Opera 20.0</td><td>Blink 537.36</td><td>Windows 8.1</td><td></td><td></td><td>desktop</td><td></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-62f1f3a3-0c44-4ecb-9ee2-48145e35736b">Detail</a>
<!-- Modal Structure -->
<div id="modal-62f1f3a3-0c44-4ecb-9ee2-48145e35736b" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhichBrowser result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[name] => Opera
[family] => Array
(
[name] => Chrome
[version] => 33
)
[version] => 20.0
[type] => browser
)
[engine] => Array
(
[name] => Blink
[version] => 537.36
)
[os] => Array
(
[name] => Windows
[version] => Array
(
[value] => 6.3
[alias] => 8.1
)
)
[device] => Array
(
[type] => desktop
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Woothee<br /><small>v1.2.0</small></td><td>Opera 20.0.1387.64</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>pc</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-bd437f52-91e9-4ce8-88f7-6e5206ed6635">Detail</a>
<!-- Modal Structure -->
<div id="modal-bd437f52-91e9-4ce8-88f7-6e5206ed6635" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Woothee result detail</h4>
<p><pre><code class="php">Array
(
[name] => Opera
[vendor] => Opera
[version] => 20.0.1387.64
[category] => pc
[os] => Windows 8.1
[os_version] => NT 6.3
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Wurfl<br /><small>1.6.4</small></td><td>Opera 20.0.1387.37</td><td><i class="material-icons">close</i></td><td>Mac OS X 1091</td><td></td><td></td><td>Desktop</td><td></td><td></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-3a72b31e-c3c1-4317-a357-7a6d5e3c7027">Detail</a>
<!-- Modal Structure -->
<div id="modal-3a72b31e-c3c1-4317-a357-7a6d5e3c7027" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Wurfl result detail</h4>
<p><pre><code class="php">Array
(
[virtual] => Array
(
[is_android] => false
[is_ios] => false
[is_windows_phone] => false
[is_app] => false
[is_full_desktop] => true
[is_largescreen] => true
[is_mobile] => false
[is_robot] => false
[is_smartphone] => false
[is_touchscreen] => false
[is_wml_preferred] => false
[is_xhtmlmp_preferred] => false
[is_html_preferred] => true
[advertised_device_os] => Mac OS X
[advertised_device_os_version] => 1091
[advertised_browser] => Opera
[advertised_browser_version] => 20.0.1387.37
[complete_device_name] => Opera Software Opera
[form_factor] => Desktop
[is_phone] => false
[is_app_webview] => false
)
[all] => Array
(
[brand_name] => Opera Software
[model_name] => Opera
[unique] => true
[ununiqueness_handler] =>
[is_wireless_device] => false
[device_claims_web_support] => true
[has_qwerty_keyboard] => true
[can_skip_aligned_link_row] => true
[uaprof] =>
[uaprof2] =>
[uaprof3] =>
[nokia_series] => 0
[nokia_edition] => 0
[device_os] => Desktop
[mobile_browser] => Opera
[mobile_browser_version] => 20.0
[device_os_version] =>
[pointing_method] => mouse
[release_date] => 2012_june
[marketing_name] =>
[model_extra_info] =>
[nokia_feature_pack] => 0
[can_assign_phone_number] => false
[is_tablet] => false
[manufacturer_name] =>
[is_bot] => false
[is_google_glass] => false
[proportional_font] => false
[built_in_back_button_support] => false
[card_title_support] => false
[softkey_support] => false
[table_support] => false
[numbered_menus] => false
[menu_with_select_element_recommended] => false
[menu_with_list_of_links_recommended] => false
[icons_on_menu_items_support] => false
[break_list_of_links_with_br_element_recommended] => false
[access_key_support] => false
[wrap_mode_support] => false
[times_square_mode_support] => false
[deck_prefetch_support] => false
[elective_forms_recommended] => false
[wizards_recommended] => false
[image_as_link_support] => false
[insert_br_element_after_widget_recommended] => false
[wml_can_display_images_and_text_on_same_line] => false
[wml_displays_image_in_center] => false
[opwv_wml_extensions_support] => false
[wml_make_phone_call_string] => none
[chtml_display_accesskey] => false
[emoji] => false
[chtml_can_display_images_and_text_on_same_line] => false
[chtml_displays_image_in_center] => false
[imode_region] => none
[chtml_make_phone_call_string] => tel:
[chtml_table_support] => true
[xhtml_honors_bgcolor] => true
[xhtml_supports_forms_in_table] => true
[xhtml_support_wml2_namespace] => false
[xhtml_autoexpand_select] => false
[xhtml_select_as_dropdown] => true
[xhtml_select_as_radiobutton] => true
[xhtml_select_as_popup] => true
[xhtml_display_accesskey] => false
[xhtml_supports_invisible_text] => false
[xhtml_supports_inline_input] => false
[xhtml_supports_monospace_font] => false
[xhtml_supports_table_for_layout] => false
[xhtml_supports_css_cell_table_coloring] => false
[xhtml_format_as_css_property] => false
[xhtml_format_as_attribute] => false
[xhtml_nowrap_mode] => false
[xhtml_marquee_as_css_property] => false
[xhtml_readable_background_color1] => #FFFFFF
[xhtml_readable_background_color2] => #FFFFFF
[xhtml_allows_disabled_form_elements] => false
[xhtml_document_title_support] => true
[xhtml_preferred_charset] => utf8
[opwv_xhtml_extensions_support] => false
[xhtml_make_phone_call_string] => none
[xhtmlmp_preferred_mime_type] => text/html
[xhtml_table_support] => false
[xhtml_send_sms_string] => none
[xhtml_send_mms_string] => none
[xhtml_file_upload] => supported
[cookie_support] => true
[accept_third_party_cookie] => true
[xhtml_supports_iframe] => full
[xhtml_avoid_accesskeys] => true
[xhtml_can_embed_video] => play_and_stop
[ajax_support_javascript] => true
[ajax_manipulate_css] => true
[ajax_support_getelementbyid] => true
[ajax_support_inner_html] => true
[ajax_xhr_type] => standard
[ajax_manipulate_dom] => true
[ajax_support_events] => true
[ajax_support_event_listener] => true
[ajax_preferred_geoloc_api] => none
[xhtml_support_level] => 4
[preferred_markup] => html_web_4_0
[wml_1_1] => false
[wml_1_2] => false
[wml_1_3] => false
[html_wi_w3_xhtmlbasic] => true
[html_wi_oma_xhtmlmp_1_0] => false
[html_wi_imode_html_1] => false
[html_wi_imode_html_2] => false
[html_wi_imode_html_3] => false
[html_wi_imode_html_4] => false
[html_wi_imode_html_5] => false
[html_wi_imode_htmlx_1] => false
[html_wi_imode_htmlx_1_1] => false
[html_wi_imode_compact_generic] => false
[html_web_3_2] => true
[html_web_4_0] => true
[voicexml] => false
[multipart_support] => false
[total_cache_disable_support] => false
[time_to_live_support] => false
[resolution_width] => 800
[resolution_height] => 600
[columns] => 120
[max_image_width] => 800
[max_image_height] => 600
[rows] => 200
[physical_screen_width] => 400
[physical_screen_height] => 400
[dual_orientation] => false
[density_class] => 1.0
[wbmp] => false
[bmp] => true
[epoc_bmp] => false
[gif_animated] => true
[jpg] => true
[png] => true
[tiff] => false
[transparent_png_alpha] => false
[transparent_png_index] => false
[svgt_1_1] => true
[svgt_1_1_plus] => false
[greyscale] => false
[gif] => true
[colors] => 65536
[webp_lossy_support] => true
[webp_lossless_support] => false
[post_method_support] => true
[basic_authentication_support] => true
[empty_option_value_support] => true
[emptyok] => false
[nokia_voice_call] => false
[wta_voice_call] => false
[wta_phonebook] => false
[wta_misc] => false
[wta_pdc] => false
[https_support] => true
[phone_id_provided] => false
[max_data_rate] => 3200
[wifi] => true
[sdio] => false
[vpn] => false
[has_cellular_radio] => false
[max_deck_size] => 100000
[max_url_length_in_requests] => 128
[max_url_length_homepage] => 0
[max_url_length_bookmark] => 0
[max_url_length_cached_page] => 0
[max_no_of_connection_settings] => 0
[max_no_of_bookmarks] => 0
[max_length_of_username] => 0
[max_length_of_password] => 0
[max_object_size] => 0
[downloadfun_support] => false
[directdownload_support] => false
[inline_support] => false
[oma_support] => false
[ringtone] => false
[ringtone_3gpp] => false
[ringtone_midi_monophonic] => false
[ringtone_midi_polyphonic] => false
[ringtone_imelody] => false
[ringtone_digiplug] => false
[ringtone_compactmidi] => false
[ringtone_mmf] => false
[ringtone_rmf] => false
[ringtone_xmf] => false
[ringtone_amr] => false
[ringtone_awb] => false
[ringtone_aac] => false
[ringtone_wav] => false
[ringtone_mp3] => false
[ringtone_spmidi] => false
[ringtone_qcelp] => false
[ringtone_voices] => 1
[ringtone_df_size_limit] => 0
[ringtone_directdownload_size_limit] => 0
[ringtone_inline_size_limit] => 0
[ringtone_oma_size_limit] => 0
[wallpaper] => false
[wallpaper_max_width] => 0
[wallpaper_max_height] => 0
[wallpaper_preferred_width] => 0
[wallpaper_preferred_height] => 0
[wallpaper_resize] => none
[wallpaper_wbmp] => false
[wallpaper_bmp] => false
[wallpaper_gif] => false
[wallpaper_jpg] => false
[wallpaper_png] => false
[wallpaper_tiff] => false
[wallpaper_greyscale] => false
[wallpaper_colors] => 2
[wallpaper_df_size_limit] => 0
[wallpaper_directdownload_size_limit] => 0
[wallpaper_inline_size_limit] => 0
[wallpaper_oma_size_limit] => 0
[screensaver] => false
[screensaver_max_width] => 0
[screensaver_max_height] => 0
[screensaver_preferred_width] => 0
[screensaver_preferred_height] => 0
[screensaver_resize] => none
[screensaver_wbmp] => false
[screensaver_bmp] => false
[screensaver_gif] => false
[screensaver_jpg] => false
[screensaver_png] => false
[screensaver_greyscale] => false
[screensaver_colors] => 2
[screensaver_df_size_limit] => 0
[screensaver_directdownload_size_limit] => 0
[screensaver_inline_size_limit] => 0
[screensaver_oma_size_limit] => 0
[picture] => false
[picture_max_width] => 0
[picture_max_height] => 0
[picture_preferred_width] => 0
[picture_preferred_height] => 0
[picture_resize] => none
[picture_wbmp] => false
[picture_bmp] => false
[picture_gif] => false
[picture_jpg] => false
[picture_png] => false
[picture_greyscale] => false
[picture_colors] => 2
[picture_df_size_limit] => 0
[picture_directdownload_size_limit] => 0
[picture_inline_size_limit] => 0
[picture_oma_size_limit] => 0
[video] => false
[oma_v_1_0_forwardlock] => false
[oma_v_1_0_combined_delivery] => false
[oma_v_1_0_separate_delivery] => false
[streaming_video] => false
[streaming_3gpp] => false
[streaming_mp4] => false
[streaming_mov] => false
[streaming_video_size_limit] => 0
[streaming_real_media] => none
[streaming_flv] => false
[streaming_3g2] => false
[streaming_vcodec_h263_0] => -1
[streaming_vcodec_h263_3] => -1
[streaming_vcodec_mpeg4_sp] => -1
[streaming_vcodec_mpeg4_asp] => -1
[streaming_vcodec_h264_bp] => -1
[streaming_acodec_amr] => none
[streaming_acodec_aac] => none
[streaming_wmv] => none
[streaming_preferred_protocol] => rtsp
[streaming_preferred_http_protocol] => none
[wap_push_support] => false
[connectionless_service_indication] => false
[connectionless_service_load] => false
[connectionless_cache_operation] => false
[connectionoriented_unconfirmed_service_indication] => false
[connectionoriented_unconfirmed_service_load] => false
[connectionoriented_unconfirmed_cache_operation] => false
[connectionoriented_confirmed_service_indication] => false
[connectionoriented_confirmed_service_load] => false
[connectionoriented_confirmed_cache_operation] => false
[utf8_support] => true
[ascii_support] => false
[iso8859_support] => false
[expiration_date] => false
[j2me_cldc_1_0] => false
[j2me_cldc_1_1] => false
[j2me_midp_1_0] => false
[j2me_midp_2_0] => false
[doja_1_0] => false
[doja_1_5] => false
[doja_2_0] => false
[doja_2_1] => false
[doja_2_2] => false
[doja_3_0] => false
[doja_3_5] => false
[doja_4_0] => false
[j2me_jtwi] => false
[j2me_mmapi_1_0] => false
[j2me_mmapi_1_1] => false
[j2me_wmapi_1_0] => false
[j2me_wmapi_1_1] => false
[j2me_wmapi_2_0] => false
[j2me_btapi] => false
[j2me_3dapi] => false
[j2me_locapi] => false
[j2me_nokia_ui] => false
[j2me_motorola_lwt] => false
[j2me_siemens_color_game] => false
[j2me_siemens_extension] => false
[j2me_heap_size] => 0
[j2me_max_jar_size] => 0
[j2me_storage_size] => 0
[j2me_max_record_store_size] => 0
[j2me_screen_width] => 0
[j2me_screen_height] => 0
[j2me_canvas_width] => 0
[j2me_canvas_height] => 0
[j2me_bits_per_pixel] => 0
[j2me_audio_capture_enabled] => false
[j2me_video_capture_enabled] => false
[j2me_photo_capture_enabled] => false
[j2me_capture_image_formats] => none
[j2me_http] => false
[j2me_https] => false
[j2me_socket] => false
[j2me_udp] => false
[j2me_serial] => false
[j2me_gif] => false
[j2me_gif89a] => false
[j2me_jpg] => false
[j2me_png] => false
[j2me_bmp] => false
[j2me_bmp3] => false
[j2me_wbmp] => false
[j2me_midi] => false
[j2me_wav] => false
[j2me_amr] => false
[j2me_mp3] => false
[j2me_mp4] => false
[j2me_imelody] => false
[j2me_rmf] => false
[j2me_au] => false
[j2me_aac] => false
[j2me_realaudio] => false
[j2me_xmf] => false
[j2me_wma] => false
[j2me_3gpp] => false
[j2me_h263] => false
[j2me_svgt] => false
[j2me_mpeg4] => false
[j2me_realvideo] => false
[j2me_real8] => false
[j2me_realmedia] => false
[j2me_left_softkey_code] => 0
[j2me_right_softkey_code] => 0
[j2me_middle_softkey_code] => 0
[j2me_select_key_code] => 0
[j2me_return_key_code] => 0
[j2me_clear_key_code] => 0
[j2me_datefield_no_accepts_null_date] => false
[j2me_datefield_broken] => false
[receiver] => false
[sender] => false
[mms_max_size] => 0
[mms_max_height] => 0
[mms_max_width] => 0
[built_in_recorder] => false
[built_in_camera] => false
[mms_jpeg_baseline] => false
[mms_jpeg_progressive] => false
[mms_gif_static] => false
[mms_gif_animated] => false
[mms_png] => false
[mms_bmp] => false
[mms_wbmp] => false
[mms_amr] => false
[mms_wav] => false
[mms_midi_monophonic] => false
[mms_midi_polyphonic] => false
[mms_midi_polyphonic_voices] => 0
[mms_spmidi] => false
[mms_mmf] => false
[mms_mp3] => false
[mms_evrc] => false
[mms_qcelp] => false
[mms_ota_bitmap] => false
[mms_nokia_wallpaper] => false
[mms_nokia_operatorlogo] => false
[mms_nokia_3dscreensaver] => false
[mms_nokia_ringingtone] => false
[mms_rmf] => false
[mms_xmf] => false
[mms_symbian_install] => false
[mms_jar] => false
[mms_jad] => false
[mms_vcard] => false
[mms_vcalendar] => false
[mms_wml] => false
[mms_wbxml] => false
[mms_wmlc] => false
[mms_video] => false
[mms_mp4] => false
[mms_3gpp] => false
[mms_3gpp2] => false
[mms_max_frame_rate] => 0
[nokiaring] => false
[picturemessage] => false
[operatorlogo] => false
[largeoperatorlogo] => false
[callericon] => false
[nokiavcard] => false
[nokiavcal] => false
[sckl_ringtone] => false
[sckl_operatorlogo] => false
[sckl_groupgraphic] => false
[sckl_vcard] => false
[sckl_vcalendar] => false
[text_imelody] => false
[ems] => false
[ems_variablesizedpictures] => false
[ems_imelody] => false
[ems_odi] => false
[ems_upi] => false
[ems_version] => 0
[siemens_ota] => false
[siemens_logo_width] => 101
[siemens_logo_height] => 29
[siemens_screensaver_width] => 101
[siemens_screensaver_height] => 50
[gprtf] => false
[sagem_v1] => false
[sagem_v2] => false
[panasonic] => false
[sms_enabled] => false
[wav] => false
[mmf] => false
[smf] => false
[mld] => false
[midi_monophonic] => false
[midi_polyphonic] => false
[sp_midi] => false
[rmf] => false
[xmf] => false
[compactmidi] => false
[digiplug] => false
[nokia_ringtone] => false
[imelody] => false
[au] => false
[amr] => false
[awb] => false
[aac] => false
[mp3] => false
[voices] => 1
[qcelp] => false
[evrc] => false
[flash_lite_version] =>
[fl_wallpaper] => false
[fl_screensaver] => false
[fl_standalone] => false
[fl_browser] => false
[fl_sub_lcd] => false
[full_flash_support] => true
[css_supports_width_as_percentage] => true
[css_border_image] => none
[css_rounded_corners] => none
[css_gradient] => none
[css_spriting] => true
[css_gradient_linear] => none
[is_transcoder] => false
[transcoder_ua_header] => user-agent
[rss_support] => false
[pdf_support] => true
[progressive_download] => true
[playback_vcodec_h263_0] => -1
[playback_vcodec_h263_3] => -1
[playback_vcodec_mpeg4_sp] => -1
[playback_vcodec_mpeg4_asp] => -1
[playback_vcodec_h264_bp] => -1
[playback_real_media] => none
[playback_3gpp] => false
[playback_3g2] => false
[playback_mp4] => false
[playback_mov] => false
[playback_acodec_amr] => none
[playback_acodec_aac] => none
[playback_df_size_limit] => 0
[playback_directdownload_size_limit] => 0
[playback_inline_size_limit] => 0
[playback_oma_size_limit] => 0
[playback_acodec_qcelp] => false
[playback_wmv] => none
[hinted_progressive_download] => false
[html_preferred_dtd] => html4
[viewport_supported] => false
[viewport_width] =>
[viewport_userscalable] =>
[viewport_initial_scale] =>
[viewport_maximum_scale] =>
[viewport_minimum_scale] =>
[mobileoptimized] => false
[handheldfriendly] => false
[canvas_support] => none
[image_inlining] => true
[is_smarttv] => false
[is_console] => false
[nfc_support] => false
[ux_full_desktop] => true
[jqm_grade] => A
[is_sencha_touch_ok] => true
[controlcap_is_smartphone] => default
[controlcap_is_ios] => default
[controlcap_is_android] => default
[controlcap_is_robot] => default
[controlcap_is_app] => default
[controlcap_advertised_device_os] => default
[controlcap_advertised_device_os_version] => default
[controlcap_advertised_browser] => default
[controlcap_advertised_browser_version] => default
[controlcap_is_windows_phone] => default
[controlcap_is_full_desktop] => default
[controlcap_is_largescreen] => default
[controlcap_is_mobile] => default
[controlcap_is_touchscreen] => default
[controlcap_is_wml_preferred] => default
[controlcap_is_xhtmlmp_preferred] => default
[controlcap_is_html_preferred] => default
[controlcap_form_factor] => default
[controlcap_complete_device_name] => default
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr></table>
</div>
<div class="section">
<h1 class="header center orange-text">About this comparison</h1>
<div class="row center">
<h5 class="header light">
The primary goal of this project is simple<br />
I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br />
<br />
The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br />
<br />
You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br />
<br />
The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a>
</h5>
</div>
</div>
<div class="card">
<div class="card-content">
Comparison created <i>2016-01-26 16:40:43</i> | by
<a href="https://github.com/ThaDafinser">ThaDafinser</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.1.1/list.min.js"></script>
<script>
$(document).ready(function(){
// the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered
$('.modal-trigger').leanModal();
});
</script>
</body>
</html> | ThaDafinser/UserAgentParserComparison | v3/user-agent-detail/87/93/87930a1c-7e14-4d4e-b252-571a41598bcc.html | HTML | mit | 38,904 |
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Typing Timer</title>
<style>
html, body, #pane-west, main, iframe{
height: 100%;
margin: 0;
}
#input-text{
box-sizing: border-box;
height: 100%;
width: 100%;
padding: 1em;
}
#clock{
text-align: center;
font-size: 3em;
padding: .1em;
box-sizing: border-box;
}
body, #pane-west{
display: flex;
}
#pane-west{
flex-direction: column;
}
main, #browser{
flex-grow: 1;
}
#progress{
height: 16px;
width:0;
background: #0040FF;
}
</style>
<script>
var start, stop, reset, countdown, viewTime, finish, zeroPad,
setTime, time, countdownInterval, countdowning, r,
inputText, selectTime, inputTime, progressBar, clock, type,
startButton, resetButton;
zeroPad = function(num){
return ("0" + Math.floor(num)).slice(-2)
}
reset = function(){
setTime = time = selectTime.value === "custom" ?
inputTime.value : selectTime.value;
viewTime();
}
viewTime = function(){
clock.innerHTML =
zeroPad(time / 3600) + ":" + zeroPad((time / 60) % 60) + ":" + zeroPad(time % 60);
progressBar.style.width = (time / setTime * 100) + "%";
}
countdown = function(){
time--;
viewTime();
if(!time){
finish();
}
}
start = function(){
if(!time){
reset();
}
countdowning = true;
countdownInterval = setInterval(countdown, 1000)
}
stop = function(){
countdowning = false;
clearInterval(countdownInterval);
}
finish = function(){
stop();
if(confirm("おわったやで\nコピる?")){
inputText.focus();
document.getSelection().removeAllRanges();
r = document.createRange();
r.selectNode(type);
document.getSelection().addRange(r);
document.execCommand("copy");
document.getSelection().removeAllRanges();
}
reset();
}
</script>
</head>
<body>
<div id="pane-west">
<div id="timer">
<div id="clock">00:00:00</div>
<div>
<select id="select-time" name="">
<option value="600" selected>10分</option>
<option value="1200">20分</option>
<option value="1800">30分</option>
<option value="custom">カスタム</option>
</select>
<input id="input-time" type="number" placeholder="秒数を入力…" disabled>
</div>
<div>
<button id="start">スタート</button>
<button id="reset">リセット</button>
</div>
<div>
<div id="progress"></div>
</div>
<div><span id="type">0</span>文字</div>
</div>
<div id="browser">
<iframe src="" frameborder="0">Loading...</iframe>
</div>
</div>
<main>
<textarea id="input-text"></textarea>
</main>
<script>
inputText = document.getElementById("input-text");
selectTime = document.getElementById("select-time");
inputTime = document.getElementById("input-time");
progressBar = document.getElementById("progress");
clock = document.getElementById("clock");
type = document.getElementById("type");
startButton = document.getElementById("start");
resetButton = document.getElementById("reset");
selectTime.addEventListener("change", function(){
inputTime.disabled = this.value !== "custom";
reset();
});
inputTime.addEventListener("keyup", function() {
if(!isNaN(this.value)){
reset();
}
});
startButton.addEventListener("click", function(){
if(countdowning){
stop();
this.innerHTML = "スタート";
}else{
start();
this.innerHTML = "ストップ";
}
});
resetButton.addEventListener("click", reset);
inputText.addEventListener("keyup", function(){
type.innerHTML = this.value.length;
});
inputText.addEventListener("focus", start);
inputText.addEventListener("blur", stop);
reset();
</script>
</body>
</html>
| ygkn/TypingTimer | index.html | HTML | mit | 3,695 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=fn.park_timeout.html">
</head>
<body>
<p>Redirecting to <a href="fn.park_timeout.html">fn.park_timeout.html</a>...</p>
<script>location.replace("fn.park_timeout.html" + location.search + location.hash);</script>
</body>
</html> | liigo/liigo.github.io | tmp/rust/inline-sidebar-items/std/thread/park_timeout.v.html | HTML | mit | 321 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `Weighted` struct in crate `rand`.">
<meta name="keywords" content="rust, rustlang, rust-lang, Weighted">
<title>rand::distributions::Weighted - Rust</title>
<link rel="stylesheet" type="text/css" href="../../rustdoc.css">
<link rel="stylesheet" type="text/css" href="../../main.css">
<link rel="shortcut icon" href="https://www.rust-lang.org/favicon.ico">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<nav class="sidebar">
<a href='../../rand/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk.png' alt='logo' width='100'></a>
<p class='location'><a href='../index.html'>rand</a>::<wbr><a href='index.html'>distributions</a></p><script>window.sidebarCurrent = {name: 'Weighted', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</nav>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
type="search">
</div>
</form>
</nav>
<section id='main' class="content struct">
<h1 class='fqn'><span class='in-band'>Struct <a href='../index.html'>rand</a>::<wbr><a href='index.html'>distributions</a>::<wbr><a class='struct' href=''>Weighted</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>−</span>]
</a>
</span><a id='src-546' class='srclink' href='../../src/rand/distributions/mod.rs.html#84-89' title='goto source code'>[src]</a></span></h1>
<pre class='rust struct'>pub struct Weighted<T> {
pub weight: <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.u32.html'>u32</a>,
pub item: T,
}</pre><div class='docblock'><p>A value with a particular weight for use with <code>WeightedChoice</code>.</p>
</div><h2 class='fields'>Fields</h2>
<table><tr class='stab '>
<td id='structfield.weight'><code>weight</code></td><td><div class='docblock'><p>The numerical weight of this item</p>
</div></td></tr><tr class='stab '>
<td id='structfield.item'><code>item</code></td><td><div class='docblock'><p>The actual item which is being weighted</p>
</div></td></tr></table><h2 id='implementations'>Trait Implementations</h2><h3 id='derived_implementations'>Derived Implementations </h3><h3 class='impl'><span class='in-band'><code>impl<T: <a class='trait' href='https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a>> <a class='trait' href='https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> for <a class='struct' href='../../rand/distributions/struct.Weighted.html' title='rand::distributions::Weighted'>Weighted</a><T></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-550' class='srclink' href='../../src/rand/distributions/mod.rs.html#82' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'></div><h3 class='impl'><span class='in-band'><code>impl<T: <a class='trait' href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html' title='core::clone::Clone'>Clone</a>> <a class='trait' href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html' title='core::clone::Clone'>Clone</a> for <a class='struct' href='../../rand/distributions/struct.Weighted.html' title='rand::distributions::Weighted'>Weighted</a><T></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-552' class='srclink' href='../../src/rand/distributions/mod.rs.html#83' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.clone' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#tymethod.clone' class='fnname'>clone</a>(&self) -> <a class='struct' href='../../rand/distributions/struct.Weighted.html' title='rand::distributions::Weighted'>Weighted</a><T></code></h4>
<div class='docblock'><p>Returns a copy of the value. <a href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#tymethod.clone">Read more</a></p>
</div><h4 id='method.clone_from' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from' class='fnname'>clone_from</a>(&mut self, source: &Self)</code><div class='since' title='Stable since Rust version 1.0.0'>1.0.0</div></h4>
<div class='docblock'><p>Performs copy-assignment from <code>source</code>. <a href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from">Read more</a></p>
</div></div></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<aside id="help" class="hidden">
<div>
<h1 class="hidden">Help</h1>
<div class="shortcuts">
<h2>Keyboard Shortcuts</h2>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
<dt>+</dt>
<dd>Collapse/expand all sections</dd>
</dl>
</div>
<div class="infos">
<h2>Search Tricks</h2>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>type</code>, <code>macro</code>,
and <code>const</code>.
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code> or <code>* -> vec</code>)
</p>
</div>
</div>
</aside>
<script>
window.rootPath = "../../";
window.currentCrate = "rand";
window.playgroundUrl = "";
</script>
<script src="../../jquery.js"></script>
<script src="../../main.js"></script>
<script defer src="../../search-index.js"></script>
</body>
</html> | rxse/rust-markov-text | docs/rand/distributions/struct.Weighted.html | HTML | mit | 7,360 |
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-108814414-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-108814414-1');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title> Nike Women Fitness Wear </title> <!--# Added title-->
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
<!-- Plugin CSS -->
<link href="vendor/magnific-popup/magnific-popup.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/creative.min.landing.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="https://www.nike.com/us/en_us/c/women" target="_blank"> NIKE NIKE </a> <!--# swapped out competitive keywords -->
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<input type="text" name="search" placeholder="Search..">
</li>
</ul>
</div>
</div>
</nav>
<header class="masthead">
<div class="header-content">
<div class="header-content-inner">
<h1 id="homeHeading">Your Favorite Nike fitness wear </h1> <!--#added h1 tags / added key words-->
<hr>
<p>Be on the look out for Women exclusive new sneaker launch! Looking for lifesyle , running, or comfort style? The new release has it all!! </p> <!-- # would add this as a meta decrption -->
<a class="btn btn-primary btn-xl js-scroll-trigger" href="#Releases">Find Out More </a>
</div>
</div>
</header>
<section class="p-0" id="New Releases" href="#Releases">
<div class="container-fluid">
<div class="row no-gutter popup-gallery">
<div class="col-lg-4 col-sm-6">
<a class="portfolio-box" href="img/portfolio/fullsize/1.jpg" href="https://www.nike.com/t/air-vapormax-flyknit-womens-running-shoe-LAPV8l/849557-014" >
<img class="img-fluid" src="img/portfolio/thumbnails/1.jpg" alt=" Purple running air bubble sneakers"> <!-- Added alt tag using keywords-->
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Sneaker
</div>
<div class="project-name">
VaporMax
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a class="portfolio-box" href="img/portfolio/fullsize/2.jpg">
<img class="img-fluid" src="img/portfolio/thumbnails/2.jpg" alt=" Sport bra sizing"> <!-- added alt tag with less competitive keywords-->
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Nike Classic
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a class="portfolio-box" href="img/portfolio/fullsize/3.jpg">
<img class="img-fluid" src="img/portfolio/thumbnails/3.jpg" alt="Colorful narrow running sneakers"> <!-- alt tag -->
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Nike Racers
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a class="portfolio-box" href="img/portfolio/fullsize/4.jpg">
<img class="img-fluid" src="img/portfolio/thumbnails/4.jpg" alt="Grey Logo Pants"> <!-- added alt tag optimizing key words-->
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Nike SportWear
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a class="portfolio-box" href="img/portfolio/fullsize/5.jpg">
<img class="img-fluid" src="img/portfolio/thumbnails/5.jpg" alt=" Cream Color Sneakers"> <!-- added alt tag optimizing key words-->
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Nike Presto
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a class="portfolio-box" href="img/portfolio/fullsize/6.jpg">
<img class="img-fluid" src="img/portfolio/thumbnails/6.jpg" alt="">
<div class="portfolio-box-caption">
<div class="portfolio-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Nike Tech
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- HTML Codes by Quackit.com -->
<div>
<style type="text/css">
textarea.html-text-box {background-color:#ffffff;background-image:url(http://);background-repeat:no-repeat;background-attachment:scroll;border-width:1;border-style:solid;border-color:#f05f40;font-family:Arial;font-size:14pt;color:#000000;position: middle;}
input.html-text-box {background-color:#f05f40;font-family:Arial;font-size:14pt;color:#FFFFFF;}
</style>
<form method="post" action="http://"><textarea name="comments" cols="30" rows="5" class="html-text-box">Comments here...</textarea><br><input type="submit" value="Submit" class="html-text-box"><input type="reset" value="Reset" class="html-text-box"></form>
</div>
<div class="call-to-action bg-dark">
<div class="container text-center">
<h2>Sign up now!</h2> <!-- added h2 tag-->
<a class="btn btn-default btn-xl sr-button" href="https://www.nike.com/us/en_us/s/register">Sign Up!</a>
</div>
</div>
</section>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/popper/popper.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<script src="vendor/scrollreveal/scrollreveal.min.js"></script>
<script src="vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<!-- Custom scripts for this template -->
<script src="js/creative.min.js"></script>
</body>
</html>
| mmoreaux13/Assignment-1 | landing-page-b.html | HTML | mit | 8,696 |
<!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">
<title>Bootstrap Portfolio Page Template</title>
<!-- Bootstrap -->
<link href="css/bootstrap-4.0.0.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark"><a class="navbar-brand" href="#">J.T.Lodermeier</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active"> <a class="nav-link" href="#">Work<span class="sr-only">(current)</span></a> </li>
<li class="nav-item"> </li>
<li class="nav-item dropdown"><a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> About </a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
<li class="nav-item"> <a class="nav-link disabled" href="#">Contact</a> </li>
</ul>
<form class="form-inline my-2 my-lg-0">
</form>
</div>
</nav>
<section>
<div class="jumbotron text-center mt-2">
<div>Content for New div Tag Goes Here</div>
<div class="col-12 col-xl-4">
<h1>Jackson Lodermeier</h1>
<p>GIS ~ Cartography ~ Design</p>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h1>Lorem ipsum dolor sit amet</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quibusdam, magni, doloribus, possimus eum sapiente deleniti doloremque fugit ut expedita molestiae iusto debitis eveniet modi obcaecati ipsam quos quis labore dicta.</p>
</div>
</div>
</div>
</section>
<section>
<div class="container mt-2">
<div class="row">
<div class="col-md-4 col-12">
<ul class="list-unstyled">
<li class="media">
<img class="mr-3" src="images/35X35.gif" alt="Generic placeholder image">
<div class="media-body">
<h5 class="mt-0 mb-1">List-based media object</h5>
Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin.
</div>
</li>
</ul>
</div>
<div class="col-md-4 col-12">
<ul class="list-unstyled">
<li class="media">
<img class="mr-3" src="images/35X35.gif" alt="Generic placeholder image">
<div class="media-body">
<h5 class="mt-0 mb-1">List-based media object</h5>
Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin.
</div>
</li>
</ul>
</div>
<div class="col-md-4 col-12">
<ul class="list-unstyled">
<li class="media">
<img class="mr-3" src="images/35X35.gif" alt="Generic placeholder image">
<div class="media-body">
<h5 class="mt-0 mb-1">List-based media object</h5>
Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin.
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h2>Latest Work</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officia, et, placeat !</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-12 text-center">
<img class="img-fluid" src="images/400x400.gif" alt="">
<h4>Lorem ipsum dolor sit amet, consectetur elit</h4>
<h6>Lorem ipsum dolor sit amet, consectetur elit</h6>
</div>
<div class="col-md-6 col-12 text-center mt-md-0 mt-2">
<img class="img-fluid" src="images/400x400.gif" alt="">
<h4>Lorem ipsum dolor sit amet, consectetur elit</h4>
<h6>Lorem ipsum dolor sit amet, consectetur elit</h6>
</div>
</div>
<div class="row mt-2">
<div class="col-md-3 col-6"><img class="img-fluid float-right" src="images/200x200.gif" alt=""></div>
<div class="col-md-3 col-6"><img class="img-fluid float-left" src="images/200x200.gif" alt=""></div>
<div class="col-md-3 col-6 mt-md-0 mt-1"><img class="img-fluid float-right" src="images/200x200.gif" alt=""></div>
<div class="col-md-3 col-6 mt-md-0 mt-1"><img class="img-fluid float-left" src="images/200x200.gif" alt=""></div>
</div>
<hr>
<div class="row">
<div class="col-md-3 col-6"><img class="img-fluid float-right" src="images/200x200.gif" alt=""></div>
<div class="col-md-3 col-6"><img class="img-fluid float-left" src="images/200x200.gif" alt=""></div>
<div class="col-md-3 col-6 mt-md-0 mt-1"><img class="img-fluid float-right" src="images/200x200.gif" alt=""></div>
<div class="col-md-3 col-6 mt-md-0 mt-1"><img class="img-fluid float-left" src="images/200x200.gif" alt=""></div>
</div>
</div>
</section>
<hr>
<section>
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h1>Lorem ipsum dolor sit amet</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quibusdam, magni, doloribus, possimus eum sapiente deleniti doloremque fugit ut expedita molestiae iusto debitis eveniet modi obcaecati ipsam quos quis labore dicta.</p>
<button type="button" class="btn btn-success">Get in touch</button>
</div>
</div>
</div>
</section>
<hr>
<div class="section">
<div class="container">
<div class="row">
<div class="col-md-4 col-12">
<h3 class="text-center">WHO WE ARE</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus, ducimus, sit, quibusdam quidem recusandae veniam eos quod error nisi repellat excepturi laboriosam aspernatur suscipit possimus consectetur dolores nihil labore quas eius illo accusamus nulla sed blanditiis porro accusantium. Perspiciatis, perferendis!</p>
</div>
<div class="col-md-4 col-12">
<h3 class="text-center">GET IN TOUCH</h3>
<address class="text-center">
<strong>MyCompany, Inc.</strong><br>
Sunny Autumn Plaza, Grand Coulee,<br>
CA, 91308-4075, US<br>
<abbr title="Phone">P:</abbr> (123) 456-7890
</address>
</div>
<div class="col-md-4 col-12">
<h3 class="text-center">NEWSLETTER</h3>
<form>
<div class="form-group col-12">
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
<button type="submit" class="btn btn-dark mt-2">Subscribe</button>
</div>
</form>
</div>
</div>
</div>
</div>
<hr>
<footer class="text-center">
<div class="container">
<div class="row">
<div class="col-12">
<p>Copyright © MyCompany. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-3.2.1.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/popper.min.js"></script>
<script src="js/bootstrap-4.0.0.js"></script>
</body>
</html> | uwcartlab/uwcl.preview | education/G572/2018FA/LodermeierJackson/images/Portfolio.html | HTML | mit | 8,514 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport"/>
<meta content="telephone=no" name="format-detection"/>
<meta content="address=no" name="format-detection"/>
<title> 治滴虫性阴道炎方 </title>
<link href="./css/drug.css?v=1" rel="stylesheet" type="text/css"/>
<link href="./css/reset.css?v=1" rel="stylesheet" type="text/css"/>
</head>
<body class="bg-fff">
<section>
<dl>
<dd> 组方:苦参70克,桃树叶50克,柳树叶50克,蛇床子30克,贯众50克。<p></p> 用法:将上药加水500毫升,煎煮两次,过滤去渣,将滤液再煮浓缩至100毫升,做14个大棉球,用线扎紧,留线10~15毫米。将棉球高压消毒后浸入上述浓缩液中饱吸,即得。同时每晚用1%高锰酸钾溶液清洗外阴后,取药棉球1个送入阴道内,留线阴道外,次日晨起将棉球取出,连用14天为一疗程。</dd>
</dl>
</section>
</body>
<!--zly-->
</html> | hucaihua/cmssp | server/html/disease/279.html | HTML | mit | 1,097 |
---
layout: default
current: author
title: Author Page
cover: false
class: 'author-template'
navigation: True
label: Author
logo: 'assets/images/ghost.png'
---
<!-- < default}} -->
<!-- The tag above means - insert everything in this file into the {body} of the default.hbs template -->
<!-- #author -->
<!-- Everything inside the #author tags pulls data from the author -->
{% for author in site.data.authors %}
{% if author[1].username == page.author %}
<header class="site-header outer {% if author[1].cover or page.cover %}" style="background-image: url({{ '/' | relative_url }}{% if author[1].cover %}{{ author[1].cover }}{% elsif page.cover %}{{ page.cover }}{% endif %}) {% else %}no-cover{% endif %}">
<div class="inner">
{% include site-nav.html %}
<div class="site-header-content">
{% if author[1].picture %}
<img class="author-profile-image" src="{{ '/' | relative_url }}{{ author[1].picture }}" alt="{{ page.author }}" />
{% endif %}
<h1 class="site-title">{{ author[1].name }}</h1>
{% if author[1].bio %}
<h2 class="author-bio">{{ author[1].bio }}</h2>
{% endif %}
<div class="author-meta">
{% if author[1].location %}
<div class="author-location">{{ author[1].location }} <span class="bull">•</span></div>
{% endif %}
<div class="author-stats">
{% if paginator.total_posts == 0 %}No posts{% elsif paginator.total_posts == 1 %}1 post{% else %}{{ paginator.total_posts }} posts{% endif %} <span class="bull">•</span>
</div>
{% if author[1].url %}
<a class="social-link social-link-wb" href="{{ author[1].url_full }}" target="_blank" rel="noopener">{% include website.html %}</a>
{% endif %}
{% if author[1].twitter %}
<a class="social-link social-link-tw" href="https://twitter.com/{{ author[1].twitter }}" target="_blank" rel="noopener">{% include twitter.html %}</a>
{% endif %}
{% if author[1].facebook %}
<a class="social-link social-link-fb" href="https://facebook.com/{{ author[1].facebook }}" target="_blank" rel="noopener">{% include facebook.html %}</a>
{% endif %}
<a class="social-link social-link-rss" href="https://feedly.com/i/subscription/feed/{{ site.url }}{{ '/' | relative_url }}author/{{ page.author }}/feed.xml" target="_blank" rel="noopener">{% include rss.html %}</a>
</div>
</div>
</div>
</header>
{% endif %}
{% endfor %}
<!-- /author -->
<!-- The main content area -->
<main id="site-main" class="site-main outer" role="main">
<div class="inner">
<div class="post-feed">
<!-- The tag below includes the markup for each post - partials/post-card.hbs -->
{% include post-card.html %}
</div>
</div>
</main>
| CimeM/CimeM.github.io | _layouts/author.html | HTML | mit | 3,165 |
<html><body><p><!-- saved from url=(0024)http://docs.autodesk.com -->
<!DOCTYPE html>
<!-- Mirrored from help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/PyMel/generated/functions/pymel.core.animation/pymel.core.animation.mirrorJoint.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 01 Aug 2015 05:34:05 GMT -->
<!-- Added by HTTrack --><meta content="text/html;charset=utf-8" http-equiv="content-type"/><!-- /Added by HTTrack -->
</p>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<title>pymel.core.animation.mirrorJoint — PyMEL 1.0.7 documentation</title>
<link href="../../../_static/nature.css" rel="stylesheet" type="text/css"/>
<link href="../../../_static/pygments.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../../../',
VERSION: '1.0.7',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script src="../../../_static/jquery.js" type="text/javascript"></script>
<script src="../../../_static/underscore.js" type="text/javascript"></script>
<script src="../../../_static/doctools.js" type="text/javascript"></script>
<link href="../../../index-2.html" rel="top" title="PyMEL 1.0.7 documentation"/>
<link href="../../pymel.core.animation.html" rel="up" title="pymel.core.animation"/>
<link href="pymel.core.animation.movIn.html" rel="next" title="pymel.core.animation.movIn"/>
<link href="pymel.core.animation.marker.html" rel="prev" title="pymel.core.animation.marker"/>
<link href="../../../../style/adsk.cpm.css" rel="stylesheet" type="text/css"/><meta content="expert" name="experiencelevel"/><meta content="programmer" name="audience"/><meta content="enable" name="user-comments"/><meta content="ENU" name="language"/><meta content="MAYAUL" name="product"/><meta content="2016" name="release"/><meta content="Customization" name="book"/><meta content="Maya-Tech-Docs" name="component"/><meta content="/view/MAYAUL/2016/ENU/" name="helpsystempath"/><meta content="04/03/2015" name="created"/><meta content="04/03/2015" name="modified"/><meta content="Navigation
index
modules |
next |
previous |
PyMEL 1.0.7 documentation »
pymel.core.animation »
pymel.core.animation.mirrorJoint ¶
mirrorJoint ( *args , **kwargs ) ¶
This command will duplicate a branch of the skeleton from the selected joint symmetrically about a plane in world space.
There are three mirroring modes(xy-, yz-, xz-plane).
Flags:
Long Name / Short Name
Argument Types
Properties..." name="description"/><meta content="__PyMel_generated_functions_pymel_core_animation_pymel_core_animation_mirrorJoint_html" name="topicid"/>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a accesskey="I" href="../../../genindex.html" title="General Index">index</a></li>
<li class="right">
<a href="../../../py-modindex.html" title="Python Module Index">modules</a> |</li>
<li class="right">
<a accesskey="N" href="pymel.core.animation.movIn.html" title="pymel.core.animation.movIn">next</a> |</li>
<li class="right">
<a accesskey="P" href="pymel.core.animation.marker.html" title="pymel.core.animation.marker">previous</a> |</li>
<li><a href="../../../index-2.html">PyMEL 1.0.7 documentation</a> »</li>
<li><a accesskey="U" href="../../pymel.core.animation.html">pymel.core.animation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="pymel-core-animation-mirrorjoint">
<h1>pymel.core.animation.mirrorJoint<a class="headerlink" href="#pymel-core-animation-mirrorjoint" title="Permalink to this headline">¶</a></h1>
<dl class="function">
<dt id="pymel.core.animation.mirrorJoint"><a name="//apple_ref/cpp/Function/pymel.core.animation.mirrorJoint"></a>
<tt class="descname">mirrorJoint</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.animation.mirrorJoint" title="Permalink to this definition">¶</a></dt>
<dd><p>This command will duplicate a branch of the skeleton from the selected joint symmetrically about a plane in world space.
There are three mirroring modes(xy-, yz-, xz-plane).</p>
<p class="rubric">Flags:</p>
<table border="1" class="docutils">
<colgroup>
<col width="1%"></col>
<col width="61%"></col>
<col width="19%"></col>
<col width="19%"></col>
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head" colspan="2">Long Name / Short Name</th>
<th class="head">Argument Types</th>
<th class="head">Properties</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td colspan="2"><tt class="docutils literal"><span class="pre">mirrorBehavior</span></tt> / <tt class="docutils literal"><span class="pre">mb</span></tt></td>
<td><em>bool</em></td>
<td><img alt="../../../_images/create.gif" class="first last" src="../../../_images/create.gif"/>
</td>
</tr>
<tr class="row-odd"><td> </td>
<td colspan="3"><p class="first">The mirrorBehavior flag is used to specify that when performing the mirror, the joint orientation axes should be mirrored such that equal rotations on the
original and mirrored joints will place the skeleton in a mirrored position (symmetric across the mirroring plane). Thus, animation curves from the original
joints can be copied to the mirrored side to produce a similar (but symmetric) behavior. When mirrorBehavior is not specified, the joint orientation on the
mirrored side will be identical to the source side.</p>
<blockquote class="last">
<div></div></blockquote>
</td>
</tr>
<tr class="row-even"><td colspan="2"><tt class="docutils literal"><span class="pre">mirrorXY</span></tt> / <tt class="docutils literal"><span class="pre">mxy</span></tt></td>
<td><em>bool</em></td>
<td><img alt="../../../_images/create.gif" class="first last" src="../../../_images/create.gif"/>
</td>
</tr>
<tr class="row-odd"><td> </td>
<td colspan="3"><dl class="first last docutils">
<dt>mirror skeleton from the selected joint about xy-plane in world space.</dt>
<dd></dd>
</dl>
</td>
</tr>
<tr class="row-even"><td colspan="2"><tt class="docutils literal"><span class="pre">mirrorXZ</span></tt> / <tt class="docutils literal"><span class="pre">mxz</span></tt></td>
<td><em>bool</em></td>
<td><img alt="../../../_images/create.gif" class="first last" src="../../../_images/create.gif"/>
</td>
</tr>
<tr class="row-odd"><td> </td>
<td colspan="3"><dl class="first last docutils">
<dt>mirror skeleton from the selected joint about xz-plane in world space.</dt>
<dd></dd>
</dl>
</td>
</tr>
<tr class="row-even"><td colspan="2"><tt class="docutils literal"><span class="pre">mirrorYZ</span></tt> / <tt class="docutils literal"><span class="pre">myz</span></tt></td>
<td><em>bool</em></td>
<td><img alt="../../../_images/create.gif" class="first last" src="../../../_images/create.gif"/>
</td>
</tr>
<tr class="row-odd"><td> </td>
<td colspan="3"><dl class="first last docutils">
<dt>mirror skeleton from the selected joint about yz-plane in world space.</dt>
<dd></dd>
</dl>
</td>
</tr>
<tr class="row-even"><td colspan="2"><tt class="docutils literal"><span class="pre">searchReplace</span></tt> / <tt class="docutils literal"><span class="pre">sr</span></tt></td>
<td><em>unicode, unicode</em></td>
<td><img alt="../../../_images/create.gif" class="first last" src="../../../_images/create.gif"/>
</td>
</tr>
<tr class="row-odd"><td> </td>
<td colspan="3"><p class="first">After performing the mirror, rename the new joints by searching the name for the first specified string and replacing it with the second specified string.
Flag can have multiple arguments, passed either as a tuple or a list.</p>
<blockquote class="last">
<div></div></blockquote>
</td>
</tr>
</tbody>
</table>
<p>Derived from mel command <tt class="xref py py-obj docutils literal"><span class="pre">maya.cmds.mirrorJoint</span></tt></p>
<p class="rubric">Example:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">pymel.core</span> <span class="kn">as</span> <span class="nn">pm</span>
<span class="c"># Create a mirrored branch of the skeleton starting from the joint "jointName"</span>
<span class="c"># about the yz-plane.</span>
<span class="c"># Joint orientations on the mirrored side will be identical to the source side.</span>
<span class="c">#</span>
<span class="n">pm</span><span class="o">.</span><span class="n">mirrorJoint</span><span class="p">(</span> <span class="s">'jointName'</span> <span class="p">)</span>
<span class="c"># Create a mirrored branch of the skeleton starting from the joint "jointName"</span>
<span class="c"># about the yz-plane.</span>
<span class="c"># Joint orientations on the mirrored side will be mirrored from the source side.</span>
<span class="c">#</span>
<span class="n">pm</span><span class="o">.</span><span class="n">mirrorJoint</span><span class="p">(</span><span class="s">'jointName'</span><span class="p">,</span><span class="n">mirrorBehavior</span><span class="o">=</span><span class="bp">True</span><span class="p">,</span><span class="n">myz</span><span class="o">=</span><span class="bp">True</span><span class="p">)</span>
<span class="c"># Create a mirrored branch of the skeleton starting from the selected joint</span>
<span class="c"># about the xy-plane.</span>
<span class="c"># Joint orientations on the mirrored side will be mirrored from the source side.</span>
<span class="c"># Joint names on the duplicated side will contain the string "right_" if</span>
<span class="c"># the corresponding joint on the original side contained the string "left_".</span>
<span class="c">#</span>
<span class="n">pm</span><span class="o">.</span><span class="n">mirrorJoint</span><span class="p">(</span><span class="n">mirrorXY</span><span class="o">=</span><span class="bp">True</span><span class="p">,</span><span class="n">mirrorBehavior</span><span class="o">=</span><span class="bp">True</span><span class="p">,</span><span class="n">searchReplace</span><span class="o">=</span><span class="p">(</span><span class="s">'left_'</span><span class="p">,</span> <span class="s">'right_'</span><span class="p">)</span> <span class="p">)</span>
</pre></div>
</div>
</dd></dl>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="pymel.core.animation.marker.html" title="previous chapter">pymel.core.animation.marker</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="pymel.core.animation.movIn.html" title="next chapter">pymel.core.animation.movIn</a></p>
<h3><a href="../../../modules.html">Core Modules</a></h3>
<ul>
<li><a class="reference external" href="../../pymel.core.animation.html#module-pymel.core.animation"><tt class="xref">animation</tt></a></li>
<li><a class="reference external" href="../../pymel.core.effects.html#module-pymel.core.effects"><tt class="xref">effects</tt></a></li>
<li><a class="reference external" href="../../pymel.core.general.html#module-pymel.core.general"><tt class="xref">general</tt></a></li>
<li><a class="reference external" href="../../pymel.core.language.html#module-pymel.core.language"><tt class="xref">language</tt></a></li>
<li><a class="reference external" href="../../pymel.core.modeling.html#module-pymel.core.modeling"><tt class="xref">modeling</tt></a></li>
<li><a class="reference external" href="../../pymel.core.rendering.html#module-pymel.core.rendering"><tt class="xref">rendering</tt></a></li>
<li><a class="reference external" href="../../pymel.core.system.html#module-pymel.core.system"><tt class="xref">system</tt></a></li>
<li><a class="reference external" href="../../pymel.core.windows.html#module-pymel.core.windows"><tt class="xref">windows</tt></a></li>
</ul>
<h3><a href="../../../modules.html">Type Modules</a></h3>
<ul>
<li><a class="reference external" href="../../pymel.core.datatypes.html#module-pymel.core.datatypes"><tt class="xref">datatypes</tt></a></li>
<li><a class="reference external" href="../../pymel.core.nodetypes.html#module-pymel.core.nodetypes"><tt class="xref">nodetypes</tt></a></li>
<li><a class="reference external" href="../../pymel.core.uitypes.html#module-pymel.core.uitypes"><tt class="xref">uitypes</tt></a></li>
</ul>
<h3><a href="../../../modules.html">Other Modules</a></h3>
<ul>
<li><a class="reference external" href="../../pymel.api.plugins.html#module-pymel.api.plugins"><tt class="xref">plugins</tt></a></li>
<li><a class="reference external" href="../../pymel.mayautils.html#module-pymel.mayautils"><tt class="xref">mayautils</tt></a></li>
<li><a class="reference external" href="../../pymel.util.html#module-pymel.util"><tt class="xref">util</tt></a></li>
<li><a class="reference external" href="../../pymel.versions.html#module-pymel.versions"><tt class="xref">versions</tt></a>
</li><li><a class="reference external" href="../../pymel.tools.html#module-pymel.tools"><tt class="xref">tools</tt></a></li>
</ul>
<!--
<ul>
<li><a class="reference external" href="../../pymel.core.animation.html.html#module-pymel.core.animation"><tt class="xref">animation</tt></a></li>
<li><a class="reference external" href="../../pymel.core.datatypes.html.html#module-pymel.core.datatypes"><tt class="xref">datatypes</tt></a></li>
<li><a class="reference external" href="../../pymel.core.effects.html.html#module-pymel.core.effects"><tt class="xref">effects</tt></a></li>
<li><a class="reference external" href="../../pymel.core.general.html.html#module-pymel.core.general"><tt class="xref">general</tt></a></li>
<li><a class="reference external" href="../../pymel.core.language.html.html#module-pymel.core.language"><tt class="xref">language</tt></a></li>
<li><a class="reference external" href="../../pymel.core.modeling.html.html#module-pymel.core.modeling"><tt class="xref">modeling</tt></a></li>
<li><a class="reference external" href="../../pymel.core.nodetypes.html.html#module-pymel.core.nodetypes"><tt class="xref">nodetypes</tt></a></li>
<li><a class="reference external" href="../../pymel.core.rendering.html.html#module-pymel.core.rendering"><tt class="xref">rendering</tt></a></li>
<li><a class="reference external" href="../../pymel.core.system.html.html#module-pymel.core.system"><tt class="xref">system</tt></a></li>
<li><a class="reference external" href="../../pymel.core.windows.html.html#module-pymel.core.windows"><tt class="xref">windows</tt></a></li>
<li><a class="reference external" href="../../pymel.util.html.html#module-pymel.util"><tt class="xref">pymel.util</tt></a></li>
</ul>
-->
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../../../_sources/generated/functions/pymel.core.animation/pymel.core.animation.mirrorJoint.txt" rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form action="http://help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/PyMel/search.html" class="search" method="get"></form>
<input name="q" type="text"/>
<input type="submit" value="Go"/>
<input name="check_keywords" type="hidden" value="yes"/>
<input name="area" type="hidden" value="default"/>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../../../genindex.html" title="General Index">index</a></li>
<li class="right">
<a href="../../../py-modindex.html" title="Python Module Index">modules</a> |</li>
<li class="right">
<a href="pymel.core.animation.movIn.html" title="pymel.core.animation.movIn">next</a> |</li>
<li class="right">
<a href="pymel.core.animation.marker.html" title="pymel.core.animation.marker">previous</a> |</li>
<li><a href="../../../index-2.html">PyMEL 1.0.7 documentation</a> »</li>
<li><a href="../../pymel.core.animation.html">pymel.core.animation</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2009, Chad Dombrova.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.3.
</div>
<!-- Mirrored from help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/PyMel/generated/functions/pymel.core.animation/pymel.core.animation.mirrorJoint.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 01 Aug 2015 05:34:05 GMT -->
</body></html> | alexwidener/PyMelDocset | PyMel.docset/Contents/Resources/Documents/generated/functions/pymel.core.animation/pymel.core.animation.mirrorJoint.html | HTML | mit | 16,534 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.6"/>
<title>Bad Philophobia: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
</script><script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Bad Philophobia
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.6 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Packages</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Variables</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="namespacepkg__commands.html">pkg_commands</a></li><li class="navelem"><a class="el" href="classpkg__commands_1_1BeamerCommand.html">BeamerCommand</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">pkg_commands.BeamerCommand Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classpkg__commands_1_1BeamerCommand.html">pkg_commands.BeamerCommand</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="classpkg__commands_1_1BeamerCommand.html#a541cd046e7680452f451322c1730e675">BeamerCommand</a>()</td><td class="entry"><a class="el" href="classpkg__commands_1_1BeamerCommand.html">pkg_commands.BeamerCommand</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classpkg__commands_1_1BeamerCommand.html#ae71665296a18d581ad1f714c1078e37b">charge</a>(Player player)</td><td class="entry"><a class="el" href="classpkg__commands_1_1BeamerCommand.html">pkg_commands.BeamerCommand</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classpkg__commands_1_1BeamerCommand.html#a139dc852e180cabd8af15cfed37dcf0e">execute</a>(Player player)</td><td class="entry"><a class="el" href="classpkg__commands_1_1BeamerCommand.html">pkg_commands.BeamerCommand</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html#ac2a42e2bab264821892daefaf9a18b6c">getMessage</a>()</td><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html">pkg_commands.Command</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html#a41c92d445be73ea9d62320c65efb8434">getParameter</a>()</td><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html">pkg_commands.Command</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classpkg__commands_1_1GoCommand.html#ae9ef6c18b0cbd0e0104261bdedf9a9d7">getRandomRoom</a>()</td><td class="entry"><a class="el" href="classpkg__commands_1_1GoCommand.html">pkg_commands.GoCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html#a20d3ebdc0683a87b43be2a92a1cad111">getSecondParameter</a>()</td><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html">pkg_commands.Command</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classpkg__commands_1_1GoCommand.html#af87b7ac858440df2c3d850c89441f4c7">GoCommand</a>()</td><td class="entry"><a class="el" href="classpkg__commands_1_1GoCommand.html">pkg_commands.GoCommand</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classpkg__commands_1_1GoCommand.html#acbf1aa81fa5b1aef7cafb8b4e3ace3a9">goRoomCheck</a>(Room room, Player player, boolean back)</td><td class="entry"><a class="el" href="classpkg__commands_1_1GoCommand.html">pkg_commands.GoCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="classpkg__commands_1_1GoCommand.html#a210afbc5f3ef34d3ad5759d853c8f8c2">goRoomNoCheck</a>(Room room, Player player, boolean back)</td><td class="entry"><a class="el" href="classpkg__commands_1_1GoCommand.html">pkg_commands.GoCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html#ae46bb048d0fa705a5037a5204b530da2">hasMessage</a>()</td><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html">pkg_commands.Command</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html#a02af95ab3f1898a66259ab7c177b6998">hasParameter</a>()</td><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html">pkg_commands.Command</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html#add688a76d80576c34f23927da19b9e2d">hasSecondParameter</a>()</td><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html">pkg_commands.Command</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html#ae210ff216fe908b111ba1c988a963d13">setMessage</a>(String message)</td><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html">pkg_commands.Command</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html#a18446243a5fd360e9341b4b141c0cccc">setParameter</a>(String parameter)</td><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html">pkg_commands.Command</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html#af6de3828c27cd491ad24c4a97d69e856">setSecondParameter</a>(String parameter)</td><td class="entry"><a class="el" href="classpkg__commands_1_1Command.html">pkg_commands.Command</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Jun 9 2014 21:28:30 for Bad Philophobia by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.6
</small></address>
</body>
</html>
| minijackson/Bad-Philophobia | userdoc/html/classpkg__commands_1_1BeamerCommand-members.html | HTML | mit | 10,134 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- Generated by Apache Maven Doxia at Nov 5, 2011 -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>checkstyle -
Configuration</title>
<style type="text/css" media="all">
@import url("./css/maven-base.css");
@import url("./css/maven-theme.css");
@import url("./css/site.css");
</style>
<link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
<meta name="author" content="Lars Kühne" />
<meta name="Date-Revision-yyyymmdd" content="20111105" />
<meta http-equiv="Content-Language" content="en" />
</head>
<body class="composite">
<div id="banner">
<div id="bannerLeft">
Checkstyle 5.5
</div>
<a href="" id="bannerRight" title="Checkstyle">
<img src="images/logo.png" alt="Checkstyle" />
</a>
<div class="clear">
<hr/>
</div>
</div>
<div id="breadcrumbs">
<div class="xleft">
<span id="publishDate">Last Published: 2011-11-05</span>
| <span id="projectVersion">Version: 5.5</span>
</div>
<div class="xright">
</div>
<div class="clear">
<hr/>
</div>
</div>
<div id="leftColumn">
<div id="navcolumn">
<h5>About</h5>
<ul>
<li class="none">
<a href="index.html" title="Checkstyle">Checkstyle</a>
</li>
<li class="none">
<a href="releasenotes.html" title="Release Notes">Release Notes</a>
</li>
</ul>
<h5>Documentation</h5>
<ul>
<li class="expanded">
<strong>Configuration</strong>
<ul>
<li class="none">
<a href="property_types.html" title="Property Types">Property Types</a>
</li>
</ul>
</li>
<li class="expanded">
<a href="running.html" title="Running">Running</a>
<ul>
<li class="none">
<a href="anttask.html" title="Ant Task">Ant Task</a>
</li>
<li class="none">
<a href="cmdline.html" title="Command Line">Command Line</a>
</li>
</ul>
</li>
<li class="none">
<a href="availablechecks.html" title="Available Checks">Available Checks</a>
</li>
<li class="expanded">
<a href="checks.html" title="Standard Checks">Standard Checks</a>
<ul>
<li class="none">
<a href="config_annotation.html" title="Annotations">Annotations</a>
</li>
<li class="none">
<a href="config_blocks.html" title="Block Checks">Block Checks</a>
</li>
<li class="none">
<a href="config_design.html" title="Class Design">Class Design</a>
</li>
<li class="none">
<a href="config_coding.html" title="Coding">Coding</a>
</li>
<li class="none">
<a href="config_duplicates.html" title="Duplicate Code">Duplicate Code</a>
</li>
<li class="none">
<a href="config_header.html" title="Headers">Headers</a>
</li>
<li class="none">
<a href="config_imports.html" title="Imports">Imports</a>
</li>
<li class="none">
<a href="config_javadoc.html" title="Javadoc Comments">Javadoc Comments</a>
</li>
<li class="none">
<a href="config_metrics.html" title="Metrics">Metrics</a>
</li>
<li class="none">
<a href="config_misc.html" title="Miscellaneous">Miscellaneous</a>
</li>
<li class="none">
<a href="config_modifier.html" title="Modifiers">Modifiers</a>
</li>
<li class="none">
<a href="config_naming.html" title="Naming Conventions">Naming Conventions</a>
</li>
<li class="none">
<a href="config_regexp.html" title="Regexp">Regexp</a>
</li>
<li class="none">
<a href="config_sizes.html" title="Size Violations">Size Violations</a>
</li>
<li class="none">
<a href="config_whitespace.html" title="Whitespace">Whitespace</a>
</li>
</ul>
</li>
<li class="expanded">
<a href="extending.html" title="Extending Checkstyle">Extending Checkstyle</a>
<ul>
<li class="none">
<a href="writingchecks.html" title="Writing checks">Writing checks</a>
</li>
<li class="none">
<a href="writingfilters.html" title="Writing filters">Writing filters</a>
</li>
<li class="none">
<a href="writinglisteners.html" title="Writing listeners">Writing listeners</a>
</li>
</ul>
</li>
</ul>
<h5>Developers</h5>
<ul>
<li class="none">
<a href="apidocs/index.html" title="Javadoc">Javadoc</a>
</li>
<li class="none">
<a href="http://sourceforge.net/projects/checkstyle" class="externalLink" title="Project Page">Project Page</a>
</li>
<li class="none">
<a href="contributing.html" title="Contributing">Contributing</a>
</li>
</ul>
<h5>Project Documentation</h5>
<ul>
<li class="collapsed">
<a href="project-info.html" title="Project Information">Project Information</a>
</li>
<li class="collapsed">
<a href="project-reports.html" title="Project Reports">Project Reports</a>
</li>
</ul>
<a href="http://sourceforge.net/projects/checkstyle" title="SourceForge" class="poweredBy">
<img class="poweredBy" alt="SourceForge" src="http://sflogo.sourceforge.net/sflogo.php?group_id=29721&type=11" />
</a>
</div>
</div>
<div id="bodyColumn">
<div id="contentBox">
<div class="section"><h2>Overview<a name="Overview"></a></h2>
<p>
A Checkstyle configuration specifies which <i>modules</i> to
plug in and apply to Java source files. Modules are structured
in a tree whose root is the <i>Checker</i> module. The next
level of modules contains:
</p>
<ul>
<li><i>FileSetChecks</i> - modules that take a set of input
files and fire error messages.</li>
<li><i>Filters</i>
- modules that filter audit events,
including error messages, for acceptance.</li>
<li><i>AuditListeners</i> - modules that report accepted events.</li>
</ul>
<p>
Many checks are submodules of the <i>TreeWalker</i>
FileSetCheck module. The TreeWalker operates by separately
transforming each of the Java source files into an abstract
syntax tree and then handing the result over to each of its
submodules which in turn have a look at certain aspects of the
tree.
</p>
<p>
Checkstyle obtains a configuration from an XML document whose
elements specify the configuration's hierarchy of modules and
their properties. You provide a file that contains the
configuration document when you invoke Checkstyle at the <a href="cmdline.html">command line</a>, and when you run a <a href="anttask.html">Checkstyle task</a> in ant. The
documentation directory of the Checkstyle distribution contains
a sample configuration file <i>sun_checks.xml</i> which
configures Checkstyle to check for the Sun coding conventions.
</p>
</div>
<div class="section"><h2>Modules<a name="Modules"></a></h2>
<p>
A <tt>module</tt> element in the configuration
XML document specifies a module identified by the element's
<tt>name</tt> attribute.
</p>
<p>
Here is a fragment of a typical configuration document:
</p>
<div class="source"><pre>
<module name="Checker">
<module name="JavadocPackage"/>
<module name="TreeWalker">
<module name="AvoidStarImport"/>
<module name="ConstantName"/>
<module name="EmptyBlock"/>
</module>
</module>
</pre></div>
<p>
In this configuration:
</p>
<ul>
<li>
Root module <tt>Checker</tt> has child
FileSetChecks <tt>JavadocPackage</tt> and <tt>TreeWalker</tt>. (Module <a href="config_javadoc.html"> <tt>JavadocPackage</tt></a> checks that all packages
have package documentation.)
</li>
<li>
Module <tt>TreeWalker</tt> has submodules
<tt>AvoidStarImport</tt>, <tt>ConstantName</tt>, and <tt>EmptyBlock</tt>. (Modules <a href="config_imports.html"><tt>AvoidStarImport</tt></a>, <a href="config_naming.html"><tt>ConstantName</tt></a>, and <a href="config_blocks.html"><tt>EmptyBlock</tt></a> check that a Java source
file has no star imports, has valid constant names, and has no
empty blocks, respectively.)
</li>
</ul>
<p>
For each configuration module, Checkstyle loads a class
identified by the <tt>name</tt> attribute of
the <tt>module</tt>. There are several rules
for loading a module's class:
</p>
<ol style="list-style-type: decimal">
<li>
Load a class directly according to a package-qualified <tt>name</tt>, such as loading class <tt>com.puppycrawl.tools.checkstyle.TreeWalker</tt>
for element:
<div class="source"><pre>
<module name="com.puppycrawl.tools.checkstyle.TreeWalker">
</pre></div>
This is useful for plugging third-party modules into a configuration.
</li>
<li>
Load a class of a pre-specified package, such as loading class
<tt>com.puppycrawl.tools.checkstyle.checks.AvoidStarImport</tt>
for element
<div class="source"><pre>
<module name="AvoidStarImport"/>
</pre></div>
Checkstyle applies packages <tt>
com.puppycrawl.tools.checkstyle</tt>, <tt>
com.puppycrawl.tools.checkstyle.filters</tt>, and <tt> com.puppycrawl.tools.checkstyle.checks</tt>
and its sub-packages (only those included in the Checkstyle
distribution). You can specify other packages in a <a href="#Packages"><i>package names XML document</i></a>
when you invoke Checkstyle at the <a href="cmdline.html">command line</a>, and when you run a <a href="anttask.html">Checkstyle task</a> in ant.
</li>
<li>
Apply the above rules to <tt>name</tt>
concatenated with <tt>"Check"</tt>,
such as loading class <tt>com.puppycrawl.tools.checkstyle.checks.ConstantNameCheck</tt>
for element
<div class="source"><pre>
<module name="ConstantName"/>
</pre></div>
</li>
</ol>
</div>
<div class="section"><h2>Properties<a name="Properties"></a></h2>
<p>
Properties of a module control how the module performs its task.
Each module property has a default value, and you are not
required to define a property in the configuration document if
the default value is satisfactory. To assign a non-default
value to a module's property, define a child <tt>property</tt> element of the <tt>module</tt> element in the configuration XML
document. Also provide appropriate <tt>name</tt> and <tt>value</tt>
attributes for the <tt>property</tt> element.
For example, property <tt>max</tt> of module
<tt>MethodLength</tt> specifies the maximum
allowable number of lines in a method or constructor, and has
default value <tt>150</tt>. Here is a
configuration of module <tt>MethodLength</tt>
so that the check reports methods and constructors with more
than <tt>60</tt> lines:
</p>
<div class="source"><pre>
<module name="MethodLength">
<property name="max" value="60"/>
</module>
</pre></div>
<p>
<a href="cmdline.html">Command line</a> properties and ant <a href="anttask.html">Checkstyle task</a> properties apply to the
root <tt>Checker</tt> module. Also, properties
are inherited in the module hierarchy. These features make it
easy to define one property value that applies to many
modules. For example, the following configuration fragment
specifies that a <tt>tabWidth</tt> of <tt>4</tt> applies to <tt>TreeWalker</tt> and its submodules:
</p>
<div class="source"><pre>
<module name="Checker">
<module name="JavadocPackage"/>
<module name="TreeWalker">
<property name="tabWidth" value="4"/>
<module name="AvoidStarImport"/>
<module name="ConstantName"/>
...
</module>
</module>
</pre></div>
<p>
The value of a module property can be specified through
<i>property expansion</i> with the <tt>${<i>property_name</i>}</tt> notation, where
<tt><i>property_name</i></tt> is a <a href="cmdline.html">command line</a> property or an ant <a href="anttask.html">Checkstyle task</a> property. For example,
the following configuration document element gives property
<tt>headerFile</tt> the value of command line
property <tt>checkstyle.header.file</tt>:
</p>
<div class="source"><pre>
<property name="headerFile" value="${checkstyle.header.file}"/>
</pre></div>
<p>
You can use property expansion to re-specify a module property
value without changing the configuration document.
</p>
<p>
The property element provides an optional <tt>default</tt> attribute which is used when a
property in the value cannot be resolved. For example this
configuration snippet from a central configuration file checks
that methods have javadoc, but allows individual projects to
override the severity by specifying their desired value in the
command line property <tt>checkstyle.javadoc.severity</tt>:
</p>
<div class="source"><pre>
<module name="JavaDocMethod">
<property name="severity"
value="${checkstyle.javadoc.severity}"
default="error"/>
</module>
</pre></div>
<p>
This feature is a great help when setting up a centralized
configuration file (e.g. one file for the whole company) to
lower configuration maintenance costs. Projects that are happy
with the default can simply use that configuration file as is,
but individual projects with special needs have the flexibility
to adjust a few settings to fit their needs without having to
copy and maintain the whole configuration.
</p>
</div>
<div class="section"><h2>Checker<a name="Checker"></a></h2>
<p>
All configurations have root module <tt>Checker</tt>. <tt>Checker</tt>
contains:
</p>
<ul>
<li><i>FileSetCheck</i> children: modules that check sets of
files.</li>
<li><i>Filter</i> children: modules that filter audit
events.</li>
<li><i>AuditListener</i> children: modules that report
filtered events.</li>
</ul>
<p>
<tt>Checker</tt> also defines properties that are
inherited by all other modules of a configuration.
</p>
<div class="section"><div class="section"><h4>Properties<a name="Properties"></a></h4>
<table border="0" class="bodyTable">
<tr class="a">
<th>name</th>
<th>description</th>
<th>type</th>
<th>default value</th>
</tr>
<tr class="b">
<td>basedir</td>
<td>base directory name; stripped off in messages about files</td>
<td><a href="property_types.html#string">string</a></td>
<td><tt>null</tt></td>
</tr>
<tr class="a">
<td>localeCountry</td>
<td>locale country for messages</td>
<td><a href="property_types.html#string">string</a>: either
the empty string or an uppercase ISO 3166 2-letter code</td>
<td>default locale country for the Java Virtual Machine</td>
</tr>
<tr class="b">
<td>localeLanguage</td>
<td>locale language for messages</td>
<td><a href="property_types.html#string">string</a>: either
the empty string or a lowercase ISO 639 code</td>
<td>default locale language for the Java Virtual Machine</td>
</tr>
<tr class="a">
<td>charset</td>
<td>name of the file charset</td>
<td><a href="property_types.html#string">String</a></td>
<td>System property "file.encoding"</td>
</tr>
</table>
<p>
For example, the following configuration fragment specifies base
directory <tt>src/checkstyle</tt> and German
locale for all modules:
</p>
<div class="source"><pre>
<module name="Checker">
<property name="basedir" value="src/checkstyle"/>
<property name="localeCountry" value="DE"/>
<property name="localeLanguage" value="de"/>
<module name="JavadocPackage"/>
<module name="TreeWalker">
...
</module>
</module>
</pre></div>
<p>
To configure a <tt>Checker</tt> so that it
handles files with the <tt>UTF-8</tt> charset:
</p>
<div class="source"><pre>
<module name="Checker">
<property name="charset" value="UTF-8"/>
...
</module>
</pre></div>
</div></div></div>
<div class="section"><h2>TreeWalker<a name="TreeWalker"></a></h2>
<p>
FileSetCheck <tt>TreeWalker</tt> checks
individual Java source files and defines properties that are
applicable to checking such files.
</p>
<div class="section"><div class="section"><h4>Properties<a name="Properties"></a></h4>
<table border="0" class="bodyTable">
<tr class="a">
<th>name</th>
<th>description</th>
<th>type</th>
<th>default value</th>
</tr>
<tr class="b">
<td>cacheFile</td>
<td>caches information about files that have checked ok; used
to avoid repeated checks of the same files</td>
<td><a href="property_types.html#string">string</a></td>
<td><tt>null</tt> (no cache file)</td>
</tr>
<tr class="a">
<td>tabWidth</td>
<td>number of expanded spaces for a tab character (<tt>'\t'</tt>); used in messages and Checks that
require a tab width, such as <a href="config_sizes.html#LineLength"><tt>LineLength</tt></a></td>
<td><a href="property_types.html#integer">integer</a></td>
<td><tt>8</tt></td>
</tr>
<tr class="b">
<td>fileExtensions</td>
<td>file type extension to identify java files. Setting this
property is typically only required if your java source code
is preprocessed before compilation and the original files do
not have the extension <tt>.java</tt></td>
<td><a href="property_types.html#stringSet">String Set</a></td>
<td><tt>java</tt></td>
</tr>
</table>
<p>
For example, the following configuration fragment specifies
<tt>TreeWalker</tt> cache file <tt>target/cachefile</tt>, and a <tt>tabWidth</tt> of <tt>4</tt>:
</p>
<div class="source"><pre>
<module name="Checker">
<module name="TreeWalker">
<property name="cacheFile" value="target/cachefile"/>
<property name="tabWidth" value="4"/>
...
</module>
</module>
</pre></div>
<p>
<!-- thanks to Paul King for this example, see
https://sourceforge.net/tracker/?func=detail&aid=865610&group_id=29721&atid=397078 -->
To integrate Checkstyle with BEA Weblogic Workshop 8.1:
</p>
<div class="source"><pre>
<module name="Checker">
<module name="TreeWalker">
<property name="fileExtensions" value="java,ejb,jpf"/>
...
</pre></div>
</div></div></div>
<div class="section"><h2>TreeWalker Checks<a name="TreeWalker_Checks"></a></h2>
<p>
The <tt>TreeWalker</tt> module creates a syntax
tree for a Java source file and invokes its submodules, called
<i>Checks</i>, during a walk, or traversal, of the nodes of
the tree. Every node of the syntax tree has a token. A visit to
a node during the traversal triggers all Checks that are
configured for its token. For example, if Check <tt>MethodLength</tt> has been configured as a
submodule of <tt>TreeWalker</tt>, then a visit
to a node with a method or a constructor definition token
triggers <tt>MethodLength</tt> to check the
number of lines of the node's code block.
</p>
<p>
Some Checks, such as <tt>FileLength</tt> and
<tt>LineLength</tt>, apply directly to the
source file and do not involve tokens of the syntax tree. Other
Checks are associated with configurable sets of tokens that
trigger the Checks. For example, this element configures Check
<tt>MethodLength</tt>:
</p>
<div class="source"><pre>
<module name="MethodLength"/>
</pre></div>
<p>
The default token set for <tt>MethodLength</tt>
is <tt>{METHOD_DEF, CTOR_DEF}</tt>, method
definition and constructor definition tokens, so <tt>TreeWalker</tt> invokes <tt>MethodLength</tt> whenever it visits a node with
a <tt>METHOD_DEF</tt> or a <tt>CTOR_DEF</tt> token.
</p>
<p>
You specify the trigger tokens for a Check with property <tt>tokens</tt>. The value of <tt>tokens</tt> is a list that denotes a subset of
the Check's tokens, as in the following element that configures
Check <tt>MethodLength</tt> to check the number
of lines of methods only:
</p>
<div class="source"><pre>
<module name="MethodLength">
<property name="tokens" value="METHOD_DEF"/>
</module>
</pre></div>
<p>
To apply particular properties to different subsets of tokens
for a Check, repeat the Check. For example, to check that the
length of each method is at most 150 lines (the default value of
<tt>MethodLength</tt> property <tt>max</tt>) and the length of each constructor is
at most 60 lines, include the following in the <tt>TreeWalker</tt> configuration:
</p>
<div class="source"><pre>
<module name="MethodLength">
<property name="tokens" value="METHOD_DEF"/>
</module>
<module name="MethodLength">
<property name="tokens" value="CTOR_DEF"/>
<property name="max" value="60"/>
</module>
</pre></div>
<p>
Configurations of the Checks are specified in the pages under <a href="checks.html">here</a>.
</p>
</div>
<div class="section"><h2>Severity<a name="Severity"></a></h2>
<p>
Each check has a <a href="property_types.html#severity">severity</a> property that a
Checkstyle audit assigns to all violations of the check. The
default severity level of a check is <tt>error</tt>.
</p>
<p>
You can use the severity property to control the output of the
plain formatter for the <a href="cmdline.html">command line
tool</a> and the <a href="anttask.html">ANT task</a>. The plain
formatter does not report violations with severity level <tt>ignore</tt>, and notes violations with
severity level <tt>warning</tt>. For
example, according to the following configuration fragment, the
plain formatter outputs warnings for translation violations:
</p>
<div class="source"><pre>
<module name="Translation">
<property name="severity" value="warning"/>
</module>
</pre></div>
<p>
The XML formatter reports the severity level of every violation
as an attribute of the violation's <tt>error</tt> element.
</p>
</div>
<div class="section"><h2>Custom messages<a name="Custom_messages"></a></h2>
<p>
As of Checkstyle 5 all checks can be configured to report
custom, configuration specific messages instead of the
Checkstyle default messages. This can be useful in cases where
the check message should reference corresponding sections in a
coding style document or the default is too generic for
developers to understand.
</p>
<p>An example usage is:</p>
<div class="source"><pre>
<module name="MemberName">
<property name="format" value="^m[a-zA-Z0-9]*$"/>
<message key="name.invalidPattern"
value="Member ''{0}'' must start with a lowercase ''m'' (checked pattern ''{1}'')."
/>
</module>
</pre></div>
<p>
Each check configuration element can zero or more <tt>message</tt> elements. Every check uses one or
more distinct message keys to log violations. If you want to
customize a certain message you need to specify the message key
in the <tt>key</tt> attribute of the <tt>message</tt> element.
</p>
<p>
The <tt>value</tt> attribute specifies the
custom message pattern, as shown in the example above.
Placeholders used in the default message can also be used in the
custom message. Note that the message pattern must be a valid
<tt>java.text.MessageFormat</tt> style pattern,
so be careful about curly braces outside a placeholder
definition.
</p>
<p>
The obvious question is how do you know which message keys a
Check uses, so that you can override them? Well, that is the
tricky part. To find out which keys a Check uses you currently
need to look into the Check's source code, in conjunction with
the Check's <tt>messages.properties</tt> file.
Tools/plugins might come to the rescue on this topic, so have a
look there.
</p>
</div>
<div class="section"><h2>Filters<a name="Filters"></a></h2>
<p>
A Checker module has a set of Filter submodules to filter audit
events, including the error messages fired by Checks. A Filter
can accept or reject an audit event. If all Filters accept an
audit event, then the Checker reports the event. If any Filter
rejects an event, then the Checker does not report the
event.
</p>
<div class="section"><h3>SeverityMatchFilter<a name="SeverityMatchFilter"></a></h3>
<p>
Filter <tt>SeverityMatchFilter</tt> decides
audit events according to the <a href="#Severity">severity
level</a> of the event.
</p>
<div class="section"><div class="section"><h5>SeverityMatchFilter Properties<a name="SeverityMatchFilter_Properties"></a></h5>
<table border="0" class="bodyTable">
<tr class="a">
<th>name</th>
<th>description</th>
<th>type</th>
<th>default value</th>
</tr>
<tr class="b">
<td>severity</td>
<td>the severity level of this filter</td>
<td><a href="property_types.html#severity">severity</a></td>
<td><tt>error</tt></td>
</tr>
<tr class="a">
<td>acceptOnMatch</td>
<td>
If acceptOnMatch is <tt>true</tt>, then
the filter accepts an audit event if and only if there is
a match between the event's severity level and property
severity. If acceptOnMatch
is <tt>false</tt>, then the filter
accepts an audit event if and only if there is not a match
between the event's severity level and property severity.
</td>
<td><a href="property_types.html#boolean">boolean</a></td>
<td><tt>true</tt></td>
</tr>
</table>
<p>
For example, the following configuration fragment directs the
Checker to not report audit events with severity
level <tt>info</tt>:
</p>
<div class="source"><pre>
<module name="SeverityMatchFilter">
<property name="severity" value="info"/>
<property name="acceptOnMatch" value="false"/>
</module>
</pre></div>
</div></div></div>
<div class="section"><h3>SuppressionFilter<a name="SuppressionFilter"></a></h3>
<p>
Filter <tt>SuppressionFilter</tt> rejects
audit events for Check errors according to
a <a href="#XML_Details"><i>suppressions XML
document</i></a> in a file. If there is no configured
suppressions file, the Filter accepts all audit events.
</p>
<div class="section"><div class="section"><h5>SuppressionFilter Properties<a name="SuppressionFilter_Properties"></a></h5>
<table border="0" class="bodyTable">
<tr class="a">
<th>name</th>
<th>description</th>
<th>type</th>
<th>default value</th>
</tr>
<tr class="b">
<td>file</td>
<td>
the location of the <i>suppressions XML document</i> file.
The location can either be a filesystem location, or a
name passed to the ClassLoader.getResource() method.
</td>
<td><a href="property_types.html#string">string</a></td>
<td><tt>none</tt></td>
</tr>
</table>
<p>
For example, the following configuration fragment directs the
Checker to use a <tt>SuppressionFilter</tt>
with suppressions
file <tt>docs/suppressions.xml</tt>:
</p>
<div class="source"><pre>
<module name="SuppressionFilter">
<property name="file" value="docs/suppressions.xml"/>
</module>
</pre></div>
<p>
A <a href="#XML_Details"><i>suppressions XML
document</i></a> contains a set
of <tt>suppress</tt> elements, where
each <tt>suppress</tt> element can have the
following attributes:
</p>
<ul>
<li>
<tt>files</tt> -
a <a href="property_types.html#regexp">regular expression</a>
matched against the file name associated with an audit
event. It is mandatory.
</li>
<li>
<tt>checks</tt> -
a <a href="property_types.html#regexp">regular expression</a>
matched against the name of the check associated with an audit
event. Optional if <tt>id</tt> is specified.
</li>
<li>
<tt>id</tt> -
a <a href="property_types.html#string">string</a>
matched against the id of the check associated with an audit
event. Optional if <tt>checks</tt> is specified.
</li>
<li>
<tt>lines</tt> - a comma-separated list of
values, where each value is
an <a href="property_types.html#integer">integer</a> or a
range of integers denoted by integer-integer. It is optional.
</li>
<li>
<tt>columns</tt> - a comma-separated list of
values, where each value is
an <a href="property_types.html#integer">integer</a> or a
range of integers denoted by integer-integer. It is optional.
</li>
</ul>
<p>
Each audit event is checked against
each <tt>suppress</tt> element. It is
suppressed if all specified attributes match against the audit
event.
</p>
</div><div class="section"><h5>Examples<a name="Examples"></a></h5>
<p>
For example, the following suppressions XML document directs
a <tt>SuppressionFilter</tt> to
reject <tt>JavadocStyleCheck</tt> errors for
lines 82 and 108 to 122 of
file <tt>AbstractComplexityCheck.java</tt>,
and <tt>MagicNumberCheck</tt> errors for line
221 of file <tt>JavadocStyleCheck.java</tt>:
</p>
<div class="source"><pre>
<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
<suppressions>
<suppress checks="JavadocStyleCheck"
files="AbstractComplexityCheck.java"
lines="82,108-122"/>
<suppress checks="MagicNumberCheck"
files="JavadocStyleCheck.java"
lines="221"/>
</suppressions>
</pre></div>
<p>
As another example, imagine that a configuration contains the
following:
</p>
<div class="source"><pre>
<module name="DescendantToken">
<property name="id" value="stringEqual"/>
<property name="tokens" value="EQUAL,NOT_EQUAL"/>
<property name="limitedTokens" value="STRING_LITERAL"/>
<property name="maximumNumber" value="0"/>
<property name="maximumDepth" value="1"/>
</module>
<module name="DescendantToken">
<property name="id" value="switchNoDefault"/>
<property name="tokens" value="LITERAL_SWITCH"/>
<property name="maximumDepth" value="2"/>
<property name="limitedTokens" value="LITERAL_DEFAULT"/>
<property name="minimumNumber" value="1"/>
</module>
</pre></div>
<p>
Then the following can be used to suppress only the first
check and not the second by using
the <tt>id</tt> attribute:
</p>
<div class="source"><pre>
<suppress id="stringEqual" files="SomeTestCode.java"/>
</pre></div>
</div></div></div>
<div class="section"><h3>SuppressionCommentFilter<a name="SuppressionCommentFilter"></a></h3>
<div class="section"><h4>SuppressionCommentFilter<a name="SuppressionCommentFilter"></a></h4>
<p>
Filter <tt>SuppressionCommentFilter</tt> uses
pairs of comments to suppress audit events.
</p>
<p>
Rationale: Sometimes there are legitimate reasons for violating
a check. When this is a matter of the code in question and not
personal preference, the best place to override the policy is in
the code itself. Semi-structured comments can be associated
with the check. This is sometimes superior to a separate
suppressions file, which must be kept up-to-date as the source
file is edited.
</p>
<p>
Usage: This filter only works in conjunction with a <tt>FileContentsHolder</tt>, since that check makes
the suppression comments in the .java files available <i>sub
rosa</i>. A configuration that includes this filter must
configure <tt>FileContentsHolder</tt> as a
child module of <tt>TreeWalker</tt>.
</p>
<div class="section"><h5>SuppressionCommentFilter Properties<a name="SuppressionCommentFilter_Properties"></a></h5>
<table border="0" class="bodyTable">
<tr class="a">
<th>name</th>
<th>description</th>
<th>type</th>
<th>default value</th>
</tr>
<tr class="b">
<td>offCommentFormat</td>
<td>comment pattern to trigger filter to begin suppression</td>
<td><a href="property_types.html#regexp">regular expression</a></td>
<td><tt>CHECKSTYLE\:OFF</tt></td>
</tr>
<tr class="a">
<td>onCommentFormat</td>
<td>comment pattern to trigger filter to end suppression</td>
<td><a href="property_types.html#regexp">regular expression</a></td>
<td><tt>CHECKSTYLE\:ON</tt></td>
</tr>
<tr class="b">
<td>checkFormat</td>
<td>check pattern to suppress</td>
<td><a href="property_types.html#regexp">regular expression</a></td>
<td><tt>.*</tt> (all checks)</td>
</tr>
<tr class="a">
<td>messageFormat</td>
<td>message pattern to suppress</td>
<td><a href="property_types.html#regexp">regular expression</a></td>
<td>none</td>
</tr>
<tr class="b">
<td>checkCPP</td>
<td>whether to check C++ style comments (<tt>//</tt>)</td>
<td><a href="property_types.html#boolean">boolean</a></td>
<td><tt>true</tt></td>
</tr>
<tr class="a">
<td>checkC</td>
<td>whether to check C style comments (<tt>/* ... */</tt>)</td>
<td><a href="property_types.html#boolean">boolean</a></td>
<td><tt>true</tt></td>
</tr>
</table>
</div><div class="section"><h5>Restrictions<a name="Restrictions"></a></h5>
<p>
offCommentFormat and onCommentFormat must have equal <a class="externalLink" href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Matcher.html#groupCount()">paren counts</a>.
</p>
</div><div class="section"><h5>Examples<a name="Examples"></a></h5>
<p>
To configure the check that makes comments available to the filter:
</p>
<div class="source"><pre>
<module name="TreeWalker">
...
<module name="FileContentsHolder"/>
...
</module>
</pre></div>
<p>
To configure a filter to suppress audit events between a comment
containing <tt>CHECKSTYLE:OFF</tt> and a comment containing
<tt>CHECKSTYLE:ON</tt>:
</p>
<div class="source"><pre>
<module name="SuppressionCommentFilter"/>
</pre></div>
<p>
To configure a filter to suppress audit events between a comment
containing line <tt>BEGIN GENERATED CODE</tt> and a comment
containing line <tt>END GENERATED CODE</tt>:
</p>
<div class="source"><pre>
<module name="SuppressionCommentFilter">
<property name="offCommentFormat" value="BEGIN GENERATED CODE"/>
<property name="onCommentFormat" value="END GENERATED CODE"/>
</module>
</pre></div>
<p>
To configure a filter so that <tt>// stop constant
check</tt> and <tt>// resume constant check</tt> marks
legitimate constant names:
</p>
<div class="source"><pre>
<module name="SuppressionCommentFilter">
<property name="offCommentFormat" value="stop constant check"/>
<property name="onCommentFormat" value="resume constant check"/>
<property name="checkFormat" value="ConstantNameCheck"/>
</module>
</pre></div>
<p>
To configure a filter so that <tt>UNUSED OFF:
<i>var</i></tt> and <tt>UNUSED ON: <i>var</i></tt> marks a
variable or parameter known not to be used by the code by
matching the variable name in the message:
</p>
<div class="source"><pre>
<module name="SuppressionCommentFilter">
<property name="offCommentFormat" value="UNUSED OFF\: (\w+)"/>
<property name="onCommentFormat" value="UNUSED ON\: (\w+)"/>
<property name="checkFormat" value="Unused"/>
<property name="messageFormat" value="^Unused \w+ '$1'.$"/>
</module>
</pre></div>
<p>
To configure a filter so that <tt>CSOFF: <i>regexp</i></tt>
and <tt>CSN: <i>regexp</i></tt> mark a matching check:
</p>
<div class="source"><pre>
<module name="SuppressionCommentFilter">
<property name="offCommentFormat" value="CSOFF\: ([\w\|]+)"/>
<property name="onCommentFormat" value="CSON\: ([\w\|]+)"/>
<property name="checkFormat" value="$1"/>
</module>
</pre></div>
<p>
To configure a filter to suppress all audit events between a comment
containing <tt>CHECKSTYLE_OFF: ALL</tt> and a comment containing
<tt>CHECKSTYLE_OFF: ALL</tt> except for the <i>EqualsHashCode</i> check:
</p>
<div class="source"><pre>
<module name="SuppressionCommentFilter">
<property name="offCommentFormat" value="CHECKSTYLE_OFF: ALL"/>
<property name="onCommentFormat" value="CHECKSTYLE_ON: ALL"/>
<property name="checkFormat" value="^((?!(EqualsHashCode)).)*$"/>
</module>
</pre></div>
</div></div></div>
<div class="section"><h3>SuppressWithNearbyCommentFilter<a name="SuppressWithNearbyCommentFilter"></a></h3>
<div class="section"><h4>SuppressWithNearbyCommentFilter<a name="SuppressWithNearbyCommentFilter"></a></h4>
<p>
Filter <tt>SuppressWithNearbyCommentFilter</tt> uses
individual comments to suppress audit events.
</p>
<p>
Rationale: Same as <tt>SuppressionCommentFilter</tt>.
Whereas the SuppressionCommentFilter uses matched pairs of
filters to turn on/off comment matching,
<tt>SuppressWithNearbyCommentFilter</tt> uses
single comments. This requires fewer lines to mark a region, and
may be aesthetically preferable in some contexts.
</p>
<p>
Usage: This filter only works in conjunction with a <tt>FileContentsHolder</tt>, since that check makes
the suppression comments in the .java files available <i>sub
rosa</i>. A configuration that includes this filter must
configure <tt>FileContentsHolder</tt> as a
child module of <tt>TreeWalker</tt>.
</p>
<div class="section"><h5>SuppressWithNearbyCommentFilter Properties<a name="SuppressWithNearbyCommentFilter_Properties"></a></h5>
<table border="0" class="bodyTable">
<tr class="a">
<th>name</th>
<th>description</th>
<th>type</th>
<th>default value</th>
</tr>
<tr class="b">
<td>commentFormat</td>
<td>comment pattern to trigger filter to begin suppression</td>
<td><a href="property_types.html#regexp">regular expression</a></td>
<td><tt>SUPPRESS CHECKSTYLE (\w+)</tt></td>
</tr>
<tr class="a">
<td>checkFormat</td>
<td>check pattern to suppress</td>
<td><a href="property_types.html#regexp">regular expression</a></td>
<td><tt>.*</tt></td>
</tr>
<tr class="b">
<td>messageFormat</td>
<td>message pattern to suppress</td>
<td><a href="property_types.html#regexp">regular expression</a></td>
<td>none</td>
</tr>
<tr class="a">
<td>influenceFormat</td>
<td>a negative/zero/positive value that defines the number of
lines preceding/at/following the suppression comment</td>
<td><a href="property_types.html#regexp">regular expression</a></td>
<td><tt>0</tt> (the line containing the comment)</td>
</tr>
<tr class="b">
<td>checkCPP</td>
<td>whether to check C++ style comments (<tt>//</tt>)</td>
<td><a href="property_types.html#boolean">boolean</a></td>
<td><tt>true</tt></td>
</tr>
<tr class="a">
<td>checkC</td>
<td>whether to check C style comments (<tt>/* ... */</tt>)</td>
<td><a href="property_types.html#boolean">boolean</a></td>
<td><tt>true</tt></td>
</tr>
</table>
</div><div class="section"><h5>Examples<a name="Examples"></a></h5>
<p>
To configure the check that makes comments available to the filter:
</p>
<div class="source"><pre>
<module name="TreeWalker">
...
<module name="FileContentsHolder"/>
...
</module>
</pre></div>
<p>
To configure a filter to suppress audit events for <i>check</i>
on any line with a comment <tt>SUPPRESS CHECKSTYLE <i>check</i></tt>:
</p>
<div class="source"><pre>
<module name="SuppressWithNearbyCommentFilter"/>
</pre></div>
<p>
To configure a filter to suppress all audit events on any line
containing the comment <tt>CHECKSTYLE IGNORE THIS LINE</tt>:
</p>
<div class="source"><pre>
<module name="SuppressWithNearbyCommentFilter">
<property name="commentFormat" value="CHECKSTYLE IGNORE THIS LINE"/>
<property name="checkFormat" value=".*"/>
<property name="influenceFormat" value="0"/>
</module>
</pre></div>
<p>
To configure a filter so that
<tt>// Ok to catch (Throwable|Exception|RuntimeException) here</tt>
permits the current and previous line to avoid generating an IllegalCatch
audit event:
</p>
<div class="source"><pre>
<module name="SuppressWithNearbyCommentFilter">
<property name="commentFormat" value="Ok to catch (\w+) here"/>
<property name="checkFormat" value="IllegalCatchCheck"/>
<property name="messageFormat" value="$1"/>
<property name="influenceFormat" value="-1"/>
</module>
</pre></div>
<p>
To configure a filter so that <tt>CHECKSTYLE IGNORE <i>check</i> FOR NEXT <i>var</i> LINES</tt>
avoids triggering any audits for the given check for the current line and the next <i>var</i> lines
(for a total of <i>var</i>+1 lines):
</p>
<div class="source"><pre>
<module name="SuppressWithNearbyCommentFilter">
<property name="commentFormat" value="CHECKSTYLE IGNORE (\w+) FOR NEXT (\d+) LINES"/>
<property name="checkFormat" value="$1"/>
<property name="influenceFormat" value="$2"/>
</module>
</pre></div>
</div></div></div>
</div>
<div class="section"><h2>AuditListeners<a name="AuditListeners"></a></h2>
<p>
In addition to an audit reporter for text or XML output, a
Checker can have <a href="writinglisteners.html">custom
AuditListeners</a> that handle audit events. In order to use a
custom listener, add a <tt>Checker</tt> submodule for the
listener and its properties. For example, to configure a <tt>Checker</tt> so that it uses custom listener <a href="writinglisteners.html#Writing_Listeners">VerboseListener</a> to
print audit messages to a file named "audit.txt",
include the following module in the configuration file:
</p>
<div class="source"><pre>
<module name="com.mycompany.listeners.VerboseListener">
<property name="file" value="audit.txt"/>
</module>
</pre></div>
</div>
<div class="section"><h2>Packages<a name="Packages"></a></h2>
<p>
Checkstyle loads a module class according to the <tt>name</tt> of a <tt>module</tt>
element, and automatically appends pre-specified package
prefixes to that <tt>name</tt> in its search
for a loadable class. By default, Checkstyle applies packages
<tt> com.puppycrawl.tools.checkstyle</tt>,
<tt>
com.puppycrawl.tools.checkstyle.filters</tt>, and <tt> com.puppycrawl.tools.checkstyle.checks</tt> as
well as any sub-packages of <tt>com.puppycrawl.tools.checkstyle.checks</tt> that
are distributed with Checkstyle.
</p>
<p>
To specify other packages to apply,
create a <i>package names XML document</i> in a file
named <tt>checkstyle_packages.xml</tt>,
and provide that file in the root of the .jar containing your
custom checks.
</p>
<p>
Note that the support for providing a <i>package names XML document</i>
via <a href="cmdline.html">command line</a> option or as a attribute
of an <a href="anttask.html">ant Checkstyle task</a> has been dropped
with Checkstyle 5.0.
</p>
<p>
A <i>package names XML document</i> specifies a list of
package names. Here is a sample package names XML document for
packages <tt>
com.puppycrawl.tools.checkstyle</tt> and <tt>
com.puppycrawl.tools.checkstyle.checks</tt>:
</p>
<div class="source"><pre>
<checkstyle-packages>
<package name="com.puppycrawl.tools.checkstyle">
<package name="checks"/>
</package>
</checkstyle-packages>
</pre></div>
<p>
Notice that the packages are specified recursively - a child
<tt>package</tt> element is a subpackage of its
parent <tt>package</tt> element.
</p>
<p>
For example, to incorporate modules from package <tt>com.mycompany.checks</tt> with Checkstyle
modules, create the XML file below and put this file into the
<b>root of the jar</b> file which contains your custom check modules.
The XML file must be named exactly <tt>checkstyle_packages.xml</tt>:
</p>
<div class="source"><pre>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE checkstyle-packages PUBLIC
"-//Puppy Crawl//DTD Package Names 1.0//EN"
"http://www.puppycrawl.com/dtds/packages_1_0.dtd">
<checkstyle-packages>
<package name="com.mycompany.checks"/>
</checkstyle-packages>
</pre></div>
<p>
Now you can configure a module of package <tt>com.mycompany.checks</tt>, say <tt>com.mycompany.checks.MethodLimitCheck</tt>, with
a shortened <tt>module</tt> element in the
configuration document:
</p>
<div class="source"><pre>
<module name="MethodLimit"/>
</pre></div>
<div class="tip">
<div class="section"><div class="section"><h4>Note<a name="Note"></a></h4>
<p>
As of Checkstyle 5.0 it is unnecessary to repeat the
<tt>package</tt> elements for Checkstyle's packages in
your custom <tt>checkstyle_packages.xml</tt> file.
</p>
</div>
</div></div></div>
<div class="section"><h2>XML Details<a name="XML_Details"></a></h2>
<div class="section"><div class="section"><h4>Configuration XML Document<a name="Configuration_XML_Document"></a></h4>
<p>
The following DTD for a configuration XML document specifies the
hierarchy of modules and their properties:
</p>
<div class="source"><pre>
<?xml version="1.0" encoding="UTF-8"?>
<!ELEMENT module (module|property)*>
<!ATTLIST module name NMTOKEN #REQUIRED>
<!ELEMENT property EMPTY>
<!ATTLIST property
name NMTOKEN #REQUIRED
value CDATA #REQUIRED
>
</pre></div>
<p>
Checkstyle validates a configuration XML document when it loads
the document. To validate against the above configuration DTD,
include the following document type declaration in your
configuration XML document:
</p>
<div class="source"><pre>
<!DOCTYPE module PUBLIC
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
</pre></div>
<p>
Checkstyle also strictly enforces the encoding attribute of an
XML declaration. If Checkstyle rejects your configuration
document's encoding, correct the value of the encoding
attribute, or remove the encoding attribute entirely.
</p>
<p>
For a complete example of a configuration XML document, examine
file <tt>docs/sun_checks.xml</tt> that checks the Sun coding
conventions.
</p>
</div><div class="section"><h4>Package Names XML Document<a name="Package_Names_XML_Document"></a></h4>
<p>
This is a DTD for a package names XML document:
</p>
<div class="source"><pre>
<?xml version="1.0" encoding="UTF-8"?>
<!ELEMENT checkstyle-packages (package)*>
<!ELEMENT package (package)*>
<!ATTLIST package name NMTOKEN #REQUIRED>
</pre></div>
<p>
Checkstyle also validates a package names XML document when it
loads the document. To validate against the above package names
DTD, include the following document type declaration in your
package names XML document:
</p>
<div class="source"><pre>
<!DOCTYPE checkstyle-packages PUBLIC
"-//Puppy Crawl//DTD Package Names 1.1//EN"
"http://www.puppycrawl.com/dtds/packages_1_1.dtd">
</pre></div>
</div><div class="section"><h4>Suppressions XML Document<a name="Suppressions_XML_Document"></a></h4>
<p>
This is a DTD for a suppressions XML document:
</p>
<div class="source"><pre>
<?xml version="1.0" encoding="UTF-8"?>
<!ELEMENT suppressions (suppress*)>
<!ELEMENT suppress EMPTY>
<!ATTLIST suppress files CDATA #REQUIRED
checks CDATA #IMPLIED
id CDATA #IMPLIED
lines CDATA #IMPLIED
columns CDATA #IMPLIED>
</pre></div>
</div></div></div>
</div>
</div>
<div class="clear">
<hr/>
</div>
<div id="footer">
<div class="xright">Copyright © 2001-2011.
All Rights Reserved.
</div>
<div class="clear">
<hr/>
</div>
</div>
</body>
</html>
| kentwang/algs4 | checkstyle-5.5/site/config.html | HTML | mit | 58,531 |
<!DOCTYPE html>
<html>
<head>
<title>Render Function</title>
<script src="https://d3js.org/d3.v4.min.js"></script>
</head>
<body>
<svg width="960" height="500"></svg>
<script>
function render(data){
d3.select("svg")
.selectAll("circle")
.data(data)
.attr("cx", function (d){ return d; })
.attr("fill", "orange") // This color applies to the "Update" selection.
.enter()
.append("circle")
.attr("cx", function (d){ return d; })
.attr("cy", 250)
.attr("r", 100)
.attr("fill", "green"); // This color applies to the "Enter" selection.
}
render([300, 500, 700]); // Enter
</script>
</body>
</html>
| curran/d3-in-motion | archive/units/unit-01/module-05/example-02/index.html | HTML | mit | 760 |
<!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_72) on Mon Dec 01 10:11:20 MST 2014 -->
<title>AuthorAnswerActivity</title>
<meta name="date" content="2014-12-01">
<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="AuthorAnswerActivity";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/AuthorAnswerActivity.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/brogrammers/agora/views/AnswerAdapter.html" title="class in com.brogrammers.agora.views"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../com/brogrammers/agora/views/AuthorQuestionActivity.html" title="class in com.brogrammers.agora.views"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/brogrammers/agora/views/AuthorAnswerActivity.html" target="_top">Frames</a></li>
<li><a href="AuthorAnswerActivity.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.brogrammers.agora.views</div>
<h2 title="Class AuthorAnswerActivity" class="title">Class AuthorAnswerActivity</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>Activity</li>
<li>
<ul class="inheritance">
<li>com.brogrammers.agora.views.AuthorAnswerActivity</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">AuthorAnswerActivity</span>
extends Activity</pre>
<div class="block">Activity screen when posting an answer to a question. Contains a textbox for the body of an answer.
Todo: implement picturehandler to post pictures.</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd>Group02</dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../com/brogrammers/agora/views/AuthorAnswerActivity.html#AuthorAnswerActivity()">AuthorAnswerActivity</a></strong>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../com/brogrammers/agora/views/AuthorAnswerActivity.html#onCreateOptionsMenu(Menu)">onCreateOptionsMenu</a></strong>(Menu menu)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../com/brogrammers/agora/views/AuthorAnswerActivity.html#onOptionsItemSelected(MenuItem)">onOptionsItemSelected</a></strong>(MenuItem item)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="AuthorAnswerActivity()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>AuthorAnswerActivity</h4>
<pre>public AuthorAnswerActivity()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="onCreateOptionsMenu(Menu)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onCreateOptionsMenu</h4>
<pre>public boolean onCreateOptionsMenu(Menu menu)</pre>
</li>
</ul>
<a name="onOptionsItemSelected(MenuItem)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>onOptionsItemSelected</h4>
<pre>public boolean onOptionsItemSelected(MenuItem item)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/AuthorAnswerActivity.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/brogrammers/agora/views/AnswerAdapter.html" title="class in com.brogrammers.agora.views"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../com/brogrammers/agora/views/AuthorQuestionActivity.html" title="class in com.brogrammers.agora.views"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/brogrammers/agora/views/AuthorAnswerActivity.html" target="_top">Frames</a></li>
<li><a href="AuthorAnswerActivity.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| CMPUT301F14T02/Agora | doc/com/brogrammers/agora/views/AuthorAnswerActivity.html | HTML | mit | 9,332 |
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<div id="chartContainer">
{scriptDependencies}
<script type="text/javascript">
d3.tsv("/data/example_data.tsv", function (data) {
d3.json("chartconfig/bars_horizontal_stacked_100pct.json", function(chartConfig) {
var svg = dimple.newSvg("#chartContainer", 590, 400);
var myChart = new simpledimple.chart(svg, chartConfig, data);
myChart.draw();
});
});
</script>
</div>
</html>
| nagarajanchinnasamy/simpledimple | examples/templates/bars_horizontal_stacked_100pct.html | HTML | mit | 490 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `O_NDELAY` constant in crate `libc`.">
<meta name="keywords" content="rust, rustlang, rust-lang, O_NDELAY">
<title>libc::O_NDELAY - Rust</title>
<link rel="stylesheet" type="text/css" href="../rustdoc.css">
<link rel="stylesheet" type="text/css" href="../main.css">
<link rel="shortcut icon" href="https://doc.rust-lang.org/favicon.ico">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<nav class="sidebar">
<a href='../libc/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='logo' width='100'></a>
<p class='location'><a href='index.html'>libc</a></p><script>window.sidebarCurrent = {name: 'O_NDELAY', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</nav>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
type="search">
</div>
</form>
</nav>
<section id='main' class="content constant">
<h1 class='fqn'><span class='in-band'><a href='index.html'>libc</a>::<wbr><a class='constant' href=''>O_NDELAY</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>−</span>]
</a>
</span><a id='src-3107' class='srclink' href='../src/libc/unix/notbsd/linux/other/mod.rs.html#344' title='goto source code'>[src]</a></span></h1>
<pre class='rust const'>pub const O_NDELAY: <a class='type' href='../libc/type.c_int.html' title='libc::c_int'>c_int</a><code> = </code><code>2048</code></pre></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<aside id="help" class="hidden">
<div>
<h1 class="hidden">Help</h1>
<div class="shortcuts">
<h2>Keyboard Shortcuts</h2>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
<dt>+</dt>
<dd>Collapse/expand all sections</dd>
</dl>
</div>
<div class="infos">
<h2>Search Tricks</h2>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>type</code>, <code>macro</code>,
and <code>const</code>.
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code> or <code>* -> vec</code>)
</p>
</div>
</div>
</aside>
<script>
window.rootPath = "../";
window.currentCrate = "libc";
window.playgroundUrl = "";
</script>
<script src="../jquery.js"></script>
<script src="../main.js"></script>
<script defer src="../search-index.js"></script>
</body>
</html> | rxse/rust-markov-text | docs/libc/constant.O_NDELAY.html | HTML | mit | 4,282 |
<div ui-view></div>
| wiseallie/modular-angular-ui | assets/javascripts/app/features/auth/templates/layout.html | HTML | mit | 24 |
<div>
<div class="asch_nav">
<div class="logo"></div>
<ul ng-controller="headerCtrl" ng-init="init()">
<li ng-class="{'active':$root.active=='home'}">
<a ng-href="/home"><img src="/assets/common/home.png" ng-hide="$root.active=='home'"><img src="/assets/common/home_active.png" ng-show="$root.active=='home'">{{'HOME' | translate}}</a>
</li>
<li ng-class="{'active':$root.active=='asset'}">
<a ng-href="/asset"><img src="/assets/common/asset.png" ng-hide="$root.active=='asset'"><img src="/assets/common/asset_active.png" ng-show="$root.active=='asset'">{{'ASSET' | translate}}</a>
</li>
<li ng-class="{'active':$root.active=='personal'}" >
<a ng-href="/personal"><img src="/assets/common/personal.png" ng-hide="$root.active=='personal'"><img src="/assets/common/personal_active.png" ng-show="$root.active=='personal'">{{'PERSONAL' | translate}}</a>
</li>
<li ng-class="{'active':$root.active=='application'}" >
<a ng-href="/application"><img src="/assets/common/application.png" ng-hide="$root.active=='application'"><img src="/assets/common/application_active.png" ng-show="$root.active=='application'">{{'APPLICATIONS' | translate}}</a>
</li>
<li ng-class="{'active':$root.active=='assetevaluation'}" >
<a ng-href="/assetevaluation"><img src="/assets/common/assetevaluation.png" ng-hide="$root.active=='assetevaluation'"><img src="/assets/common/assetevaluation_active.png" ng-show="$root.active=='assetevaluation'">{{'ASSET_EVALUATION' | translate}}</a>
</li>
<li ng-class="{'active':$root.active=='blockforging'}">
<a ng-href="/blockforging" ><img src="/assets/common/blockforging.png" ng-hide="$root.active=='blockforging'"><img src="/assets/common/blockforging_active.png" ng-show="$root.active=='blockforging'">{{'FORGING' | translate}}</a>
<!-- 下拉菜单 -->
</li>
<li ng-class="{'active':$root.active=='blockchain'}">
<a ng-href="/blockchain"><img src="/assets/common/blockchain.png" ng-hide="$root.active=='blockchain'"><img src="/assets/common/blockchain_active.png" ng-show="$root.active=='blockchain'">{{'BLOCKS' | translate}}</a>
</li>
<li ng-class="{'active':$root.active=='vote'}" >
<a ng-href="/vote"><img src="/assets/common/vote.png" ng-hide="$root.active=='vote'"><img src="/assets/common/vote_active.png" ng-show="$root.active=='vote'">{{'DELEGATE_VOTE' | translate}}</a>
</li>
<li ng-class="{'active':$root.active=='pay'}">
<a ng-click="goPay()"><img src="/assets/common/pay.png" ng-hide="$root.active=='pay'"><img src="/assets/common/pay_active.png" ng-show="$root.active=='pay'">{{'TRANSFER' | translate}}</a>
</li>
<li ng-class="{'active':$root.active=='peer'}">
<a ng-href="/peer"><img src="/assets/common/peer.png" ng-hide="$root.active=='peer'"><img src="/assets/common/peer_active.png" ng-show="$root.active=='peer'">{{'PEERS' | translate}}</a>
</li>
</ul>
</div>
</div>
| anshuman-singh-93/agrichain | public/src/partials/common/header/header.html | HTML | mit | 3,267 |
<!DOCTYPE html>
<html>
<head>
<title>SageMath Rings</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Basic Rings in SageMath</h1>
<br/><table style="margin-left: 1in">
<tr><td style="width: 1in"><u>Name</u></td>
<td style="width: 2in"><u>Long Alias</u></td>
<td><u>Description</u></td</tr>
<tr><td colspan="3"> </td></tr>
<tr><td>ZZ</td><td>IntegerRing()</td><td>Integers</td></tr>
<tr><td>QQ</td><td>RationalField()</td><td>Rational numbers</td></tr>
<tr><td>RR</td><td>RealField()</td><td>Real numbers</td></tr>
<tr><td>CC</td><td>ComplexField()</td><td>Complex numbers</td></tr>
<tr><td colspan="3"> </td></tr>
<tr><td>AA</td><td>AlgebraicRealField()</td><td>Algebraic real numbers</td></tr>
<tr><td>QQbar</td><td>AlgebraicField()</td><td>Algebraic complex numbers</td></tr>
<tr><td>SR</td><td>SymbolicRing()</td><td>Symbolic expressions</td></tr>
<tr><td colspan="3"> </td></tr>
<tr><td>RDF</td><td>RealDoubleField()</td><td>Machine real numbers</td></tr>
<tr><td>CDF</td><td>ComplexDoubleField()</td><td>Machine complex numbers</td></tr>
</table>
<br/><p>See this <a href="https://ask.sagemath.org/question/9950/what-are-the-different-real-numbers-in-sage/">Ask question</a> for additional information.</p>
<p><a href="http://paulmasson.github.io/sagemath-docs/" style="float: right">sagemath-docs</a></p>
</body>
</html> | paulmasson/sagemath-docs | rings.html | HTML | mit | 1,386 |
{% extends "blog/base.html" %}
{% block jumbo %}
<div class="jumbotron">
<div class="container">
<h1 class="topfix">Users</h1>
<p>See the list of users</p>
</div>
</div>
{% endblock jumbo %}
{% block content %}
<div class="row">
<div class="col-lg-11 centered">
{% for user in users %}
<br />
{{user.username}} {{user.name}}
{% endfor %}
</div>
</div>
{% endblock %} | joshcai/utdmathclub | blog/templates/blog/users.html | HTML | mit | 442 |
<html>
<body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<div><h1>Main Main for Enterprise Thought Leaders</h1></div>
<div>
<p><a href='addFoundationsGraduate'>Add Course Completion for Enterprise Thought Leaders</a></p>
</div>
<div>
<p><a href='http://10.0.4.89:4567/addFoundationsGraduate'>Add Exam Pass for International Board of Agile Practitioners - Foundations</a></p>
</div>
<div>
<p><a href='http://10.0.4.92:4567/addDevOps'>Add Exam Pass for International Board Of Agile Practitioners - DevOps</a></p>
</div>
</body>
</html>
| michaelsaunders/testing-software | mainMenu.html | HTML | mit | 605 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NUnitXml - FAKE - F# Make</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Steffen Forkmann, Mauricio Scheffer, Colin Bull">
<script src="https://code.jquery.com/jquery-1.8.0.js"></script>
<script src="https://code.jquery.com/ui/1.8.23/jquery-ui.js"></script>
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="http://fsharp.github.io/FAKE/content/style.css" />
<script type="text/javascript" src="http://fsharp.github.io/FAKE/content/tips.js"></script>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li><a href="http://fsharp.org">fsharp.org</a></li>
<li><a href="http://github.com/fsharp/fake">github page</a></li>
</ul>
<h3 class="muted"><a href="http://fsharp.github.io/FAKE/index.html">FAKE - F# Make</a></h3>
</div>
<hr />
<div class="row">
<div class="span9" id="main">
<h1>NUnitXml</h1>
<div class="xmldoc">
<p>Contains types and functions for working with <a href="http://www.nunit.org/">NUnit</a> unit tests result xml.</p>
</div>
<!-- Render nested types and modules, if there are any -->
<h3>Functions and values</h3>
<table class="table table-bordered member-list">
<thead>
<tr><td>Function or value</td><td>Description</td></tr>
</thead>
<tbody>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '328', 328)" onmouseover="showTip(event, '328', 328)">
AllSucceeded xDocs
</code>
<div class="tip" id="328">
<strong>Signature:</strong> xDocs:seq<'?7410> -> bool<br />
<strong>Type parameters:</strong> '?7410 </div>
</td>
<td class="xmldoc">
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/UnitTest/NUnit/Xml.fs#L27-27" class="github-link">
<img src="../content/img/github.png" class="normal" />
<img src="../content/img/github-blue.png" class="hover" />
</a>
<p>Returns whether all tests in the given test result have succeeded</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="span3">
<a href="http://fsharp.github.io/FAKE/index.html">
<img src="http://fsharp.github.io/FAKE/pics/logo.png" style="width:140px;height:140px;margin:10px 0px 0px 35px;border-style:none;" />
</a>
<ul class="nav nav-list" id="menu">
<li class="nav-header">FAKE - F# Make</li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/index.html">Home page</a></li>
<li class="divider"></li>
<li><a href="https://www.nuget.org/packages/FAKE">Get FAKE - F# Make via NuGet</a></li>
<li><a href="http://github.com/fsharp/fake">Source Code on GitHub</a></li>
<li><a href="http://github.com/fsharp/fake/blob/master/License.txt">License (Apache 2)</a></li>
<li><a href="http://fsharp.github.io/FAKE/RELEASE_NOTES.html">Release Notes</a></li>
<li><a href="http://fsharp.github.io/FAKE//contributing.html">Contributing to FAKE - F# Make</a></li>
<li><a href="http://fsharp.github.io/FAKE/users.html">Who is using FAKE?</a></li>
<li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li>
<li class="nav-header">Tutorials</li>
<li><a href="http://fsharp.github.io/FAKE/gettingstarted.html">Getting started</a></li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/nuget.html">NuGet package restore</a></li>
<li><a href="http://fsharp.github.io/FAKE/fxcop.html">Using FxCop in a build</a></li>
<li><a href="http://fsharp.github.io/FAKE/assemblyinfo.html">Generating AssemblyInfo</a></li>
<li><a href="http://fsharp.github.io/FAKE/create-nuget-package.html">Create NuGet packages</a></li>
<li><a href="http://fsharp.github.io/FAKE/specifictargets.html">Running specific targets</a></li>
<li><a href="http://fsharp.github.io/FAKE/commandline.html">Running FAKE from command line</a></li>
<li><a href="http://fsharp.github.io/FAKE/parallel-build.html">Running targets in parallel</a></li>
<li><a href="http://fsharp.github.io/FAKE/fsc.html">Using the F# compiler from FAKE</a></li>
<li><a href="http://fsharp.github.io/FAKE/customtasks.html">Creating custom tasks</a></li>
<li><a href="http://fsharp.github.io/FAKE/teamcity.html">TeamCity integration</a></li>
<li><a href="http://fsharp.github.io/FAKE/canopy.html">Running canopy tests</a></li>
<li><a href="http://fsharp.github.io/FAKE/octopusdeploy.html">Octopus Deploy</a></li>
<li><a href="http://fsharp.github.io/FAKE/typescript.html">TypeScript support</a></li>
<li><a href="http://fsharp.github.io/FAKE/azurewebjobs.html">Azure WebJobs support</a></li>
<li><a href="http://fsharp.github.io/FAKE/azurecloudservices.html">Azure Cloud Services support</a></li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/deploy.html">Fake.Deploy</a></li>
<li class="nav-header">Reference</li>
<li><a href="http://fsharp.github.io/FAKE/apidocs/index.html">API Reference</a></li>
</ul>
</div>
</div>
</div>
<a href="http://github.com/fsharp/fake"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
</body>
</html>
| andrewchaa/PopOpen | packages/FAKE.3.23.0/docs/apidocs/fake-nunitxml.html | HTML | mit | 6,611 |
<style>
#calendar div.panel-title a {
background: inherit;
display: block;
width: 100%;
line-height: 20px;
text-decoration: none;
padding: 0;
}
#calendar div.panel-heading:hover {
background: #DEDEDE;
color: #606060;
}
</style>
<div id="calendar"></div>
<script id="calendar-template" type="text/x-handlebars-template">
{% raw %}
<h3 class="fancy">Upcoming Events</h3>
<div class="panel-group" id="calendar-list">
{{#items}}
<div class='panel panel-default'>
<div class='panel-heading'>
<div class='panel-title'>
<a data-toggle='collapse' data-parent='#calendar-list' href='#{{id}}'>
<h4>{{summary}}</h4>
<h6>{{dateRange start end}}</h6>
</a>
</div>
</div>
<div id='{{id}}' class='panel-collapse collapse'>
<div class='panel-body'>
<p>{{location}}</p>
<p>{{description}}</p>
<hr>
<p><a href="{{htmlLink}}">More Details</a></p>
</div>
</div>
</div>
{{/items}}
</div>
{% endraw %}
</script>
<script>
var now = moment();
var source = $("#calendar-template").html();
var template = Handlebars.compile(source);
Handlebars.registerHelper('dateRange', function(_start, _end) {
var start = moment(_start.dateTime);
var end = moment(_end.dateTime);
var sFmt = "dddd, MMMM Do, h:mm";
var eFmt = " - h:mm a";
// Show times differently depending
// on if we cross the noon/midnight
// line.
// 9:00 am - 3:00 pm
// ...OR...
// 9:00 - 11:00 am
if (start.format("a") !== end.format("a")) {
sFmt += " a";
}
// Start and end are the same, which
// usually indicates an all day event
// just show the date.
if (start.isSame(end)) {
sFmt = "dddd, MMMM Do";
eFmt = " ";
}
return(start.format(sFmt) + end.format(eFmt));
});
$.getJSON(
"https://www.googleapis.com/calendar/v3/calendars/jessann%40bradfordlittletheatre.org/events",
{
"singleEvents": "true",
"orderBy": "startTime",
"timeMin": encodeURI(now.startOf('day').format()),
"fields": encodeURI("items(id,status,description,htmlLink,kind,endTimeUnspecified,summary,location,visibility,start,extendedProperties,end)"),
"showDeleted": "false",
"maxResults": "5",
"key": encodeURI("AIzaSyC-cfvG_k0UhVqNrM_05htsYieK94uVNkw")
},
function(json) {
var
template = $("#calendar-template").html(),
compiled = Handlebars.compile(template);
$('#calendar').html(compiled(json));
});
</script>
| bradfordlittletheatre/bradfordlittletheatre.github.io | _includes/calendar.html | HTML | cc0-1.0 | 2,508 |
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<title>105年第十四任總統副總統及第九屆立法委員選舉</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
<link href="../css/style2.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="../js/ftiens4.js"></script>
<script type="text/javascript" src="../js/ua.js"></script>
<script type="text/javascript" src="../js/func.js"></script>
<script type="text/javascript" src="../js/treeT.js"></script>
<script type="text/javascript" src="../js/option.js"></script>
</head>
<body id="main-body">
<div id="main-header">
<div id="main-top">
<a class="main-top-logo" href="#">中央選舉委員會</a>
<ul class="main-top-list">
<li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li>
</ul>
</div>
</div>
<div id="main-wrap">
<div id="main-banner">
<div class="slideshow">
<img src="../img/main_bg_2.jpg" width="1024" height="300" alt="background" title="background">
</div>
<div class="main-deco"></div>
<div class="main-title"></div>
<a class="main-pvpe" href="../IDX/indexP1.html">總統副總統選舉</a>
<a class="main-le main-le-current" href="../IDX/indexT.html">立法委員選舉</a>
</div>
<div id="main-container">
<div id="main-content">
<table width="1024" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="180" valign="top">
<div id="divMenu">
<table border="0">
<tr>
<td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td>
</tr>
</table>
<span class="TreeviewSpanArea">
<script>initializeDocument()</script>
<noscript>請開啟Javascript功能</noscript>
</span>
</div>
</td>
<td width="796" valign="top">
<div id="divContent">
<!-- 修改區塊 -->
<table width="100%" border="0" cellpadding="0" cellspacing="4">
<tr>
<td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數"> <b>區域立法委員選舉 臺南市 第5選舉區 候選人得票數 </b></td>
</tr>
<tr valign="bottom">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td class="fontNumber"> <img src="../images/nav.gif" alt="候選人數" title="候選人數"> <img src="../images/nav.gif" alt="候選人數" title="候選人數"> 候選人數:4 <img src="../images/nav.gif" alt="應選人數" title="應選人數"> <img src="../images/nav.gif" alt="應選人數" title="應選人數"> 應選人數:1
<!--<img src="../images/nav.gif" alt="應有婦女當選名額" title="應有婦女當選名額"> <img src="../images/nav.gif" alt="應有婦女當選名額" title="應有婦女當選名額"> 應有婦女當選名額:0-->
</td>
<td align="right">
<select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();">
<option value="n">依號次排序</option>
<option value="s">依得票排序</option>
</select>
</td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT">
<tr class="trHeaderT">
<td>註記</td>
<td>號次</td>
<td>姓名</td>
<td>性別</td>
<td>得票數</td>
<td>得票率%</td>
<td>推薦之政黨</td>
</tr>
<tr class="trT">
<td>◎</td>
<td>1</td>
<td>王定宇</td>
<td>男</td>
<td class="tdAlignRight">153,553</td>
<td class="tdAlignRight">72.0463</td>
<td>民主進步黨</td>
</tr>
<tr class="trT">
<td> </td>
<td>2</td>
<td>晏揚清</td>
<td>男</td>
<td class="tdAlignRight">4,004</td>
<td class="tdAlignRight">1.8787</td>
<td>台灣工黨</td>
</tr>
<tr class="trT">
<td> </td>
<td>3</td>
<td>林易煌</td>
<td>男</td>
<td class="tdAlignRight">51,742</td>
<td class="tdAlignRight">24.2771</td>
<td>中國國民黨</td>
</tr>
<tr class="trT">
<td> </td>
<td>4</td>
<td>李盈蒔</td>
<td>女</td>
<td class="tdAlignRight">3,832</td>
<td class="tdAlignRight">1.7980</td>
<td>中華統一促進黨</td>
</tr>
<tr class="trFooterT">
<td colspan="7" align="left"><div id="divForArea"></div> </td>
</tr>
<!--<tr class="trFooterT">
<td colspan="7" align="right">投開票所數 已送/應送: 275/275 </td>
</tr>-->
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="10"></td>
<td valign="top" class="fontNote">
<table>
<tr>
<td>註記說明:</td>
<td align="center">◎</td>
<td>當選註記</td>
</tr>
<tr>
<td></td>
<td align="center">?</td>
<td>同票待抽籤</td>
</tr>
</table>
</td>
<td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sun, 17 Jan 2016 15:01:37 +0800" title="Sun, 17 Jan 2016 15:01:37 +0800"> 資料更新時間:01/16 23:17:16 </td>
</tr>
<tr>
<td colspan="3" class="fontNote"></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- 修改區塊 -->
</div>
</td>
</tr>
</table>
</div>
<div class="main-footer"></div>
<div id="divFooter">[中央選舉委員會] </div>
<!--main-content-->
</div><!--main-container-->
</div><!--END main-wrap-->
<script>setOrder();</script>
<script>setMenuScrollPosY();</script>
<script>goSelAreaT1();</script>
</body>
</html>
| gugod/vote-watch-2016 | data/TNN-5/n500050000000000/20160117074519/page.html | HTML | cc0-1.0 | 7,094 |
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<title>105年第十四任總統副總統及第九屆立法委員選舉</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
<link href="../css/style2.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="../js/ftiens4.js"></script>
<script type="text/javascript" src="../js/ua.js"></script>
<script type="text/javascript" src="../js/func.js"></script>
<script type="text/javascript" src="../js/treeT.js"></script>
<script type="text/javascript" src="../js/refresh.js"></script>
</head>
<body id="main-body">
<div id="main-header">
<div id="main-top">
<a class="main-top-logo" href="#">中央選舉委員會</a>
<ul class="main-top-list">
<li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li>
</ul>
</div>
</div>
<div id="main-wrap">
<div id="main-banner">
<div class="slideshow">
<img src="../img/main_bg_2.jpg" width="1024" height="300" alt="background" title="background">
</div>
<div class="main-deco"></div>
<div class="main-title"></div>
<a class="main-pvpe" href="../IDX/indexP1.html">總統副總統選舉</a>
<a class="main-le main-le-current" href="../IDX/indexT.html">立法委員選舉</a>
</div>
<div id="main-container">
<div id="main-content">
<table width="1024" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="180" valign="top">
<div id="divMenu">
<table border="0">
<tr>
<td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td>
</tr>
</table>
<span class="TreeviewSpanArea">
<script>initializeDocument()</script>
<noscript>請開啟Javascript功能</noscript>
</span>
</div>
</td>
<td width="796" valign="top">
<div id="divContent">
<!-- 修改區塊 -->
<table width="100%" border="0" cellpadding="0" cellspacing="4">
<tr>
<td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數"> <b>區域立法委員選舉 高雄市 第6選舉區 候選人得票數 </b></td>
</tr>
<tr valign="bottom">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td class="fontNumber"> <img src="../images/nav.gif" alt="候選人數" title="候選人數"> <img src="../images/nav.gif" alt="候選人數" title="候選人數"> 候選人數:3 <img src="../images/nav.gif" alt="應選人數" title="應選人數"> <img src="../images/nav.gif" alt="應選人數" title="應選人數"> 應選人數:1
<!--<img src="../images/nav.gif" alt="應有婦女當選名額" title="應有婦女當選名額"> <img src="../images/nav.gif" alt="應有婦女當選名額" title="應有婦女當選名額"> 應有婦女當選名額:0-->
</td>
<td align="right">
<select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();">
<option value="n">依號次排序</option>
<option value="s">依得票排序</option>
</select>
</td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT">
<tr class="trHeaderT">
<td>註記</td>
<td>號次</td>
<td>姓名</td>
<td>性別</td>
<td>得票數</td>
<td>得票率%</td>
<td>推薦之政黨</td>
</tr>
<tr class="trT">
<td> </td>
<td>1</td>
<td>黃柏霖</td>
<td>男</td>
<td class="tdAlignRight">0</td>
<td class="tdAlignRight">0.0000</td>
<td>中國國民黨</td>
</tr>
<tr class="trT">
<td> </td>
<td>2</td>
<td>李昆澤</td>
<td>男</td>
<td class="tdAlignRight">0</td>
<td class="tdAlignRight">0.0000</td>
<td>民主進步黨</td>
</tr>
<tr class="trT">
<td> </td>
<td>3</td>
<td>楊翰奇</td>
<td>男</td>
<td class="tdAlignRight">0</td>
<td class="tdAlignRight">0.0000</td>
<td>和平鴿聯盟黨</td>
</tr>
<tr class="trFooterT">
<td colspan="7" align="right">投開票所數 已送/應送: 0/133 </td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="10"></td>
<td valign="top" class="fontNote">
<table>
<tr>
<td>註記說明:</td>
<td align="center">◎</td>
<td>當選註記</td>
</tr>
<tr>
<td></td>
<td align="center">?</td>
<td>同票待抽籤</td>
</tr>
</table>
</td>
<td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sat, 16 Jan 2016 17:18:12 +0800" title="Sat, 16 Jan 2016 17:18:12 +0800"> 資料更新時間:01/16 17:18:06 <br>(網頁每3分鐘自動更新一次)</td>
</tr>
<tr>
<td colspan="3" class="fontNote"></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- 修改區塊 -->
</div>
</td>
</tr>
</table>
</div>
<div class="main-footer"></div>
<div id="divFooter">[中央選舉委員會] </div>
<!--main-content-->
</div><!--main-container-->
</div><!--END main-wrap-->
<script>setOrder();</script>
<script>setMenuScrollPosY();</script>
</body>
</html>
| gugod/vote-watch-2016 | data/KHH-6/n600060000000000/20160116092037/page.html | HTML | cc0-1.0 | 6,650 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Moka2popsy</title>
<link href="../node_modules/bootstrap/dist/css/bootstrap.css" rel="stylesheet">
<link href="../assets/css/main.css" rel="stylesheet">
<link href="../assets/css/responsive.css" rel="stylesheet">
</head>
<body class="homepage">
<section id="middle">
<div class="container">
<div class="row">
<div class="col-sm-12 wow fadeInDown">
<div class="skill">
<h2>Téléchargement de la mise-à-jour...</h2>
<div class="progress-wrap">
<h3 id="messages">0 Ko/s (0Ko/OKo)</h3>
<div class="progress">
<div class="progress-bar color1" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%" id="progress">
<span class="bar-width">0%</span>
</div>
</div>
</div>
</div><!--/.col-sm-6-->
</div><!--/.row-->
</div><!--/.container-->
</section><!--/#middle-->
<script>
const $ = jQuery = require('jquery');
const {ipcRenderer} = require('electron');
ipcRenderer.on('download-progress', function(event, progressObj) {
$('#progress').attr('style', 'width: '+progressObj.percent);
$('#progress').attr('aria-valuenow', progressObj.percentValue);
$('#progress').html(progressObj.percent);
$('#messages').html(progressObj.bytesPerSecond+' (' + progressObj.transferred + '/' + progressObj.total+')');
});
</script>
<script src="../node_modules/bootstrap/dist/js/bootstrap.js"></script>
<script src="../assets/js/jquery.prettyPhoto.js"></script>
<script src="../assets/js/jquery.isotope.min.js"></script>
<script src="../assets/js/main.js"></script>
<script src="../assets/js/wow.min.js"></script>
</body>
</html> | Proglab/electron | app/view/update.html | HTML | cc0-1.0 | 2,229 |
<!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-internal) on Sat Jul 25 18:14:30 BST 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.apache.jena.sparql.algebra.OpVisitorBase (Apache Jena ARQ)</title>
<meta name="date" content="2015-07-25">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.jena.sparql.algebra.OpVisitorBase (Apache Jena ARQ)";
}
}
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/apache/jena/sparql/algebra/OpVisitorBase.html" title="class in org.apache.jena.sparql.algebra">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/jena/sparql/algebra/class-use/OpVisitorBase.html" target="_top">Frames</a></li>
<li><a href="OpVisitorBase.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.jena.sparql.algebra.OpVisitorBase" class="title">Uses of Class<br>org.apache.jena.sparql.algebra.OpVisitorBase</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/apache/jena/sparql/algebra/OpVisitorBase.html" title="class in org.apache.jena.sparql.algebra">OpVisitorBase</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.jena.sparql.algebra.optimize">org.apache.jena.sparql.algebra.optimize</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.jena.sparql.algebra.optimize">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/apache/jena/sparql/algebra/OpVisitorBase.html" title="class in org.apache.jena.sparql.algebra">OpVisitorBase</a> in <a href="../../../../../../org/apache/jena/sparql/algebra/optimize/package-summary.html">org.apache.jena.sparql.algebra.optimize</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../../org/apache/jena/sparql/algebra/OpVisitorBase.html" title="class in org.apache.jena.sparql.algebra">OpVisitorBase</a> in <a href="../../../../../../org/apache/jena/sparql/algebra/optimize/package-summary.html">org.apache.jena.sparql.algebra.optimize</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/jena/sparql/algebra/optimize/OpVisitorExprPrepare.html" title="class in org.apache.jena.sparql.algebra.optimize">OpVisitorExprPrepare</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/jena/sparql/algebra/optimize/VariableUsagePopper.html" title="class in org.apache.jena.sparql.algebra.optimize">VariableUsagePopper</a></span></code>
<div class="block">An after visitor for tracking variable usage</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/jena/sparql/algebra/optimize/VariableUsagePusher.html" title="class in org.apache.jena.sparql.algebra.optimize">VariableUsagePusher</a></span></code>
<div class="block">A before visitor for tracking variable usage</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/jena/sparql/algebra/optimize/VariableUsageVisitor.html" title="class in org.apache.jena.sparql.algebra.optimize">VariableUsageVisitor</a></span></code>
<div class="block">A visitor which tracks variable usage</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/apache/jena/sparql/algebra/OpVisitorBase.html" title="class in org.apache.jena.sparql.algebra">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/jena/sparql/algebra/class-use/OpVisitorBase.html" target="_top">Frames</a></li>
<li><a href="OpVisitorBase.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>Licenced under the Apache License, Version 2.0</small></p>
</body>
</html>
| slennie12/SOR-Onderzoek | apache-jena-3.0.0/javadoc-arq/org/apache/jena/sparql/algebra/class-use/OpVisitorBase.html | HTML | cc0-1.0 | 7,980 |
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<title>105年第十四任總統副總統及第九屆立法委員選舉</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
<link href="../css/style2.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="../js/ftiens4.js"></script>
<script type="text/javascript" src="../js/ua.js"></script>
<script type="text/javascript" src="../js/func.js"></script>
<script type="text/javascript" src="../js/treeP1.js"></script>
<script type="text/javascript" src="../js/refresh.js"></script>
</head>
<body id="main-body">
<div id="main-header">
<div id="main-top">
<a class="main-top-logo" href="#">中央選舉委員會</a>
<ul class="main-top-list">
<li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li>
</ul>
</div>
</div>
<div id="main-wrap">
<div id="main-banner">
<div class="slideshow">
<img src="../img/main_bg_1.jpg" width="1024" height="300" alt="background" title="background">
</div>
<div class="main-deco"></div>
<div class="main-title"></div>
<a class="main-pvpe main-pvpe-current" href="../IDX/indexP1.html">總統副總統選舉</a>
<a class="main-le" href="../IDX/indexT.html">立法委員選舉</a>
</div>
<div id="main-container">
<div id="main-content">
<table width="1024" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="180" valign="top">
<div id="divMenu">
<table border="0">
<tr>
<td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td>
</tr>
</table>
<span class="TreeviewSpanArea">
<script>initializeDocument()</script>
<noscript>請開啟Javascript功能</noscript>
</span>
</div>
</td>
<td width="796" valign="top">
<div id="divContent">
<!-- 修改區塊 -->
<table width="100%" border="0" cellpadding="0" cellspacing="4">
<tr>
<td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數"> <b>總統副總統選舉 候選人在 連江縣 得票數 </b></td>
</tr>
<tr valign="bottom">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td class="fontNumber"> <img src="../images/nav.gif" alt="候選組數" title="候選組數"> <img src="../images/nav.gif" alt="候選組數" title="候選組數"> 候選組數:3 <img src="../images/nav.gif" alt="應選組數" title="應選組數"> <img src="../images/nav.gif" alt="應選組數" title="應選組數"> 應選組數:1</td>
<td align="right">
<select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();">
<option value="n">依號次排序</option>
<option value="s">依得票排序</option>
</select>
</td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT">
<tr class="trHeaderT">
<td>註記</td>
<td>號次</td>
<td><table><tr><td>總統</td><td rowspan=2> 候選人姓名</td></tr><td>副總統</td></table></td>
<td>性別</td>
<td>得票數</td>
<td>得票率%</td>
<td>登記方式</td>
</tr>
<tr class="trT">
<td> </td>
<td>1</td>
<td>朱立倫<br>王如玄</td>
<td>男<br>女</td>
<td class="tdAlignRight">481</td>
<td class="tdAlignRight">67.1788</td>
<td>中國國民黨 推薦</td>
</tr>
<tr class="trT">
<td> </td>
<td>2</td>
<td>蔡英文<br>陳建仁</td>
<td>女<br>男</td>
<td class="tdAlignRight">110</td>
<td class="tdAlignRight">15.3631</td>
<td>民主進步黨 推薦</td>
</tr>
<tr class="trT">
<td> </td>
<td>3</td>
<td>宋楚瑜<br>徐欣瑩</td>
<td>男<br>女</td>
<td class="tdAlignRight">125</td>
<td class="tdAlignRight">17.4581</td>
<td>親民黨 推薦</td>
</tr>
<tr class="trFooterT">
<td colspan="7" align="right">投開票所數 已送/應送: 3/8 </td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="10"></td>
<td valign="top" class="fontNote">
<table>
<tr>
<td>註記說明:</td>
<td align="center">◎</td>
<td>自然當選</td>
</tr>
<tr>
<td></td>
<td align="center">?</td>
<td>同票待抽籤</td>
</tr>
</table>
</td>
<td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sat, 16 Jan 2016 18:48:12 +0800" title="Sat, 16 Jan 2016 18:48:12 +0800"> 資料更新時間: 01/16 18:48:06 <br>(網頁每3分鐘自動更新一次)</td>
</tr>
<tr>
<td colspan="3" class="fontNote"></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- 修改區塊 -->
</div>
</td>
</tr>
</table>
</div>
<div class="main-footer"></div>
<div id="divFooter" align=center>[中央選舉委員會] </div>
<!--main-content-->
</div><!--main-container-->
</div><!--END main-wrap-->
<script>setOrder();</script>
<script>setMenuScrollPosY();</script>
</body>
</html>
| gugod/vote-watch-2016 | data/president/n802000000000000/20160116105025/page.html | HTML | cc0-1.0 | 6,560 |
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<title>105年第十四任總統副總統及第九屆立法委員選舉</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
<link href="../css/style2.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="../js/ftiens4.js"></script>
<script type="text/javascript" src="../js/ua.js"></script>
<script type="text/javascript" src="../js/func.js"></script>
<script type="text/javascript" src="../js/treeT.js"></script>
<script type="text/javascript" src="../js/refresh.js"></script>
</head>
<body id="main-body">
<div id="main-header">
<div id="main-top">
<a class="main-top-logo" href="#">中央選舉委員會</a>
<ul class="main-top-list">
<li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li>
</ul>
</div>
</div>
<div id="main-wrap">
<div id="main-banner">
<div class="slideshow">
<img src="../img/main_bg_2.jpg" width="1024" height="300" alt="background" title="background">
</div>
<div class="main-deco"></div>
<div class="main-title"></div>
<a class="main-pvpe" href="../IDX/indexP1.html">總統副總統選舉</a>
<a class="main-le main-le-current" href="../IDX/indexT.html">立法委員選舉</a>
</div>
<div id="main-container">
<div id="main-content">
<table width="1024" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="180" valign="top">
<div id="divMenu">
<table border="0">
<tr>
<td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td>
</tr>
</table>
<span class="TreeviewSpanArea">
<script>initializeDocument()</script>
<noscript>請開啟Javascript功能</noscript>
</span>
</div>
</td>
<td width="796" valign="top">
<div id="divContent">
<!-- 修改區塊 -->
<table width="100%" border="0" cellpadding="0" cellspacing="4">
<tr>
<td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數"> <b>區域立法委員選舉 臺中市 第5選舉區 候選人得票數 </b></td>
</tr>
<tr valign="bottom">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td class="fontNumber"> <img src="../images/nav.gif" alt="候選人數" title="候選人數"> <img src="../images/nav.gif" alt="候選人數" title="候選人數"> 候選人數:4 <img src="../images/nav.gif" alt="應選人數" title="應選人數"> <img src="../images/nav.gif" alt="應選人數" title="應選人數"> 應選人數:1
<!--<img src="../images/nav.gif" alt="應有婦女當選名額" title="應有婦女當選名額"> <img src="../images/nav.gif" alt="應有婦女當選名額" title="應有婦女當選名額"> 應有婦女當選名額:0-->
</td>
<td align="right">
<select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();">
<option value="n">依號次排序</option>
<option value="s">依得票排序</option>
</select>
</td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT">
<tr class="trHeaderT">
<td>註記</td>
<td>號次</td>
<td>姓名</td>
<td>性別</td>
<td>得票數</td>
<td>得票率%</td>
<td>推薦之政黨</td>
</tr>
<tr class="trT">
<td> </td>
<td>1</td>
<td>簡孟軒</td>
<td>男</td>
<td class="tdAlignRight">6,430</td>
<td class="tdAlignRight">6.9709</td>
<td>信心希望聯盟</td>
</tr>
<tr class="trT">
<td> </td>
<td>2</td>
<td>苗豐隆</td>
<td>男</td>
<td class="tdAlignRight">1,538</td>
<td class="tdAlignRight">1.6674</td>
<td>無</td>
</tr>
<tr class="trT">
<td> </td>
<td>3</td>
<td>盧秀燕</td>
<td>女</td>
<td class="tdAlignRight">47,488</td>
<td class="tdAlignRight">51.4825</td>
<td>中國國民黨</td>
</tr>
<tr class="trT">
<td> </td>
<td>4</td>
<td>劉國隆</td>
<td>男</td>
<td class="tdAlignRight">36,785</td>
<td class="tdAlignRight">39.8792</td>
<td>台灣團結聯盟</td>
</tr>
<tr class="trFooterT">
<td colspan="7" align="right">投開票所數 已送/應送: 105/219 </td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="10"></td>
<td valign="top" class="fontNote">
<table>
<tr>
<td>註記說明:</td>
<td align="center">◎</td>
<td>當選註記</td>
</tr>
<tr>
<td></td>
<td align="center">?</td>
<td>同票待抽籤</td>
</tr>
</table>
</td>
<td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sat, 16 Jan 2016 19:21:11 +0800" title="Sat, 16 Jan 2016 19:21:11 +0800"> 資料更新時間:01/16 19:21:06 <br>(網頁每3分鐘自動更新一次)</td>
</tr>
<tr>
<td colspan="3" class="fontNote"></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- 修改區塊 -->
</div>
</td>
</tr>
</table>
</div>
<div class="main-footer"></div>
<div id="divFooter">[中央選舉委員會] </div>
<!--main-content-->
</div><!--main-container-->
</div><!--END main-wrap-->
<script>setOrder();</script>
<script>setMenuScrollPosY();</script>
</body>
</html>
| gugod/vote-watch-2016 | data/TXG-5/n400050000000000/20160116112341/page.html | HTML | cc0-1.0 | 6,957 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Chá da Paty & Renan</title>
<meta name="description" content="Chá da Paty & Renan">
<meta name="author" content="Renan Prata">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="icon" type="image/jpeg" href="imgs/icon.jpg" sizes="36x36">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<center><img src="imgs/cover.png" alt="what image shows" height="200" width="400"></center>
<center><nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="convite.html">Convite</a></li>
<li><a href="como-chegar.html">Como Chegar</a></li>
<li><a href="lista-de-presentes.html">Lista de Presentes</a></li>
<li><a href="fotos.html">Fotos</a></li>
</ul>
</nav><center>
<br>
<div class="h-feed">
<article class="h-entry">
<h1>First Class</h1>
<p style="max-width:700px; word-wrap:break-word;">A compra poderá ser feita em qualquer loja física da First Class. Apenas peça a lista no nome de Patricia Guimarães.</p>
</article>
<br/>
<article class="h-entry">
<h1>C&C</h1>
<p style="max-width:700px; word-wrap:break-word;">Neste caso, compra é feita online. <a target="_blank" href="http://goo.gl/cUY7NR">Clique aqui para acessar a lista de presentes.</a></p>
</article>
<br />
<article class="h-entry">
<h1>Extra</h1>
<p style="max-width:700px; word-wrap:break-word;">Essa lista contém os itens que não foram encontrados tanto na C&C quanto na FirstClass:
</p>
<ul>
<p>Espremedor de batatas</p>
<p>Espremedor de alho</p>
<p>Mixer - COMPRADO</p>
<p>Panela de pressão elétrica</p>
<p>Ferro de passar</p>
<p>Microondas de 30 Litros (Brastemp, Panasonic, Philco, Consul ou Eletrolux) - COMPRADO</p>
<p>Faqueiro Tramontina (52 peças) ou Faqueiro Brinox (42 peças) - Inox - COMPRADO</p>
<p>Rechaud retangular</p>
<p>Aspirador de pó Eletrolux Preto</p>
<p>Aparelho de jantar branco</p>
<p>Açucareiro – Inox </p>
<p>Escorredor de macarrão – Inox</p>
<p>Assadeiras antiaderentes</p>
<p>Aparelho de fondue</p>
<p>Conjunto de bowls (6 peças) - Inox</p>
<p>Porta-guardanapos</p>
<p>Funil</p>
<p>Carrinho de feira</p>
<p>Balança de cozinha</p>
<p>Descascador de legumes</p>
<p>Luvas térmicas de cozinha</p>
<p>Descanso de panelas</p>
<p>Ralador de queijo</p>
<p>Ar-condicionado portátil</p>
<p>Ventilador portátil</p>
<p>Passadeiras/Tapetes de cozinha</p>
<p>Formas de gelo</p>
<p>Relógio de cozinha</p>
<p>Panos de chão</p>
<p>Panela Wok antiaderente</p>
<p>Varal de chão</p>
</ul>
</article>
</div>
<br />
<!-- <a>Você é o visitante número: </a><br/>
<script type="text/javascript" src="http://counter10.fcs.ovh/private/counter.js?c=67f34f386906b488dcfca1d9bb04061b"></script> -->
</body>
<footer>
<h6>Desenvolvido por: Renan Prata. Contato: renancprata@gmail.com.</h6>
</footer>
</html> | rprata/chadapatyerenan | site/lista-de-presentes.html | HTML | cc0-1.0 | 3,105 |
<div ng-repeat="location in locations" class="locationPanel" data-spot-size="{{ location.prevalence }}" data-latitude="23.0300" data-longitude="72.5800">About {{ location.name | allAsGlobal }}</div> | tirami/udadisi-frontend | app/partials/map-locations.html | HTML | cc0-1.0 | 198 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Mozilla splash page</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<style>
/* header and body setup */
html {
font-family: 'Open Sans', sans-serif;
background: url(pattern.png);
}
body {
width: 100%;
max-width: 1200px;
margin: 0 auto;
background-color: white;
position: relative;
}
/* Header styling */
header {
height: 150px;
}
header img {
width: 100px;
position: absolute;
right: 32.5px;
top: 32.5px;
}
h1 {
font-size: 50px;
line-height: 140px;
margin: 0 0 0 32.5px;
}
/* main section and video styling */
main {
background: #ccc;
}
article {
padding: 20px;
}
h2 {
margin-top: 0;
}
p {
line-height: 2;
}
iframe {
float: left;
margin: 0 20px 20px 0;
max-width: 100%;
}
/* further info links */
.further-info {
clear: left;
padding: 40px 0;
background: #c13832;
box-shadow: inset 0 3px 2px rgba(0,0,0,0.5),
inset 0 -3px 2px rgba(0,0,0,0.5);
}
.further-info a {
width: 25%;
display: block;
float: left;
}
.further-info img {
max-width: 100%;
}
.clearfix {
clear: both;
}
/* Red panda image */
.red-panda img {
display: block;
max-width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Mozilla</h1>
<img src="firefox-logo120.png" alt="Firefox logo">
</header>
<main>
<article>
<iframe width="400" height="225" src="https://www.youtube.com/embed/ojcNcvb1olg" frameborder="0" allowfullscreen></iframe>
<h2>Rocking the free web</h2>
<p>Mozilla are a global community of technologists, thinkers, and builders, working together to keep the Internet alive and accessible, so people worldwide can be informed contributors and creators of the Web. We believe this act of human collaboration across an open platform is essential to individual growth and our collective future.</p>
<p>Click on the images below to find more information about the cool stuff Mozilla does. <a href="https://www.flickr.com/photos/mathiasappel/21675551065/">Red panda picture</a> by Mathias Appel.</p>
</article>
<div class="further-info">
<a href="https://www.mozilla.org/en-US/firefox/new/">
<img srcset="firefox-logo120.png 120w,
firefox-logo400.png 400w"
sizes="(max-width: 500px) 120px,
400px"
src="firefox-logo400.png" alt="Download Firefox">
</a>
<a href="https://www.mozilla.org/">
<img srcset="mozilla-dinosaur120.png 120w,
mozilla-dinosaur400.png 400w"
sizes="(max-width: 500px) 120px,
400px"
src="mozilla-dinosaur400.png" alt="Learn more about Mozilla">
</a>
<a href="https://addons.mozilla.org/">
<img srcset="firefox-addons120.jpg 120w,
firefox-addons400.jpg 400w"
sizes="(max-width: 500px) 120px,
400px"
src="firefox-addons400.jpg" alt="Customize Firefox with add-ons">
</a>
<a href="https://developer.mozilla.org/en-US/">
<img src="mdn.svg" alt="Learn web development with MDN">
</a>
<div class="clearfix"></div>
</div>
<div class="red-panda">
<picture>
<source media="(max-width: 600px)" srcset="red-panda-portrait-small.jpg">
<img src="red-panda-landscape.jpg" alt="a red panda">
</picture>
</div>
</main>
</body>
</html>
| mdn/learning-area | html/multimedia-and-embedding/mdn-splash-page-finished/index.html | HTML | cc0-1.0 | 4,104 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>Spring Boot and Salesforce Canvas - NotesSensei's Blog</title>
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-72033-1', 'auto');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta http-equiv="Content-Language" content="en" />
<meta rel="meta" link="application/rdf+xml" content="/foaf.rdf" />
<meta property="og:title" content="wissel.net - Spring Boot and Salesforce Canvas" />
<meta property="og:type" content="blog" />
<meta property="og:url" content="https://wissel.net/blog/2018/02/spring-boot-and-salesforce-canvas.html" />
<meta property="og:image" content="//www.wissel.net/blog/img/wisselnet.gif" />
<meta property="og:site_name" content="wissel.net" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="ROBOTS" content="FOLLOW, NOIMAGEINDEX" />
<meta name="DC.Title" content="NotesSensei's Weblog - Spring Boot and Salesforce Canvas" />
<meta name="Author" content="Stephan H. Wissel" />
<meta name="ICBM" content="1.2994, 103.8425" />
<meta name="Copyright" content="2002,2020 Stephan H. Wissel - Creative commons licence" />
<meta name="twitter:site" content="@notessensei" />
<meta name="twitter:card" content="summary" />
<meta name="xing:author" content="https://www.xing.com/profile/StephanH_Wissel" />
<meta name="description"
content="Spring Boot and Salesforce Canvas - The challenge Salesforce canvas offers a capable integration point between Salesforce and external applications to surface them inside the Salesforce UI. One of the aspects is establishing identity. There are two options: OAuth and a signed request. I���m looking at the later. A signed request posts" />
<meta name="Keywords"
content="Heroku,Java,Salesforce," />
<meta name="Abstract"
content="Spring Boot and Salesforce Canvas - The challenge Salesforce canvas offers a capable integration point between Salesforce and external applications to surface them inside the Salesforce UI. One of the aspects is establishing identity. There are two options: OAuth and a signed request. I���m looking at the later. A signed request posts" />
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="/blog/style/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="/blog/style/responsive.css" />
<link rel="stylesheet" type="text/css" href="/blog/style/wisselblog.css" />
<link rel="stylesheet" type="text/css" href="/blog/style/main.css" />
<link rel="stylesheet" type="text/css" href="/blog/style/blogcodedisplay.css" />
<link rel="stylesheet" type="text/css" href="/blog/style/shariff.complete.css" />
<link rel="stylesheet" type="text/css" href="/blog/style/markdown.css" />
<link rel="stylesheet" type="text/css" href="/blog/css/prism.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="/blog/img/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="/blog/img/favicon-16x16.png" sizes="16x16" />
<link rel="alternate" type="application/rss+xml" title="RSS News Feed" href="https://feeds.feedburner.com/Wisselnetfeed" />
<meta name="Revisit-After" content="90 Days" />
</head>
<body class="line-numbers">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<a 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>
</a> <a class="brand" href="/">wissel.net</a>
<div class="nav-collapse">
<ul class="nav">
<li><a href="/index.html">Home</a></li>
<li class="active"><a href="/blog/">Blog</a></li>
<li><a href="/blog/series.html">Series</a></li>
<li><a href="/blog/downloads/">Downloads</a></li>
<li><a href="https://stwissel.github.io/presentations/" title="Presentations maintained on GitHub">Presentations</a></li>
<li><a href="/blog/imprint.html">About / Imprint</a></li>
</ul>
<form action="//www.google.com/cse" id="cse-search-box"
class="navbar-search pull-right">
<div>
<input type="hidden" name="cx"
value="partner-pub-4562257798204150:muo14ionenw" /> <input
type="hidden" name="ie" value="ISO-8859-1" /> <input type="text"
name="q" class="search-query span2" placeholder="Search" />
<!-- input type="submit" name="sa" value="Search" class="btn btn-small"/-->
</div>
</form>
</div>
</div>
</div>
<div class="navbar-spacer"></div>
<div class="container">
<br />
<header>
<div id="mainsmall" class="hero-unit">
<h2>wissel.net</h2>
<p>Usability - Productivity - Business - The web - Singapore & Twins</p>
</div>
</header>
<ul class="breadcrumb">
<li><a href="/blog/">Blog</a> <span class="divider">/</span></li>
<li><a href="/blog/2018/">2018</a> <span class="divider">/</span></li>
<li><a href="/blog/2018/02/">February</a></li>
<li class="pull-right">
<span class="divider">|</span><a href="/blog/categories/heroku.html">Heroku</a>
</li>
<li class="pull-right">
<span class="divider">|</span><a href="/blog/categories/java.html">Java</a>
</li>
<li class="pull-right">
<span class="divider">|</span><a href="/blog/categories/salesforce.html">Salesforce</a>
</li>
</ul>
<div class="row-fluid">
<div class="span12">
<ul class="breadcrumb pull-centre">
<li><a href="/blog/2018/02/running-nodered-on-heroku-with-salesforce.html"><i class="icon-hand-left"></i>Running NodeRED on Heroku with Salesforce</a>
<span class="divider">|</span></li>
<li><a href="/blog/"><i class="icon-hand-up"></i>Main</a></li>
<span class="divider">|</span>
<li><a href="/blog/2018/02/query-a-json-object-like-xpath.html">Query a JSON object like XPath in Java<i class="icon-hand-right"></i></a>
</li>
</ul>
<article class="well well-raised">
<h1><small>Spring Boot and Salesforce Canvas</small></h1>
<hr />
<div><h3>The challenge</h3>
<p>Salesforce canvas offers a capable integration point between Salesforce and external applications to surface them inside the Salesforce UI. One of the aspects is establishing identity. There are two options: OAuth and a signed request. I���m looking at the later. A signed request posts (as in HTTP POST) a digitally signed JSON request to the external application.</p>
<p>When all you need is a single page, validating the request and returning the result is all that needs to be done. It becomes trickier when you want to navigate in the application and when that application runs in the cloud with multiple load balanced instances, so you might end up on a different instance mid-flight.</p>
<p>Most of the sample code available uses the sophisticated <a href="https://github.com/forcedotcom/SalesforceCanvasJavascriptSDK">Canvas JavaScript SDK</a>, so I decided to focus on backend code here.</p>
<h3>The project</h3>
<p>All the code can be found <a href="https://stwissel.github.io/SpringCanvasSample/">on Github</a> including <a href="https://github.com/Stwissel/SpringCanvasSample">sources</a>. Feel free to <a href="https://github.com/Stwissel/SpringCanvasSample/issues">open issues</a>. To try it out you can deploy it to Heroku (button in the Readme on Github) and <a href="https://developer.salesforce.com/docs/atlas.en-us.platform_connect.meta/platform_connect/quick_start_create_canvas_app.htm">configure a Canvas app</a> in Salesforce. Use <code>https://yourappname.herokuapp.com/sfdcauth/hw</code> as Canvas URL</p>
<h3>The approach</h3>
<p>Build a <a href="https://projects.spring.io/spring-boot/">Spring Boot</a> application that provides an authentication endpoint suitable for a Canvas POST and other endpoints that only allow authenticated access. The security will be provided by <a href="https://jwt.io/">Json Web Tokens</a> a.k.a JWT or <a href="https://tools.ietf.org/html/rfc7519">RFC 7519</a>.</p>
<p>As added challenge: The application will require standard link and form based navigation, so we can't rely on AJAX to provide additional "stuff" into the requests from/to the server. And yes - needs to be able to run on <a href="https://www.heroku.com/">Heroku</a> on multiple instances (Dynos in Heroku language) without the sticky session feature switched on.</p>
<h3>Lessons learned</h3>
<ul>
<li><a href="https://projects.spring.io/spring-boot/">Spring Boot</a> performs magic. Sometimes a little too much magic</li>
<li>Base64 isn't Base64. The Java8 decoder works different from the Apache Commons, so the signed checksums don't tally. Pain in the "proverbial" to get the validation code from the SDK running</li>
<li>Spring security is well thought through. I like the approach: the very moment you add it to a project, all is closed until you specifically open it</li>
<li>You can't stuff the entire JSON coming from Salesforce back into a cookie</li>
<li>JSON in Java is still a pain (Bearable with <a href="https://fasterxml.github.io/jackson-databind/javadoc/2.2.0/com/fasterxml/jackson/databind/JsonNode.html">JsonNode</a>)</li>
<li>The information around custom error pages in Spring is confusing. It seems to have evolved over time and conflicting information is presented</li>
<li><a href="https://jwt.io/">Json Web Tokens</a> (JWT) rock</li>
<li>Cookies behave different in Salesforce canvas than in regular iFrames. In an iFrame http cookies are considered "native" to their environment, in canvas they seem to run as third-party cookies (unless I miss something). Stole a few hours tracking the issue down</li>
<li><a href="https://www.avonnicreator.com/">Avonni Creator</a> is a nice tool to play with <a href="https://www.lightningdesignsystem.com/">Lightning Design System</a> layouts</li>
</ul>
<p>As usual YMMV</p></div>
<hr />
<p>
Posted by <a rel="author" href="https://plus.google.com/u/0/+StephanWissel">
Stephan H Wissel</a> on 20 February 2018
<span class="divider">|</span>
<a href="/blog/2018/02/spring-boot-and-salesforce-canvas.html#comments">Comments (1)</a>
<span class="divider">|</span>
categories: <a href="/blog/categories/heroku.html">Heroku</a> <a href="/blog/categories/java.html">Java</a> <a href="/blog/categories/salesforce.html">Salesforce</a>
<script type="text/javascript">
var permaLink = "https://wissel.net/blog/2018/02/spring-boot-and-salesforce-canvas.html";
</script>
</p>
</article>
<a name="comments"></a>
<div class="well well-raised" style="text-align : center">
<button class="btn btn-lg btn-info" data-toggle="collapse" data-target="#commentform_43366410-1621-11e8-8f58-bd9e0b89b056" type="button">
Add your comment... <span class="glyphicon glyphicon-comment"></span>
</button>
</div>
<div id="commentform_43366410-1621-11e8-8f58-bd9e0b89b056" class="collapse"></div>
<div class="well well-raised">
<h4>Comments</h4>
<ol id="commentList">
<li>
posted by <b>Nagendra</b> on <i>Saturday 12 October 2019 AD</i>:<br /> <p>What should be the callbackURL for the Connected App Setting and what should be the Admin User Name in the heroku variable?</p>
<hr style="clear : both" />
</li> </ol>
</div>
<ul class="breadcrumb pull-centre">
<li><a href="/blog/2018/02/running-nodered-on-heroku-with-salesforce.html"><i class="icon-hand-left"></i>Running NodeRED on Heroku with Salesforce</a>
<span class="divider">|</span></li>
<li><a href="/blog/"><i class="icon-hand-up"></i>Main</a></li>
<span class="divider">|</span>
<li><a href="/blog/2018/02/query-a-json-object-like-xpath.html">Query a JSON object like XPath in Java<i class="icon-hand-right"></i></a>
</li>
</ul>
</div>
</div>
<ul class="breadcrumb">
<li><a href="/blog/">Blog</a> <span class="divider">/</span></li>
<li><a href="/blog/2018/">2018</a> <span class="divider">/</span></li>
<li><a href="/blog/2018/02/">February</a></li>
<li class="pull-right">
<span class="divider">|</span><a href="/blog/categories/heroku.html">Heroku</a>
</li>
<li class="pull-right">
<span class="divider">|</span><a href="/blog/categories/java.html">Java</a>
</li>
<li class="pull-right">
<span class="divider">|</span><a href="/blog/categories/salesforce.html">Salesforce</a>
</li>
</ul>
</div>
<footer>
<div class="container">
<div class="row">
<div class="span2">
<h4>About Me</h4>
<p>
I work as "Solution Director Innovation" for HCL Software. I'm based in Singapore.
<g:plusone size="small" href="https://wissel.net/blog/"></g:plusone>
</p>
<a href="//stackoverflow.com/users/131021/stwissel">
<img src="//stackoverflow.com/users/flair/131021.png" width="208" height="58" alt="profile for stwissel at Stack Overflow, Q&A for professional and enthusiast programmer" title="profile for stwissel at Stack Overflow, Q&A for professional and enthusiast programmer">
</a>
</div>
<div class="span2">
<h4>Contact</h4>
<ul>
<li><a href="https://www.twitter.com/notessensei">Twitter</a></li>
<li><a href="https://sg.linkedin.com/in/notessensei">LinkedIn</a></li>
<li><a href="https://www.xing.com/profile/StephanH_Wissel">XING</a></li>
<li><a href="https://notessensei.myspreadshop.com">NotesSensei's Spreadshirt shop</a></li>
<li><a href="http://about.me/stephan.wissel/#" title="Another identity site, nothing much here">About Me</a></li>
</ul>
</div>
<div class="span8">
<h4>Disclaimer</h4>
<p>This site is in no way affiliated, endorsed, sanctioned,
supported, nor enlightened by my current or previous employers.
I may be an employee, but the opinions, theories, facts, etc.
presented here are my own and are in now way given in any official
capacity. In short, these are my words and this is my site, not
my current or former employers' - and don't even begin to think otherwise.</p>
<p>
<b>© 2003 - 2022 Stephan H. Wissel - some rights reserved</b> as
listed here: <a rel="license"
href="//creativecommons.org/licenses/by-nc-sa/3.0/"><img
alt="Creative Commons License" style="border-width: 0"
src="//licensebuttons.net/l/by-nc-sa/3.0/88x31.png" /></a>
Unless otherwise labeled by its originating author, the content
found on this site is made available under the terms of an <a
href="//creativecommons.org/licenses/by-nc-sa/3.0/"
target="_blank"
title="Learn more about the creative commons Attribution-ShareAlike License">Attribution/NonCommercial/ShareAlike
Creative Commons License</a>, with the exception that no rights are
granted -- since they are not mine to grant -- in any logo,
graphic design, trademarks or trade names of any type. Code
samples and code downloads on this site are, unless otherwise
labeled, made available under an <a
href="//www.apache.org/licenses/LICENSE-2.0.html">Apache
2.0</a> license. Other license models are available on written
request and written confirmation.
</p>
</div>
</div>
</div>
</footer>
<script type="text/javascript">
var permaLink = "https://wissel.net/blog/2018/02/spring-boot-and-salesforce-canvas.html";
</script>
<script type="text/javascript" src="/blog/js/jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="/blog/js/bootstrap.js"></script>
<script type="text/javascript" src="/blog/js/blogmain.js"></script>
<script type="text/javascript" src="/blog/js2/prism.js"></script>
<script src="//www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-72033-1";
urchinTracker();
</script>
<script type="text/javascript" src="//feeds.feedburner.com/~s/Wisselnet?i=https://wissel.net/blog" charset="utf-8"></script>
<script src="/blog/js2/mustache.js"></script>
<script src="/blog/js2/blogcomments.js"></script>
<script type="text/javascript" src="/blog/js2/Markdown.Converter.js"></script>
<script type="text/javascript" src="/blog/js2/Markdown.Sanitizer.js"></script>
<script type="text/javascript" src="/blog/js2/Markdown.Editor.js"></script>
<script type="text/javascript" src="//www.google.com/recaptcha/api.js"></script>
<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit" async defer></script>
<script type="text/javascript">
var onloadCallback = function() {
renderComment("6LcBxUEUAAAAACzKM8YKb-RVVaIZ3MN6F1Z8FB_4", "43366410-1621-11e8-8f58-bd9e0b89b056");
};
</script>
</body>
</html>
| Stwissel/stwissel.github.io | blog/2018/02/spring-boot-and-salesforce-canvas.html | HTML | cc0-1.0 | 17,258 |
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>French e-procurement open data dashboard</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<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">
<a class="navbar-brand" href="index.html">French e-procurement open data dashboard</a>
</div>
<ul class="nav navbar-nav">
<li><a href="https://github.com/ColinMaudry/e-procurement-dashboard-fr">Github</a></li>
</ul>
</div><!-- /.container-fluid -->
</nav>
<div id="main-container">
<div class="container ">
<!-- Example row of columns -->
<div class="row">
<div>
<p class="intro-blurb">This is a public dashboard showing how French administrations are performing in regard to procurement data opening.</p>
<p>Indicators documentation.</p>
</div>
</div>
</div> <!-- /#main-container -->
<hr>
<footer class="footer">
</footer>
</div> <!-- /container -->
<script id="__bs_script__">//<![CDATA[
document.write("<script async src='http://HOST:3000/browser-sync/browser-sync-client.2.12.5.js'><\/script>".replace("HOST", location.hostname));
//]]>
</script>
</body>
</html>
| ColinMaudry/e-procurement-dashboard-fr | indicators.html | HTML | cc0-1.0 | 2,407 |
<link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../../bower_components/paper-datatable/paper-datatable.html">
<link rel="import" href="../../bower_components/paper-datatable/paper-datatable-column.html">
<dom-module id="table-wrapper">
<template>
<paper-datatable data="{{data}}" selectable multi-selection>
<paper-datatable-column header="Name" property="operationName" sortable>
</paper-datatable-column>
<paper-datatable-column header="Date" property="date" sortable>
</paper-datatable-column>
</paper-datatable>
</template>
<script>
Polymer({
is: 'table-wrapper',
properties : {
data: {
type: Array,
notify: true
}
},
getTableElement : function ()
{
debugger;
return this.shadowRoot.querySelector("paper-datatable");
}
});
</script>
</dom-module> | liranAsh/NGW-EL | app/polymer-utility/table-wrapper.html | HTML | cc0-1.0 | 1,079 |
<!doctype html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="content-language" content="" />
<meta name="application-name" content="St Margarets Community Website "/>
<meta name="author" content="Peter Mahnke"/>
<meta name="distributor" content=""/>
<meta name="robots" content="All"/>
<meta name="description" content="St Margarets Community Website provides residents and visitors great information about local news, events and resources. St Margarets is in Greater London and located between Twickenham and Richmond."/>
<meta name="keywords" content="St Margarets, community, directory, local information, news, events, pubs, Richmond Council, Kew Gardens, Hampton Court, Marble Hill, Ham House, RFU, York House, rugby, Moormead, Crane River, River Crane, Orleans House, Thames, Eel Pie, Richmond, Twickenham, Saint Margarets, Greater London, England, United Kingdom, TW1, TW2"/>
<meta name="rating" content="General"/>
<meta name="dcterms.title" content="St Margarets Community Website : Homepage"/>
<meta name="dcterms.contributor" content="Peter Mahnke"/>
<meta name="dcterms.creator" content="Peter Mahnke"/>
<meta name="dcterms.publisher" content="Peter Mahnke"/>
<meta name="dcterms.description" content="St Margarets Community Website provides residents and visitors great information about local news, events and resources. St Margarets is in Greater London and located between Twickenham and Richmond."/>
<meta name="dcterms.rights" content="© Copyright 2004-2017 by Peter Mahnke. All rights reserved."/>
<title>St Margarets Community Website: About this Site</title>
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="/css/base.css">
<link rel="stylesheet" href="/css/skeleton.css">
<link rel="stylesheet" href="/css/layout.css">
<!--[if lt IE 9]>
<script async src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
<!-- Fonts -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<style type="text/css">
</style>
<script type="text/javascript" language="javascript">
</script>
</head>
<body onload="startup();">
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-MXJB5Z"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MXJB5Z');</script>
<!-- End Google Tag Manager -->
<div class="container">
<div id="banner" class="sixteen columns">
<div id="logo" ><a href="/" accesskey="1" title="St Margarets Community Website"><img src="/images/stmgrts_logo_tree.png" width="85" height="77" alt="St Margarets Community Website" /></a>
</div>
<div id="sitename" >
<h1><a href="/" accesskey="1" title="St Margarets Community Website">St Margarets<br /><span>Community Website</span></a></h1>
</div><!-- end div logo -->
<div id="burger" ><a href="javascript:void(0)" class="search-icon"><img src="/images/search_white.svg" width="30" alt="search" /></a><a href="#nav" class="menu-icon"><img src="/images/navigation-menu.svg" width="30" alt="menu" /></a></div>
</div><!-- end div banner -->
<!-- end of the HEAD -->
<!-- NAV -->
<div id="navigation" class="sixteen columns">
<nav>
<ul>
<li><a href="/" class="nav">home</a></li>
<li><a href="/archives/news/index.html" class="nav">news</a></li>
<li><a href="/archives/editorial/index.html" class="nav">editorial</a></li>
<li><a href="/archives/around_town/index.html" class="nav">around town</a></li>
<li><a href="/event" class="nav">events</a></li>
<li><a href="/directory" class="nav">local info</a></li>
<li><a href="/forum.cgi" class="nav">forums</a></li>
<li><a href="/static/info/colophon.html" class="nav">about</a></li>
<li><a href="/cgi-bin/newsletter.cgi" class="nav">newsletter</a></li>
</ul>
</nav>
</div><!-- end div navigation -->
<!-- SEARCH -->
<div id="search" class="four">
<form id="searchbox_011552492105320257021:aklyesuuk5c" action="https://www.google.com/cse">
<input type="hidden" name="cx" value="011552492105320257021:aklyesuuk5c" />
<input name="q" type="text" size="20" placeholder="Search" />
<input type="hidden" name="cof" value="FORID:0" />
</form>
</div><!-- /search -->
<div id="twocolcenter" class="offset-by-one eleven columns clearfix">
<div class="content">
<h2>About this Site</h2>
<p>This site was created by a group of local residents of St Margarets, Middlesex. Our mission is simple — help foster a stronger community identity. There is no hidden agenda, no political affiliations and to date, all the work is volunteer.</p>
<h2>Who is Involved</h2>
<p>The site was created by <a href="mailto:peter@stmgrts.org.uk">Peter Mahnke</a>, with input from Ann Murray, Angela Mahnke and Simon Chapman.</p>
<h2>How can you help?</h2>
<p>Well, as you might have guessed, this site is no one's day job. So if anyone has leads, ideas, additional events or wants to help contribute in other ways, please <a href="mailto:volunteer@stmgrts.org.uk">email us</a>.</p>
<h2>How was this site built?</h2>
<p>It was built using mostly free, or very inexpensive tools:</p>
<ul>
<li>the core of the site is based on a popular bloging tool called <a href="http://www.movabletype.org">Movable Type</a>
<ul>
<li>we also are using MT-Textile and SmartyPants plugins if you really care to know</li>
</ul>
</li>
<li>forums are done with the customs software</li>
<li>static pages (like this one) are built using a custom made <span class="caps">CMS </span>(its ok if you don't know what that means)</li>
<li>the train timetables, events, polls, local information/directory, newsletter sign-up are based on a custom Perl script</li>
</ul>
<p>If you are interested, we are maintaining a <a href="/static/info/changes.html">change log</a>.</p>
<h2>The site doesn't look good in my Browser</h2>
<p>The site is built with and validated against established web standards. Your problem might be that your browser is older and doesn't render web standards well. We can recommend switching to <a href="http://www.mozilla.org/firefox/">Firefox</a> or “Google Chrome”: https://www.google.com/intl/en/chrome/browser/</p>
<h2>How is the content licensed?</h2>
<p>Currently we are using the <a href="http://creativecommons.org/licenses/by-nd/2.0/">Creative Commons Attribution-NoDerivs 2.0 License</a> which basically means, you can copy, distribute, display, and perform the work and make commercial use of the work; however, this is under the following conditions, you must give us proper attribution and you can not create derivatives. But read the license for more details or <a href="mailto:content@stmgrts.org.uk">contact us</a> if you have specific questions.</p>
<h2>Who is paying for the site?</h2>
<p>Currently the site is being supported by Peter Mahnke, but over time, I hope that donations and advertising help offset some of the costs. If you are interested in donating time or money or interested in advertising, please <a href="mailto:support@stmgrts.org.uk">contact us</a>.</p>
</div><!-- end div content -->
</div><!-- end div twocolcenter -->
<div id="right" class="four columns">
<div class="sidebar">
</div><!-- end div sidebar -->
</div><!-- end div right -->
<div style="clear: both;"> </div>
<!-- start include file /home/stmargarets/html/static/info/footer.incl --><br />
<!-- start include file /home/stmargarets/html/static/info/footer.incl --><br/><br />
<div id="footer" class="sixteen clearfix">
<div id="footer_nav" class="offset-by-one five columns">
<h2>Navigation</h2>
<ul>
<li><a href="/index.shtml">homepage</a></li>
<li><a href="/event">events</a></li>
<li><a href="/directory">local info</a></li>
<li><a href="/forum.cgi">forums</a></li>
<li><a href="/static/info/colophon.html">about</a></li>
<li><a href="/cgi-bin/newsletter.cgi">newsletter</a></li>
<li><a href="/poll">polls</a></li>
<li><a href="/static/info/contact.html">contact</a></li>
<li><a href="/static/info/colophon.html">about</a></li>
</ul>
</div><!-- end div footer_nav -->
<div id="footer_archives" class="five columns">
<h2><a href="/archives.html" title="Archives by Category">Archives</a></h2>
<ul>
<li><a href="/archives/news/index.html">news</a></li>
<li><a href="/archives/editorial/index.html">editorial</a></li>
<li><a href="/archives/around_town/index.html">around town</a></li>
</ul>
<h2>News Feeds</h2>
<ul>
<li><a href="/feed.xml">atom</a></li>
<li><a href="/index.rdf">rss1</a></li>
<li><a href="/index.xml">rss2</a></li>
</ul>
</div><!-- end div footer_archives -->
<div id="footer_search" class="five columns">
<h2>Search</h2>
<!-- Search Google -->
<form id="searchbox_011552492105320257021:aklyesuuk5c" action="https://www.google.com/cse">
<input type="hidden" name="cx" value="011552492105320257021:aklyesuuk5c"/>
<p><input name="q" type="text" size="20"/></p>
<p><input type="submit" name="sa" value="Search"/></p>
<input type="hidden" name="cof" value="FORID:0"/>
</form>
<!-- Search Google -->
<h2>Train Schedules</h2>
<ul>
<li> <a href="/cgi-bin/train_parser.cgi?station=SMG">St Margarets Station</a></li>
<li> <a href="/cgi-bin/train_parser.cgi?station=TWI">Twickenham Station</a></li>
<li> <a href="/cgi-bin/train_parser.cgi?station=RMD">Richmond Station</a></li>
</ul>
</div><!-- end div footer_search -->
<p class="copyright">Copyright © 2005-2014 St Margarets Community Website<br/>Some rights reserved <a href="http://creativecommons.org/licenses/by-nd/2.0/"><img alt="Creative Commons License" src="http://www.stmgrts.org.uk/images/cc_by_nd.png.pagespeed.ce.ZdDNI8EW7r.png" width="69" height="13" class="inline" style="padding: 0; margin: 0;" pagespeed_url_hash="3856159963"/></a></p>
</div><!-- end div footer -->
<p><!-- SCRIPTS --><br />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script><br />
<script>
33 33document).ready(function(){
33 33'.menu-icon').click(function(){
33 33'#navigation').toggle('slow');
});
33 33'.search-icon').click(function(){
33 33'#search').toggle('slow');
});
33 33"#search").hide();
33 33 window ).resize(function() {
var screen=33 33this)
if (screen.width() < 767) {
33 33"#navigation").hide();
} else {
33 33"#navigation").show();
}
});
});
</script></p>
<p><!-- Old stmgrts --><br />
<script src="/mt-site.js"></script></p>
<p><!-- end include file /home/stmargarets/html/static/info/footer.incl --><br />
<!-- end include file /home/stmargarets/html/static/info/footer.incl --></p>
</div><!-- end div container -->
</body>
</html>
| pmahnke/stmgrts | static/info/colophon.html | HTML | cc0-1.0 | 12,772 |
<!DOCTYPE html>
<html style="height:100%">
<head>
<meta charset="UTF-8">
<title>Smart Urban</title>
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=DGTkQhfL9hF1KQhZfOML4Xpcl5aaK1rj"></script>
<script src='echarts/echarts.js'></script>
<script src="echarts/extension/bmap.min.js"></script>
<style>
html{
background: black;
}
.anchorBL{
display: none
}
.ec-extension-bmap{
background-color: black !important;
}
.ec-extension-bmap img{
display: none;
}
</style>
</head>
<body id='body' style="margin:0; height:100%">
<div id="main" style="height: 100%; width: 100%; transform: scale3d(1,1,0.7)"></div>
<div id="agent-label" style="color:#fff; font-family:Helvetica; font-size:30px; font-weight:100; position:absolute; top:10%; left:10%;">SERVICE DISTRIBUTION</div>
<div id="agent-border" style="position:absolute; left:5%; top:5%; width:90%; height:90%; border:2px solid #999; border-radius:50px;"></div>
<div id="agent-legend" style="color:#fff; font-family:Helvetica; font-size:14px; font-weight:100; position:absolute; bottom:10%; left:10%;">
<div style="display:block; color:#fff; font-family:Helvetica; font-size:14px; font-weight:100; padding-bottom:6px;">
<div style="background:#7c19df; width:12px; height:12px; display:inline-block; border-radius: 10px;"></div>
<span id="service-1">Business (Car)</span>
<br />
<div style="background:#ef8541; width:12px; height:12px; display:inline-block; border-radius: 10px;"></div>
<span id="service-1">Touring (Bus), Commercial Shuttle, Company Shuttle, Business (Bus)</span>
<br /><br />
<div style="background:#e04402; width:12px; height:12px; display:inline-block; border-radius: 10px;"></div>
<span id="service-1">AD Car</span>
<br />
<div style="background:#01ba48; width:12px; height:12px; display:inline-block; border-radius: 10px;"></div>
<span id="service-1">Car Pooling, Ride Sharing</span>
<br /><br />
<div style="background:#e2d704; width:12px; height:12px; display:inline-block; border-radius: 10px;"></div>
<span id="service-1">Dynamic Public Transport (Bus)</span>
<br />
<div style="background:#0daaff; width:12px; height:12px; display:inline-block; border-radius: 10px;"></div>
<span id="service-1">Community-based Commute (Bus)</span>
<br />
<div style="background:#3003fa; width:12px; height:12px; display:inline-block; border-radius: 10px;"></div>
<span id="service-1">Community-based Commute (Car)</span>
</div>
</div>
</body>
<!-- <script src='maptastic.js'></script> -->
<script>
// Maptastic('main')
let busLines = require('./data/共享小车-郊区.json')
let dataGroupOne = require('./data/1.group.json');
let dataGroupTwo = require('./data/2.group.json');
// busLines = busLines.concat(require('./data/2.json'))
// You can also require other files to run in this process
require('./renderer_AB.js')
</script>
</html>
| charlottie77/urbanMobility | agentBase.html | HTML | cc0-1.0 | 3,253 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Global</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Global</h1>
<section>
<header>
<h2></h2>
</header>
<article>
<div class="container-overview">
<dl class="details">
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id="definedArgs"><span class="type-signature"></span>definedArgs<span class="signature">(…values<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
<div class="description">
_.definedArgs
A function that returns its defined arguments
</div>
<h5>Parameters:</h5>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Attributes</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>values</code></td>
<td class="type">
<span class="param-type">*</span>
</td>
<td class="attributes">
<optional><br>
<repeatable><br>
</td>
<td class="description last">The arguments to filter</td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="docs.js.html">docs.js</a>, <a href="docs.js.html#line8">line 8</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Global</h3><ul><li><a href="global.html#definedArgs">definedArgs</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.0</a> on Tue Jul 19 2016 00:17:03 GMT-0230 (NDT)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> | danjm/lodash-plus | out/global.html | HTML | cc0-1.0 | 3,018 |
<!--
Automatically generated HTML file from DocOnce source
(https://github.com/hplgit/doconce/)
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="DocOnce: https://github.com/hplgit/doconce/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Computational Physics Lectures: Linear Algebra methods">
<title>Computational Physics Lectures: Linear Algebra methods</title>
<!-- Bootstrap style: bootstrap -->
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
<!-- not necessary
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
-->
<style type="text/css">
/* Add scrollbar to dropdown menus in bootstrap navigation bar */
.dropdown-menu {
height: auto;
max-height: 400px;
overflow-x: hidden;
}
/* Adds an invisible element before each target to offset for the navigation
bar */
.anchor::before {
content:"";
display:block;
height:50px; /* fixed header height for style bootstrap */
margin:-50px 0 0; /* negative fixed header height */
}
</style>
</head>
<!-- tocinfo
{'highest level': 2,
'sections': [('Important Matrix and vector handling packages',
2,
None,
'___sec0'),
('Basic Matrix Features', 2, None, '___sec1'),
('Basic Matrix Features', 2, None, '___sec2'),
('Basic Matrix Features', 2, None, '___sec3'),
('Some famous Matrices', 2, None, '___sec4'),
('Basic Matrix Features', 2, None, '___sec5'),
('Important Mathematical Operations', 2, None, '___sec6'),
('Important Mathematical Operations', 2, None, '___sec7'),
('Important Mathematical Operations', 2, None, '___sec8'),
('Important Mathematical Operations', 2, None, '___sec9'),
('Matrix Handling in C/C++, Static and Dynamical allocation',
2,
None,
'___sec10'),
('Matrix Handling in C/C++', 2, None, '___sec11'),
('Matrix Handling in C/C++', 2, None, '___sec12'),
('Matrix Handling in Fortran 90/95', 2, None, '___sec13'),
('Dynamic memory allocation in C/C++', 2, None, '___sec14'),
('Matrix Handling in C/C++, Dynamic Allocation',
2,
None,
'___sec15'),
('Armadillo, recommended!!', 2, None, '___sec16'),
('Armadillo, simple examples', 2, None, '___sec17'),
('Armadillo, how to compile and install', 2, None, '___sec18'),
('Armadillo, simple examples', 2, None, '___sec19'),
('Armadillo, simple examples', 2, None, '___sec20'),
('Armadillo, simple examples', 2, None, '___sec21'),
('Armadillo, simple examples', 2, None, '___sec22'),
('Armadillo, simple examples', 2, None, '___sec23'),
('Armadillo, simple examples', 2, None, '___sec24'),
('Armadillo, simple examples', 2, None, '___sec25'),
('Gaussian Elimination', 2, None, '___sec26'),
('Gaussian Elimination', 2, None, '___sec27'),
('Gaussian Elimination', 2, None, '___sec28'),
('Gaussian Elimination', 2, None, '___sec29'),
('Gaussian Elimination', 2, None, '___sec30'),
('Gaussian Elimination', 2, None, '___sec31'),
('Gaussian Elimination', 2, None, '___sec32'),
('Gaussian Elimination and Tridiagonal matrices, project 1',
2,
None,
'___sec33'),
('Gaussian Elimination and Tridiagonal matrices, project 1',
2,
None,
'___sec34'),
('Gaussian Elimination and Tridiagonal matrices, project 1',
2,
None,
'___sec35'),
('Gaussian Elimination and Tridiagonal matrices, project 1',
2,
None,
'___sec36'),
('Gaussian Elimination and Tridiagonal matrices, project 1',
2,
None,
'___sec37'),
('Gaussian Elimination and Tridiagonal matrices, project 1',
2,
None,
'___sec38'),
('Backward substitution', 2, None, '___sec39'),
('Gaussian Elimination and Tridiagonal matrices, project 1',
2,
None,
'___sec40'),
('Project 1, hints', 2, None, '___sec41'),
('Project 1, hints', 2, None, '___sec42'),
('Simple expressions for project 1', 2, None, '___sec43'),
('"Program '
'example":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Projects/2016/Project1/Examples/TridiagonalSimple.cpp"',
2,
None,
'___sec44'),
('Linear Algebra Methods', 2, None, '___sec45'),
('LU Decomposition', 2, None, '___sec46'),
('LU Decomposition', 2, None, '___sec47'),
('LU Decomposition, why?', 2, None, '___sec48'),
('LU Decomposition, linear equations', 2, None, '___sec49'),
('LU Decomposition, linear equations', 2, None, '___sec50'),
('LU Decomposition, why?', 2, None, '___sec51'),
('LU Decomposition, linear equations', 2, None, '___sec52'),
('LU Decomposition, the inverse of a matrix',
2,
None,
'___sec53'),
('LU Decomposition, the inverse of a matrix',
2,
None,
'___sec54'),
('LU Decomposition, the inverse', 2, None, '___sec55'),
('"How to use the Library '
'functions":"https://github.com/CompPhysics/ComputationalPhysicsMSU/tree/master/doc/Programs/LecturePrograms/programs/cppLibrary"',
2,
None,
'___sec56'),
('"How to use the Library '
'functions":"https://github.com/CompPhysics/ComputationalPhysicsMSU/tree/master/doc/Programs/LecturePrograms/programs/cppLibrary"',
2,
None,
'___sec57'),
('"How to use the Library '
'functions":"https://github.com/CompPhysics/ComputationalPhysicsMSU/tree/master/doc/Programs/LecturePrograms/programs/cppLibrary"',
2,
None,
'___sec58'),
('"How to use the Library '
'functions":"https://github.com/CompPhysics/ComputationalPhysicsMSU/tree/master/doc/Programs/LecturePrograms/programs/FortranLibrary"',
2,
None,
'___sec59'),
('"How to use the Library '
'functions":"https://github.com/CompPhysics/ComputationalPhysicsMSU/tree/master/doc/Programs/LecturePrograms/programs/FortranLibrary"',
2,
None,
'___sec60'),
('"Using Armadillo to perform an LU '
'decomposition":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/CppQtCodesLectures/MatrixTest/main.cpp"',
2,
None,
'___sec61'),
('"Using standard functions to perform an LU '
'decomposition":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/LecturePrograms/programs/LinAlgebra/cpp/program2.cpp"',
2,
None,
'___sec62'),
('Iterative methods, Chapter 6', 2, None, '___sec63'),
("Iterative methods, Jacobi's method", 2, None, '___sec64'),
("Iterative methods, Jacobi's method", 2, None, '___sec65'),
("Iterative methods, Jacobi's method", 2, None, '___sec66'),
("Iterative methods, Gauss-Seidel's method", 2, None, '___sec67'),
("Iterative methods, Gauss-Seidel's method", 2, None, '___sec68'),
('Iterative methods, Successive over-relaxation',
2,
None,
'___sec69'),
('Iterative methods, Successive over-relaxation',
2,
None,
'___sec70'),
('Iterative methods, Successive over-relaxation',
2,
None,
'___sec71'),
('Cubic Splines, Chapter 6', 2, None, '___sec72'),
('Splines', 2, None, '___sec73'),
('Splines', 2, None, '___sec74'),
('Splines', 2, None, '___sec75'),
('Splines', 2, None, '___sec76'),
('Splines', 2, None, '___sec77'),
('Splines', 2, None, '___sec78'),
('Splines', 2, None, '___sec79'),
('Splines', 2, None, '___sec80'),
('Splines', 2, None, '___sec81')]}
end of tocinfo -->
<body>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
TeX: {
equationNumbers: { autoNumber: "none" },
extensions: ["AMSmath.js", "AMSsymbols.js", "autobold.js", "color.js"]
}
});
</script>
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<!-- Bootstrap navigation bar -->
<div class="navbar navbar-default navbar-fixed-top">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="linalg-bs.html">Computational Physics Lectures: Linear Algebra methods</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Contents <b class="caret"></b></a>
<ul class="dropdown-menu">
<!-- navigation toc: --> <li><a href="._linalg-bs001.html#___sec0" style="font-size: 80%;">Important Matrix and vector handling packages</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs002.html#___sec1" style="font-size: 80%;">Basic Matrix Features</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs003.html#___sec2" style="font-size: 80%;">Basic Matrix Features</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs004.html#___sec3" style="font-size: 80%;">Basic Matrix Features</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs005.html#___sec4" style="font-size: 80%;">Some famous Matrices</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs006.html#___sec5" style="font-size: 80%;">Basic Matrix Features</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs007.html#___sec6" style="font-size: 80%;">Important Mathematical Operations</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs008.html#___sec7" style="font-size: 80%;">Important Mathematical Operations</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs009.html#___sec8" style="font-size: 80%;">Important Mathematical Operations</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs010.html#___sec9" style="font-size: 80%;">Important Mathematical Operations</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs011.html#___sec10" style="font-size: 80%;">Matrix Handling in C/C++, Static and Dynamical allocation</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs012.html#___sec11" style="font-size: 80%;">Matrix Handling in C/C++</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs013.html#___sec12" style="font-size: 80%;">Matrix Handling in C/C++</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs014.html#___sec13" style="font-size: 80%;">Matrix Handling in Fortran 90/95</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs015.html#___sec14" style="font-size: 80%;">Dynamic memory allocation in C/C++</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs016.html#___sec15" style="font-size: 80%;">Matrix Handling in C/C++, Dynamic Allocation</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs017.html#___sec16" style="font-size: 80%;">Armadillo, recommended!!</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs018.html#___sec17" style="font-size: 80%;">Armadillo, simple examples</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs019.html#___sec18" style="font-size: 80%;">Armadillo, how to compile and install</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs020.html#___sec19" style="font-size: 80%;">Armadillo, simple examples</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs021.html#___sec20" style="font-size: 80%;">Armadillo, simple examples</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs022.html#___sec21" style="font-size: 80%;">Armadillo, simple examples</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs023.html#___sec22" style="font-size: 80%;">Armadillo, simple examples</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs024.html#___sec23" style="font-size: 80%;">Armadillo, simple examples</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs025.html#___sec24" style="font-size: 80%;">Armadillo, simple examples</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs026.html#___sec25" style="font-size: 80%;">Armadillo, simple examples</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs027.html#___sec26" style="font-size: 80%;">Gaussian Elimination</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs028.html#___sec27" style="font-size: 80%;">Gaussian Elimination</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs029.html#___sec28" style="font-size: 80%;">Gaussian Elimination</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs030.html#___sec29" style="font-size: 80%;">Gaussian Elimination</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs031.html#___sec30" style="font-size: 80%;">Gaussian Elimination</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs032.html#___sec31" style="font-size: 80%;">Gaussian Elimination</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs033.html#___sec32" style="font-size: 80%;">Gaussian Elimination</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs034.html#___sec33" style="font-size: 80%;">Gaussian Elimination and Tridiagonal matrices, project 1</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs035.html#___sec34" style="font-size: 80%;">Gaussian Elimination and Tridiagonal matrices, project 1</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs036.html#___sec35" style="font-size: 80%;">Gaussian Elimination and Tridiagonal matrices, project 1</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs037.html#___sec36" style="font-size: 80%;">Gaussian Elimination and Tridiagonal matrices, project 1</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs038.html#___sec37" style="font-size: 80%;">Gaussian Elimination and Tridiagonal matrices, project 1</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs039.html#___sec38" style="font-size: 80%;">Gaussian Elimination and Tridiagonal matrices, project 1</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs040.html#___sec39" style="font-size: 80%;">Backward substitution</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs041.html#___sec40" style="font-size: 80%;">Gaussian Elimination and Tridiagonal matrices, project 1</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs042.html#___sec41" style="font-size: 80%;">Project 1, hints</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs043.html#___sec42" style="font-size: 80%;">Project 1, hints</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs044.html#___sec43" style="font-size: 80%;">Simple expressions for project 1</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs045.html#___sec44" style="font-size: 80%;">"Program example":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Projects/2016/Project1/Examples/TridiagonalSimple.cpp"</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs046.html#___sec45" style="font-size: 80%;">Linear Algebra Methods</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs047.html#___sec46" style="font-size: 80%;">LU Decomposition</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs048.html#___sec47" style="font-size: 80%;">LU Decomposition</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs049.html#___sec48" style="font-size: 80%;">LU Decomposition, why?</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs050.html#___sec49" style="font-size: 80%;">LU Decomposition, linear equations</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs051.html#___sec50" style="font-size: 80%;">LU Decomposition, linear equations</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs052.html#___sec51" style="font-size: 80%;">LU Decomposition, why?</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs053.html#___sec52" style="font-size: 80%;">LU Decomposition, linear equations</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs054.html#___sec53" style="font-size: 80%;">LU Decomposition, the inverse of a matrix</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs055.html#___sec54" style="font-size: 80%;">LU Decomposition, the inverse of a matrix</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs056.html#___sec55" style="font-size: 80%;">LU Decomposition, the inverse</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs057.html#___sec56" style="font-size: 80%;">"How to use the Library functions":"https://github.com/CompPhysics/ComputationalPhysicsMSU/tree/master/doc/Programs/LecturePrograms/programs/cppLibrary"</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs058.html#___sec57" style="font-size: 80%;">"How to use the Library functions":"https://github.com/CompPhysics/ComputationalPhysicsMSU/tree/master/doc/Programs/LecturePrograms/programs/cppLibrary"</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs059.html#___sec58" style="font-size: 80%;">"How to use the Library functions":"https://github.com/CompPhysics/ComputationalPhysicsMSU/tree/master/doc/Programs/LecturePrograms/programs/cppLibrary"</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs060.html#___sec59" style="font-size: 80%;">"How to use the Library functions":"https://github.com/CompPhysics/ComputationalPhysicsMSU/tree/master/doc/Programs/LecturePrograms/programs/FortranLibrary"</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs061.html#___sec60" style="font-size: 80%;">"How to use the Library functions":"https://github.com/CompPhysics/ComputationalPhysicsMSU/tree/master/doc/Programs/LecturePrograms/programs/FortranLibrary"</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs062.html#___sec61" style="font-size: 80%;">"Using Armadillo to perform an LU decomposition":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/CppQtCodesLectures/MatrixTest/main.cpp"</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs063.html#___sec62" style="font-size: 80%;">"Using standard functions to perform an LU decomposition":"https://github.com/CompPhysics/ComputationalPhysicsMSU/blob/master/doc/Programs/LecturePrograms/programs/LinAlgebra/cpp/program2.cpp"</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs064.html#___sec63" style="font-size: 80%;">Iterative methods, Chapter 6</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs065.html#___sec64" style="font-size: 80%;">Iterative methods, Jacobi's method</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs066.html#___sec65" style="font-size: 80%;">Iterative methods, Jacobi's method</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs067.html#___sec66" style="font-size: 80%;">Iterative methods, Jacobi's method</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs068.html#___sec67" style="font-size: 80%;">Iterative methods, Gauss-Seidel's method</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs069.html#___sec68" style="font-size: 80%;">Iterative methods, Gauss-Seidel's method</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs070.html#___sec69" style="font-size: 80%;">Iterative methods, Successive over-relaxation</a></li>
<!-- navigation toc: --> <li><a href="#___sec70" style="font-size: 80%;">Iterative methods, Successive over-relaxation</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs072.html#___sec71" style="font-size: 80%;">Iterative methods, Successive over-relaxation</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs073.html#___sec72" style="font-size: 80%;">Cubic Splines, Chapter 6</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs074.html#___sec73" style="font-size: 80%;">Splines</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs075.html#___sec74" style="font-size: 80%;">Splines</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs076.html#___sec75" style="font-size: 80%;">Splines</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs077.html#___sec76" style="font-size: 80%;">Splines</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs078.html#___sec77" style="font-size: 80%;">Splines</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs079.html#___sec78" style="font-size: 80%;">Splines</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs080.html#___sec79" style="font-size: 80%;">Splines</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs081.html#___sec80" style="font-size: 80%;">Splines</a></li>
<!-- navigation toc: --> <li><a href="._linalg-bs082.html#___sec81" style="font-size: 80%;">Splines</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div> <!-- end of navigation bar -->
<div class="container">
<p> </p><p> </p><p> </p> <!-- add vertical space -->
<a name="part0071"></a>
<!-- !split -->
<h2 id="___sec70" class="anchor">Iterative methods, Successive over-relaxation </h2>
<div class="panel panel-default">
<div class="panel-body">
<p> <!-- subsequent paragraphs come in larger fonts, so start with a paragraph -->
Then A can be decomposed into a diagonal component D, and strictly lower and upper triangular components L and U:
$$
\mathbf{A} =\mathbf{D} + \mathbf{L} + \mathbf{U},
$$
where
$$
D = \begin{bmatrix} a_{11} & 0 & \cdots & 0 \\ 0 & a_{22} & \cdots & 0 \\ \vdots & \vdots & \ddots & \vdots \\0 & 0 & \cdots & a_{nn} \end{bmatrix}, \quad L = \begin{bmatrix} 0 & 0 & \cdots & 0 \\ a_{21} & 0 & \cdots & 0 \\ \vdots & \vdots & \ddots & \vdots \\a_{n1} & a_{n2} & \cdots & 0 \end{bmatrix}, \quad U = \begin{bmatrix} 0 & a_{12} & \cdots & a_{1n} \\ 0 & 0 & \cdots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\0 & 0 & \cdots & 0 \end{bmatrix}.
$$
The system of linear equations may be rewritten as:
$$
(D+\omega L) \mathbf{x} = \omega \mathbf{b} - [\omega U + (\omega-1) D ] \mathbf{x}
$$
for a constant \( \omega > 1 \).
</div>
</div>
<p>
<p>
<!-- navigation buttons at the bottom of the page -->
<ul class="pagination">
<li><a href="._linalg-bs070.html">«</a></li>
<li><a href="._linalg-bs000.html">1</a></li>
<li><a href="">...</a></li>
<li><a href="._linalg-bs063.html">64</a></li>
<li><a href="._linalg-bs064.html">65</a></li>
<li><a href="._linalg-bs065.html">66</a></li>
<li><a href="._linalg-bs066.html">67</a></li>
<li><a href="._linalg-bs067.html">68</a></li>
<li><a href="._linalg-bs068.html">69</a></li>
<li><a href="._linalg-bs069.html">70</a></li>
<li><a href="._linalg-bs070.html">71</a></li>
<li class="active"><a href="._linalg-bs071.html">72</a></li>
<li><a href="._linalg-bs072.html">73</a></li>
<li><a href="._linalg-bs073.html">74</a></li>
<li><a href="._linalg-bs074.html">75</a></li>
<li><a href="._linalg-bs075.html">76</a></li>
<li><a href="._linalg-bs076.html">77</a></li>
<li><a href="._linalg-bs077.html">78</a></li>
<li><a href="._linalg-bs078.html">79</a></li>
<li><a href="._linalg-bs079.html">80</a></li>
<li><a href="._linalg-bs080.html">81</a></li>
<li><a href="">...</a></li>
<li><a href="._linalg-bs082.html">83</a></li>
<li><a href="._linalg-bs072.html">»</a></li>
</ul>
<!-- ------------------- end of main content --------------- -->
</div> <!-- end container -->
<!-- include javascript, jQuery *first* -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<!-- Bootstrap footer
<footer>
<a href="http://..."><img width="250" align=right src="http://..."></a>
</footer>
-->
<center style="font-size:80%">
<!-- copyright only on the titlepage -->
</center>
</body>
</html>
| CompPhysics/ComputationalPhysics | doc/pub/linalg/html/._linalg-bs071.html | HTML | cc0-1.0 | 25,557 |
<!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-internal) on Sat Jul 25 18:14:30 BST 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.apache.jena.sparql.modify.request.UpdateAdd (Apache Jena ARQ)</title>
<meta name="date" content="2015-07-25">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.jena.sparql.modify.request.UpdateAdd (Apache Jena ARQ)";
}
}
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/apache/jena/sparql/modify/request/UpdateAdd.html" title="class in org.apache.jena.sparql.modify.request">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/apache/jena/sparql/modify/request/class-use/UpdateAdd.html" target="_top">Frames</a></li>
<li><a href="UpdateAdd.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.jena.sparql.modify.request.UpdateAdd" class="title">Uses of Class<br>org.apache.jena.sparql.modify.request.UpdateAdd</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/apache/jena/sparql/modify/request/UpdateAdd.html" title="class in org.apache.jena.sparql.modify.request">UpdateAdd</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.jena.sparql.modify">org.apache.jena.sparql.modify</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.apache.jena.sparql.modify.request">org.apache.jena.sparql.modify.request</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.jena.sparql.modify">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/apache/jena/sparql/modify/request/UpdateAdd.html" title="class in org.apache.jena.sparql.modify.request">UpdateAdd</a> in <a href="../../../../../../../org/apache/jena/sparql/modify/package-summary.html">org.apache.jena.sparql.modify</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/apache/jena/sparql/modify/package-summary.html">org.apache.jena.sparql.modify</a> with parameters of type <a href="../../../../../../../org/apache/jena/sparql/modify/request/UpdateAdd.html" title="class in org.apache.jena.sparql.modify.request">UpdateAdd</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">UpdateEngineWorker.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/sparql/modify/UpdateEngineWorker.html#visit-org.apache.jena.sparql.modify.request.UpdateAdd-">visit</a></span>(<a href="../../../../../../../org/apache/jena/sparql/modify/request/UpdateAdd.html" title="class in org.apache.jena.sparql.modify.request">UpdateAdd</a> update)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.apache.jena.sparql.modify.request">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/apache/jena/sparql/modify/request/UpdateAdd.html" title="class in org.apache.jena.sparql.modify.request">UpdateAdd</a> in <a href="../../../../../../../org/apache/jena/sparql/modify/request/package-summary.html">org.apache.jena.sparql.modify.request</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/apache/jena/sparql/modify/request/package-summary.html">org.apache.jena.sparql.modify.request</a> with parameters of type <a href="../../../../../../../org/apache/jena/sparql/modify/request/UpdateAdd.html" title="class in org.apache.jena.sparql.modify.request">UpdateAdd</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">UpdateVisitor.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/sparql/modify/request/UpdateVisitor.html#visit-org.apache.jena.sparql.modify.request.UpdateAdd-">visit</a></span>(<a href="../../../../../../../org/apache/jena/sparql/modify/request/UpdateAdd.html" title="class in org.apache.jena.sparql.modify.request">UpdateAdd</a> update)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">UpdateWriterVisitor.</span><code><span class="memberNameLink"><a href="../../../../../../../org/apache/jena/sparql/modify/request/UpdateWriterVisitor.html#visit-org.apache.jena.sparql.modify.request.UpdateAdd-">visit</a></span>(<a href="../../../../../../../org/apache/jena/sparql/modify/request/UpdateAdd.html" title="class in org.apache.jena.sparql.modify.request">UpdateAdd</a> update)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/apache/jena/sparql/modify/request/UpdateAdd.html" title="class in org.apache.jena.sparql.modify.request">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/apache/jena/sparql/modify/request/class-use/UpdateAdd.html" target="_top">Frames</a></li>
<li><a href="UpdateAdd.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>Licenced under the Apache License, Version 2.0</small></p>
</body>
</html>
| slennie12/SOR-Onderzoek | apache-jena-3.0.0/javadoc-arq/org/apache/jena/sparql/modify/request/class-use/UpdateAdd.html | HTML | cc0-1.0 | 9,328 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Phillip Creglow's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name">Phillip Creglow</li>
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Experience</a></li>
</ul>
</div>
<header>
<img src="images/wahoopcc.png" alt="Avatar of Phillip Creglow" class="profile-image">
<h1 class="tag name">Phillip Creglow</h1>
<p class="tag location">Junior Web Developer - Orlando, FL</p>
</header>
<main class="flex">
<div class="card">
<h2>Background</h2>
<p>I’m a Junior Web Developer for TargetSmart Communications and a graduate of the Iron Yard - Orlando's Front End Engineering program. I continue to expand my skill set via online learning through resources like Treehouse, Code School, Udacity, etc.</p>
<p>Prior to becomming a junior web developer, I spent 10 years in government and political affairs working on behalf of professional trade associations.</p>
</div>
<div class="card">
<h2>Goals</h2>
<p>I want to master the process of building web sites and increase my knowledge, skills and abilities in:</p>
<ul class="skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>WordPress</li>
<li>Python</li>
</ul>
<p>I’d like to continue working on web projects that help clients create an impressive online presence.</p>
</div>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/wahoopcc" class="social twitter">Twitter</a></li>
<li><a href="https://www.linkedin.com/in/phillipcreglow" class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/pcreglow" class="social github">Github</a></li>
</ul>
<p class="copyright">© Copyright 2016, Phillip Creglow</p>
</footer>
</body>
</html>
| pcreglow/Treehouse-Profile | index.html | HTML | cc0-1.0 | 2,255 |
<!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_80) on Wed Jul 01 13:06:59 CEST 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>nl.rijksoverheid.platform.test.functional.assets (Platform Project Core Plugin Functional Tests 2015.6-build-721-SNAPSHOT Test API)</title>
<meta name="date" content="2015-07-01">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<h1 class="bar"><a href="../../../../../../nl/rijksoverheid/platform/test/functional/assets/package-summary.html" target="classFrame">nl.rijksoverheid.platform.test.functional.assets</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="AssertOperations.html" title="class in nl.rijksoverheid.platform.test.functional.assets" target="classFrame">AssertOperations</a></li>
<li><a href="IconenTest.html" title="class in nl.rijksoverheid.platform.test.functional.assets" target="classFrame">IconenTest</a></li>
<li><a href="NewAssetCreationCheck.html" title="class in nl.rijksoverheid.platform.test.functional.assets" target="classFrame">NewAssetCreationCheck</a></li>
</ul>
</div>
</body>
</html>
| OscarFarg/rijksoverheid | docs/testapi-javadoc/nl/rijksoverheid/platform/test/functional/assets/package-frame.html | HTML | cc0-1.0 | 1,336 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>SocialCircle: Riferimenti per il namespace socialcircle.models</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 style="padding-left: 0.5em;">
<div id="projectname">SocialCircle
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generato da Doxygen 1.8.1.2 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Cerca');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Pagina Principale</span></a></li>
<li><a href="pages.html"><span>Pagine collegate</span></a></li>
<li class="current"><a href="namespaces.html"><span>Namespace</span></a></li>
<li><a href="annotated.html"><span>Classi</span></a></li>
<li><a href="files.html"><span>File</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="Cerca" 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="namespaces.html"><span>Lista dei namespace</span></a></li>
<li><a href="namespacemembers.html"><span>Membri dei namespace</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"> </span>Tutto</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classi</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Namespace</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>File</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Funzioni</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Variabili</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark"> </span>Pagine</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="namespacesocialcircle.html">socialcircle</a></li><li class="navelem"><a class="el" href="namespacesocialcircle_1_1models.html">models</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#nested-classes">Composti</a> </div>
<div class="headertitle">
<div class="title">Riferimenti per il namespace socialcircle.models</div> </div>
</div><!--header-->
<div class="contents">
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2><a name="nested-classes"></a>
Composti</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classsocialcircle_1_1models_1_1SCUser.html">SCUser</a></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classsocialcircle_1_1models_1_1Post.html">Post</a></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classsocialcircle_1_1models_1_1Like.html">Like</a></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classsocialcircle_1_1models_1_1ChatRoom.html">ChatRoom</a></td></tr>
</table>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generato Sab 13 Giu 2015 11:03:21 per SocialCircle da  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.1.2
</small></address>
</body>
</html>
| samzek/social_circle | SN/doc/html/namespacesocialcircle_1_1models.html | HTML | apache-2.0 | 6,054 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="es">
<head>
<!-- Generated by javadoc (version 1.7.0_51) on Tue Mar 25 00:41:29 CET 2014 -->
<title>BrowserRep</title>
<meta name="date" content="2014-03-25">
<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="BrowserRep";
}
//-->
</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="../pagelyzer/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li><a href="../index-all.html">Index</a></li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../pagelyzer/Capture.html" title="class in pagelyzer"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?pagelyzer/BrowserRep.html" target="_top">Frames</a></li>
<li><a href="BrowserRep.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">pagelyzer</div>
<h2 title="Class BrowserRep" class="title">Class BrowserRep</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>pagelyzer.BrowserRep</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">BrowserRep</span>
extends java.lang.Object</pre>
<div class="block">Class encapsulating the browser representation for the job</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"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../pagelyzer/BrowserRep.html#BrowserRep()">BrowserRep</a></strong>()</code>
<div class="block">Constructor</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><strong><a href="../pagelyzer/BrowserRep.html#BrowserRep(WebDriver, DesiredCapabilities, java.lang.String)">BrowserRep</a></strong>(WebDriver driver,
DesiredCapabilities capabilities,
java.lang.String desc)</code>
<div class="block">Constructor</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../pagelyzer/BrowserRep.html#close()">close</a></strong>()</code>
<div class="block">Close the current selenium instance</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../pagelyzer/BrowserRep.html#setLocalDriver()">setLocalDriver</a></strong>()</code>
<div class="block">Set the selenium driver as local (webdriver instance)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../pagelyzer/BrowserRep.html#setRemoteDriver(java.lang.String)">setRemoteDriver</a></strong>(java.lang.String url)</code>
<div class="block">Set the selenium driver as remote (selenium grid or hub)</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class 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="BrowserRep()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BrowserRep</h4>
<pre>public BrowserRep()</pre>
<div class="block">Constructor</div>
</li>
</ul>
<a name="BrowserRep(WebDriver, DesiredCapabilities, java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>BrowserRep</h4>
<pre>public BrowserRep(WebDriver driver,
DesiredCapabilities capabilities,
java.lang.String desc)</pre>
<div class="block">Constructor</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>driver</code> - the selenium webdriver</dd><dd><code>capabilities</code> - the capabilities of the browser</dd><dd><code>desc</code> - the description of the browser</dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="setLocalDriver()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setLocalDriver</h4>
<pre>public void setLocalDriver()</pre>
<div class="block">Set the selenium driver as local (webdriver instance)</div>
</li>
</ul>
<a name="setRemoteDriver(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRemoteDriver</h4>
<pre>public void setRemoteDriver(java.lang.String url)
throws java.net.MalformedURLException</pre>
<div class="block">Set the selenium driver as remote (selenium grid or hub)</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>url</code> - the web page to process</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.net.MalformedURLException</code></dd></dl>
</li>
</ul>
<a name="close()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>close</h4>
<pre>public void close()</pre>
<div class="block">Close the current selenium instance</div>
</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="../pagelyzer/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li><a href="../index-all.html">Index</a></li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../pagelyzer/Capture.html" title="class in pagelyzer"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?pagelyzer/BrowserRep.html" target="_top">Frames</a></li>
<li><a href="BrowserRep.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| openpreserve/pagelyzer | Pagelyzer/javadoc/pagelyzer/BrowserRep.html | HTML | apache-2.0 | 9,999 |
<!DOCTYPE html>
<html manifest="manifest1.appcache">
<head>
<meta charset="UTF-8">
<title>cachePopulatedCallback</title>
<link rel="stylesheet" href="common.css">
<link rel="icon" href="favicon.png">
</head>
<body>
<p>This is the cachePopulatedCallback test.</p>
<script type="module">
import {init} from '../../packages/appcache-polyfill-window/build/index.modern.js';
window.setupComplete = (async () => {
const callbacks = [];
await init({
cachePopulatedCallback: (...args) => {
callbacks.push(args);
},
});
await navigator.serviceWorker.register('sw.js');
return callbacks;
})();
</script>
</body>
</html>
| GoogleChromeLabs/sw-appcache-behavior | tests/static/cachePopulatedCallback.html | HTML | apache-2.0 | 740 |
<html>
<body>
<p>Reports non-idiomatic <code>is</code> type checks for an object.</p>
<p>It's recommended to replace such checks with reference comparison.</p>
<p><b>Example:</b></p>
<pre><code>
object Foo
fun foo(arg: Any) = when {
arg <b>is</b> Foo -> ...
arg <b>!is</b> Foo -> ...
}
</code></pre>
<p>After the quick-fix is applied:</p>
<pre><code>
object Foo
fun foo(arg: Any) = when {
arg <b>===</b> Foo -> ...
arg <b>!==</b> Foo -> ...
}
</code></pre>
</body>
</html> | mdaniel/intellij-community | plugins/kotlin/idea/resources-en/inspectionDescriptions/RedundantObjectTypeCheck.html | HTML | apache-2.0 | 490 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>D3: Constraining panning and zooming with extents</title>
<script type="text/javascript" src="../d3.js"></script>
<style type="text/css">
.pan rect,
.zoom rect {
fill: black;
opacity: 0.2;
}
.zoom rect {
rx: 5; /* Rounded corners */
ry: 5;
}
.pan text,
.zoom text {
fill: black;
font-size: 18px;
text-anchor: middle;
}
.pan:hover rect,
.pan:hover text,
.zoom:hover rect,
.zoom:hover text {
fill: blue;
}
</style>
</head>
<body>
<script type="text/javascript">
//Width and height
var w = 500;
var h = 300;
//Define map projection
var projection = d3.geoAlbersUsa()
.translate([0, 0]);
//Define path generator
var path = d3.geoPath()
.projection(projection);
//Define quantize scale to sort data values into buckets of color
var color = d3.scaleQuantize()
.range(["rgb(237,248,233)","rgb(186,228,179)","rgb(116,196,118)","rgb(49,163,84)","rgb(0,109,44)"]);
//Colors taken from colorbrewer.js, included in the D3 download
//Number formatting for population values
var formatAsThousands = d3.format(","); //e.g. converts 123456 to "123,456"
//Create SVG element
var svg = d3.select("body")
.append("svg")
.attr("width", w)
.attr("height", h);
//Define what to do when panning or zooming
var zooming = function(d) {
//Log out d3.event.transform, so you can see all the goodies inside
//console.log(d3.event.transform);
//New offset array
var offset = [d3.event.transform.x, d3.event.transform.y];
//Calculate new scale
var newScale = d3.event.transform.k * 2000;
//Update projection with new offset and scale
projection.translate(offset)
.scale(newScale);
//Update all paths and circles
svg.selectAll("path")
.attr("d", path);
svg.selectAll("circle")
.attr("cx", function(d) {
return projection([d.lon, d.lat])[0];
})
.attr("cy", function(d) {
return projection([d.lon, d.lat])[1];
});
}
//Then define the zoom behavior
var zoom = d3.zoom()
.scaleExtent([ 0.2, 2.0 ])
.translateExtent([[ -1200, -700 ], [ 1200, 700 ]])
.on("zoom", zooming);
//The center of the country, roughly
var center = projection([-97.0, 39.0]);
//Create a container in which all zoom-able elements will live
var map = svg.append("g")
.attr("id", "map")
.call(zoom) //Bind the zoom behavior
.call(zoom.transform, d3.zoomIdentity //Then apply the initial transform
.translate(w/2, h/2)
.scale(0.25)
.translate(-center[0], -center[1]));
//Create a new, invisible background rect to catch zoom events
map.append("rect")
.attr("x", 0)
.attr("y", 0)
.attr("width", w)
.attr("height", h)
.attr("opacity", 0);
//Load in agriculture data
d3.csv("us-ag-productivity.csv", function(data) {
//Set input domain for color scale
color.domain([
d3.min(data, function(d) { return d.value; }),
d3.max(data, function(d) { return d.value; })
]);
//Load in GeoJSON data
d3.json("us-states.json", function(json) {
//Merge the ag. data and GeoJSON
//Loop through once for each ag. data value
for (var i = 0; i < data.length; i++) {
var dataState = data[i].state; //Grab state name
var dataValue = parseFloat(data[i].value); //Grab data value, and convert from string to float
//Find the corresponding state inside the GeoJSON
for (var j = 0; j < json.features.length; j++) {
var jsonState = json.features[j].properties.name;
if (dataState == jsonState) {
//Copy the data value into the JSON
json.features[j].properties.value = dataValue;
//Stop looking through the JSON
break;
}
}
}
//Bind data and create one path per GeoJSON feature
map.selectAll("path")
.data(json.features)
.enter()
.append("path")
.attr("d", path)
.style("fill", function(d) {
//Get data value
var value = d.properties.value;
if (value) {
//If value exists…
return color(value);
} else {
//If value is undefined…
return "#ccc";
}
});
//Load in cities data
d3.csv("us-cities.csv", function(data) {
map.selectAll("circle")
.data(data)
.enter()
.append("circle")
.attr("cx", function(d) {
return projection([d.lon, d.lat])[0];
})
.attr("cy", function(d) {
return projection([d.lon, d.lat])[1];
})
.attr("r", function(d) {
return Math.sqrt(parseInt(d.population) * 0.00004);
})
.style("fill", "yellow")
.style("stroke", "gray")
.style("stroke-width", 0.25)
.style("opacity", 0.75)
.append("title") //Simple tooltip
.text(function(d) {
return d.place + ": Pop. " + formatAsThousands(d.population);
});
createPanButtons();
createZoomButtons();
});
});
});
//Create panning buttons
var createPanButtons = function() {
//Create the clickable groups
//North
var north = svg.append("g")
.attr("class", "pan") //All share the 'pan' class
.attr("id", "north"); //The ID will tell us which direction to head
north.append("rect")
.attr("x", 0)
.attr("y", 0)
.attr("width", w)
.attr("height", 30);
north.append("text")
.attr("x", w/2)
.attr("y", 20)
.html("↑")
//South
var south = svg.append("g")
.attr("class", "pan")
.attr("id", "south");
south.append("rect")
.attr("x", 0)
.attr("y", h - 30)
.attr("width", w)
.attr("height", 30);
south.append("text")
.attr("x", w/2)
.attr("y", h - 10)
.html("↓")
//West
var west = svg.append("g")
.attr("class", "pan")
.attr("id", "west");
west.append("rect")
.attr("x", 0)
.attr("y", 30)
.attr("width", 30)
.attr("height", h - 60);
west.append("text")
.attr("x", 15)
.attr("y", h/2)
.html("←")
//East
var east = svg.append("g")
.attr("class", "pan")
.attr("id", "east");
east.append("rect")
.attr("x", w - 30)
.attr("y", 30)
.attr("width", 30)
.attr("height", h - 60);
east.append("text")
.attr("x", w - 15)
.attr("y", h/2)
.html("→")
//Panning interaction
d3.selectAll(".pan")
.on("click", function() {
//Set how much to move on each click
var moveAmount = 50;
//Set x/y to zero for now
var x = 0;
var y = 0;
//Which way are we headed?
var direction = d3.select(this).attr("id");
//Modify the offset, depending on the direction
switch (direction) {
case "north":
y += moveAmount; //Increase y offset
break;
case "south":
y -= moveAmount; //Decrease y offset
break;
case "west":
x += moveAmount; //Increase x offset
break;
case "east":
x -= moveAmount; //Decrease x offset
break;
default:
break;
}
//This triggers a zoom event, translating by x, y
map.transition()
.call(zoom.translateBy, x, y);
});
};
//Create zoom buttons
var createZoomButtons = function() {
//Create the clickable groups
//Zoom in button
var zoomIn = svg.append("g")
.attr("class", "zoom") //All share the 'zoom' class
.attr("id", "in") //The ID will tell us which direction to head
.attr("transform", "translate(" + (w - 110) + "," + (h - 70) + ")");
zoomIn.append("rect")
.attr("x", 0)
.attr("y", 0)
.attr("width", 30)
.attr("height", 30);
zoomIn.append("text")
.attr("x", 15)
.attr("y", 20)
.text("+");
//Zoom out button
var zoomOut = svg.append("g")
.attr("class", "zoom")
.attr("id", "out")
.attr("transform", "translate(" + (w - 70) + "," + (h - 70) + ")");
zoomOut.append("rect")
.attr("x", 0)
.attr("y", 0)
.attr("width", 30)
.attr("height", 30);
zoomOut.append("text")
.attr("x", 15)
.attr("y", 20)
.html("–");
//Zooming interaction
d3.selectAll(".zoom")
.on("click", function() {
//Set how much to scale on each click
var scaleFactor;
//Which way are we headed?
var direction = d3.select(this).attr("id");
//Modify the k scale value, depending on the direction
switch (direction) {
case "in":
scaleFactor = 1.5;
break;
case "out":
scaleFactor = 0.75;
break;
default:
break;
}
//This triggers a zoom event, scaling by 'scaleFactor'
map.transition()
.call(zoom.scaleBy, scaleFactor);
});
};
</script>
</body>
</html> | marianozafra/Prueba | materialLibro/d3-book-2.0.3/chapter_14/15_extents.html | HTML | apache-2.0 | 9,291 |
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Using list functions to migrate from personal geodatabases to file geodatabases</title>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
}
th {
font-weight: bold;
}
</style>
</head>
<body>
## Using list functions to migrate from personal geodatabases to file geodatabases
A common conversion task is the large-scale transfer of data from one format to another. This sample takes advantage of ListWorkspaces, ListFeatureClasses, ListTables, and ListDatasets to identify the personal geodatabases in a folder and converts the feature datasets, feature classes, and tables of each to file geodatabases.
```
Language: C#, VB
Subject: Geoprocessing
Organization: Esri, http://www.esri.com
Date: 10/17/2019
ArcObjects SDK: 10.8
Visual Studio: 2017, 2019
.NET Target Framework: 4.5
```
### Resources
* [ArcObjects .NET API Reference online](http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm)
* [Sample Data Download](../../releases)
* [What's new](http://desktop.arcgis.com/en/arcobjects/latest/net/webframe.htm#91cabc68-2271-400a-8ff9-c7fb25108546.htm)
* [Download the ArcObjects SDK for .Net from MyEsri.com](https://my.esri.com/)
### Usage
1. Change the workspace paths to a local workspace containing personal geodatabases.
1. Compile and run the project.
#### See Also
[How to list data](http://desktop.arcgis.com/search/?q=How%20to%20list%20data&p=0&language=en&product=arcobjects-sdk-dotnet&version=&n=15&collection=help)
---------------------------------
#### Licensing
<table><tr><th> Development licensing </th><th> Deployment licensing </th></tr>
<tr><td> ArcGIS Desktop Basic </td><td> ArcGIS Desktop Basic </td></tr>
<tr><td> ArcGIS Desktop Standard </td><td> ArcGIS Desktop Standard </td></tr>
<tr><td> ArcGIS Desktop Advanced </td><td> ArcGIS Desktop Advanced </td></tr>
<tr><td> Engine Developer Kit </td><td> Engine </td></tr>
</table>
</body>
</html> | Esri/arcobjects-sdk-community-samples | Net/Geoprocessing/GPGeodatabaseConversion/Readme.html | HTML | apache-2.0 | 2,259 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="google-site-verification" content="xBT4GhYoi5qRD5tr338pgPM5OWHHIDR6mNg1a3euekI" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="techbolg record mylife">
<meta name="keyword" content="">
<link rel="shortcut icon" href="/img/favicon.ico">
<title>Supremeliu Blog</title>
<link rel="canonical" href="http://localhost:4000/">
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="/css/hux-blog.min.css">
<!-- Pygments Github CSS -->
<link rel="stylesheet" href="/css/syntax.css">
<!-- Custom Fonts -->
<!-- <link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"> -->
<!-- Hux change font-awesome CDN to qiniu -->
<link href="http://cdn.staticfile.org/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Hux Delete, sad but pending in China
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<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'>
-->
<!-- 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]-->
<!-- ga & ba script hoook -->
<script></script>
</head>
<!-- hack iOS CSS :active style -->
<body ontouchstart="">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle">
<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="/">Supremeliu Blog</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- Known Issue, found by Hux:
<nav>'s height woule be hold on by its content.
so, when navbar scale out, the <nav> will cover tags.
also mask any touch event of tags, unfortunately.
-->
<div id="huxblog_navbar">
<div class="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/about/">About</a>
</li>
<li>
<a href="/tags/">Tags</a>
</li>
</ul>
</div>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<script>
// Drop Bootstarp low-performance Navbar
// Use customize navbar with high-quality material design animation
// in high-perf jank-free CSS3 implementation
var $body = document.body;
var $toggle = document.querySelector('.navbar-toggle');
var $navbar = document.querySelector('#huxblog_navbar');
var $collapse = document.querySelector('.navbar-collapse');
$toggle.addEventListener('click', handleMagic)
function handleMagic(e){
if ($navbar.className.indexOf('in') > 0) {
// CLOSE
$navbar.className = " ";
// wait until animation end.
setTimeout(function(){
// prevent frequently toggle
if($navbar.className.indexOf('in') < 0) {
$collapse.style.height = "0px"
}
},400)
}else{
// OPEN
$collapse.style.height = "auto"
$navbar.className += " in";
}
}
</script>
<!-- Page Header -->
<header class="intro-header" style="background-image: url('/img/home_page.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1 ">
<div class="site-heading">
<h1>Supremeliu Blog</h1>
<!--<hr class="small">-->
<span class="subheading">mytechBlog</span>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<div class="container">
<div class="row">
<!-- USE SIDEBAR -->
<!-- Post Container -->
<div class="
col-lg-8 col-lg-offset-1
col-md-8 col-md-offset-1
col-sm-12
col-xs-12
post-container
">
<div class="post-preview">
<a href="/2017/05/17/java-springmvc-websocket/">
<h2 class="post-title">
记一个springmvc整合websocket的例子
</h2>
<h3 class="post-subtitle">
java-web项目问题(6)
</h3>
<div class="post-content-preview">
好久没有更新自己的技术blog了,自己的项目碰到了瓶颈,自己这段时间也有点迷失,自己也在尽量的调整,自己的路该怎么走老实说以后的路我现在都没有的想好。感觉自己还是喜欢编程。自己总结了这段时间非常低效的症结究竟在哪儿,我想原因还是因为自己没有明确目标。
我觉得每天写点东西是非常的有意义的,至少回顾下自己做了些什么东西,所以今天开始我...
</div>
</a>
<p class="post-meta">
Posted by Supremeliu on May 17, 2017
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2017/03/22/java-springmvc-note5/">
<h2 class="post-title">
表格展示控件datatable使用小结
</h2>
<h3 class="post-subtitle">
java-web项目问题小结(5)
</h3>
<div class="post-content-preview">
好久没有更新了 ,自己这10天也没有闲着因为看到市面上面的表格的控件基本用的都是easyui 的,那个界面个人不大喜欢的,自己项目用的ui模板里面使用了datatable这个jquery控件,觉得功能也很强大所以就拿来使用,非常感谢原作者。
目录
1、datatable项目环境准备
2、整合插件到项目中去
3、datatable...
</div>
</a>
<p class="post-meta">
Posted by Supremeliu on March 22, 2017
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2017/03/12/java-springmvc-note4/">
<h2 class="post-title">
java-web项目问题小结(4)
</h2>
<h3 class="post-subtitle">
java web功能实现笔记
</h3>
<div class="post-content-preview">
今天开始实现对应的系统模块功能,还是碰到了不少的困难,有一些问题还是需要点耐心才能发现,好在今天的问题都已经解决,接下来会加快模块功能的开发速度
目录
1、mybastis使用oracle和mysql之间的区别
2、本地虚拟机oracle连接缓慢问题的解决
3、抽象类在项目中运用实践
1、mybastis使用oracl...
</div>
</a>
<p class="post-meta">
Posted by Supremeliu on March 12, 2017
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2017/03/07/java-springmvc-note3/">
<h2 class="post-title">
java-web项目问题小结(3)
</h2>
<h3 class="post-subtitle">
java web功能实现笔记
</h3>
<div class="post-content-preview">
今天还是继续折腾项目的前段基础页面,总算把登录和功能模块完成,并且确定以后写功能模块页面的展示架构。以下是我对于今天碰到问题的解决总结。
目录
1、用jquery局部加载登录页面
2、用jquery的cookie插件来实现“记住密码” 功能
3、quartz的定时任务的学习
1、用jquery局部加载登录页面
...
</div>
</a>
<p class="post-meta">
Posted by Supremeliu on March 7, 2017
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2017/03/06/java-springmvc-note2/">
<h2 class="post-title">
java-web项目问题小结(2)
</h2>
<h3 class="post-subtitle">
java web功能实现笔记
</h3>
<div class="post-content-preview">
今天在研究mybatis的数据映射文件mapper的写法,发现mybatis的映射非常的完善,也不是很难懂,因为可以自己写sql绑定自由度是非常高的,今天主要学习了下select的绑定。
1、mybatis查询绑定内嵌对象注意要点
spring中mybatis的配置文件:
<beans xmlns="http://www.spr...
</div>
</a>
<p class="post-meta">
Posted by Supremeliu on March 6, 2017
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2017/03/05/java-springmvc-note/">
<h2 class="post-title">
java-web项目问题小结(1)
</h2>
<h3 class="post-subtitle">
java web功能实现笔记
</h3>
<div class="post-content-preview">
最近自己在做一个自己的一个项目的,今天基本把框架给打好了,因为是javaweb的应用所以我采用了主流的框架 springMVC + spring + mybatis的主流框架,今天在做的过程中碰到了不少问题,这边做下今天的总结
导航
1、关于spring-mvc 配置文件资源加载问题解决
2、jsp服务器端el和客户端js变量传递方法
...
</div>
</a>
<p class="post-meta">
Posted by Supremeliu on March 5, 2017
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2017/02/26/httprequesthttpclient/">
<h2 class="post-title">
java-web跨域请求解决方案-httpclient
</h2>
<h3 class="post-subtitle">
java web功能实现笔记
</h3>
<div class="post-content-preview">
最近一直在学习前段的一些基本前端编程技巧,对于http请求资源的解决方法比较普遍的两种,一种是JSONP,还有另外一种就是今天要介绍的httpclient工具,httpclient是apach基金协会的一个顶级的开源项目
导航
1、httpclient工具发送请求(get/post)
2、httpclient建立连接时几个比较重要的参数co...
</div>
</a>
<p class="post-meta">
Posted by Supremeliu on February 26, 2017
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2017/02/23/httprequestjsonp/">
<h2 class="post-title">
java-web跨域请求解决方案-jsonp
</h2>
<h3 class="post-subtitle">
java web功能实现笔记
</h3>
<div class="post-content-preview">
最近一直在学习前端的一些基本编程技巧,对于http请求资源的解决方法比较普遍的两种,一种就是今天分享的JSONP,还有另外一种就是通过服务器端httpclient工具包进行请求获取资源(明天的内容有了~)
1、用js加载的方式来解决不能跨域请求资源
准备一个简单的jsp文件:
<%@page language="java" c...
</div>
</a>
<p class="post-meta">
Posted by Supremeliu on February 23, 2017
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2017/02/21/imageupload/">
<h2 class="post-title">
用KindEditor套件实现文件上传功能
</h2>
<h3 class="post-subtitle">
java web功能实现笔记
</h3>
<div class="post-content-preview">
本文记录使用KindEditor的web组件实现界面的头像文件上传服务器中,项目基本架构为 spring-mvc + spring + mybatis加上maven作为项目管理
在项目工程中导入对应依赖上传工具包
我这边使用的阿里的maven远程中央库
<!--上传组件依赖-->...
</div>
</a>
<p class="post-meta">
Posted by Supremeliu on February 21, 2017
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2017/02/20/springtest-configuration/">
<h2 class="post-title">
用junit测试单个服务调用
</h2>
<h3 class="post-subtitle">
测试所用到的工具包导入,以及操作步骤
</h3>
<div class="post-content-preview">
spring测试很费劲需要初始化bean才能进行测试, 这边介绍spring-test 配合junit来完成对应service的接口测试
测试环境搭建过程
我本机环境是2014年 retina mac pro,编程工具为idea,项目中用的是maven,所以下面的介绍是基于maven的。
在maven中添加对应spring ...
</div>
</a>
<p class="post-meta">
Posted by Supremeliu on February 20, 2017
</p>
</div>
<hr>
<!-- Pager -->
<ul class="pager">
<li class="next">
<a href="/page2">Older Posts →</a>
</li>
</ul>
</div>
<!-- Sidebar Container -->
<div class="
col-lg-3 col-lg-offset-0
col-md-3 col-md-offset-0
col-sm-12
col-xs-12
sidebar-container
">
<!-- Featured Tags -->
<section>
<hr class="hidden-sm hidden-xs">
<h5><a href="/tags/">FEATURED TAGS</a></h5>
<div class="tags">
<a href="/tags/#实用教程" title="实用教程" rel="6">
实用教程
</a>
<a href="/tags/#Jekyll" title="Jekyll" rel="2">
Jekyll
</a>
<a href="/tags/#篮球" title="篮球" rel="2">
篮球
</a>
<a href="/tags/#java" title="java" rel="10">
java
</a>
<a href="/tags/#web" title="web" rel="8">
web
</a>
<a href="/tags/#spring" title="spring" rel="6">
spring
</a>
<a href="/tags/#js" title="js" rel="5">
js
</a>
</div>
</section>
<!-- Short About -->
<section class="visible-md visible-lg">
<hr><h5><a href="/about/">ABOUT ME</a></h5>
<div class="short-about">
<img src="/img/avatar-supremeliu.jpg" />
<p>让科技是自己的生活变得更加简单和幸福</p>
<!-- SNS Link -->
<ul class="list-inline">
<li>
<a href="https://twitter.com/supremeliu">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://www.zhihu.com/people/supremeliu">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-stack-1x fa-inverse">知</i>
</span>
</a>
</li>
<li>
<a target="_blank" href="http://weibo.com/supremeliu">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-weibo fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://www.facebook.com/supremeliu">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://github.com/Junchenliu198924">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
</div>
</section>
<!-- Friends Blog -->
<hr>
<h5>FRIENDS</h5>
<ul class="list-inline">
<li><a href="http://huangxuan.me">Hux Blog</a></li>
<li><a href="#">Foo</a></li>
<li><a href="#">Bar</a></li>
<li><a href="#">Example Friends</a></li>
<li><a href="#">It helps SEO</a></li>
</ul>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<ul class="list-inline text-center">
<li>
<a href="https://twitter.com/supremeliu">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<!-- add Weibo, Zhihu by Hux, add target = "_blank" to <a> by Hux -->
<li>
<a target="_blank" href="https://www.zhihu.com/people/supremeliu">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-stack-1x fa-inverse">知</i>
</span>
</a>
</li>
<li>
<a target="_blank" href="http://weibo.com/supremeliu">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-weibo fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://www.facebook.com/supremeliu">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://github.com/Junchenliu198924">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<p class="copyright text-muted">
Copyright © Supremeliu Blog 2017
<br>
Theme by <a href="http://huangxuan.me">Hux</a> |
<iframe
style="margin-left: 2px; margin-bottom:-5px;"
frameborder="0" scrolling="0" width="91px" height="20px"
src="https://ghbtns.com/github-btn.html?user=huxpro&repo=huxpro.github.io&type=star&count=true" >
</iframe>
</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="/js/jquery.min.js "></script>
<!-- Bootstrap Core JavaScript -->
<script src="/js/bootstrap.min.js "></script>
<!-- Custom Theme JavaScript -->
<script src="/js/hux-blog.min.js "></script>
<!-- async load function -->
<script>
function async(u, c) {
var d = document, t = 'script',
o = d.createElement(t),
s = d.getElementsByTagName(t)[0];
o.src = u;
if (c) { o.addEventListener('load', function (e) { c(null, e); }, false); }
s.parentNode.insertBefore(o, s);
}
</script>
<!--
Because of the native support for backtick-style fenced code blocks
right within the Markdown is landed in Github Pages,
From V1.6, There is no need for Highlight.js,
so Huxblog drops it officially.
- https://github.com/blog/2100-github-pages-now-faster-and-simpler-with-jekyll-3-0
- https://help.github.com/articles/creating-and-highlighting-code-blocks/
-->
<!--
<script>
async("http://cdn.bootcss.com/highlight.js/8.6/highlight.min.js", function(){
hljs.initHighlightingOnLoad();
})
</script>
<link href="http://cdn.bootcss.com/highlight.js/8.6/styles/github.min.css" rel="stylesheet">
-->
<!-- jquery.tagcloud.js -->
<script>
// only load tagcloud.js in tag.html
if($('#tag_cloud').length !== 0){
async("/js/jquery.tagcloud.js",function(){
$.fn.tagcloud.defaults = {
//size: {start: 1, end: 1, unit: 'em'},
color: {start: '#bbbbee', end: '#0085a1'},
};
$('#tag_cloud a').tagcloud();
})
}
</script>
<!--fastClick.js -->
<script>
async("http://cdn.bootcss.com/fastclick/1.0.6/fastclick.min.js", function(){
var $nav = document.querySelector("nav");
if($nav) FastClick.attach($nav);
})
</script>
<!-- Google Analytics -->
<script>
// dynamic User by Hux
var _gaId = 'UA-49627206-1';
var _gaDomain = 'huangxuan.me';
// Originial
(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', _gaId, _gaDomain);
ga('send', 'pageview');
</script>
<!-- Baidu Tongji -->
<script>
// dynamic User by Hux
var _baId = '4cc1f2d8f3067386cc5cdb626a202900';
// Originial
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?" + _baId;
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<!-- Image to hack wechat -->
<img src="/img/icon_wechat.png" width="0" height="0" />
<!-- Migrate from head to bottom, no longer block render and still work -->
</body>
</html>
| Junchenliu198924/Junchenliu198924.github.io | _site/index.html | HTML | apache-2.0 | 26,712 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_181) on Fri Sep 11 16:00:12 AEST 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class au.gov.amsa.util.navigation.Position (parent 0.5.25 API)</title>
<meta name="date" content="2020-09-11">
<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 au.gov.amsa.util.navigation.Position (parent 0.5.25 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="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">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?au/gov/amsa/util/navigation/class-use/Position.html" target="_top">Frames</a></li>
<li><a href="Position.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 au.gov.amsa.util.navigation.Position" class="title">Uses of Class<br>au.gov.amsa.util.navigation.Position</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="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#au.gov.amsa.geo">au.gov.amsa.geo</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#au.gov.amsa.geo.model">au.gov.amsa.geo.model</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#au.gov.amsa.geo.projection">au.gov.amsa.geo.projection</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#au.gov.amsa.util.navigation">au.gov.amsa.util.navigation</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="au.gov.amsa.geo">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> in <a href="../../../../../../au/gov/amsa/geo/package-summary.html">au.gov.amsa.geo</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="../../../../../../au/gov/amsa/geo/package-summary.html">au.gov.amsa.geo</a> that return <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Util.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/geo/Util.html#toPos-au.gov.amsa.risky.format.HasPosition-">toPos</a></span>(<a href="../../../../../../au/gov/amsa/risky/format/HasPosition.html" title="interface in au.gov.amsa.risky.format">HasPosition</a> a)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="au.gov.amsa.geo.model">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> in <a href="../../../../../../au/gov/amsa/geo/model/package-summary.html">au.gov.amsa.geo.model</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="../../../../../../au/gov/amsa/geo/model/package-summary.html">au.gov.amsa.geo.model</a> that return <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">GridTraversor.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/geo/model/GridTraversor.html#nextPoint-au.gov.amsa.util.navigation.Position-au.gov.amsa.util.navigation.Position-">nextPoint</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> a,
<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> b)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Util.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/geo/model/Util.html#toPos-au.gov.amsa.risky.format.HasPosition-">toPos</a></span>(<a href="../../../../../../au/gov/amsa/risky/format/HasPosition.html" title="interface in au.gov.amsa.risky.format">HasPosition</a> a)</code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../au/gov/amsa/geo/model/package-summary.html">au.gov.amsa.geo.model</a> with parameters of type <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">GridTraversor.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/geo/model/GridTraversor.html#nextPoint-au.gov.amsa.util.navigation.Position-au.gov.amsa.util.navigation.Position-">nextPoint</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> a,
<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> b)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="au.gov.amsa.geo.projection">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> in <a href="../../../../../../au/gov/amsa/geo/projection/package-summary.html">au.gov.amsa.geo.projection</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="../../../../../../au/gov/amsa/geo/projection/package-summary.html">au.gov.amsa.geo.projection</a> that return <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Projector.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/geo/projection/Projector.html#toPosition-double-double-">toPosition</a></span>(double targetX,
double targetY)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="au.gov.amsa.util.navigation">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> in <a href="../../../../../../au/gov/amsa/util/navigation/package-summary.html">au.gov.amsa.util.navigation</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="../../../../../../au/gov/amsa/util/navigation/package-summary.html">au.gov.amsa.util.navigation</a> that return <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#create-double-double-">create</a></span>(double lat,
double lon)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#create-double-double-double-">create</a></span>(double lat,
double lon,
double alt)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#ensureContinuous-au.gov.amsa.util.navigation.Position-">ensureContinuous</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> lastPosition)</code>
<div class="block">normalize the lat lon values of this to ensure that no large longitude
jumps are made from lastPosition (e.g.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getClosestIntersectionWithSegment-au.gov.amsa.util.navigation.Position-au.gov.amsa.util.navigation.Position-">getClosestIntersectionWithSegment</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> p1,
<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> p2)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getEarthLimb-int-">getEarthLimb</a></span>(int radials)</code>
<div class="block">Return an array of Positions representing the earths limb (aka: horizon)
as viewed from this Position in space.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getPositionAlongPath-au.gov.amsa.util.navigation.Position-double-">getPositionAlongPath</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> position,
double proportion)</code>
<div class="block">Returns a position along a path according to the proportion value</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#normalizeLongitude--">normalizeLongitude</a></span>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#predict-double-double-">predict</a></span>(double distanceKm,
double courseDegrees)</code>
<div class="block">Predicts position travelling along a great circle arc based on the
Haversine formula.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#to360--">to360</a></span>()</code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../au/gov/amsa/util/navigation/package-summary.html">au.gov.amsa.util.navigation</a> that return types with arguments of type <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a>></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getPositionsAlongPath-au.gov.amsa.util.navigation.Position-double-">getPositionsAlongPath</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> position,
double maxSegmentLengthKm)</code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../au/gov/amsa/util/navigation/package-summary.html">au.gov.amsa.util.navigation</a> with parameters of type <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#ensureContinuous-au.gov.amsa.util.navigation.Position-">ensureContinuous</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> lastPosition)</code>
<div class="block">normalize the lat lon values of this to ensure that no large longitude
jumps are made from lastPosition (e.g.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getBearingDegrees-au.gov.amsa.util.navigation.Position-">getBearingDegrees</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> position)</code>
<div class="block">Returns a great circle bearing in degrees in the range 0 to 360.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getClosestIntersectionWithSegment-au.gov.amsa.util.navigation.Position-au.gov.amsa.util.navigation.Position-">getClosestIntersectionWithSegment</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> p1,
<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> p2)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getDistanceKmToPath-au.gov.amsa.util.navigation.Position-au.gov.amsa.util.navigation.Position-">getDistanceKmToPath</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> p1,
<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> p2)</code>
<div class="block">calculates the distance of a point to the great circle path between p1
and p2.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getDistanceToKm-au.gov.amsa.util.navigation.Position-">getDistanceToKm</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> position)</code>
<div class="block">returns distance between two WGS84 positions according to Vincenty's
formula from Wikipedia</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getDistanceToSegmentKm-au.gov.amsa.util.navigation.Position-au.gov.amsa.util.navigation.Position-">getDistanceToSegmentKm</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> p1,
<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> p2)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getLatitudeOnGreatCircle-au.gov.amsa.util.navigation.Position-double-">getLatitudeOnGreatCircle</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> position,
double longitudeDegrees)</code>
<div class="block">From http://williams.best.vwh.net/avform.htm (Latitude of point on GC).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.LongitudePair.html" title="class in au.gov.amsa.util.navigation">Position.LongitudePair</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getLongitudeOnGreatCircle-au.gov.amsa.util.navigation.Position-double-">getLongitudeOnGreatCircle</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> position,
double latitudeDegrees)</code>
<div class="block">Returns null if no crossing of latitude otherwise return two longitude
candidates.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getPositionAlongPath-au.gov.amsa.util.navigation.Position-double-">getPositionAlongPath</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> position,
double proportion)</code>
<div class="block">Returns a position along a path according to the proportion value</div>
</td>
</tr>
<tr class="rowColor">
<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><<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a>></code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getPositionsAlongPath-au.gov.amsa.util.navigation.Position-double-">getPositionsAlongPath</a></span>(<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a> position,
double maxSegmentLengthKm)</code> </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="../../../../../../au/gov/amsa/util/navigation/package-summary.html">au.gov.amsa.util.navigation</a> with type arguments of type <a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#getDistanceToPathKm-java.util.List-">getDistanceToPathKm</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><<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a>> positions)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#isOutside-java.util.List-double-">isOutside</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><<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a>> path,
double minDistanceKm)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">Position.</span><code><span class="memberNameLink"><a href="../../../../../../au/gov/amsa/util/navigation/Position.html#isWithin-java.util.List-">isWithin</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><<a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">Position</a>> positions)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../au/gov/amsa/util/navigation/Position.html" title="class in au.gov.amsa.util.navigation">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?au/gov/amsa/util/navigation/class-use/Position.html" target="_top">Frames</a></li>
<li><a href="Position.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2020. All rights reserved.</small></p>
</body>
</html>
| amsa-code/amsa-code.github.io | risky/apidocs/au/gov/amsa/util/navigation/class-use/Position.html | HTML | apache-2.0 | 30,480 |
<!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_67) on Wed Jun 24 16:41:11 CST 2015 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>CleanContentListener</title>
<meta name="date" content="2015-06-24">
<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="CleanContentListener";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/CleanContentListener.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="../../../../../../nkfust/selab/android/explorer/layout/listener/ChangeMenuListener.html" title="class in nkfust.selab.android.explorer.layout.listener"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../nkfust/selab/android/explorer/layout/listener/FocusTabButtonListener.html" title="class in nkfust.selab.android.explorer.layout.listener"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?nkfust/selab/android/explorer/layout/listener/CleanContentListener.html" target="_top">Frames</a></li>
<li><a href="CleanContentListener.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">nkfust.selab.android.explorer.layout.listener</div>
<h2 title="Class CleanContentListener" class="title">Class CleanContentListener</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>nkfust.selab.android.explorer.layout.listener.CleanContentListener</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../../../../nkfust/selab/android/explorer/layout/model/PageSelectedListener.html" title="interface in nkfust.selab.android.explorer.layout.model">PageSelectedListener</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">CleanContentListener</span>
extends java.lang.Object
implements <a href="../../../../../../nkfust/selab/android/explorer/layout/model/PageSelectedListener.html" title="interface in nkfust.selab.android.explorer.layout.model">PageSelectedListener</a></pre>
<div class="block">This class function is clean content view when tab view changed page.</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd>Zi-Xiang Lin <bdl9437@gmail.com></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private <a href="../../../../../../nkfust/selab/android/explorer/layout/model/ContentFragment.html" title="class in nkfust.selab.android.explorer.layout.model">ContentFragment</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../../nkfust/selab/android/explorer/layout/listener/CleanContentListener.html#mContentFragment">mContentFragment</a></strong></code> </td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../../nkfust/selab/android/explorer/layout/listener/CleanContentListener.html#CleanContentListener(nkfust.selab.android.explorer.layout.model.ContentFragment)">CleanContentListener</a></strong>(<a href="../../../../../../nkfust/selab/android/explorer/layout/model/ContentFragment.html" title="class in nkfust.selab.android.explorer.layout.model">ContentFragment</a> contentFragment)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../nkfust/selab/android/explorer/layout/listener/CleanContentListener.html#onPageSelect()">onPageSelect</a></strong>()</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="mContentFragment">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>mContentFragment</h4>
<pre>private <a href="../../../../../../nkfust/selab/android/explorer/layout/model/ContentFragment.html" title="class in nkfust.selab.android.explorer.layout.model">ContentFragment</a> mContentFragment</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="CleanContentListener(nkfust.selab.android.explorer.layout.model.ContentFragment)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>CleanContentListener</h4>
<pre>public CleanContentListener(<a href="../../../../../../nkfust/selab/android/explorer/layout/model/ContentFragment.html" title="class in nkfust.selab.android.explorer.layout.model">ContentFragment</a> contentFragment)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="onPageSelect()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>onPageSelect</h4>
<pre>public void onPageSelect()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../../nkfust/selab/android/explorer/layout/model/PageSelectedListener.html#onPageSelect()">onPageSelect</a></code> in interface <code><a href="../../../../../../nkfust/selab/android/explorer/layout/model/PageSelectedListener.html" title="interface in nkfust.selab.android.explorer.layout.model">PageSelectedListener</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/CleanContentListener.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="../../../../../../nkfust/selab/android/explorer/layout/listener/ChangeMenuListener.html" title="class in nkfust.selab.android.explorer.layout.listener"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../nkfust/selab/android/explorer/layout/listener/FocusTabButtonListener.html" title="class in nkfust.selab.android.explorer.layout.listener"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?nkfust/selab/android/explorer/layout/listener/CleanContentListener.html" target="_top">Frames</a></li>
<li><a href="CleanContentListener.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| BDLin/android.explorer_layout | doc/nkfust/selab/android/explorer/layout/listener/CleanContentListener.html | HTML | apache-2.0 | 12,046 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.4.2_18) on Thu Jul 31 15:03:42 GMT+01:00 2008 -->
<TITLE>
Uses of Class org.apache.fop.render.rtf.rtflib.rtfdoc.RtfExternalGraphic (Apache FOP 0.95 API)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Uses of Class org.apache.fop.render.rtf.rtflib.rtfdoc.RtfExternalGraphic (Apache FOP 0.95 API)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfExternalGraphic.html" title="class in org.apache.fop.render.rtf.rtflib.rtfdoc"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
fop 0.95</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="RtfExternalGraphic.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.fop.render.rtf.rtflib.rtfdoc.RtfExternalGraphic</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
Packages that use <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfExternalGraphic.html" title="class in org.apache.fop.render.rtf.rtflib.rtfdoc">RtfExternalGraphic</A></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.fop.render.rtf.rtflib.rtfdoc"><B>org.apache.fop.render.rtf.rtflib.rtfdoc</B></A></TD>
<TD>Independent subsystem (not specific to FOP) classes that are used to build
RTF documents. </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.fop.render.rtf.rtflib.rtfdoc"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
Uses of <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfExternalGraphic.html" title="class in org.apache.fop.render.rtf.rtflib.rtfdoc">RtfExternalGraphic</A> in <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/package-summary.html">org.apache.fop.render.rtf.rtflib.rtfdoc</A></FONT></TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TD COLSPAN=2>Methods in <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/package-summary.html">org.apache.fop.render.rtf.rtflib.rtfdoc</A> that return <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfExternalGraphic.html" title="class in org.apache.fop.render.rtf.rtflib.rtfdoc">RtfExternalGraphic</A></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfExternalGraphic.html" title="class in org.apache.fop.render.rtf.rtflib.rtfdoc">RtfExternalGraphic</A></CODE></FONT></TD>
<TD><CODE><B>RtfTableCell.</B><B><A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfTableCell.html#newImage()">newImage</A></B>()</CODE>
<BR>
Start a new external graphic after closing current paragraph, list and table</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfExternalGraphic.html" title="class in org.apache.fop.render.rtf.rtflib.rtfdoc">RtfExternalGraphic</A></CODE></FONT></TD>
<TD><CODE><B>RtfParagraph.</B><B><A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfParagraph.html#newImage()">newImage</A></B>()</CODE>
<BR>
Start a new external graphic after closing all other elements</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfExternalGraphic.html" title="class in org.apache.fop.render.rtf.rtflib.rtfdoc">RtfExternalGraphic</A></CODE></FONT></TD>
<TD><CODE><B>IRtfExternalGraphicContainer.</B><B><A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/IRtfExternalGraphicContainer.html#newImage()">newImage</A></B>()</CODE>
<BR>
Creates a new image on external graphic base.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfExternalGraphic.html" title="class in org.apache.fop.render.rtf.rtflib.rtfdoc">RtfExternalGraphic</A></CODE></FONT></TD>
<TD><CODE><B>RtfSection.</B><B><A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfSection.html#newImage()">newImage</A></B>()</CODE>
<BR>
Start a new external graphic after closing current paragraph, list and table</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfExternalGraphic.html" title="class in org.apache.fop.render.rtf.rtflib.rtfdoc">RtfExternalGraphic</A></CODE></FONT></TD>
<TD><CODE><B>RtfTextrun.</B><B><A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfTextrun.html#newImage()">newImage</A></B>()</CODE>
<BR>
Inserts an image.</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../org/apache/fop/render/rtf/rtflib/rtfdoc/RtfExternalGraphic.html" title="class in org.apache.fop.render.rtf.rtflib.rtfdoc"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
fop 0.95</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="RtfExternalGraphic.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright 1999-2008 The Apache Software Foundation. All Rights Reserved.
</BODY>
</HTML>
| tavultesoft/keymanweb | windows/src/ext/docbook/fop/fop-0.95/javadocs/org/apache/fop/render/rtf/rtflib/rtfdoc/class-use/RtfExternalGraphic.html | HTML | apache-2.0 | 10,846 |
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>GraphBuilder 2.0 (alpha): src/main/java/com/intel/hadoop/graphbuilder/pipeline/output/titan/TitanConfig.java File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.1 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.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)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>src/main/java/com/intel/hadoop/graphbuilder/pipeline/output/titan/TitanConfig.java File Reference</h1><table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1intel_1_1hadoop_1_1graphbuilder_1_1pipeline_1_1output_1_1titan_1_1TitanConfig.html">com::intel::hadoop::graphbuilder::pipeline::output::titan::TitanConfig</a></td></tr>
<tr><td colspan="2"><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">namespace </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacecom_1_1intel_1_1hadoop_1_1graphbuilder_1_1pipeline_1_1output_1_1titan.html">com::intel::hadoop::graphbuilder::pipeline::output::titan</a></td></tr>
</table>
</div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark"> </span>Enumerations</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on 26 Dec 2013 for GraphBuilder 2.0 (alpha) by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>
| Cray/graphbuilder | docs/html/TitanConfig_8java.html | HTML | apache-2.0 | 4,731 |
{extend name="template/base" /}
{block name="content"}
<div class="page-container">
<form class="form form-horizontal" id="form" method="post" action="{:\\think\\Request::instance()->baseUrl()}">
<input type="hidden" name="id" value="{:isset($vo.id)?$vo.id:''}">
<div class="row cl">
<label class="form-label col-xs-3 col-sm-3"><span class="c-red">*</span>模型名称:</label>
<div class="formControls col-xs-6 col-sm-6">
<input type="text" class="input-text" placeholder="模型名称" name="name" value="{$vo.name ?? ''}" datatype="*" nullmsg="模型名称不可以为空">
</div>
<div class="col-xs-3 col-sm-3"></div>
</div>
<div class="row cl">
<label class="form-label col-xs-3 col-sm-3"><span class="c-red">*</span>模型表键名:</label>
<div class="formControls col-xs-6 col-sm-6">
<input type="text" {present name="edit"} readonly {/present} class="input-text" placeholder="字母、驼峰式、例如AdminGroup" name="tableName" value="{$vo.tableName ?? ''}" datatype="*" nullmsg="模型表键名不可以为空">
</div>
<div class="col-xs-3 col-sm-3"></div>
</div>
<div class="row cl">
<label class="form-label col-xs-3 col-sm-3">描述:</label>
<div class="formControls col-xs-6 col-sm-6">
<input type="text" class="input-text" placeholder="描述" name="description" value="{$vo.description ?? ''}" >
</div>
<div class="col-xs-3 col-sm-3"></div>
</div>
<div class="row cl">
<div class="col-xs-8 col-sm-9 col-xs-offset-4 col-sm-offset-3">
<button type="submit" class="btn btn-primary radius"> 提交 </button>
<button type="button" class="btn btn-default radius ml-20" onClick="layer_close();"> 取消 </button>
</div>
</div>
</form>
</div>
{/block}
{block name="script"}
<script type="text/javascript" src="__LIB__/Validform/5.3.2/Validform.min.js"></script>
<script>
$(function () {
//表单数据验证
$('.skin-minimal input').iCheck({
checkboxClass: 'icheckbox-blue',
radioClass: 'iradio-blue',
increaseArea: '20%'
});
//form提交并验证
$("#form").Validform({
tiptype: 2,
ajaxPost: true,
showAllError: true,
callback: function (ret){
ajax_progress(ret);
}
});
})
</script>
{/block} | oyjjpp/admin | application/admin/view/admin_model/edit.html | HTML | apache-2.0 | 2,654 |
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formatting Samples</title>
<script id="sap-ui-bootstrap"
data-sap-ui-theme="sap_belize"
src="../../../../../../resources/sap-ui-core.js"
data-sap-ui-compatVersion="edge"
data-sap-ui-async="true"
data-sap-ui-oninit="module:sap/ui/core/ComponentSupport"
data-sap-ui-resourceroots='{
"sap.ui.core.samples.formatting": "./"
}' >
</script>
</head>
<body id="content" class="sapUiBody sapUiSizeCompact">
<div data-sap-ui-component
data-name="sap.ui.core.samples.formatting"
data-height="100%"
data-id="container"
style="height: 100%">
</div>
</body>
</html>
| SAP/openui5 | src/sap.ui.core/test/sap/ui/core/samples/formatting/index.html | HTML | apache-2.0 | 740 |
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>SchedulerAdaptorDescription (xenon 3.0.0 API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="SchedulerAdaptorDescription (xenon 3.0.0 API)";
}
}
catch(err) {
}
//-->
var data = {"i0":6,"i1":6,"i2":6,"i3":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";
var pathtoroot = "../../../../";
var useModuleDirectories = true;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../index.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li 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">
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</li>
</ul>
</div>
<a id="skip.navbar.top">
<!-- -->
</a>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding"> </div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
</nav>
</header>
<!-- ======== START OF CLASS DATA ======== -->
<main role="main">
<div class="header">
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">nl.esciencecenter.xenon.schedulers</a></div>
<h2 title="Interface SchedulerAdaptorDescription" class="title">Interface SchedulerAdaptorDescription</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Superinterfaces:</dt>
<dd><code><a href="../AdaptorDescription.html" title="interface in nl.esciencecenter.xenon">AdaptorDescription</a></code></dd>
</dl>
<hr>
<pre>public interface <span class="typeNameLabel">SchedulerAdaptorDescription</span>
extends <a href="../AdaptorDescription.html" title="interface in nl.esciencecenter.xenon">AdaptorDescription</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<div class="memberSummary">
<div role="tablist" aria-orientation="horizontal"><button role="tab" aria-selected="true" aria-controls="memberSummary_tabpanel" tabindex="0" onkeydown="switchTab(event)" id="t0" class="activeTableTab">All Methods</button><button role="tab" aria-selected="false" aria-controls="memberSummary_tabpanel" tabindex="-1" onkeydown="switchTab(event)" id="t2" class="tableTab" onclick="show(2);">Instance Methods</button><button role="tab" aria-selected="false" aria-controls="memberSummary_tabpanel" tabindex="-1" onkeydown="switchTab(event)" id="t3" class="tableTab" onclick="show(4);">Abstract Methods</button></div>
<div id="memberSummary_tabpanel" role="tabpanel">
<table aria-labelledby="t0">
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Method</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor" id="i0">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isEmbedded()">isEmbedded</a></span>()</code></th>
<td class="colLast">
<div class="block">Is this an embedded scheduler ?
Embedded schedulers are implemented inside the Xenon process itself.</div>
</td>
</tr>
<tr class="rowColor" id="i1">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#supportsBatch()">supportsBatch</a></span>()</code></th>
<td class="colLast">
<div class="block">Does this Scheduler support the submission of batch jobs ?
For batch jobs the standard streams of the jobs are redirected from and to files.</div>
</td>
</tr>
<tr class="altColor" id="i2">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#supportsInteractive()">supportsInteractive</a></span>()</code></th>
<td class="colLast">
<div class="block">Does this Scheduler supports the submission of interactive jobs ?
For interactive jobs the standard streams of the job must be handled by the submitting process.</div>
</td>
</tr>
<tr class="rowColor" id="i3">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#usesFileSystem()">usesFileSystem</a></span>()</code></th>
<td class="colLast">
<div class="block">Does this Scheduler create a FileSystem to support the submission of jobs ?
Many scheduler implementations use a FileSystem internally to handle job submission, for example to store submission scripts or handle the standard I/O
streams of a process.</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.nl.esciencecenter.xenon.AdaptorDescription">
<!-- -->
</a>
<h3>Methods inherited from interface nl.esciencecenter.xenon.<a href="../AdaptorDescription.html" title="interface in nl.esciencecenter.xenon">AdaptorDescription</a></h3>
<code><a href="../AdaptorDescription.html#getDescription()">getDescription</a>, <a href="../AdaptorDescription.html#getName()">getName</a>, <a href="../AdaptorDescription.html#getSupportedCredentials()">getSupportedCredentials</a>, <a href="../AdaptorDescription.html#getSupportedLocations()">getSupportedLocations</a>, <a href="../AdaptorDescription.html#getSupportedProperties()">getSupportedProperties</a></code></li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a id="isEmbedded()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isEmbedded</h4>
<pre class="methodSignature">boolean isEmbedded()</pre>
<div class="block">Is this an embedded scheduler ?
Embedded schedulers are implemented inside the Xenon process itself. Therefore this process needs to remain active for its jobs to run. Ending an online
scheduler will typically orphan or kill all jobs that were submitted to it.
Non-embedded schedulers do not need to remain active for their jobs to run. A submitted job will typically be handed over to some external server that
will manage the job for the rest of its lifetime.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>if this scheduler is embedded.</dd>
</dl>
</li>
</ul>
<a id="supportsBatch()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>supportsBatch</h4>
<pre class="methodSignature">boolean supportsBatch()</pre>
<div class="block">Does this Scheduler support the submission of batch jobs ?
For batch jobs the standard streams of the jobs are redirected from and to files.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>if this scheduler supports the submission of batch jobs ?</dd>
</dl>
</li>
</ul>
<a id="supportsInteractive()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>supportsInteractive</h4>
<pre class="methodSignature">boolean supportsInteractive()</pre>
<div class="block">Does this Scheduler supports the submission of interactive jobs ?
For interactive jobs the standard streams of the job must be handled by the submitting process. Failing to do so may cause the job to hang indefinitely.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>if this scheduler supports the submission of interactive jobs ?</dd>
</dl>
</li>
</ul>
<a id="usesFileSystem()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>usesFileSystem</h4>
<pre class="methodSignature">boolean usesFileSystem()</pre>
<div class="block">Does this Scheduler create a FileSystem to support the submission of jobs ?
Many scheduler implementations use a FileSystem internally to handle job submission, for example to store submission scripts or handle the standard I/O
streams of a process. This FileSystem can optionally be retrieved by the user to perform other tasks, such as staging in and output data of the job. To
do so use <a href="Scheduler.html#getFileSystem()"><code>Scheduler.getFileSystem()</code></a> method.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>does this <a href="Scheduler.html" title="class in nl.esciencecenter.xenon.schedulers"><code>Scheduler</code></a> create a FileSystem to support the submission of jobs ?</dd>
</dl>
</li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
</div>
</main>
<!-- ========= END OF CLASS DATA ========= -->
<footer role="contentinfo">
<nav role="navigation">
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a id="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../index.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li 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">
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
</div>
<a id="skip.navbar.bottom">
<!-- -->
</a>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</nav>
</footer>
</body>
</html>
| NLeSC/Xenon | docs/versions/3.0.0/javadoc/nl/esciencecenter/xenon/schedulers/SchedulerAdaptorDescription.html | HTML | apache-2.0 | 12,288 |
<!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 Mon Dec 16 23:54:43 EST 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.apache.hadoop.mapreduce.v2.util.MRApps (hadoop-mapreduce-client-common 2.2.0 API)</title>
<meta name="date" content="2013-12-16">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.hadoop.mapreduce.v2.util.MRApps (hadoop-mapreduce-client-common 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="../../../../../../../org/apache/hadoop/mapreduce/v2/util/MRApps.html" title="class in org.apache.hadoop.mapreduce.v2.util">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>PREV</li>
<li>NEXT</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/apache/hadoop/mapreduce/v2/util//class-useMRApps.html" target="_top">FRAMES</a></li>
<li><a href="MRApps.html" target="_top">NO FRAMES</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.hadoop.mapreduce.v2.util.MRApps" class="title">Uses of Class<br>org.apache.hadoop.mapreduce.v2.util.MRApps</h2>
</div>
<div class="classUseContainer">No usage of org.apache.hadoop.mapreduce.v2.util.MRApps</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/apache/hadoop/mapreduce/v2/util/MRApps.html" title="class in org.apache.hadoop.mapreduce.v2.util">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>PREV</li>
<li>NEXT</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/apache/hadoop/mapreduce/v2/util//class-useMRApps.html" target="_top">FRAMES</a></li>
<li><a href="MRApps.html" target="_top">NO FRAMES</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2013 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.</small></p>
</body>
</html>
| arrowli/RsyncHadoop | hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/target/org/apache/hadoop/mapreduce/v2/util/class-use/MRApps.html | HTML | apache-2.0 | 4,579 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<!--
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2009 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Text field dialog window.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta content="noindex, nofollow" name="robots" />
<script src="common/fck_dialog_common.js" type="text/javascript"></script>
<script type="text/javascript">
var dialog = window.parent ;
var oEditor = dialog.InnerDialogLoaded() ;
// Gets the document DOM
var oDOM = oEditor.FCK.EditorDocument ;
var oActiveEl = dialog.Selection.GetSelectedElement() ;
window.onload = function()
{
// First of all, translate the dialog box texts
oEditor.FCKLanguageManager.TranslatePage(document) ;
if ( oActiveEl && oActiveEl.tagName == 'INPUT' && ( oActiveEl.type == 'text' || oActiveEl.type == 'password' ) )
{
GetE('txtName').value = oActiveEl.name ;
GetE('txtValue').value = oActiveEl.value ;
GetE('txtSize').value = GetAttribute( oActiveEl, 'size' ) ;
GetE('txtMax').value = GetAttribute( oActiveEl, 'maxLength' ) ;
GetE('txtType').value = oActiveEl.type ;
}
else
oActiveEl = null ;
dialog.SetOkButton( true ) ;
dialog.SetAutoSize( true ) ;
SelectField( 'txtName' ) ;
}
function Ok()
{
if ( isNaN( GetE('txtMax').value ) || GetE('txtMax').value < 0 )
{
alert( "Maximum characters must be a positive number." ) ;
GetE('txtMax').focus() ;
return false ;
}
else if( isNaN( GetE('txtSize').value ) || GetE('txtSize').value < 0 )
{
alert( "Width must be a positive number." ) ;
GetE('txtSize').focus() ;
return false ;
}
oEditor.FCKUndo.SaveUndoStep() ;
oActiveEl = CreateNamedElement( oEditor, oActiveEl, 'INPUT', {name: GetE('txtName').value, type: GetE('txtType').value } ) ;
SetAttribute( oActiveEl, 'value' , GetE('txtValue').value ) ;
SetAttribute( oActiveEl, 'size' , GetE('txtSize').value ) ;
SetAttribute( oActiveEl, 'maxlength', GetE('txtMax').value ) ;
return true ;
}
</script>
</head>
<body style="overflow: hidden">
<table width="100%" style="height: 100%">
<tr>
<td align="center">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><span fcklang="DlgTextName">Name</span><br /> <input
id="txtName" type="text" size="20" /></td>
<td></td>
<td><span fcklang="DlgTextValue">Value</span><br /> <input
id="txtValue" type="text" size="25" /></td>
</tr>
<tr>
<td><span fcklang="DlgTextCharWidth">Character Width</span><br />
<input id="txtSize" type="text" size="5" /></td>
<td></td>
<td><span fcklang="DlgTextMaxChars">Maximum Characters</span><br />
<input id="txtMax" type="text" size="5" /></td>
</tr>
<tr>
<td><span fcklang="DlgTextType">Type</span><br /> <select
id="txtType">
<option value="text" selected="selected"
fcklang="DlgTextTypeText">Text</option>
<option value="password" fcklang="DlgTextTypePass">Password</option>
</select></td>
<td> </td>
<td></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
| 8090boy/gomall.la | legendshop/WebRoot/plugins/fckeditor/editor/dialog/fck_textfield.html | HTML | apache-2.0 | 3,698 |
<div class="row">
<div class="col-md-8 col-md-offset-2 about">
<h1 class="page-header">What is it?</h1>
<p class="large-font">
Spark Waves is an easy to follow and practical electronics course.
The idea is to create a course that teaches the fundamentals of
electronics - not just how to plug in an Arduino. Through this course,
you will learn things like:
</p>
<ul class="large-font">
<li>How a transistor works and when to use it</li>
<li>The difference between a voltage divider and regualtor</li>
<li>How to choose a resistor</li>
<li>And much more</li>
</ul>
<p class="large-font" >At the same time as teaching these fundamentals,
I am trying to pair each lesson with a hands-on project to emphasize the learnings.
If you have feedback, thoughts, or
questions, I would love to hear from you. You can reach me
<a href="https://twitter.com/Rick_Marron">@Rick_Marron</a>.
</p>
<h1 class="page-header">Who is doing it?</h1>
<img src="http://www.gravatar.com/avatar/d6125cd1d69bf13c7dadb3036690265a.jpg?s=100" class="img-thumbnail img-responsive pull-right about-me-image"></img>
<div class="large-font">We have a team of 40 engineers worki... Just
kidding. It is just me. My name is Rick Marron, and I am a software
engineer who studied electrical engineering. I am currently based out of Nairobi, Kenya.
Formerly with Microsoft and now on my own. If you are interested in
helping out with the project, drop me a line on <a href="https://twitter.com/Rick_Marron">
Twitter</a>.
</div>
</div>
</div>
| SparkWaves/SparkWaves-WebApp | app/views/about.html | HTML | apache-2.0 | 1,752 |
<!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>Neodroid: droid.Runtime.InternalReactions Namespace 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="projectlogo"><img alt="Logo" src="neodroidcropped124.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Neodroid
 <span id="projectnumber">0.2.0</span>
</div>
<div id="projectbrief">Machine Learning Environment Prototyping Tool</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('namespacedroid_1_1_runtime_1_1_internal_reactions.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> </div>
<div class="headertitle">
<div class="title">droid.Runtime.InternalReactions Namespace Reference</div> </div>
</div><!--header-->
<div class="contents">
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classdroid_1_1_runtime_1_1_internal_reactions_1_1_key_event_enabler.html">KeyEventEnabler</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classdroid_1_1_runtime_1_1_internal_reactions_1_1_player_reactions.html">PlayerReactions</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classdroid_1_1_runtime_1_1_internal_reactions_1_1_scripted_reactions.html">ScriptedReactions</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="namespacedroid.html">droid</a></li><li class="navelem"><a class="el" href="namespacedroid_1_1_runtime.html">Runtime</a></li><li class="navelem"><a class="el" href="namespacedroid_1_1_runtime_1_1_internal_reactions.html">InternalReactions</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.13 </li>
</ul>
</div>
</body>
</html>
| sintefneodroid/droid | docs/cvs/namespacedroid_1_1_runtime_1_1_internal_reactions.html | HTML | apache-2.0 | 5,222 |
<!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.10"/>
<title>XLabs: XLabs.IoC Namespace Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="XLabs_logo.psd"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">XLabs
</div>
<div id="projectbrief">Cross-platform reusable C# libraries</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.10 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li class="current"><a href="namespaces.html"><span>Packages</span></a></li>
<li><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="namespaces.html"><span>Packages</span></a></li>
<li><a href="namespacemembers.html"><span>Package Functions</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('namespace_x_labs_1_1_io_c.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="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<div class="title">XLabs.IoC Namespace Reference</div> </div>
</div><!--header-->
<div class="contents">
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr class="memitem:namespace_x_labs_1_1_io_c_1_1_serialization"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_x_labs_1_1_io_c_1_1_serialization.html">Serialization</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="namespace_x_labs.html">XLabs</a></li><li class="navelem"><a class="el" href="namespace_x_labs_1_1_io_c.html">IoC</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.10 </li>
</ul>
</div>
</body>
</html>
| XLabs/xlabs.github.io | html/namespace_x_labs_1_1_io_c.html | HTML | apache-2.0 | 5,466 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_45) on Sat Jul 13 18:59:01 WEST 2013 -->
<TITLE>
IDeviceService.DeviceField
</TITLE>
<META NAME="date" CONTENT="2013-07-13">
<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="IDeviceService.DeviceField";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/IDeviceService.DeviceField.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.html" title="interface in net.floodlightcontroller.devicemanager"><B>PREV CLASS</B></A>
<A HREF="../../../net/floodlightcontroller/devicemanager/IEntityClass.html" title="interface in net.floodlightcontroller.devicemanager"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" target="_top"><B>FRAMES</B></A>
<A HREF="IDeviceService.DeviceField.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#enum_constant_summary">ENUM CONSTANTS</A> | FIELD | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#enum_constant_detail">ENUM CONSTANTS</A> | FIELD | <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">
net.floodlightcontroller.devicemanager</FONT>
<BR>
Enum IDeviceService.DeviceField</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../resources/inherit.gif" ALT="extended by ">java.lang.Enum<<A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" title="enum in net.floodlightcontroller.devicemanager">IDeviceService.DeviceField</A>>
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>net.floodlightcontroller.devicemanager.IDeviceService.DeviceField</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable, java.lang.Comparable<<A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" title="enum in net.floodlightcontroller.devicemanager">IDeviceService.DeviceField</A>></DD>
</DL>
<DL>
<DT><B>Enclosing interface:</B><DD><A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.html" title="interface in net.floodlightcontroller.devicemanager">IDeviceService</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public static enum <B>IDeviceService.DeviceField</B><DT>extends java.lang.Enum<<A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" title="enum in net.floodlightcontroller.devicemanager">IDeviceService.DeviceField</A>><DT>implements java.io.Serializable</DL>
</PRE>
<P>
Fields used in devices for indexes and querying
<P>
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.html#addIndex(boolean, java.util.EnumSet)"><CODE>IDeviceService.addIndex(boolean, java.util.EnumSet<net.floodlightcontroller.devicemanager.IDeviceService.DeviceField>)</CODE></A></DL>
<HR>
<P>
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<A NAME="enum_constant_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>Enum Constant Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html#IPV4">IPV4</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html#MAC">MAC</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html#PORT">PORT</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html#SWITCH">SWITCH</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html#VLAN">VLAN</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== 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>static <A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" title="enum in net.floodlightcontroller.devicemanager">IDeviceService.DeviceField</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html#valueOf(java.lang.String)">valueOf</A></B>(java.lang.String name)</CODE>
<BR>
Returns the enum constant of this type with the specified name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" title="enum in net.floodlightcontroller.devicemanager">IDeviceService.DeviceField</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html#values()">values</A></B>()</CODE>
<BR>
Returns an array containing the constants of this enum type, in
the order they are declared.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Enum"><!-- --></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.Enum</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</CODE></TD>
</TR>
</TABLE>
<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>getClass, notify, notifyAll, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<A NAME="enum_constant_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>Enum Constant Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="MAC"><!-- --></A><H3>
MAC</H3>
<PRE>
public static final <A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" title="enum in net.floodlightcontroller.devicemanager">IDeviceService.DeviceField</A> <B>MAC</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="IPV4"><!-- --></A><H3>
IPV4</H3>
<PRE>
public static final <A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" title="enum in net.floodlightcontroller.devicemanager">IDeviceService.DeviceField</A> <B>IPV4</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="VLAN"><!-- --></A><H3>
VLAN</H3>
<PRE>
public static final <A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" title="enum in net.floodlightcontroller.devicemanager">IDeviceService.DeviceField</A> <B>VLAN</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="SWITCH"><!-- --></A><H3>
SWITCH</H3>
<PRE>
public static final <A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" title="enum in net.floodlightcontroller.devicemanager">IDeviceService.DeviceField</A> <B>SWITCH</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<A NAME="PORT"><!-- --></A><H3>
PORT</H3>
<PRE>
public static final <A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" title="enum in net.floodlightcontroller.devicemanager">IDeviceService.DeviceField</A> <B>PORT</B></PRE>
<DL>
<DL>
</DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="values()"><!-- --></A><H3>
values</H3>
<PRE>
public static <A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" title="enum in net.floodlightcontroller.devicemanager">IDeviceService.DeviceField</A>[] <B>values</B>()</PRE>
<DL>
<DD>Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (IDeviceService.DeviceField c : IDeviceService.DeviceField.values())
System.out.println(c);
</pre>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>an array containing the constants of this enum type, in
the order they are declared</DL>
</DD>
</DL>
<HR>
<A NAME="valueOf(java.lang.String)"><!-- --></A><H3>
valueOf</H3>
<PRE>
public static <A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" title="enum in net.floodlightcontroller.devicemanager">IDeviceService.DeviceField</A> <B>valueOf</B>(java.lang.String name)</PRE>
<DL>
<DD>Returns the enum constant of this type with the specified name.
The string must match <I>exactly</I> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - the name of the enum constant to be returned.
<DT><B>Returns:</B><DD>the enum constant with the specified name
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalArgumentException</CODE> - if this enum type has no constant
with the specified name
<DD><CODE>java.lang.NullPointerException</CODE> - if the argument is null</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/IDeviceService.DeviceField.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../net/floodlightcontroller/devicemanager/IDeviceService.html" title="interface in net.floodlightcontroller.devicemanager"><B>PREV CLASS</B></A>
<A HREF="../../../net/floodlightcontroller/devicemanager/IEntityClass.html" title="interface in net.floodlightcontroller.devicemanager"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html" target="_top"><B>FRAMES</B></A>
<A HREF="IDeviceService.DeviceField.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#enum_constant_summary">ENUM CONSTANTS</A> | FIELD | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#enum_constant_detail">ENUM CONSTANTS</A> | FIELD | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
| fbotelho-university-code/poseidon | target/docs/net/floodlightcontroller/devicemanager/IDeviceService.DeviceField.html | HTML | apache-2.0 | 16,651 |
{{template "base/base.html" .}}
{{template "base/base_common.html" .}}
{{define "meta"}}<title>{{i18n .Lang "auth.register"}} - {{i18n .Lang "app_name"}}</title>{{end}}
{{define "body"}}
<div class="row">
<div id="content" class="col-md-8 col-md-offset-2">
<div class="box">
<div class="cell first breadcrumb">
<i class="ahead icon-home"></i> <a href="/">{{i18n .Lang "app_name"}}</a>
</div>
<div class="cell last slim">
<div class="row">
<div class="col-md-6 auth-page">
<h3 class="title">
<i class="icon icon-user"></i> {{i18n .Lang "auth.sign_up"}}
</h3>
<form method="POST" action="register">
<div class="form-group {{if .UserNameError}} has-error{{end}}">
<label class="control-label" for="RegisterForm-UserName">{{i18n .Lang "auth.login_username"}}</label>
<input id="RegisterForm-UserName" name="UserName" type="text" value="" class="form-control" placeholder={{i18n .Lang "auth.plz_enter_username"}}>
{{if .UserNameError}}<p class="error-block">{{.UserNameError}}</p>{{end}}
{{if .UserNameHelp}}<p class="help-block">{{.UserNameHelp}}</p>{{end}}
<!--p class="help-block">Min-length is 5, only contains a-z 0-9 - _</p-->
</div>
<div class="form-group {{if .EmailError}} has-error{{end}}">
<label class="control-label" for="RegisterForm-Email">{{i18n .Lang "auth.login_email"}}</label>
<input id="RegisterForm-Email" name="Email" type="text" value="" class="form-control" placeholder={{i18n .Lang "auth.plz_enter_email"}}>
{{if .EmailError}}<p class="error-block">{{.EmailError}}</p>{{end}}
{{if .EmailHelp}}<p class="help-block">{{.EmailHelp}}</p>{{end}}
</div>
<div class="form-group {{if .PasswordError}} has-error{{end}}">
<label class="control-label" for="RegisterForm-Password">{{i18n .Lang "auth.login_password"}}</label>
<input id="RegisterForm-Password" name="Password" type="password" value="" class="form-control" placeholder={{i18n .Lang "auth.plz_enter_password"}}>
{{if .PasswordError}}<p class="error-block">{{.PasswordError}}</p>{{end}}
{{if .PasswordHelp}}<p class="help-block">{{.PasswordHelp}}</p>{{end}}
</div>
<div class="form-group {{if .PasswordReError}} has-error{{end}}">
<label class="control-label" for="RegisterForm-PasswordRe">{{i18n .Lang "auth.retype_password"}}</label>
<input id="RegisterForm-PasswordRe" name="PasswordRe" type="password" value="" class="form-control" placeholder={{i18n .Lang "auth.plz_reenter_password"}}>
{{if .PasswordReError}}<p class="error-block">{{.PasswordReError}}</p>{{end}}
{{if .PasswordReHelp}}<p class="help-block">{{.PasswordReHelp}}</p>{{end}}
</div>
<button class="btn btn-primary">{{i18n .Lang "auth.sign_up"}} <i class="icon-chevron-sign-right"></i></button>
</form>
</div>
<div class="col-md-6 auth-page">
<div class="auth-page">
<h3 class="title">
<i class="icon icon-question"></i> {{i18n .Lang "help"}}
</h3>
<p class="well">
{{i18n .Lang "auth.register_if_you_registered"}}
</p>
<p>
<a href="{{.AppUrl}}login" class="btn btn-default">{{i18n .Lang "auth.login_now"}} <i class="icon-chevron-sign-right"></i></a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{{end}} | codeshredder/infoboard | views/user/register.html | HTML | apache-2.0 | 4,182 |
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>name</title>
<link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg">
<script>var pathToRoot = "../../../../";</script>
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async="async"></script>
<link href="../../../../styles/style.css" rel="Stylesheet">
<link href="../../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../../styles/jetbrains-mono.css" rel="Stylesheet">
<link href="../../../../styles/main.css" rel="Stylesheet">
<script type="text/javascript" src="../../../../scripts/clipboard.js" async="async"></script>
<script type="text/javascript" src="../../../../scripts/navigation-loader.js" async="async"></script>
<script type="text/javascript" src="../../../../scripts/platform-content-handler.js" async="async"></script>
<script type="text/javascript" src="../../../../scripts/main.js" async="async"></script>
</head>
<body>
<div id="container">
<div id="leftColumn">
<div id="logo"></div>
<div id="paneSearch"></div>
<div id="sideMenu"></div>
</div>
<div id="main">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<script type="text/javascript" src="../../../../scripts/pages.js"></script>
<script type="text/javascript" src="../../../../scripts/main.js"></script>
<div class="main-content" id="content" pageIds="org.hexworks.zircon.internal.resource/BuiltInCP437TilesetResource.MS_GOTHIC_16X16/name/#/PointingToDeclaration//-828656838">
<div class="navigation-wrapper" id="navigation-wrapper">
<div class="breadcrumbs"><a href="../../../index.html">zircon.core</a>/<a href="../../index.html">org.hexworks.zircon.internal.resource</a>/<a href="../index.html">BuiltInCP437TilesetResource</a>/<a href="index.html">MS_GOTHIC_16X16</a>/<a href="name.html">name</a></div>
<div class="pull-right d-flex">
<div class="filter-section" id="filter-section"><button class="platform-tag platform-selector common-like" data-active="" data-filter=":zircon.core:dokkaHtml/commonMain">common</button></div>
<div id="searchBar"></div>
</div>
</div>
<div class="cover ">
<h1 class="cover"><span>name</span></h1>
</div>
<div class="divergent-group" data-filterable-current=":zircon.core:dokkaHtml/commonMain" data-filterable-set=":zircon.core:dokkaHtml/commonMain"><div class="with-platform-tags"><span class="pull-right"></span></div>
<div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":zircon.core:dokkaHtml/commonMain"><div class="symbol monospace">val <a href="name.html">name</a>: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content"></a></span><span>© 2020 Copyright</span><span class="pull-right"><span>Sponsored and developed by dokka</span><a href="https://github.com/Kotlin/dokka"><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body>
</html>
| Hexworks/zircon | docs/2020.2.0-RELEASE-KOTLIN/zircon.core/zircon.core/org.hexworks.zircon.internal.resource/-built-in-c-p437-tileset-resource/-m-s_-g-o-t-h-i-c_16-x16/name.html | HTML | apache-2.0 | 3,603 |
<!-- extend base layout -->
{% extends "base.html" %}
{% block content %}
<h3>LogIn please</h3>
<form action="" method="post" name="login">
{{form.hidden_tag()}}
<div class="form-group">
<label>User name:</label>
{{form.username(class='form-control', placeholder='UserName')|safe}}
</div>
<div class="form-group">
<label>Password:</label>
{{form.password(class='form-control', placeholder='Password')|safe}}
</div>
<div class="checkbox">
<p>{{form.remember_me}} Remember Me</p>
</div>
<p><input type="submit" value="Sign In" class="btn btn-primary"></p>
</form>
<p>Not a member? Please, <a href="/register"><b>REGISTER</b></a></p>
{% endblock %}
| jonaubf/factorytech | app/templates/login.html | HTML | apache-2.0 | 699 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Firebase Test</title>
<script src="https://www.gstatic.com/firebasejs/4.5.2/firebase.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src= "script.js"></script>
</head>
<body>
<p>Testing the firebase!</p>
</body>
</html> | Dtan1293/kappapsi_website | Firebase_Code_Snippets/index.html | HTML | apache-2.0 | 381 |
<?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>org.scalacheck.Test.Status</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link type="text/css" media="screen" rel="stylesheet" href="../../lib/template.css" />
<script type="text/javascript" src="../../lib/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>
</head>
<body class="type">
<div id="definition">
<img src="../../lib/trait_big.png" />
<p id="owner"><a name="org" class="extype" href="../package.html">org</a>.<a name="org.scalacheck" class="extype" href="package.html">scalacheck</a>.<a name="org.scalacheck.Test" class="extype" href="Test$.html">Test</a></p>
<h1>Status</h1>
</div>
<h4 class="signature" id="signature">
<span class="kind">trait</span>
<span class="symbol">
<span class="name">Status</span>
<span class="result"> extends AnyRef</span>
</span>
</h4>
<div class="fullcommenttop" id="comment"><div class="comment cmt"><p>Test status</p></div><dl class="attributes block"> <dt>Attributes</dt><dd>sealed </dd></dl><div class="toggleContainer block">
<span class="toggle">Linear Supertypes</span>
<div class="superTypes hiddenContent">AnyRef, <span name="scala.Any" class="extype">Any</span></div>
</div><div class="toggleContainer block">
<span class="toggle">Known Subclasses</span>
<div class="subClasses hiddenContent"><a name="org.scalacheck.Test.Exhausted" class="extype" href="Test$$Exhausted$.html">Exhausted</a>, <a name="org.scalacheck.Test.Failed" class="extype" href="Test$$Failed.html">Failed</a>, <a name="org.scalacheck.Test.GenException" class="extype" href="Test$$GenException.html">GenException</a>, <a name="org.scalacheck.Test.Passed" class="extype" href="Test$$Passed$.html">Passed</a>, <a name="org.scalacheck.Test.PropException" class="extype" href="Test$$PropException.html">PropException</a>, <a name="org.scalacheck.Test.Proved" class="extype" href="Test$$Proved.html">Proved</a></div>
</div></div>
<div id="template">
<div id="mbrsel">
<div id="textfilter"><span class="pre"></span><span class="input"><input accesskey="/" type="text" /></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</span>
<ol><li class="hideall out"><span>Hide All</span></li>
<li class="showall in"><span>Show all</span></li></ol>
<ol id="linearization"><li name="org.scalacheck.Test.Status" class="in"><span>Status</span></li><li name="scala.AnyRef" class="in"><span>AnyRef</span></li><li name="scala.Any" class="in"><span>Any</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 class="values members" id="values">
<h3>Value Members</h3>
<ol><li visbl="pub" name="scala.AnyRef#!=" data-isabs="false">
<a id="!=(AnyRef):Boolean"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">!=</span>
<span class="params">(<span name="arg0">arg0: AnyRef</span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li visbl="pub" name="scala.Any#!=" data-isabs="false">
<a id="!=(Any):Boolean"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">!=</span>
<span class="params">(<span name="arg0">arg0: <span name="scala.Any" class="extype">Any</span></span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li visbl="pub" name="scala.AnyRef###" data-isabs="false">
<a id="##():Int"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">##</span>
<span class="params">()</span><span class="result">: <span name="scala.Int" class="extype">Int</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li visbl="pub" name="scala.AnyRef#==" data-isabs="false">
<a id="==(AnyRef):Boolean"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">==</span>
<span class="params">(<span name="arg0">arg0: AnyRef</span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li visbl="pub" name="scala.Any#==" data-isabs="false">
<a id="==(Any):Boolean"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">==</span>
<span class="params">(<span name="arg0">arg0: <span name="scala.Any" class="extype">Any</span></span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li visbl="pub" name="scala.Any#asInstanceOf" data-isabs="false">
<a id="asInstanceOf[T0]:T0"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">asInstanceOf</span>
<span class="tparams">[<span name="T0">T0</span>]</span>
<span class="result">: T0</span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li visbl="prt" name="scala.AnyRef#clone" data-isabs="false">
<a id="clone():AnyRef"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">clone</span>
<span class="params">()</span><span class="result">: AnyRef</span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a name="java.lang" class="extype" href="../../java/lang/package.html">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 visbl="pub" name="scala.AnyRef#eq" data-isabs="false">
<a id="eq(AnyRef):Boolean"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">eq</span>
<span class="params">(<span name="arg0">arg0: AnyRef</span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li visbl="pub" name="scala.AnyRef#equals" data-isabs="false">
<a id="equals(Any):Boolean"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">equals</span>
<span class="params">(<span name="arg0">arg0: <span name="scala.Any" class="extype">Any</span></span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li visbl="prt" name="scala.AnyRef#finalize" data-isabs="false">
<a id="finalize():Unit"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">finalize</span>
<span class="params">()</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a name="java.lang" class="extype" href="../../java/lang/package.html">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 visbl="pub" name="scala.AnyRef#getClass" data-isabs="false">
<a id="getClass():java.lang.Class[_]"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">getClass</span>
<span class="params">()</span><span class="result">: java.lang.Class[_]</span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li visbl="pub" name="scala.AnyRef#hashCode" data-isabs="false">
<a id="hashCode():Int"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">hashCode</span>
<span class="params">()</span><span class="result">: <span name="scala.Int" class="extype">Int</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li visbl="pub" name="scala.Any#isInstanceOf" data-isabs="false">
<a id="isInstanceOf[T0]:Boolean"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">isInstanceOf</span>
<span class="tparams">[<span name="T0">T0</span>]</span>
<span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li visbl="pub" name="scala.AnyRef#ne" data-isabs="false">
<a id="ne(AnyRef):Boolean"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">ne</span>
<span class="params">(<span name="arg0">arg0: AnyRef</span>)</span><span class="result">: <span name="scala.Boolean" class="extype">Boolean</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li visbl="pub" name="scala.AnyRef#notify" data-isabs="false">
<a id="notify():Unit"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">notify</span>
<span class="params">()</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li visbl="pub" name="scala.AnyRef#notifyAll" data-isabs="false">
<a id="notifyAll():Unit"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">notifyAll</span>
<span class="params">()</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li visbl="pub" name="scala.AnyRef#synchronized" data-isabs="false">
<a id="synchronized[T0](⇒ T0):T0"></a>
<h4 class="signature">
<span class="kind">def</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: ⇒ T0</span>)</span><span class="result">: T0</span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </dd><dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li visbl="pub" name="scala.AnyRef#toString" data-isabs="false">
<a id="toString():String"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">toString</span>
<span class="params">()</span><span class="result">: <span name="java.lang.String" class="extype">String</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li visbl="pub" name="scala.AnyRef#wait" data-isabs="false">
<a id="wait():Unit"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">wait</span>
<span class="params">()</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </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 visbl="pub" name="scala.AnyRef#wait" data-isabs="false">
<a id="wait(Long,Int):Unit"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">wait</span>
<span class="params">(<span name="arg0">arg0: <span name="scala.Long" class="extype">Long</span></span>, <span name="arg1">arg1: <span name="scala.Int" class="extype">Int</span></span>)</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </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 visbl="pub" name="scala.AnyRef#wait" data-isabs="false">
<a id="wait(Long):Unit"></a>
<h4 class="signature">
<span class="kind">def</span>
<span class="symbol">
<span class="name">wait</span>
<span class="params">(<span name="arg0">arg0: <span name="scala.Long" class="extype">Long</span></span>)</span><span class="result">: <span name="scala.Unit" class="extype">Unit</span></span>
</span>
</h4>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>final </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></ol>
</div>
<div name="scala.AnyRef" class="parent">
<h3>Inherited from AnyRef</h3>
</div><div name="scala.Any" class="parent">
<h3>Inherited from <span name="scala.Any" class="extype">Any</span></h3>
</div>
</div>
<div id="tooltip"></div>
</body>
</html> | JimCallahan/Graphics | external/scalacheck/doc/org/scalacheck/Test$$Status.html | HTML | apache-2.0 | 17,009 |
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>tileType</title>
<link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg">
<script>var pathToRoot = "../../../../";</script>
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async="async"></script>
<link href="../../../../styles/style.css" rel="Stylesheet">
<link href="../../../../styles/logo-styles.css" rel="Stylesheet">
<link href="../../../../styles/jetbrains-mono.css" rel="Stylesheet">
<link href="../../../../styles/main.css" rel="Stylesheet">
<script type="text/javascript" src="../../../../scripts/clipboard.js" async="async"></script>
<script type="text/javascript" src="../../../../scripts/navigation-loader.js" async="async"></script>
<script type="text/javascript" src="../../../../scripts/platform-content-handler.js" async="async"></script>
<script type="text/javascript" src="../../../../scripts/main.js" async="async"></script>
</head>
<body>
<div id="container">
<div id="leftColumn">
<div id="logo"></div>
<div id="paneSearch"></div>
<div id="sideMenu"></div>
</div>
<div id="main">
<div id="leftToggler"><span class="icon-toggler"></span></div>
<script type="text/javascript" src="../../../../scripts/pages.js"></script>
<script type="text/javascript" src="../../../../scripts/main.js"></script>
<div class="main-content" id="content" pageIds="org.hexworks.zircon.internal.resource/BuiltInCP437TilesetResource.YOBBO_20X20/tileType/#/PointingToDeclaration//-828656838">
<div class="navigation-wrapper" id="navigation-wrapper">
<div class="breadcrumbs"><a href="../../../index.html">zircon.core</a>/<a href="../../index.html">org.hexworks.zircon.internal.resource</a>/<a href="../index.html">BuiltInCP437TilesetResource</a>/<a href="index.html">YOBBO_20X20</a>/<a href="tile-type.html">tileType</a></div>
<div class="pull-right d-flex">
<div class="filter-section" id="filter-section"><button class="platform-tag platform-selector common-like" data-active="" data-filter=":zircon.core:dokkaHtml/commonMain">common</button></div>
<div id="searchBar"></div>
</div>
</div>
<div class="cover ">
<h1 class="cover"><span>tile</span><wbr></wbr><span>Type</span></h1>
</div>
<div class="divergent-group" data-filterable-current=":zircon.core:dokkaHtml/commonMain" data-filterable-set=":zircon.core:dokkaHtml/commonMain"><div class="with-platform-tags"><span class="pull-right"></span></div>
<div>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":zircon.core:dokkaHtml/commonMain"><div class="symbol monospace">open override val <a href="tile-type.html">tileType</a>: <a href="../../-tile-type/index.html">TileType</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content"></a></span><span>© 2020 Copyright</span><span class="pull-right"><span>Sponsored and developed by dokka</span><a href="https://github.com/Kotlin/dokka"><span class="padded-icon"></span></a></span></div>
</div>
</div>
</body>
</html>
| Hexworks/zircon | docs/2020.2.0-RELEASE-KOTLIN/zircon.core/zircon.core/org.hexworks.zircon.internal.resource/-built-in-c-p437-tileset-resource/-y-o-b-b-o_20-x20/tile-type.html | HTML | apache-2.0 | 3,622 |
<!-- -*- mode: Org; auto-fill-mode 0 -*- -->
{% from "_helper.html" import loggedin_msg %}
{% from "_helper.html" import nav_link %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Cloud Mesh for FutureGrid, OpenStack, Eucalyptus, Azure</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!--link rel="stylesheet/less" href="less/bootstrap.less" type="text/css" /-->
<!--link rel="stylesheet/less" href="less/responsive.less" type="text/css" /-->
<!--script src="js/less-1.3.3.min.js"></script-->
<!--append ‘#!watch’ to the browser URL, then refresh the page. -->
<!-- jquery and jquery ui -->
<script type="text/javascript" charset="utf8" src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript" charset="utf8" src="//code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.4/css/jquery-ui.min.css">
<!-- fail back to local themeed jquery ui css
<link rel="stylesheet" href="{{ url_for('static', filename='library/jquery-ui/themes/base/minified/jquery-ui.min.css') }}" />
-->
<!-- bootstrap related -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" />
<!-- Datatables -->
<script type="text/javascript" charset="utf8" src="//cdn.datatables.net/1.10.2/js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.2/css/jquery.dataTables.css" />
<script src="//cdn.datatables.net/colreorder/1.1.2/js/dataTables.colReorder.min.js"></script>
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/colreorder/1.1.2/css/dataTables.colReorder.css" />
<script src="//cdn.datatables.net/colvis/1.1.1/js/dataTables.colVis.min.js"></script>
<link rel="stylesheet" href="//cdn.datatables.net/colvis/1.1.1/css/dataTables.colVis.min.css"/>
<script src="//cdn.datatables.net/responsive/1.0.1/js/dataTables.responsive.min.js"></script>
<link rel="stylesheet" href="//cdn.datatables.net/responsive/1.0.1/css/dataTables.responsive.css"/>
<!--
fail back to local resources.
<link rel="stylesheet" href="{{ url_for('static', filename='library/DataTables-1.9.4/media/css/jquery.dataTables.css') }}" />
<link rel="stylesheet" href="{{ url_for('static', filename='library/DataTables-1.9.4/extras/ColVis/media/css/ColVis.css') }}" />
-->
<!--
Bootstrap themes
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootswatch/3.2.0+2/spacelab/bootstrap.css">
-->
<script src="/static/js/jeditable.js" type="text/javascript" charset="utf-8"></script>
<script src="/static/js/jquery.sparkline.min.js" type="text/javascript" charset="utf-8"></script>
<!--<link href="css/style.css" rel="stylesheet">-->
<link rel="stylesheet" href="{{ url_for('static', filename='css/table.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/input.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/datepicker.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/login.css') }}">
{% include "custom-css.html" %}
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="img/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="img/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="{{ url_for('static', filename='img/cm-logo-inverted.ico') }}">
<!--
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
-->
</head>
<body>
<nav class="navbar navbar-default navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="/">
<span style="font-size: 12px;" class="fa-stack fa-lg">
<i class="fa fa-cloud fa-stack-2x" style="color:white"></i>
<i class="fa fa-th fa-stack-1x" style="color:grey"></i>
</a>
</div>
<div class="navbar-text pull-right" style="position: relative; z-index: 9999">
{{ loggedin_msg() }}
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
{% include "menu-top.html" %}
</ul>
</div>
</div>
</nav>
<div class="container-fluid">
<div class="row clearfix">
<div class="col-md-12 column">
<div class="row clearfix">
<div class="col-md-3 column">
{% include "menu.html" %}
<footer>
<hr>
<address>
© 2013, Cloud Mesh {{ version
}}, Indiana University. <br>
Need more information? Please, contact
<a
href="mailto:laszewski@gmail.com?Subject=Cloudmesh%20Info&Body=Gregor:%0D%0AMy
reason for contating you is ....">
Gregor von Laszewski, laszewski@gmail.com</a>
</address>
</footer>
</div>
<div class="col-md-9 column">
{% block content %}{% endblock %}
<div class="row clearfix">
<div class="col-md-4 column">
{% block contentsmall11 %}{% endblock %}
</div>
<div class="col-md-4 column">
{% block contentsmall12 %}{% endblock %}
</div>
<div class="col-md-4 column">
{% block contentsmall13 %}{% endblock %}
</div>
</div>
<div class="row clearfix">
<div class="col-md-4 column">
{% block contentsmall21 %}{% endblock %}
</div>
<div class="col-md-4 column">
{% block contentsmall22 %}{% endblock %}
</div>
<div class="col-md-4 column">
{% block contentsmall23 %}{% endblock %}
</div>
</div>
<div class="row clearfix">
<div class="col-md-4 column">
{% block contentsmall31 %}{% endblock %}
</div>
<div class="col-md-4 column">
{% block contentsmall32 %}{% endblock %}
</div>
<div class="col-md-4 column">
{% block contentsmall33 %}{% endblock %}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
| rajpushkar83/cloudmesh | cloudmesh_web/templates/layout/layout.html | HTML | apache-2.0 | 7,064 |
<!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_80) on Thu Jun 18 14:08:48 EDT 2015 -->
<title>Uses of Class org.apache.cassandra.thrift.Cassandra.Processor.execute_cql_query (apache-cassandra API)</title>
<meta name="date" content="2015-06-18">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.cassandra.thrift.Cassandra.Processor.execute_cql_query (apache-cassandra API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/cassandra/thrift/Cassandra.Processor.execute_cql_query.html" title="class in org.apache.cassandra.thrift">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/cassandra/thrift/class-use/Cassandra.Processor.execute_cql_query.html" target="_top">Frames</a></li>
<li><a href="Cassandra.Processor.execute_cql_query.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.cassandra.thrift.Cassandra.Processor.execute_cql_query" class="title">Uses of Class<br>org.apache.cassandra.thrift.Cassandra.Processor.execute_cql_query</h2>
</div>
<div class="classUseContainer">No usage of org.apache.cassandra.thrift.Cassandra.Processor.execute_cql_query</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/cassandra/thrift/Cassandra.Processor.execute_cql_query.html" title="class in org.apache.cassandra.thrift">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/cassandra/thrift/class-use/Cassandra.Processor.execute_cql_query.html" target="_top">Frames</a></li>
<li><a href="Cassandra.Processor.execute_cql_query.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 © 2015 The Apache Software Foundation</small></p>
</body>
</html>
| anuragkapur/cassandra-2.1.2-ak-skynet | apache-cassandra-2.0.16/javadoc/org/apache/cassandra/thrift/class-use/Cassandra.Processor.execute_cql_query.html | HTML | apache-2.0 | 4,605 |
<!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_05) on Sun Dec 23 21:05:23 JST 2012 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class twitter4j.examples.list.CreateUserList (twitter4j-examples 3.0.3 API)</title>
<meta name="date" content="2012-12-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 twitter4j.examples.list.CreateUserList (twitter4j-examples 3.0.3 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../twitter4j/examples/list/CreateUserList.html" title="class in twitter4j.examples.list">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?twitter4j/examples/list/class-use/CreateUserList.html" target="_top">Frames</a></li>
<li><a href="CreateUserList.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 twitter4j.examples.list.CreateUserList" class="title">Uses of Class<br>twitter4j.examples.list.CreateUserList</h2>
</div>
<div class="classUseContainer">No usage of twitter4j.examples.list.CreateUserList</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="../../../../twitter4j/examples/list/CreateUserList.html" title="class in twitter4j.examples.list">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?twitter4j/examples/list/class-use/CreateUserList.html" target="_top">Frames</a></li>
<li><a href="CreateUserList.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2012. All Rights Reserved.</small></p>
</body>
</html>
| smb510/twitterbyName | twitter4j-examples/javadoc/twitter4j/examples/list/class-use/CreateUserList.html | HTML | apache-2.0 | 4,313 |
<!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_32) on Tue Jun 18 11:08:42 PDT 2013 -->
<TITLE>
CreateConfigurationTemplateResult (AWS SDK for Java - 1.4.7)
</TITLE>
<META NAME="date" CONTENT="2013-06-18">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../JavaDoc.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="CreateConfigurationTemplateResult (AWS SDK for Java - 1.4.7)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<span id="feedback_section"><h3>Did this page help you?</h3> <a id="feedback_yes" target="_blank">Yes</a> <a id="feedback_no" target="_blank">No</a> <a id="go_cti" target="_blank">Tell us about it...</a></span>
<script type="text/javascript">
var javadoc_root_name = "/javadoc/";
var javadoc_path = location.href.substring(0, location.href.lastIndexOf(javadoc_root_name) + javadoc_root_name.length);
var file_path = location.href.substring(location.href.lastIndexOf(javadoc_root_name) + javadoc_root_name.length);
var feedback_yes_url = javadoc_path + "javadoc-resources/feedbackyes.html?topic_id=";
var feedback_no_url = javadoc_path + "javadoc-resources/feedbackno.html?topic_id=";
var feedback_tellmore_url = "https://aws-portal.amazon.com/gp/aws/html-forms-controller/documentation/aws_doc_feedback_04?service_name=Java-Ref&file_name=";
if(file_path != "overview-frame.html") {
var file_name = file_path.replace(/[/.]/g, '_');
document.getElementById("feedback_yes").setAttribute("href", feedback_yes_url + file_name);
document.getElementById("feedback_no").setAttribute("href", feedback_no_url + file_name);
document.getElementById("go_cti").setAttribute("href", feedback_tellmore_url + file_name);
} else {
// hide the header in overview-frame page
document.getElementById("feedback_section").innerHTML = "";
}
</script>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateRequest.html" title="class in com.amazonaws.services.elasticbeanstalk.model"><B>PREV CLASS</B></A>
<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateEnvironmentRequest.html" title="class in com.amazonaws.services.elasticbeanstalk.model"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" target="_top"><B>FRAMES</B></A>
<A HREF="CreateConfigurationTemplateResult.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <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">
com.amazonaws.services.elasticbeanstalk.model</FONT>
<BR>
Class CreateConfigurationTemplateResult</H2>
<PRE>
<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</A>
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>com.amazonaws.services.elasticbeanstalk.model.CreateConfigurationTemplateResult</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>CreateConfigurationTemplateResult</B><DT>extends <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A><DT>implements <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</A></DL>
</PRE>
<P>
<p>
Describes the settings for a configuration set.
</p>
<P>
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../serialized-form.html#com.amazonaws.services.elasticbeanstalk.model.CreateConfigurationTemplateResult">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="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#CreateConfigurationTemplateResult()">CreateConfigurationTemplateResult</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== 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> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#equals(java.lang.Object)">equals</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A> obj)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#getApplicationName()">getApplicationName</A></B>()</CODE>
<BR>
The name of the application associated with this configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html?is-external=true" title="class or interface in java.util">Date</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#getDateCreated()">getDateCreated</A></B>()</CODE>
<BR>
The date (in UTC time) when this configuration set was created.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html?is-external=true" title="class or interface in java.util">Date</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#getDateUpdated()">getDateUpdated</A></B>()</CODE>
<BR>
The date (in UTC time) when this configuration set was last modified.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#getDeploymentStatus()">getDeploymentStatus</A></B>()</CODE>
<BR>
If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#getDescription()">getDescription</A></B>()</CODE>
<BR>
Describes this configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#getEnvironmentName()">getEnvironmentName</A></B>()</CODE>
<BR>
If not <code>null</code>, the name of the environment for this
configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A><<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationOptionSetting.html" title="class in com.amazonaws.services.elasticbeanstalk.model">ConfigurationOptionSetting</A>></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#getOptionSettings()">getOptionSettings</A></B>()</CODE>
<BR>
A list of the configuration options and their values in this
configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#getSolutionStackName()">getSolutionStackName</A></B>()</CODE>
<BR>
The name of the solution stack this configuration set uses.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#getTemplateName()">getTemplateName</A></B>()</CODE>
<BR>
If not <code>null</code>, the name of the configuration template for
this configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#hashCode()">hashCode</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#setApplicationName(java.lang.String)">setApplicationName</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> applicationName)</CODE>
<BR>
The name of the application associated with this configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#setDateCreated(java.util.Date)">setDateCreated</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html?is-external=true" title="class or interface in java.util">Date</A> dateCreated)</CODE>
<BR>
The date (in UTC time) when this configuration set was created.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#setDateUpdated(java.util.Date)">setDateUpdated</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html?is-external=true" title="class or interface in java.util">Date</A> dateUpdated)</CODE>
<BR>
The date (in UTC time) when this configuration set was last modified.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#setDeploymentStatus(com.amazonaws.services.elasticbeanstalk.model.ConfigurationDeploymentStatus)">setDeploymentStatus</A></B>(<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationDeploymentStatus.html" title="enum in com.amazonaws.services.elasticbeanstalk.model">ConfigurationDeploymentStatus</A> deploymentStatus)</CODE>
<BR>
If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#setDeploymentStatus(java.lang.String)">setDeploymentStatus</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> deploymentStatus)</CODE>
<BR>
If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#setDescription(java.lang.String)">setDescription</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> description)</CODE>
<BR>
Describes this configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#setEnvironmentName(java.lang.String)">setEnvironmentName</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> environmentName)</CODE>
<BR>
If not <code>null</code>, the name of the environment for this
configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#setOptionSettings(java.util.Collection)">setOptionSettings</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A><<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationOptionSetting.html" title="class in com.amazonaws.services.elasticbeanstalk.model">ConfigurationOptionSetting</A>> optionSettings)</CODE>
<BR>
A list of the configuration options and their values in this
configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#setSolutionStackName(java.lang.String)">setSolutionStackName</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> solutionStackName)</CODE>
<BR>
The name of the solution stack this configuration set uses.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#setTemplateName(java.lang.String)">setTemplateName</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> templateName)</CODE>
<BR>
If not <code>null</code>, the name of the configuration template for
this configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#toString()">toString</A></B>()</CODE>
<BR>
Returns a string representation of this object; useful for testing and
debugging.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#withApplicationName(java.lang.String)">withApplicationName</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> applicationName)</CODE>
<BR>
The name of the application associated with this configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#withDateCreated(java.util.Date)">withDateCreated</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html?is-external=true" title="class or interface in java.util">Date</A> dateCreated)</CODE>
<BR>
The date (in UTC time) when this configuration set was created.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#withDateUpdated(java.util.Date)">withDateUpdated</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html?is-external=true" title="class or interface in java.util">Date</A> dateUpdated)</CODE>
<BR>
The date (in UTC time) when this configuration set was last modified.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#withDeploymentStatus(com.amazonaws.services.elasticbeanstalk.model.ConfigurationDeploymentStatus)">withDeploymentStatus</A></B>(<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationDeploymentStatus.html" title="enum in com.amazonaws.services.elasticbeanstalk.model">ConfigurationDeploymentStatus</A> deploymentStatus)</CODE>
<BR>
If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#withDeploymentStatus(java.lang.String)">withDeploymentStatus</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> deploymentStatus)</CODE>
<BR>
If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#withDescription(java.lang.String)">withDescription</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> description)</CODE>
<BR>
Describes this configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#withEnvironmentName(java.lang.String)">withEnvironmentName</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> environmentName)</CODE>
<BR>
If not <code>null</code>, the name of the environment for this
configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#withOptionSettings(java.util.Collection)">withOptionSettings</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A><<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationOptionSetting.html" title="class in com.amazonaws.services.elasticbeanstalk.model">ConfigurationOptionSetting</A>> optionSettings)</CODE>
<BR>
A list of the configuration options and their values in this
configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#withOptionSettings(com.amazonaws.services.elasticbeanstalk.model.ConfigurationOptionSetting...)">withOptionSettings</A></B>(<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationOptionSetting.html" title="class in com.amazonaws.services.elasticbeanstalk.model">ConfigurationOptionSetting</A>... optionSettings)</CODE>
<BR>
A list of the configuration options and their values in this
configuration set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#withSolutionStackName(java.lang.String)">withSolutionStackName</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> solutionStackName)</CODE>
<BR>
The name of the solution stack this configuration set uses.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html#withTemplateName(java.lang.String)">withTemplateName</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> templateName)</CODE>
<BR>
If not <code>null</code>, the name of the configuration template for
this configuration set.</TD>
</TR>
</TABLE>
<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.<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
</TR>
</TABLE>
<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="CreateConfigurationTemplateResult()"><!-- --></A><H3>
CreateConfigurationTemplateResult</H3>
<PRE>
public <B>CreateConfigurationTemplateResult</B>()</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="getSolutionStackName()"><!-- --></A><H3>
getSolutionStackName</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getSolutionStackName</B>()</PRE>
<DL>
<DD>The name of the solution stack this configuration set uses.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>0 - 100<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The name of the solution stack this configuration set uses.</DL>
</DD>
</DL>
<HR>
<A NAME="setSolutionStackName(java.lang.String)"><!-- --></A><H3>
setSolutionStackName</H3>
<PRE>
public void <B>setSolutionStackName</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> solutionStackName)</PRE>
<DL>
<DD>The name of the solution stack this configuration set uses.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>0 - 100<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>solutionStackName</CODE> - The name of the solution stack this configuration set uses.</DL>
</DD>
</DL>
<HR>
<A NAME="withSolutionStackName(java.lang.String)"><!-- --></A><H3>
withSolutionStackName</H3>
<PRE>
public <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A> <B>withSolutionStackName</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> solutionStackName)</PRE>
<DL>
<DD>The name of the solution stack this configuration set uses.
<p>
Returns a reference to this object so that method calls can be chained together.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>0 - 100<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>solutionStackName</CODE> - The name of the solution stack this configuration set uses.
<DT><B>Returns:</B><DD>A reference to this updated object so that method calls can be chained
together.</DL>
</DD>
</DL>
<HR>
<A NAME="getApplicationName()"><!-- --></A><H3>
getApplicationName</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getApplicationName</B>()</PRE>
<DL>
<DD>The name of the application associated with this configuration set.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>1 - 100<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The name of the application associated with this configuration set.</DL>
</DD>
</DL>
<HR>
<A NAME="setApplicationName(java.lang.String)"><!-- --></A><H3>
setApplicationName</H3>
<PRE>
public void <B>setApplicationName</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> applicationName)</PRE>
<DL>
<DD>The name of the application associated with this configuration set.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>1 - 100<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>applicationName</CODE> - The name of the application associated with this configuration set.</DL>
</DD>
</DL>
<HR>
<A NAME="withApplicationName(java.lang.String)"><!-- --></A><H3>
withApplicationName</H3>
<PRE>
public <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A> <B>withApplicationName</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> applicationName)</PRE>
<DL>
<DD>The name of the application associated with this configuration set.
<p>
Returns a reference to this object so that method calls can be chained together.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>1 - 100<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>applicationName</CODE> - The name of the application associated with this configuration set.
<DT><B>Returns:</B><DD>A reference to this updated object so that method calls can be chained
together.</DL>
</DD>
</DL>
<HR>
<A NAME="getTemplateName()"><!-- --></A><H3>
getTemplateName</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getTemplateName</B>()</PRE>
<DL>
<DD>If not <code>null</code>, the name of the configuration template for
this configuration set.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>1 - 100<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>If not <code>null</code>, the name of the configuration template for
this configuration set.</DL>
</DD>
</DL>
<HR>
<A NAME="setTemplateName(java.lang.String)"><!-- --></A><H3>
setTemplateName</H3>
<PRE>
public void <B>setTemplateName</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> templateName)</PRE>
<DL>
<DD>If not <code>null</code>, the name of the configuration template for
this configuration set.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>1 - 100<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>templateName</CODE> - If not <code>null</code>, the name of the configuration template for
this configuration set.</DL>
</DD>
</DL>
<HR>
<A NAME="withTemplateName(java.lang.String)"><!-- --></A><H3>
withTemplateName</H3>
<PRE>
public <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A> <B>withTemplateName</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> templateName)</PRE>
<DL>
<DD>If not <code>null</code>, the name of the configuration template for
this configuration set.
<p>
Returns a reference to this object so that method calls can be chained together.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>1 - 100<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>templateName</CODE> - If not <code>null</code>, the name of the configuration template for
this configuration set.
<DT><B>Returns:</B><DD>A reference to this updated object so that method calls can be chained
together.</DL>
</DD>
</DL>
<HR>
<A NAME="getDescription()"><!-- --></A><H3>
getDescription</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getDescription</B>()</PRE>
<DL>
<DD>Describes this configuration set.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>0 - 200<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>Describes this configuration set.</DL>
</DD>
</DL>
<HR>
<A NAME="setDescription(java.lang.String)"><!-- --></A><H3>
setDescription</H3>
<PRE>
public void <B>setDescription</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> description)</PRE>
<DL>
<DD>Describes this configuration set.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>0 - 200<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>description</CODE> - Describes this configuration set.</DL>
</DD>
</DL>
<HR>
<A NAME="withDescription(java.lang.String)"><!-- --></A><H3>
withDescription</H3>
<PRE>
public <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A> <B>withDescription</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> description)</PRE>
<DL>
<DD>Describes this configuration set.
<p>
Returns a reference to this object so that method calls can be chained together.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>0 - 200<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>description</CODE> - Describes this configuration set.
<DT><B>Returns:</B><DD>A reference to this updated object so that method calls can be chained
together.</DL>
</DD>
</DL>
<HR>
<A NAME="getEnvironmentName()"><!-- --></A><H3>
getEnvironmentName</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getEnvironmentName</B>()</PRE>
<DL>
<DD>If not <code>null</code>, the name of the environment for this
configuration set.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>4 - 23<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>If not <code>null</code>, the name of the environment for this
configuration set.</DL>
</DD>
</DL>
<HR>
<A NAME="setEnvironmentName(java.lang.String)"><!-- --></A><H3>
setEnvironmentName</H3>
<PRE>
public void <B>setEnvironmentName</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> environmentName)</PRE>
<DL>
<DD>If not <code>null</code>, the name of the environment for this
configuration set.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>4 - 23<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>environmentName</CODE> - If not <code>null</code>, the name of the environment for this
configuration set.</DL>
</DD>
</DL>
<HR>
<A NAME="withEnvironmentName(java.lang.String)"><!-- --></A><H3>
withEnvironmentName</H3>
<PRE>
public <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A> <B>withEnvironmentName</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> environmentName)</PRE>
<DL>
<DD>If not <code>null</code>, the name of the environment for this
configuration set.
<p>
Returns a reference to this object so that method calls can be chained together.
<p>
<b>Constraints:</b><br/>
<b>Length: </b>4 - 23<br/>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>environmentName</CODE> - If not <code>null</code>, the name of the environment for this
configuration set.
<DT><B>Returns:</B><DD>A reference to this updated object so that method calls can be chained
together.</DL>
</DD>
</DL>
<HR>
<A NAME="getDeploymentStatus()"><!-- --></A><H3>
getDeploymentStatus</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getDeploymentStatus</B>()</PRE>
<DL>
<DD>If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"> <p>
<code>null</code>: This configuration is not associated with a running
environment. </value> <value name="pending"> <p> <code>pending</code>:
This is a draft configuration that is not deployed to the associated
environment but is in the process of deploying. </value> <value
name="deployed"> <p> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</value> <value name="failed"> <p> <code>failed</code>: This is a
draft configuration, that failed to successfully deploy. </value>
</enumValues> <ul> <li> <code>null</code>: This configuration is not
associated with a running environment. </li> <li>
<code>pending</code>: This is a draft configuration that is not
deployed to the associated environment but is in the process of
deploying. </li> <li> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</li> <li> <code>failed</code>: This is a draft configuration that
failed to successfully deploy. </li> </ul>
<p>
<b>Constraints:</b><br/>
<b>Allowed Values: </b>deployed, pending, failed
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"> <p>
<code>null</code>: This configuration is not associated with a running
environment. </value> <value name="pending"> <p> <code>pending</code>:
This is a draft configuration that is not deployed to the associated
environment but is in the process of deploying. </value> <value
name="deployed"> <p> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</value> <value name="failed"> <p> <code>failed</code>: This is a
draft configuration, that failed to successfully deploy. </value>
</enumValues> <ul> <li> <code>null</code>: This configuration is not
associated with a running environment. </li> <li>
<code>pending</code>: This is a draft configuration that is not
deployed to the associated environment but is in the process of
deploying. </li> <li> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</li> <li> <code>failed</code>: This is a draft configuration that
failed to successfully deploy. </li> </ul><DT><B>See Also:</B><DD><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationDeploymentStatus.html" title="enum in com.amazonaws.services.elasticbeanstalk.model"><CODE>ConfigurationDeploymentStatus</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="setDeploymentStatus(java.lang.String)"><!-- --></A><H3>
setDeploymentStatus</H3>
<PRE>
public void <B>setDeploymentStatus</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> deploymentStatus)</PRE>
<DL>
<DD>If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"> <p>
<code>null</code>: This configuration is not associated with a running
environment. </value> <value name="pending"> <p> <code>pending</code>:
This is a draft configuration that is not deployed to the associated
environment but is in the process of deploying. </value> <value
name="deployed"> <p> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</value> <value name="failed"> <p> <code>failed</code>: This is a
draft configuration, that failed to successfully deploy. </value>
</enumValues> <ul> <li> <code>null</code>: This configuration is not
associated with a running environment. </li> <li>
<code>pending</code>: This is a draft configuration that is not
deployed to the associated environment but is in the process of
deploying. </li> <li> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</li> <li> <code>failed</code>: This is a draft configuration that
failed to successfully deploy. </li> </ul>
<p>
<b>Constraints:</b><br/>
<b>Allowed Values: </b>deployed, pending, failed
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>deploymentStatus</CODE> - If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"> <p>
<code>null</code>: This configuration is not associated with a running
environment. </value> <value name="pending"> <p> <code>pending</code>:
This is a draft configuration that is not deployed to the associated
environment but is in the process of deploying. </value> <value
name="deployed"> <p> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</value> <value name="failed"> <p> <code>failed</code>: This is a
draft configuration, that failed to successfully deploy. </value>
</enumValues> <ul> <li> <code>null</code>: This configuration is not
associated with a running environment. </li> <li>
<code>pending</code>: This is a draft configuration that is not
deployed to the associated environment but is in the process of
deploying. </li> <li> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</li> <li> <code>failed</code>: This is a draft configuration that
failed to successfully deploy. </li> </ul><DT><B>See Also:</B><DD><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationDeploymentStatus.html" title="enum in com.amazonaws.services.elasticbeanstalk.model"><CODE>ConfigurationDeploymentStatus</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="withDeploymentStatus(java.lang.String)"><!-- --></A><H3>
withDeploymentStatus</H3>
<PRE>
public <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A> <B>withDeploymentStatus</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> deploymentStatus)</PRE>
<DL>
<DD>If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"> <p>
<code>null</code>: This configuration is not associated with a running
environment. </value> <value name="pending"> <p> <code>pending</code>:
This is a draft configuration that is not deployed to the associated
environment but is in the process of deploying. </value> <value
name="deployed"> <p> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</value> <value name="failed"> <p> <code>failed</code>: This is a
draft configuration, that failed to successfully deploy. </value>
</enumValues> <ul> <li> <code>null</code>: This configuration is not
associated with a running environment. </li> <li>
<code>pending</code>: This is a draft configuration that is not
deployed to the associated environment but is in the process of
deploying. </li> <li> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</li> <li> <code>failed</code>: This is a draft configuration that
failed to successfully deploy. </li> </ul>
<p>
Returns a reference to this object so that method calls can be chained together.
<p>
<b>Constraints:</b><br/>
<b>Allowed Values: </b>deployed, pending, failed
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>deploymentStatus</CODE> - If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"> <p>
<code>null</code>: This configuration is not associated with a running
environment. </value> <value name="pending"> <p> <code>pending</code>:
This is a draft configuration that is not deployed to the associated
environment but is in the process of deploying. </value> <value
name="deployed"> <p> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</value> <value name="failed"> <p> <code>failed</code>: This is a
draft configuration, that failed to successfully deploy. </value>
</enumValues> <ul> <li> <code>null</code>: This configuration is not
associated with a running environment. </li> <li>
<code>pending</code>: This is a draft configuration that is not
deployed to the associated environment but is in the process of
deploying. </li> <li> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</li> <li> <code>failed</code>: This is a draft configuration that
failed to successfully deploy. </li> </ul>
<DT><B>Returns:</B><DD>A reference to this updated object so that method calls can be chained
together.<DT><B>See Also:</B><DD><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationDeploymentStatus.html" title="enum in com.amazonaws.services.elasticbeanstalk.model"><CODE>ConfigurationDeploymentStatus</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="setDeploymentStatus(com.amazonaws.services.elasticbeanstalk.model.ConfigurationDeploymentStatus)"><!-- --></A><H3>
setDeploymentStatus</H3>
<PRE>
public void <B>setDeploymentStatus</B>(<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationDeploymentStatus.html" title="enum in com.amazonaws.services.elasticbeanstalk.model">ConfigurationDeploymentStatus</A> deploymentStatus)</PRE>
<DL>
<DD>If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"> <p>
<code>null</code>: This configuration is not associated with a running
environment. </value> <value name="pending"> <p> <code>pending</code>:
This is a draft configuration that is not deployed to the associated
environment but is in the process of deploying. </value> <value
name="deployed"> <p> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</value> <value name="failed"> <p> <code>failed</code>: This is a
draft configuration, that failed to successfully deploy. </value>
</enumValues> <ul> <li> <code>null</code>: This configuration is not
associated with a running environment. </li> <li>
<code>pending</code>: This is a draft configuration that is not
deployed to the associated environment but is in the process of
deploying. </li> <li> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</li> <li> <code>failed</code>: This is a draft configuration that
failed to successfully deploy. </li> </ul>
<p>
<b>Constraints:</b><br/>
<b>Allowed Values: </b>deployed, pending, failed
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>deploymentStatus</CODE> - If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"> <p>
<code>null</code>: This configuration is not associated with a running
environment. </value> <value name="pending"> <p> <code>pending</code>:
This is a draft configuration that is not deployed to the associated
environment but is in the process of deploying. </value> <value
name="deployed"> <p> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</value> <value name="failed"> <p> <code>failed</code>: This is a
draft configuration, that failed to successfully deploy. </value>
</enumValues> <ul> <li> <code>null</code>: This configuration is not
associated with a running environment. </li> <li>
<code>pending</code>: This is a draft configuration that is not
deployed to the associated environment but is in the process of
deploying. </li> <li> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</li> <li> <code>failed</code>: This is a draft configuration that
failed to successfully deploy. </li> </ul><DT><B>See Also:</B><DD><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationDeploymentStatus.html" title="enum in com.amazonaws.services.elasticbeanstalk.model"><CODE>ConfigurationDeploymentStatus</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="withDeploymentStatus(com.amazonaws.services.elasticbeanstalk.model.ConfigurationDeploymentStatus)"><!-- --></A><H3>
withDeploymentStatus</H3>
<PRE>
public <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A> <B>withDeploymentStatus</B>(<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationDeploymentStatus.html" title="enum in com.amazonaws.services.elasticbeanstalk.model">ConfigurationDeploymentStatus</A> deploymentStatus)</PRE>
<DL>
<DD>If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"> <p>
<code>null</code>: This configuration is not associated with a running
environment. </value> <value name="pending"> <p> <code>pending</code>:
This is a draft configuration that is not deployed to the associated
environment but is in the process of deploying. </value> <value
name="deployed"> <p> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</value> <value name="failed"> <p> <code>failed</code>: This is a
draft configuration, that failed to successfully deploy. </value>
</enumValues> <ul> <li> <code>null</code>: This configuration is not
associated with a running environment. </li> <li>
<code>pending</code>: This is a draft configuration that is not
deployed to the associated environment but is in the process of
deploying. </li> <li> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</li> <li> <code>failed</code>: This is a draft configuration that
failed to successfully deploy. </li> </ul>
<p>
Returns a reference to this object so that method calls can be chained together.
<p>
<b>Constraints:</b><br/>
<b>Allowed Values: </b>deployed, pending, failed
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>deploymentStatus</CODE> - If this configuration set is associated with an environment, the
<code>DeploymentStatus</code> parameter indicates the deployment
status of this configuration set: <enumValues> <value name="null"> <p>
<code>null</code>: This configuration is not associated with a running
environment. </value> <value name="pending"> <p> <code>pending</code>:
This is a draft configuration that is not deployed to the associated
environment but is in the process of deploying. </value> <value
name="deployed"> <p> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</value> <value name="failed"> <p> <code>failed</code>: This is a
draft configuration, that failed to successfully deploy. </value>
</enumValues> <ul> <li> <code>null</code>: This configuration is not
associated with a running environment. </li> <li>
<code>pending</code>: This is a draft configuration that is not
deployed to the associated environment but is in the process of
deploying. </li> <li> <code>deployed</code>: This is the configuration
that is currently deployed to the associated running environment.
</li> <li> <code>failed</code>: This is a draft configuration that
failed to successfully deploy. </li> </ul>
<DT><B>Returns:</B><DD>A reference to this updated object so that method calls can be chained
together.<DT><B>See Also:</B><DD><A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationDeploymentStatus.html" title="enum in com.amazonaws.services.elasticbeanstalk.model"><CODE>ConfigurationDeploymentStatus</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getDateCreated()"><!-- --></A><H3>
getDateCreated</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html?is-external=true" title="class or interface in java.util">Date</A> <B>getDateCreated</B>()</PRE>
<DL>
<DD>The date (in UTC time) when this configuration set was created.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The date (in UTC time) when this configuration set was created.</DL>
</DD>
</DL>
<HR>
<A NAME="setDateCreated(java.util.Date)"><!-- --></A><H3>
setDateCreated</H3>
<PRE>
public void <B>setDateCreated</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html?is-external=true" title="class or interface in java.util">Date</A> dateCreated)</PRE>
<DL>
<DD>The date (in UTC time) when this configuration set was created.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>dateCreated</CODE> - The date (in UTC time) when this configuration set was created.</DL>
</DD>
</DL>
<HR>
<A NAME="withDateCreated(java.util.Date)"><!-- --></A><H3>
withDateCreated</H3>
<PRE>
public <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A> <B>withDateCreated</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html?is-external=true" title="class or interface in java.util">Date</A> dateCreated)</PRE>
<DL>
<DD>The date (in UTC time) when this configuration set was created.
<p>
Returns a reference to this object so that method calls can be chained together.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>dateCreated</CODE> - The date (in UTC time) when this configuration set was created.
<DT><B>Returns:</B><DD>A reference to this updated object so that method calls can be chained
together.</DL>
</DD>
</DL>
<HR>
<A NAME="getDateUpdated()"><!-- --></A><H3>
getDateUpdated</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html?is-external=true" title="class or interface in java.util">Date</A> <B>getDateUpdated</B>()</PRE>
<DL>
<DD>The date (in UTC time) when this configuration set was last modified.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The date (in UTC time) when this configuration set was last modified.</DL>
</DD>
</DL>
<HR>
<A NAME="setDateUpdated(java.util.Date)"><!-- --></A><H3>
setDateUpdated</H3>
<PRE>
public void <B>setDateUpdated</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html?is-external=true" title="class or interface in java.util">Date</A> dateUpdated)</PRE>
<DL>
<DD>The date (in UTC time) when this configuration set was last modified.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>dateUpdated</CODE> - The date (in UTC time) when this configuration set was last modified.</DL>
</DD>
</DL>
<HR>
<A NAME="withDateUpdated(java.util.Date)"><!-- --></A><H3>
withDateUpdated</H3>
<PRE>
public <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A> <B>withDateUpdated</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Date.html?is-external=true" title="class or interface in java.util">Date</A> dateUpdated)</PRE>
<DL>
<DD>The date (in UTC time) when this configuration set was last modified.
<p>
Returns a reference to this object so that method calls can be chained together.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>dateUpdated</CODE> - The date (in UTC time) when this configuration set was last modified.
<DT><B>Returns:</B><DD>A reference to this updated object so that method calls can be chained
together.</DL>
</DD>
</DL>
<HR>
<A NAME="getOptionSettings()"><!-- --></A><H3>
getOptionSettings</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A><<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationOptionSetting.html" title="class in com.amazonaws.services.elasticbeanstalk.model">ConfigurationOptionSetting</A>> <B>getOptionSettings</B>()</PRE>
<DL>
<DD>A list of the configuration options and their values in this
configuration set.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>A list of the configuration options and their values in this
configuration set.</DL>
</DD>
</DL>
<HR>
<A NAME="setOptionSettings(java.util.Collection)"><!-- --></A><H3>
setOptionSettings</H3>
<PRE>
public void <B>setOptionSettings</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A><<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationOptionSetting.html" title="class in com.amazonaws.services.elasticbeanstalk.model">ConfigurationOptionSetting</A>> optionSettings)</PRE>
<DL>
<DD>A list of the configuration options and their values in this
configuration set.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>optionSettings</CODE> - A list of the configuration options and their values in this
configuration set.</DL>
</DD>
</DL>
<HR>
<A NAME="withOptionSettings(com.amazonaws.services.elasticbeanstalk.model.ConfigurationOptionSetting...)"><!-- --></A><H3>
withOptionSettings</H3>
<PRE>
public <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A> <B>withOptionSettings</B>(<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationOptionSetting.html" title="class in com.amazonaws.services.elasticbeanstalk.model">ConfigurationOptionSetting</A>... optionSettings)</PRE>
<DL>
<DD>A list of the configuration options and their values in this
configuration set.
<p>
Returns a reference to this object so that method calls can be chained together.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>optionSettings</CODE> - A list of the configuration options and their values in this
configuration set.
<DT><B>Returns:</B><DD>A reference to this updated object so that method calls can be chained
together.</DL>
</DD>
</DL>
<HR>
<A NAME="withOptionSettings(java.util.Collection)"><!-- --></A><H3>
withOptionSettings</H3>
<PRE>
public <A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" title="class in com.amazonaws.services.elasticbeanstalk.model">CreateConfigurationTemplateResult</A> <B>withOptionSettings</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A><<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/ConfigurationOptionSetting.html" title="class in com.amazonaws.services.elasticbeanstalk.model">ConfigurationOptionSetting</A>> optionSettings)</PRE>
<DL>
<DD>A list of the configuration options and their values in this
configuration set.
<p>
Returns a reference to this object so that method calls can be chained together.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>optionSettings</CODE> - A list of the configuration options and their values in this
configuration set.
<DT><B>Returns:</B><DD>A reference to this updated object so that method calls can be chained
together.</DL>
</DD>
</DL>
<HR>
<A NAME="toString()"><!-- --></A><H3>
toString</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>toString</B>()</PRE>
<DL>
<DD>Returns a string representation of this object; useful for testing and
debugging.
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</A></CODE> in class <CODE><A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>A string representation of this object.<DT><B>See Also:</B><DD><A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang"><CODE>Object.toString()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="hashCode()"><!-- --></A><H3>
hashCode</H3>
<PRE>
public int <B>hashCode</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</A></CODE> in class <CODE><A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="equals(java.lang.Object)"><!-- --></A><H3>
equals</H3>
<PRE>
public boolean <B>equals</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A> obj)</PRE>
<DL>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</A></CODE> in class <CODE><A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></DL>
</DD>
<DD><DL>
</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<script src="http://aws.amazon.com/js/urchin.js" type="text/javascript"></script>
<script type="text/javascript">urchinTracker();</script>
<!-- SiteCatalyst code version: H.25.2. Copyright 1996-2012 Adobe, Inc. All Rights Reserved.
More info available at http://www.omniture.com -->
<script language="JavaScript" type="text/javascript" src="https://d36cz9buwru1tt.cloudfront.net/js/sitecatalyst/s_code.min.js (view-source:https://d36cz9buwru1tt.cloudfront.net/js/sitecatalyst/s_code.min.js)" />
<script language="JavaScript" type="text/javascript">
<!--
// Documentation Service Name
s.prop66='AWS SDK for Java';
s.eVar66='D=c66';
// Documentation Guide Name
s.prop65='API Reference';
s.eVar65='D=c65';
var s_code=s.t();if(s_code)document.write(s_code)
//-->
</script>
<script language="JavaScript" type="text/javascript">
<!--if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
//-->
</script>
<noscript>
<img src="http://amazonwebservices.d2.sc.omtrdc.net/b/ss/awsamazondev/1/H.25.2--NS/0" height="1" width="1" border="0" alt="" />
</noscript>
<!--/DO NOT REMOVE/-->
<!-- End SiteCatalyst code version: H.25.2. -->
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateRequest.html" title="class in com.amazonaws.services.elasticbeanstalk.model"><B>PREV CLASS</B></A>
<A HREF="../../../../../com/amazonaws/services/elasticbeanstalk/model/CreateEnvironmentRequest.html" title="class in com.amazonaws.services.elasticbeanstalk.model"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html" target="_top"><B>FRAMES</B></A>
<A HREF="CreateConfigurationTemplateResult.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.
</BODY>
</HTML>
| hobinyoon/aws-java-sdk-1.4.7 | documentation/javadoc/com/amazonaws/services/elasticbeanstalk/model/CreateConfigurationTemplateResult.html | HTML | apache-2.0 | 77,442 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" />
<link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media="all"/>
<link rel="stylesheet" href="../../../../../aui/css/aui-experimental.min.css" media="all"/>
<!--[if IE 9]><link rel="stylesheet" href="../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]-->
<style type="text/css" media="all">
@import url('../../../../../style.css');
@import url('../../../../../tree.css');
</style>
<script src="../../../../../jquery-1.8.3.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script>
<script src="../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script>
<script src="../../../../../package-nodes-tree.js" type="text/javascript"></script>
<script src="../../../../../clover-tree.js" type="text/javascript"></script>
<script src="../../../../../clover.js" type="text/javascript"></script>
<script src="../../../../../clover-descriptions.js" type="text/javascript"></script>
<script src="../../../../../cloud.js" type="text/javascript"></script>
<title>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title>
</head>
<body>
<div id="page">
<header id="header" role="banner">
<nav class="aui-header aui-dropdown2-trigger-group" role="navigation">
<div class="aui-header-inner">
<div class="aui-header-primary">
<h1 id="logo" class="aui-header-logo aui-header-logo-clover">
<a href="http://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</span></a>
</h1>
</div>
<div class="aui-header-secondary">
<ul class="aui-nav">
<li id="system-help-menu">
<a class="aui-nav-link" title="Open online documentation" target="_blank"
href="http://openclover.org/documentation">
<span class="aui-icon aui-icon-small aui-iconfont-help"> Help</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="aui-page-panel">
<div class="aui-page-panel-inner">
<div class="aui-page-panel-nav aui-page-panel-nav-clover">
<div class="aui-page-header-inner" style="margin-bottom: 20px;">
<div class="aui-page-header-image">
<a href="http://cardatechnologies.com" target="_top">
<div class="aui-avatar aui-avatar-large aui-avatar-project">
<div class="aui-avatar-inner">
<img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/>
</div>
</div>
</a>
</div>
<div class="aui-page-header-main" >
<h1>
<a href="http://cardatechnologies.com" target="_top">
ABA Route Transit Number Validator 1.0.1-SNAPSHOT
</a>
</h1>
</div>
</div>
<nav class="aui-navgroup aui-navgroup-vertical">
<div class="aui-navgroup-inner">
<ul class="aui-nav">
<li class="">
<a href="../../../../../dashboard.html">Project overview</a>
</li>
</ul>
<div class="aui-nav-heading packages-nav-heading">
<strong>Packages</strong>
</div>
<div class="aui-nav project-packages">
<form method="get" action="#" class="aui package-filter-container">
<input type="text" autocomplete="off" class="package-filter text"
placeholder="Type to filter packages..." name="package-filter" id="package-filter"
title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/>
</form>
<p class="package-filter-no-results-message hidden">
<small>No results found.</small>
</p>
<div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator">
<div class="packages-tree-container"></div>
<div class="clover-packages-lozenges"></div>
</div>
</div>
</div>
</nav> </div>
<section class="aui-page-panel-content">
<div class="aui-page-panel-content-clover">
<div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs">
<li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li>
<li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li>
<li><a href="test-Test_AbaRouteValidator_11.html">Class Test_AbaRouteValidator_11</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_24884_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_11.html?line=58480#src-58480" >testAbaNumberCheck_24884_bad</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:40:26
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </div>
<table class="aui aui-table-sortable">
<thead>
<tr>
<th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th>
<th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_24884_bad</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/exceptions/AbaRouteValidationException.html?id=26024#AbaRouteValidationException" title="AbaRouteValidationException" name="sl-43">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/ErrorCodes.html?id=26024#ErrorCodes" title="ErrorCodes" name="sl-42">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=26024#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_11_testAbaNumberCheck_24884_bad_k2w.html | HTML | apache-2.0 | 10,987 |
<!DOCTYPE html>
<meta charset="utf-8">
<title>Redirecting to https://www.cloudspannerecosystem.dev/</title>
<meta http-equiv="refresh" content="0; URL=https://www.cloudspannerecosystem.dev/">
<link rel="canonical" href="https://www.cloudspannerecosystem.dev/">
| cloudspannerecosystem/cloudspannerecosystem.github.io | index.html | HTML | apache-2.0 | 261 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_07) on Sat Nov 08 23:40:37 GMT 2008 -->
<TITLE>
Uses of Class lejos.pc.comm.BlueZException
</TITLE>
<META NAME="date" CONTENT="2008-11-08">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class lejos.pc.comm.BlueZException";
}
}
</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="../../../../lejos/pc/comm/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../lejos/pc/comm/BlueZException.html" title="class in lejos.pc.comm"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?lejos/pc/comm/\class-useBlueZException.html" target="_top"><B>FRAMES</B></A>
<A HREF="BlueZException.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>lejos.pc.comm.BlueZException</B></H2>
</CENTER>
No usage of lejos.pc.comm.BlueZException
<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="../../../../lejos/pc/comm/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../lejos/pc/comm/BlueZException.html" title="class in lejos.pc.comm"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?lejos/pc/comm/\class-useBlueZException.html" target="_top"><B>FRAMES</B></A>
<A HREF="BlueZException.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
| AndrewZurn/sju-compsci-archive | CS200s/CS217b/OriginalFiles/doc/lejos/pc/comm/class-use/BlueZException.html | HTML | apache-2.0 | 5,649 |
<!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_76-release) on Mon Nov 28 14:15:25 MST 2016 -->
<title>ElasticsearchRequestController</title>
<meta name="date" content="2016-11-28">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ElasticsearchRequestController";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../com/cmput301f16t11/a2b/EditProfileActivity.html" title="class in com.cmput301f16t11.a2b"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.AddBatchOpenRequestTask.html" title="class in com.cmput301f16t11.a2b"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?com/cmput301f16t11/a2b/ElasticsearchRequestController.html" target="_top">Frames</a></li>
<li><a href="ElasticsearchRequestController.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li><a href="#nested.class.summary">Nested</a> | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#methods.inherited.from.class.java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.cmput301f16t11.a2b</div>
<h2 title="Class ElasticsearchRequestController" class="title">Class ElasticsearchRequestController</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>com.cmput301f16t11.a2b.ElasticsearchRequestController</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">ElasticsearchRequestController</span>
extends java.lang.Object</pre>
<div class="block">Controller for all queries and updates to the elasticsearch server regarded UserRequest objects.
BUILDER PATTERN USED
Jests Builder classes are used to build commands executed by the client</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"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.AddBatchOpenRequestTask.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.AddBatchOpenRequestTask</a></span></code>
<div class="block">Adds an open request to elastic search server</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.AddDriverAcceptanceToRequest.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.AddDriverAcceptanceToRequest</a></span></code>
<div class="block">Add a driver acceptance to a request
info[0] is the request ID
info[1] is the driver ID</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.AddDriverAcceptanceToRequestOffline.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.AddDriverAcceptanceToRequestOffline</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.AddOpenRequestTask.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.AddOpenRequestTask</a></span></code>
<div class="block">Adds an open request to elastic search server</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.DeleteRiderRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.DeleteRiderRequests</a></span></code>
<div class="block">Delete a rider request</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetAcceptedByMe.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetAcceptedByMe</a></span></code>
<div class="block">Fetch requests that have been accepted by the current user (in Driver mode)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetAcceptedDriverRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetAcceptedDriverRequests</a></span></code>
<div class="block">Get a driver's inProgress Requests</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetAcceptedRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetAcceptedRequests</a></span></code>
<div class="block">Get a rider's requests that have been accepted by a driver</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.getAcceptedUsersForRequest.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.getAcceptedUsersForRequest</a></span></code>
<div class="block">Get users who have accepted the request</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetActiveDriverRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetActiveDriverRequests</a></span></code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">b/c if the driver has been set for a request then it should be inProgress or closed</span></div>
</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetActiveRiderRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetActiveRiderRequests</a></span></code>
<div class="block">Get the currently open Requests for a rider</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetAwaitingPaymentDriverRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetAwaitingPaymentDriverRequests</a></span></code>
<div class="block">Get the requests for a driver that are closed but payment has not been recived</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetAwaitingPaymentRiderRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetAwaitingPaymentRiderRequests</a></span></code>
<div class="block">Get the requests for a rider that are closed but payment has not been recived</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetClosedRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetClosedRequests</a></span></code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span> </div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetInPrgressRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetInPrgressRequests</a></span></code>
<div class="block">Gets in progress requests</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetInPrgressRiderRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetInPrgressRiderRequests</a></span></code>
<div class="block">Get the inProgress requests for a rider</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetNearbyRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetNearbyRequests</a></span></code>
<div class="block">Gets requests nearby the specified location</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetNearbyRequestsGeoFilter.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetNearbyRequestsGeoFilter</a></span></code>
<div class="block">Gets nearby requests using geo distance filter</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetOpenRequestById.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetOpenRequestById</a></span></code>
<div class="block">GetRequest fetches the request with the given Id from the server</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetPastDriverRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetPastDriverRequests</a></span></code>
<div class="block">Get the closed requests for a driver</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetPastRiderRequests.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetPastRiderRequests</a></span></code>
<div class="block">Get the 100 latest closed requests for a rider</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetRequestsByDescriptionKeyword.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetRequestsByDescriptionKeyword</a></span></code>
<div class="block">Fetch requests whose descriptions match a given keyword</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetRequestsByEndLocationKeyword.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetRequestsByEndLocationKeyword</a></span></code>
<div class="block">Fetch requests whose end Locations match a given keyword</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetRequestsByStartLocationKeyword.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetRequestsByStartLocationKeyword</a></span></code>
<div class="block">Fetch requests whose start Locations match a given keyword</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.GetRequestsByUserNameKeyword.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.GetRequestsByUserNameKeyword</a></span></code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span> </div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.MarkAsPaid.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.MarkAsPaid</a></span></code>
<div class="block"><span class="deprecatedLabel">Deprecated.</span> </div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.MoveToClosedRequest.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.MoveToClosedRequest</a></span></code>
<div class="block">Move a request from inProgress to closed</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.MoveToInProgresseRequest.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.MoveToInProgresseRequest</a></span></code>
<div class="block">Move a request from open to inProgress</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.SetConfirmedDriver.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.SetConfirmedDriver</a></span></code>
<div class="block">Sets a confirmed driver to a UserRequest</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.UpdateClosedRequestObject.html" title="class in com.cmput301f16t11.a2b">ElasticsearchRequestController.UpdateClosedRequestObject</a></span></code> </td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.html#ElasticsearchRequestController--">ElasticsearchRequestController</a></span>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ElasticsearchRequestController--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ElasticsearchRequestController</h4>
<pre>public ElasticsearchRequestController()</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-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/cmput301f16t11/a2b/EditProfileActivity.html" title="class in com.cmput301f16t11.a2b"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../com/cmput301f16t11/a2b/ElasticsearchRequestController.AddBatchOpenRequestTask.html" title="class in com.cmput301f16t11.a2b"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?com/cmput301f16t11/a2b/ElasticsearchRequestController.html" target="_top">Frames</a></li>
<li><a href="ElasticsearchRequestController.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li><a href="#nested.class.summary">Nested</a> | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#methods.inherited.from.class.java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| CMPUT301F16T11/a2b | doc/javadoc/com/cmput301f16t11/a2b/ElasticsearchRequestController.html | HTML | apache-2.0 | 21,834 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_92) on Sat Jul 30 10:44:59 CEST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.togglz.appengine.repository (Togglz 2.3.0.Final API)</title>
<meta name="date" content="2016-07-30">
<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/togglz/appengine/repository/package-summary.html" target="classFrame">org.togglz.appengine.repository</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="DatastoreStateRepository.html" title="class in org.togglz.appengine.repository" target="classFrame">DatastoreStateRepository</a></li>
<li><a href="FixedNamespaceStateRepository.html" title="class in org.togglz.appengine.repository" target="classFrame">FixedNamespaceStateRepository</a></li>
<li><a href="MemcacheStateRepository.html" title="class in org.togglz.appengine.repository" target="classFrame">MemcacheStateRepository</a></li>
</ul>
</div>
</body>
</html>
| togglz/togglz-site | apidocs/2.3.0.Final/org/togglz/appengine/repository/package-frame.html | HTML | apache-2.0 | 1,283 |
<p><TMPL_VAR UPDATES.INTRO_TEXT1></p>
<h1><TMPL_VAR UPDATES.LBUPDATE_HEADER></h1>
<p><TMPL_VAR UPDATES.LBUPDATE_VERSION_BOX></p>
<p><TMPL_VAR UPDATES.LBUPDATE_AUTOMATIC></p>
<h1><TMPL_VAR UPDATES.SECURITYUPDATES_HEADER></h1>
<p><TMPL_VAR UPDATES.SECURITYUPDATES_SETTINGS></p>
<p><TMPL_VAR UPDATES.LBUPDATE_HISTORY></p>
<h1><TMPL_VAR UPDATES.LBUPDATEHISTORY_HEADER></h1>
<p><TMPL_VAR UPDATES.LBUPDATEHISTORY_LOGS></p>
| mschlenstedt/Loxberry | templates/system/help/help_updates.html | HTML | apache-2.0 | 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_92) on Wed Jul 27 21:23:53 CEST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class net.sourceforge.pmd.lang.java.rule.unnecessary.UnnecessaryConversionTemporaryRule (PMD Java 5.5.1 API)</title>
<meta name="date" content="2016-07-27">
<link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class net.sourceforge.pmd.lang.java.rule.unnecessary.UnnecessaryConversionTemporaryRule (PMD Java 5.5.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="../../../../../../../../net/sourceforge/pmd/lang/java/rule/unnecessary/UnnecessaryConversionTemporaryRule.html" title="class in net.sourceforge.pmd.lang.java.rule.unnecessary">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?net/sourceforge/pmd/lang/java/rule/unnecessary/class-use/UnnecessaryConversionTemporaryRule.html" target="_top">Frames</a></li>
<li><a href="UnnecessaryConversionTemporaryRule.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 net.sourceforge.pmd.lang.java.rule.unnecessary.UnnecessaryConversionTemporaryRule" class="title">Uses of Class<br>net.sourceforge.pmd.lang.java.rule.unnecessary.UnnecessaryConversionTemporaryRule</h2>
</div>
<div class="classUseContainer">No usage of net.sourceforge.pmd.lang.java.rule.unnecessary.UnnecessaryConversionTemporaryRule</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="../../../../../../../../net/sourceforge/pmd/lang/java/rule/unnecessary/UnnecessaryConversionTemporaryRule.html" title="class in net.sourceforge.pmd.lang.java.rule.unnecessary">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?net/sourceforge/pmd/lang/java/rule/unnecessary/class-use/UnnecessaryConversionTemporaryRule.html" target="_top">Frames</a></li>
<li><a href="UnnecessaryConversionTemporaryRule.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 © 2002–2016 <a href="http://pmd.sourceforge.net/">InfoEther</a>. All rights reserved.</small></p>
</body>
</html>
| jasonwee/videoOnCloud | pmd/pmd-doc-5.5.1/pmd-java/apidocs/net/sourceforge/pmd/lang/java/rule/unnecessary/class-use/UnnecessaryConversionTemporaryRule.html | HTML | apache-2.0 | 5,254 |
<!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>Creative - Start Bootstrap Theme</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">
<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">YorkU Hacks 1.0</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">Attend</a>
</li>
<li>
<a class="page-scroll" href="#partners">Partners</a>
</li>
<li>
<a class="page-scroll" href="#sponsors">Sponsors</a>
</li>
<li>
<a class="page-scroll" href="#faq">FAQ</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>Your Favorite Source of Free Bootstrap Themes</h1>
<hr>
<p>Start Bootstrap can help you build better websites using the Bootstrap CSS framework! Just download your template and start going, no strings attached!</p>
<a href="#about" class="btn btn-primary btn-xl page-scroll">Find Out More</a>
</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">We've got what you need!</h2>
<hr class="light">
<p class="text-faded">Start Bootstrap has everything you need to get your new website up and running in no time! All of the templates and themes on Start Bootstrap are open source, free to download, and easy to use. No strings attached!</p>
<a href="#" class="btn btn-default btn-xl">Get Started!</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">At Your Service</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-diamond wow bounceIn text-primary"></i>
<h3>Sturdy Templates</h3>
<p class="text-muted">Our templates are updated regularly so they don't break.</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-paper-plane wow bounceIn text-primary" data-wow-delay=".1s"></i>
<h3>Ready to Ship</h3>
<p class="text-muted">You can use this theme as is, or you can make changes!</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-newspaper-o wow bounceIn text-primary" data-wow-delay=".2s"></i>
<h3>Up to Date</h3>
<p class="text-muted">We update dependencies to keep things fresh.</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-heart wow bounceIn text-primary" data-wow-delay=".3s"></i>
<h3>Made with Love</h3>
<p class="text-muted">You have to make your websites with love these days!</p>
</div>
</div>
</div>
</div>
</section>
<section class="no-padding" id="partners">
<div class="container-fluid">
<div class="row no-gutter">
<div class="col-lg-4 col-sm-6">
<a href="#" class="partners-box">
<img src="img/partners/1.jpg" class="img-responsive" alt="">
<div class="partners-box-caption">
<div class="partners-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="#" class="partners-box">
<img src="img/partners/2.jpg" class="img-responsive" alt="">
<div class="partners-box-caption">
<div class="partners-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="#" class="partners-box">
<img src="img/partners/3.jpg" class="img-responsive" alt="">
<div class="partners-box-caption">
<div class="partners-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="#" class="partners-box">
<img src="img/partners/4.jpg" class="img-responsive" alt="">
<div class="partners-box-caption">
<div class="partners-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="#" class="partners-box">
<img src="img/partners/5.jpg" class="img-responsive" alt="">
<div class="partners-box-caption">
<div class="partners-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-sm-6">
<a href="#" class="partners-box">
<img src="img/partners/6.jpg" class="img-responsive" alt="">
<div class="partners-box-caption">
<div class="partners-box-caption-content">
<div class="project-category text-faded">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<aside class="bg-dark">
<div class="container text-center">
<div class="call-to-action">
<h2>Free Download at Start Bootstrap!</h2>
<a href="#" class="btn btn-default btn-xl wow tada">Download Now!</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! Give us a call or 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-phone fa-3x wow bounceIn"></i>
<p>123-456-6789</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:your-email@your-domain.com">feedback@startbootstrap.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>
| yorkuhacks/yorkuhacks | indexFuture.html | HTML | apache-2.0 | 12,885 |
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title
th:utext="'Sources - ' + ${model.gedObject.dbName}">Submitters
- schoeller</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link type="text/css" href="css/gedbrowser.css" rel="stylesheet" />
</head>
<body>
<div th:replace="fragments/header :: menubar"> </div>
<div class="outer">
<div class="middle">
<div class="inner">
<h2 class="name"
th:utext="'Sources for dataset: ' + ${model.gedObject.dbName}">Sources
for dataset: schoeller</h2>
<ul>
<li th:each="source : ${model.sources}"
th:utext="${source.indexNameHtml}">Source (S1)</li>
</ul>
<div th:replace="fragments/footer :: footer"> </div>
</div>
</div>
</div>
<!-- anywhere in your document: -->
<form th:action="@{logout}" id="logoutForm">
<!-- csrf hidden input included automagically -->
</form>
</body>
</html>
| dickschoeller/gedbrowser | gedbrowser/src/main/resources/templates/sources.html | HTML | apache-2.0 | 984 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Porting Layer: Class List</title>
<link href="hydoxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.2 -->
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Packages</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li class="current"><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<h1>Porting Layer Class List</h1>Here are the classes, structs, unions and interfaces with brief descriptions:<table>
<tr><td class="indexkey"><a class="el" href="classtl_1_1_basic_allocator.html">tl.BasicAllocator< T ></a></td><td class="indexvalue">An allocator based on the basic memory allocation primitives </td></tr>
<tr><td class="indexkey"><a class="el" href="structtl_1_1_basic_allocator_1_1rebind.html">tl.BasicAllocator< T >.rebind< U ></a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_decoder_base.html">DecoderBase</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_encoder_base.html">EncoderBase</a></td><td class="indexvalue">Basic facilities for generation of processor's instructions </td></tr>
<tr><td class="indexkey"><a class="el" href="struct_encoder_base_1_1_mnemonic_desc.html">EncoderBase.MnemonicDesc</a></td><td class="indexvalue">General info about mnemonic </td></tr>
<tr><td class="indexkey"><a class="el" href="union_encoder_base_1_1_opcode_desc.html">EncoderBase.OpcodeDesc</a></td><td class="indexvalue">Info about single opcode - its opcode bytes, operands, operands' roles </td></tr>
<tr><td class="indexkey"><a class="el" href="class_encoder_base_1_1_operand.html">EncoderBase.Operand</a></td><td class="indexvalue">Contains info about a single instructions's operand - its location, size and a value for immediate or RegName for register operands </td></tr>
<tr><td class="indexkey"><a class="el" href="class_encoder_base_1_1_operands.html">EncoderBase.Operands</a></td><td class="indexvalue">Simple container for up to 3 Operand-s </td></tr>
<tr><td class="indexkey"><a class="el" href="struct_encoder_base_1_1_opnd_desc.html">EncoderBase.OpndDesc</a></td><td class="indexvalue">Description of operand </td></tr>
<tr><td class="indexkey"><a class="el" href="struct_encoder_base_1_1_opnd_roles_desc.html">EncoderBase.OpndRolesDesc</a></td><td class="indexvalue">Description of operands' roles in instruction </td></tr>
<tr><td class="indexkey"><a class="el" href="class_imm___opnd.html">Imm_Opnd</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="struct_inst.html">Inst</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classtl_1_1_list.html">tl.List< _ListElement, _Allocator, _RWLock ></a></td><td class="indexvalue">Linked list interface </td></tr>
<tr><td class="indexkey"><a class="el" href="class_logger_string.html">LoggerString</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="struct_log_site.html">LogSite</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_m___base___opnd.html">M_Base_Opnd</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_m___index___opnd.html">M_Index_Opnd</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_m___opnd.html">M_Opnd</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classtl_1_1_memory_pool.html">tl.MemoryPool</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="classtl_1_1_memory_pool_m_t.html">tl.MemoryPoolMT</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="struct_mnemonic_info.html">MnemonicInfo</a></td><td class="indexvalue"><dl class="see" compact><dt><b>See also:</b></dt><dd>same structure as <a class="el" href="struct_encoder_base_1_1_mnemonic_desc.html" title="General info about mnemonic.">EncoderBase.MnemonicDesc</a>, but carries MnemonicInfo.OpcodeInfo[] instead of OpcodeDesc[] </dd></dl>
</td></tr>
<tr><td class="indexkey"><a class="el" href="struct_mod_r_m.html">ModRM</a></td><td class="indexvalue">Describes <a class="el" href="struct_mod_r_m.html" title="Describes ModRM byte.">ModRM</a> byte </td></tr>
<tr><td class="indexkey"><a class="el" href="classtl_1_1_m_p_allocator.html">tl.MPAllocator< T ></a></td><td class="indexvalue">A <a class="el" href="classtl_1_1_memory_pool.html">MemoryPool</a> based STL allocator </td></tr>
<tr><td class="indexkey"><a class="el" href="structtl_1_1_m_p_allocator_1_1rebind.html">tl.MPAllocator< T >.rebind< U ></a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="struct_opcode_info.html">OpcodeInfo</a></td><td class="indexvalue">Exactly the same as <a class="el" href="union_encoder_base_1_1_opcode_desc.html" title="Info about single opcode - its opcode bytes, operands, operands' roles.">EncoderBase.OpcodeDesc</a>, but also holds info about platform on which the opcode is applicable </td></tr>
<tr><td class="indexkey"><a class="el" href="class_opnd.html">Opnd</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="structport__disasm__info__t.html">port_disasm_info_t</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_r___opnd.html">R_Opnd</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="struct_rex.html">Rex</a></td><td class="indexvalue">Represents the REX part of instruction </td></tr>
<tr><td class="indexkey"><a class="el" href="class_r_m___opnd.html">RM_Opnd</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="struct_s_i_b.html">SIB</a></td><td class="indexvalue">Describes <a class="el" href="struct_s_i_b.html" title="Describes SIB (scale,index,base) byte.">SIB</a> (scale,index,base) byte </td></tr>
<tr><td class="indexkey"><a class="el" href="classtl_1_1vector.html">tl.vector< T, Allocator ></a></td><td class="indexvalue">A MemoryManager-based STL <a class="el" href="classtl_1_1vector.html" title="A MemoryManager-based STL vector container.">vector</a> container </td></tr>
<tr><td class="indexkey"><a class="el" href="classtl_1_1vector__mt.html">tl.vector_mt< T, Allocator ></a></td><td class="indexvalue">Thread safe <a class="el" href="classtl_1_1vector.html" title="A MemoryManager-based STL vector container.">vector</a> </td></tr>
<tr><td class="indexkey"><a class="el" href="classtl_1_1vector__set.html">tl.vector_set< T, Allocator ></a></td><td class="indexvalue">A MemoryManager-based STL sorted <a class="el" href="classtl_1_1vector.html" title="A MemoryManager-based STL vector container.">vector</a> container to use as a set </td></tr>
<tr><td class="indexkey"><a class="el" href="classtl_1_1vector__set__mt.html">tl.vector_set_mt< T, Allocator ></a></td><td class="indexvalue">A MemoryManager-based STL sorted <a class="el" href="classtl_1_1vector.html" title="A MemoryManager-based STL vector container.">vector</a> container to use as a set </td></tr>
<tr><td class="indexkey"><a class="el" href="class_x_m_m___opnd.html">XMM_Opnd</a></td><td class="indexvalue"></td></tr>
</table>
<hr size="1">
<address style="text-align: center;">
<small>
<p>Genereated on Tue Mar 11 19:25:42 2008 by Doxygen.</p>
<p>(c) Copyright 2005, 2008 The Apache Software Foundation or its licensors, as applicable. </p>
</small>
</address>
</body>
</html>
| freeVM/freeVM | standard/site/docs/subcomponents/drlvm/doxygen/apr_extension/html/annotated.html | HTML | apache-2.0 | 8,350 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class org.apache.cxf.common.util.JarResource (Apache CXF API 2.7.5 API)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.cxf.common.util.JarResource (Apache CXF API 2.7.5 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/cxf/common/util/JarResource.html" title="class in org.apache.cxf.common.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
Apache CXF API</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/cxf/common/util//class-useJarResource.html" target="_top"><B>FRAMES</B></A>
<A HREF="JarResource.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.cxf.common.util.JarResource</B></H2>
</CENTER>
No usage of org.apache.cxf.common.util.JarResource
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/cxf/common/util/JarResource.html" title="class in org.apache.cxf.common.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
Apache CXF API</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/cxf/common/util//class-useJarResource.html" target="_top"><B>FRAMES</B></A>
<A HREF="JarResource.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Apache CXF
</BODY>
</HTML>
| mulesoft-consulting/sumtotal-connector | lib/apache-cxf-2.7.5/docs/api/org/apache/cxf/common/util/class-use/JarResource.html | HTML | apache-2.0 | 5,996 |
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv='X-UA-Compatible' content='IE=edge' />
<meta http-equiv='Content-Type' content='text/html;charset=UTF-8' />
<title>Additional Properties</title>
<script id="sap-ui-bootstrap"
src="/aad/resources/sap-ui-cachebuster/sap-ui-core-dbg.js"
data-sap-ui-libs="sap.m, sap.ui.ux3, sap.ui.commons, sap.ui.unified, sap.ui.table, sap.ui.core"
data-sap-ui-xx-bindingSyntax="complex"
data-sap-ui-theme="sap_belize"
data-sap-ui-compatVersion="edge"
data-sap-ui-resourceroots='{"PropertyPage": "../../org.scn.community.lumiradesigner.shared/aps/APS"}'>
</script>
<script src="/aad/zen.rt.components.sdk/resources/js/sdk_propertysheets_handler.js"></script>
<script src="../../org.scn.community.lumiradesigner.shared/aps/APS/PropertyPage.js"></script>
</head>
<body class="sapUiBody" id="content">
</html> | org-scn-design-studio-community/lumiradesignercommunityext_src | src/Lumira Designer SCN Component - Tiles/aps/Tiles.html | HTML | apache-2.0 | 889 |
<?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>util_layers</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body>
<h1 class="toc">Module util_layers</h1>
<h2 class="toc">Classes</h2>
<a target="mainFrame" href="cocos.layer.util_layers.ColorLayer-class.html"
>ColorLayer</a><br />
<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>
| shadowmint/nwidget | lib/cocos2d-0.5.5/doc/html/api/toc-cocos.layer.util_layers-module.html | HTML | apache-2.0 | 885 |
<html><head><title>EnableManualEntityBoneControl</title></head>
<body bgcolor="#EFF1F0" link="#3A3966" vlink="#000000" alink="#000000">
<font face="Verdana, sans-serif" size="2"><p align="center"><b><font size="4">EnableManualEntityBoneControl()</font></b></p>
<p><b>Syntax</b></p><blockquote>
<font color="#3A3966"><b>EnableManualEntityBoneControl</b></font>(#Entity, Bone$, State, InheritOrientation)</blockquote>
</blockquote>
<b>Description</b><br><blockquote>
Enable the manual control of a bone. It can be manually moved with <a href="moveentitybone.html">MoveEntityBone()</a> and
rotated with <a href="rotateentitybone.html">RotateEntityBone()</a>.
</blockquote><p><b>Parameters</b></p><blockquote>
<style type="text/css">
table.parameters { border-spacing: 0px; border-style: none; border-collapse: collapse; }
table.parameters td { border-width: 1px; padding: 6px; border-style: solid; border-color: gray; vertical-align: top; font-family:Arial; font-size:10pt; }
</style>
<table width="90%" class="parameters">
<tr><td width="10%"><i>#Entity</i></td>
<td width="90%">
The entity to use.
</td></tr>
<tr><td><i>Bone$</i></td>
<td>
The bone name in the OGRE mesh.
</td></tr>
<tr><td><i>State</i></td>
<td>
It can be one of the following value:
<pre><font face="Courier New, Courier, mono"size="2"> <font color="#924B72">#True</font> : the manual bone control is enabled.
<font color="#924B72">#False</font>: the manual bone control is disabled.
</font></pre>
</td></tr>
<tr><td><i>InheritOrientation (optional)</i></td>
<td>
Tells if the bone orientation should inherit from the entity orientation. It can be one of the following value:
<pre><font face="Courier New, Courier, mono"size="2"> <font color="#924B72">#True</font> : the manual bone orientation inherit from the entity.
<font color="#924B72">#False</font>: the manual bone orientation doesn't take in account the entity orientation.
</font></pre>
</td></tr>
</table>
</blockquote><p><b>Return value</b></p><blockquote>
None.
</Blockquote><p><b>Supported OS </b><Blockquote>All</Blockquote></p><center><- <a href=disableentitybody.html>DisableEntityBody()</a> - <a href="index.html">Entity Index</a> - <a href="entityangularfactor.html">EntityAngularFactor()</a> -><br><br>
</body></html> | PureBasicCN/PureBasicPreference | source_dir/documentation/entity/enablemanualentitybonecontrol.html | HTML | apache-2.0 | 2,281 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_77) on Mon May 23 19:36:58 EDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Class Hierarchy (Lucene 6.0.1 API)</title>
<meta name="date" content="2016-05-23">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Class Hierarchy (Lucene 6.0.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>Package</li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</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?overview-tree.html" target="_top">Frames</a></li>
<li><a href="overview-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For All Packages</h1>
<span class="packageHierarchyLabel">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="org/apache/lucene/spatial3d/package-tree.html">org.apache.lucene.spatial3d</a>, </li>
<li><a href="org/apache/lucene/spatial3d/geom/package-tree.html">org.apache.lucene.spatial3d.geom</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.<a href="http://download.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/ArcDistance.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">ArcDistance</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/DistanceStyle.html" title="interface in org.apache.lucene.spatial3d.geom">DistanceStyle</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/BasePlanetObject.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">BasePlanetObject</span></a>
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/BaseXYZSolid.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">BaseXYZSolid</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/XYZSolid.html" title="interface in org.apache.lucene.spatial3d.geom">XYZSolid</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/dXdYdZSolid.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">dXdYdZSolid</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/dXdYZSolid.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">dXdYZSolid</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/dXYdZSolid.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">dXYdZSolid</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/dXYZSolid.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">dXYZSolid</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/StandardXYZSolid.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">StandardXYZSolid</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/XdYdZSolid.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">XdYdZSolid</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/XdYZSolid.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">XdYZSolid</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/XYdZSolid.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">XYdZSolid</span></a></li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBaseShape.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBaseShape</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoShape</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBaseMembershipShape.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBaseMembershipShape</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoMembershipShape</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBaseBBox.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBaseBBox</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBBox.html" title="interface in org.apache.lucene.spatial3d.geom">GeoBBox</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDegenerateHorizontalLine.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDegenerateHorizontalLine</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDegenerateLatitudeZone.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDegenerateLatitudeZone</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDegenerateLongitudeSlice.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDegenerateLongitudeSlice</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDegenerateVerticalLine.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDegenerateVerticalLine</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoLatitudeZone.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoLatitudeZone</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoLongitudeSlice.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoLongitudeSlice</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoNorthLatitudeZone.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoNorthLatitudeZone</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoNorthRectangle.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoNorthRectangle</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoRectangle.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoRectangle</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSouthLatitudeZone.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoSouthLatitudeZone</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSouthRectangle.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoSouthRectangle</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoWideDegenerateHorizontalLine.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoWideDegenerateHorizontalLine</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoWideLongitudeSlice.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoWideLongitudeSlice</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoWideNorthRectangle.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoWideNorthRectangle</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoWideRectangle.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoWideRectangle</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoWideSouthRectangle.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoWideSouthRectangle</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoWorld.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoWorld</span></a></li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBaseDistanceShape.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBaseDistanceShape</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistanceShape</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBaseCircle.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBaseCircle</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom">GeoCircle</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoStandardCircle.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoStandardCircle</span></a></li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPath.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoPath</span></a></li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBasePolygon.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBasePolygon</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPolygon.html" title="interface in org.apache.lucene.spatial3d.geom">GeoPolygon</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoConvexPolygon.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoConvexPolygon</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li type="circle">org.apache.lucene.document.<a href="../core/org/apache/lucene/document/Field.html?is-external=true" title="class or interface in org.apache.lucene.document"><span class="typeNameLink">Field</span></a> (implements org.apache.lucene.index.<a href="../core/org/apache/lucene/index/IndexableField.html?is-external=true" title="class or interface in org.apache.lucene.index">IndexableField</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.<a href="org/apache/lucene/spatial3d/Geo3DPoint.html" title="class in org.apache.lucene.spatial3d"><span class="typeNameLink">Geo3DPoint</span></a></li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoAreaFactory.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoAreaFactory</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBBoxFactory.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBBoxFactory</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircleFactory.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircleFactory</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCompositeMembershipShape.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCompositeMembershipShape</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoMembershipShape</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCompositePolygon.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCompositePolygon</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPolygon.html" title="interface in org.apache.lucene.spatial3d.geom">GeoPolygon</a>)</li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPath.PathSegment.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoPath.PathSegment</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPath.SegmentEndpoint.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoPath.SegmentEndpoint</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPolygonFactory.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoPolygonFactory</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoWideDegenerateHorizontalLine.EitherBound.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoWideDegenerateHorizontalLine.EitherBound</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Membership.html" title="interface in org.apache.lucene.spatial3d.geom">Membership</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoWideNorthRectangle.EitherBound.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoWideNorthRectangle.EitherBound</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Membership.html" title="interface in org.apache.lucene.spatial3d.geom">Membership</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoWideRectangle.EitherBound.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoWideRectangle.EitherBound</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Membership.html" title="interface in org.apache.lucene.spatial3d.geom">Membership</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoWideSouthRectangle.EitherBound.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoWideSouthRectangle.EitherBound</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Membership.html" title="interface in org.apache.lucene.spatial3d.geom">Membership</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/LatLonBounds.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">LatLonBounds</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Bounds.html" title="interface in org.apache.lucene.spatial3d.geom">Bounds</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/LinearDistance.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">LinearDistance</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/DistanceStyle.html" title="interface in org.apache.lucene.spatial3d.geom">DistanceStyle</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/LinearSquaredDistance.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">LinearSquaredDistance</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/DistanceStyle.html" title="interface in org.apache.lucene.spatial3d.geom">DistanceStyle</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/NormalDistance.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">NormalDistance</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/DistanceStyle.html" title="interface in org.apache.lucene.spatial3d.geom">DistanceStyle</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/NormalSquaredDistance.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">NormalSquaredDistance</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/DistanceStyle.html" title="interface in org.apache.lucene.spatial3d.geom">DistanceStyle</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/PlanetModel.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">PlanetModel</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Tools.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">Tools</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Vector.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">Vector</span></a>
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPoint.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoPoint</span></a>
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDegeneratePoint.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDegeneratePoint</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBBox.html" title="interface in org.apache.lucene.spatial3d.geom">GeoBBox</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom">GeoCircle</a>)</li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Plane.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">Plane</span></a>
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/SidedPlane.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">SidedPlane</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Membership.html" title="interface in org.apache.lucene.spatial3d.geom">Membership</a>)</li>
</ul>
</li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/XYZBounds.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">XYZBounds</span></a> (implements org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Bounds.html" title="interface in org.apache.lucene.spatial3d.geom">Bounds</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/XYZSolidFactory.html" title="class in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">XYZSolidFactory</span></a></li>
</ul>
</li>
</ul>
<h2 title="Interface Hierarchy">Interface Hierarchy</h2>
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Bounds.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">Bounds</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/DistanceStyle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">DistanceStyle</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoSizeable</span></a>
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBBox.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBBox</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoArea.html" title="interface in org.apache.lucene.spatial3d.geom">GeoArea</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoMembershipShape</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistanceShape</a>)</li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Membership.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">Membership</span></a>
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoArea.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoArea</span></a>
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBBox.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBBox</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoMembershipShape</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/XYZSolid.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">XYZSolid</span></a></li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBBox.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBBox</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoArea.html" title="interface in org.apache.lucene.spatial3d.geom">GeoArea</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoMembershipShape</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistanceShape</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistance.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDistance</span></a>
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistanceShape</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDistanceShape</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoMembershipShape</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
</ul>
</li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDistanceShape</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistance.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistance</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoMembershipShape</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoMembershipShape</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoOutsideDistance.html" title="interface in org.apache.lucene.spatial3d.geom">GeoOutsideDistance</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoShape</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBBox.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBBox</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoArea.html" title="interface in org.apache.lucene.spatial3d.geom">GeoArea</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistanceShape</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDistanceShape</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistance.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistance</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPolygon.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoPolygon</span></a></li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoOutsideDistance.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoOutsideDistance</span></a>
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBBox.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBBox</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoArea.html" title="interface in org.apache.lucene.spatial3d.geom">GeoArea</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoMembershipShape</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistanceShape</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDistanceShape</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistance.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistance</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoMembershipShape</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoMembershipShape</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoShape</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Membership.html" title="interface in org.apache.lucene.spatial3d.geom">Membership</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBBox.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBBox</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoArea.html" title="interface in org.apache.lucene.spatial3d.geom">GeoArea</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistanceShape</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDistanceShape</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistance.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistance</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPolygon.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoPolygon</span></a></li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPolygon.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoPolygon</span></a></li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPolygon.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoPolygon</span></a></li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoShape.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoShape</span></a>
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBBox.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBBox</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoArea.html" title="interface in org.apache.lucene.spatial3d.geom">GeoArea</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoMembershipShape</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistanceShape</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDistanceShape</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistance.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistance</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoMembershipShape</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoMembershipShape.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoMembershipShape</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoOutsideDistance.html" title="interface in org.apache.lucene.spatial3d.geom">GeoOutsideDistance</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/Membership.html" title="interface in org.apache.lucene.spatial3d.geom">Membership</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoBBox.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoBBox</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoArea.html" title="interface in org.apache.lucene.spatial3d.geom">GeoArea</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistanceShape</a>, org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistanceShape.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoDistanceShape</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoDistance.html" title="interface in org.apache.lucene.spatial3d.geom">GeoDistance</a>)
<ul>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoCircle.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoCircle</span></a> (also extends org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoSizeable.html" title="interface in org.apache.lucene.spatial3d.geom">GeoSizeable</a>)</li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPolygon.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoPolygon</span></a></li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/GeoPolygon.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">GeoPolygon</span></a></li>
</ul>
</li>
<li type="circle">org.apache.lucene.spatial3d.geom.<a href="org/apache/lucene/spatial3d/geom/XYZSolid.html" title="interface in org.apache.lucene.spatial3d.geom"><span class="typeNameLink">XYZSolid</span></a></li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</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?overview-tree.html" target="_top">Frames</a></li>
<li><a href="overview-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2000-2016 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>
| YorkUIRLab/irlab | lib/lucene-6.0.1/docs/spatial3d/overview-tree.html | HTML | apache-2.0 | 44,820 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.