path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
src/pretix/presale/templates/pretixpresale/event/index.html
Unicorn-rzl/pretix
{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% block title %}{% trans "Presale" %}{% endblock %} {% block content %} {% if cart.positions %} <div class="panel panel-primary cart"> <div class="panel-heading"> <h3 class="panel-title">{% trans "Your cart" %}</h3> </div> <div class="panel-body"> {% include "pretixpresale/event/fragment_cart.html" with cart=cart event=request.event editable=True %} <div class="row-fluid"> <div class="col-md-6 col-xs-12"> {% if cart.minutes_left > 0 %} <em>{% blocktrans trimmed with minutes=cart.minutes_left %} The items in your cart are reserved for you for {{ minutes }} minutes. {% endblocktrans %}</em> {% else %} <em>{% trans "The items in your cart are no longer reserved for you." %}</em> {% endif %} </div> <div class="col-md-4 col-md-offset-2 col-xs-12"> <a class="btn btn-block btn-primary btn-lg" href="{% url "presale:event.checkout.start" organizer=request.event.organizer.slug event=request.event.slug %}"> <i class="fa fa-shopping-cart"></i> {% trans "Proceed with checkout" %} </a> </div> <div class="clearfix"></div> </div> </div> </div> {% endif %} {% if not event.presale_is_running %} <div class="alert alert-info"> {% if event.presale_has_ended %} {% blocktrans trimmed %} The presale period for this event is over. {% endblocktrans %} {% elif event.settings.presale_start_show_date %} {% blocktrans trimmed with date=event.presale_start|date:"SHORT_DATE_FORMAT" time=event.presale_start|time:"TIME_FORMAT" %} The presale for this event will start on {{ date }} at {{ time }}. {% endblocktrans %} {% else %} {% blocktrans trimmed %} The presale for this event has not yet started. {% endblocktrans %} {% endif %} </div> {% endif %} {% if event.presale_is_running or event.settings.show_items_outside_presale_period %} <form method="post" action="{% url "presale:event.cart.add" organizer=request.event.organizer.slug event=request.event.slug %}?next={{ request.path|urlencode }}"> {% csrf_token %} {% for tup in items_by_category %} <section> {% if tup.0 %}<h3>{{ tup.0.name }}</h3>{% endif %} {% for item in tup.1 %} {% if item.has_variations %} <div class="item-with-variations"> <div class="row-fluid product-row headline"> <div class="col-md-8 col-xs-12"> <a href="javascript:void(0);" data-toggle="variations"> <strong>{{ item.name }}</strong> </a> {% if item.short_description %}<p>{{ item.short_description }}</p>{% endif %} </div> <div class="col-md-2 col-xs-6 price"> {% if item.min_price != item.max_price %} {% blocktrans trimmed with minprice=item.min_price|floatformat:2 currency=event.currency %} from {{ currency }} {{ minprice }} {% endblocktrans %} {% else %} {{ event.currency }} {{ item.min_price|floatformat:2 }} {% endif %} </div> <div class="col-md-2 col-xs-6 availability-box"> <a href="javascript:void(0);" data-toggle="variations" class="js-only"> {% trans "Show variants" %} </a> </div> <div class="clearfix"></div> </div> <div class="variations"> {% for var in item.available_variations %} <div class="row-fluid product-row variation"> <div class="col-md-8 col-xs-12"> {{ var }} </div> <div class="col-md-2 col-xs-6 price"> {{ event.currency }} {{ var.price|floatformat:2 }} {% if item.tax_rate %} <br /><small>{% blocktrans trimmed with rate=item.tax_rate %} incl. {{ rate }}% taxes {% endblocktrans %}</small> {% endif %} </div> {% if var.cached_availability.0 == 100 %} <div class="col-md-2 col-xs-6 availability-box available"> <input type="number" class="form-control input-item-count" placeholder="0" min="0" max="{{ var.cached_availability.1 }}" name="variation_{{ item.identity }}_{{ var.variation.identity }}"> </div> {% else %} {% include "pretixpresale/event/fragment_availability.html" with avail=var.cached_availability.0 %} {% endif %} <div class="clearfix"></div> </div> {% endfor %} </div> </div> {% else %} <div class="row-fluid product-row simple"> <div class="col-md-8 col-xs-12"> <strong>{{ item.name }}</strong> {% if item.short_description %}<p>{{ item.short_description }}</p>{% endif %} </div> <div class="col-md-2 col-xs-6 price"> {{ event.currency }} {{ item.price }} {% if item.tax_rate %} <br /><small>{% blocktrans trimmed with rate=item.tax_rate %} incl. {{ rate }}% taxes {% endblocktrans %}</small> {% endif %} </div> {% if item.cached_availability.0 == 100 %} <div class="col-md-2 col-xs-6 availability-box available"> <input type="number" class="form-control input-item-count" placeholder="0" min="0" max="{{ item.cached_availability.1 }}" name="item_{{ item.identity }}"> </div> {% else %} {% include "pretixpresale/event/fragment_availability.html" with avail=item.cached_availability.0 %} {% endif %} <div class="clearfix"></div> </div> {% endif %} {% endfor %} </section> {% endfor %} {% if event.presale_is_running %} <div class="row-fluid checkout-button-row"> <div class="col-md-4 col-md-offset-8"> <button class="btn btn-block btn-primary btn-lg" type="submit"> <i class="fa fa-shopping-cart"></i> {% trans "Add to cart" %} </button> </div> <div class="clearfix"></div> </div> {% endif %} </form> {% endif %} {% endblock %}
_includes/social-links.html
Ztech01/website-compsciguy
<ul style="margin-top: 16px;"> {% if site.email %}<li><a class="social-btn" href="mailto:{{ site.email }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-envelope"></i></a></li>{% endif %} {% if site.linkedin %}<li><a class="social-btn" href="http://linkedin.com/in/{{ site.linkedin }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-linkedin"></i></a></li>{% endif %} {% if site.github %}<li><a class="social-btn" href="http://github.com/{{ site.github }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-github"></i></a></li>{% endif %} {% if site.stackoverflow %}<li><a class="social-btn" href="http://stackoverflow.com/users/{{ site.stackoverflow }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-stack-overflow"></i></a></li>{% endif %} {% if site.telegram %}<li><a class="social-btn" href="https://t.me/{{ site.telegram }}" target="_blank" rel="noopener noreferrer"><i class="fa fa-fw fa-telegram"></i></a></li>{% endif %} </ul>
wizcloud/static/frontend/modals/sshKey/modify.html
kendazheng/wizcloud2
<div class="modal-header"> <button type="button" class="close" ng-click="cancel()"></button> <h4 class="modal-title">{[{'Modify SSHKey'|i18n}]}「{[{sshKey.sshkeyname}]}-(ID:{[{sshKey.fakeid}]})」</h4> </div> <div class="modal-body"> <form action="" name="form"> <div class="container-fluid"> <div class="form-group"> <label for="" class="col-sm-3 control-label long-title">{[{'SSHKey'|i18n}]}{[{'Name'|i18n}]}:</label> <div class="col-sm-8"> <input type="text" class="form-control" name="name" ng-maxlength="15" ng-model="sshKey.sshkeyname" required> <p ng-show="form.name.$error.required && !form.name.$pristine" class="error">*{[{'Please input a name'|i18n}]}</p> <p ng-show="form.name.$error.maxlength && !form.name.$pristine" class="error">*{[{'Please input a name less than 15 characters'|i18n}]}</p> </div> </div> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-blue" ng-click="ok()" ng-disabled="form.$invalid">{[{'Commit'|i18n}]}</button> <button type="button" class="btn btn-default" ng-click="cancel()">{[{'Cancel'|i18n}]}</button> </div>
documentation/javadoc/com/amazonaws/services/ec2/model/InstanceExportDetails.html
hobinyoon/aws-java-sdk-1.4.7
<!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:40 PDT 2013 --> <TITLE> InstanceExportDetails (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="InstanceExportDetails (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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <span id="feedback_section"><h3>Did this page help you?</h3>&nbsp;&nbsp;&nbsp;<a id="feedback_yes" target="_blank">Yes</a>&nbsp;&nbsp;&nbsp;<a id="feedback_no" target="_blank">No</a>&nbsp;&nbsp;&nbsp;<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"> &nbsp;<A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceCount.html" title="class in com.amazonaws.services.ec2.model"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceLicense.html" title="class in com.amazonaws.services.ec2.model"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/amazonaws/services/ec2/model/InstanceExportDetails.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="InstanceExportDetails.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> com.amazonaws.services.ec2.model</FONT> <BR> Class InstanceExportDetails</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.ec2.model.InstanceExportDetails</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>InstanceExportDetails</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> Instance Export Details <P> <P> <DL> <DT><B>See Also:</B><DD><A HREF="../../../../../serialized-form.html#com.amazonaws.services.ec2.model.InstanceExportDetails">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/ec2/model/InstanceExportDetails.html#InstanceExportDetails()">InstanceExportDetails</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.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>&nbsp;obj)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="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/ec2/model/InstanceExportDetails.html#getInstanceId()">getInstanceId</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the value of the InstanceId property for this object.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<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/ec2/model/InstanceExportDetails.html#getTargetEnvironment()">getTargetEnvironment</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the value of the TargetEnvironment property for this object.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html#hashCode()">hashCode</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html#setInstanceId(java.lang.String)">setInstanceId</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>&nbsp;instanceId)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets the value of the InstanceId property for this object.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html#setTargetEnvironment(com.amazonaws.services.ec2.model.ExportEnvironment)">setTargetEnvironment</A></B>(<A HREF="../../../../../com/amazonaws/services/ec2/model/ExportEnvironment.html" title="enum in com.amazonaws.services.ec2.model">ExportEnvironment</A>&nbsp;targetEnvironment)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets the value of the TargetEnvironment property for this object.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html#setTargetEnvironment(java.lang.String)">setTargetEnvironment</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>&nbsp;targetEnvironment)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets the value of the TargetEnvironment property for this object.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<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/ec2/model/InstanceExportDetails.html#toString()">toString</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;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>&nbsp;<A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html" title="class in com.amazonaws.services.ec2.model">InstanceExportDetails</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html#withInstanceId(java.lang.String)">withInstanceId</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>&nbsp;instanceId)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets the value of the InstanceId property for this object.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html" title="class in com.amazonaws.services.ec2.model">InstanceExportDetails</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html#withTargetEnvironment(com.amazonaws.services.ec2.model.ExportEnvironment)">withTargetEnvironment</A></B>(<A HREF="../../../../../com/amazonaws/services/ec2/model/ExportEnvironment.html" title="enum in com.amazonaws.services.ec2.model">ExportEnvironment</A>&nbsp;targetEnvironment)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets the value of the TargetEnvironment property for this object.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html" title="class in com.amazonaws.services.ec2.model">InstanceExportDetails</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html#withTargetEnvironment(java.lang.String)">withTargetEnvironment</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>&nbsp;targetEnvironment)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets the value of the TargetEnvironment property for this object.</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.<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> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="InstanceExportDetails()"><!-- --></A><H3> InstanceExportDetails</H3> <PRE> public <B>InstanceExportDetails</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="getInstanceId()"><!-- --></A><H3> getInstanceId</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>getInstanceId</B>()</PRE> <DL> <DD>Returns the value of the InstanceId property for this object. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Returns:</B><DD>The value of the InstanceId property for this object.</DL> </DD> </DL> <HR> <A NAME="setInstanceId(java.lang.String)"><!-- --></A><H3> setInstanceId</H3> <PRE> public void <B>setInstanceId</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>&nbsp;instanceId)</PRE> <DL> <DD>Sets the value of the InstanceId property for this object. <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>instanceId</CODE> - The new value for the InstanceId property for this object.</DL> </DD> </DL> <HR> <A NAME="withInstanceId(java.lang.String)"><!-- --></A><H3> withInstanceId</H3> <PRE> public <A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html" title="class in com.amazonaws.services.ec2.model">InstanceExportDetails</A> <B>withInstanceId</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>&nbsp;instanceId)</PRE> <DL> <DD>Sets the value of the InstanceId property for this object. <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>instanceId</CODE> - The new value for the InstanceId property for this object. <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="getTargetEnvironment()"><!-- --></A><H3> getTargetEnvironment</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>getTargetEnvironment</B>()</PRE> <DL> <DD>Returns the value of the TargetEnvironment property for this object. <p> <b>Constraints:</b><br/> <b>Allowed Values: </b>citrix, vmware <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Returns:</B><DD>The value of the TargetEnvironment property for this object.<DT><B>See Also:</B><DD><A HREF="../../../../../com/amazonaws/services/ec2/model/ExportEnvironment.html" title="enum in com.amazonaws.services.ec2.model"><CODE>ExportEnvironment</CODE></A></DL> </DD> </DL> <HR> <A NAME="setTargetEnvironment(java.lang.String)"><!-- --></A><H3> setTargetEnvironment</H3> <PRE> public void <B>setTargetEnvironment</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>&nbsp;targetEnvironment)</PRE> <DL> <DD>Sets the value of the TargetEnvironment property for this object. <p> <b>Constraints:</b><br/> <b>Allowed Values: </b>citrix, vmware <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>targetEnvironment</CODE> - The new value for the TargetEnvironment property for this object.<DT><B>See Also:</B><DD><A HREF="../../../../../com/amazonaws/services/ec2/model/ExportEnvironment.html" title="enum in com.amazonaws.services.ec2.model"><CODE>ExportEnvironment</CODE></A></DL> </DD> </DL> <HR> <A NAME="withTargetEnvironment(java.lang.String)"><!-- --></A><H3> withTargetEnvironment</H3> <PRE> public <A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html" title="class in com.amazonaws.services.ec2.model">InstanceExportDetails</A> <B>withTargetEnvironment</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>&nbsp;targetEnvironment)</PRE> <DL> <DD>Sets the value of the TargetEnvironment property for this object. <p> Returns a reference to this object so that method calls can be chained together. <p> <b>Constraints:</b><br/> <b>Allowed Values: </b>citrix, vmware <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>targetEnvironment</CODE> - The new value for the TargetEnvironment property for this object. <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/ec2/model/ExportEnvironment.html" title="enum in com.amazonaws.services.ec2.model"><CODE>ExportEnvironment</CODE></A></DL> </DD> </DL> <HR> <A NAME="setTargetEnvironment(com.amazonaws.services.ec2.model.ExportEnvironment)"><!-- --></A><H3> setTargetEnvironment</H3> <PRE> public void <B>setTargetEnvironment</B>(<A HREF="../../../../../com/amazonaws/services/ec2/model/ExportEnvironment.html" title="enum in com.amazonaws.services.ec2.model">ExportEnvironment</A>&nbsp;targetEnvironment)</PRE> <DL> <DD>Sets the value of the TargetEnvironment property for this object. <p> <b>Constraints:</b><br/> <b>Allowed Values: </b>citrix, vmware <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>targetEnvironment</CODE> - The new value for the TargetEnvironment property for this object.<DT><B>See Also:</B><DD><A HREF="../../../../../com/amazonaws/services/ec2/model/ExportEnvironment.html" title="enum in com.amazonaws.services.ec2.model"><CODE>ExportEnvironment</CODE></A></DL> </DD> </DL> <HR> <A NAME="withTargetEnvironment(com.amazonaws.services.ec2.model.ExportEnvironment)"><!-- --></A><H3> withTargetEnvironment</H3> <PRE> public <A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceExportDetails.html" title="class in com.amazonaws.services.ec2.model">InstanceExportDetails</A> <B>withTargetEnvironment</B>(<A HREF="../../../../../com/amazonaws/services/ec2/model/ExportEnvironment.html" title="enum in com.amazonaws.services.ec2.model">ExportEnvironment</A>&nbsp;targetEnvironment)</PRE> <DL> <DD>Sets the value of the TargetEnvironment property for this object. <p> Returns a reference to this object so that method calls can be chained together. <p> <b>Constraints:</b><br/> <b>Allowed Values: </b>citrix, vmware <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>targetEnvironment</CODE> - The new value for the TargetEnvironment property for this object. <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/ec2/model/ExportEnvironment.html" title="enum in com.amazonaws.services.ec2.model"><CODE>ExportEnvironment</CODE></A></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>&nbsp;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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <script 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"> &nbsp;<A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceCount.html" title="class in com.amazonaws.services.ec2.model"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../com/amazonaws/services/ec2/model/InstanceLicense.html" title="class in com.amazonaws.services.ec2.model"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/amazonaws/services/ec2/model/InstanceExportDetails.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="InstanceExportDetails.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2010 Amazon Web Services, Inc. All Rights Reserved. </BODY> </HTML>
corpus-oa-validation/10.1038_ijo.2016.197/tables/table1/tableRow.html
ContentMine/cm-ucl
<?xml version="1.0" encoding="UTF-8"?> <table title="table1" id="table1" class="tabcontent" xmlns="http://www.w3.org/1999/xhtml"> <tr> <td> <img src="table.svg.png"/> <p>corpus-oa-validation/10.1038_ijo.2016.197/tables/table1/table.svg.png</p> </td> <td> <table class="table"> <caption/> <tr/> </table> <p>corpus-oa-validation/10.1038_ijo.2016.197/tables/table1/table.svg.html</p> </td> </tr> </table>
docs/cpp_sat/classoperations__research_1_1sat_1_1_circuit_constraint_proto-members.html
google/or-tools
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>OR-Tools</title> <meta http-equiv="Content-Type" content="text/html;"/> <meta charset="utf-8"/> <!--<link rel='stylesheet' type='text/css' href="https://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic"/>--> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> <link href="styleSheet.tmp.css" rel="stylesheet" type="text/css"/> </head> <body> <div id="banner-container"> <div id="banner"> <span id="sfml">Google OR-Tools 9.2</span> </div> </div> <div id="content" style="width: 100%; overflow: hidden;"> <div style="margin-left: 15px; margin-top: 5px; float: left; color: #145A32;"> <h2>C++ Reference</h2> <ul> <li><a href="../cpp_algorithms/annotated.html">Algorithms</a></li> <li><a href="../cpp_sat/annotated.html">CP-SAT</a></li> <li><a href="../cpp_graph/annotated.html">Graph</a></li> <li><a href="../cpp_routing/annotated.html">Routing</a></li> <li><a href="../cpp_linear/annotated.html">Linear solver</a></li> </ul> </div> <div id="content"> <div align="center"> <h1 style="color: #145A32;">C++ Reference: CP-SAT</h1> </div> <!-- Generated by Doxygen 1.9.2 --> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */ var searchBox = new SearchBox("searchBox", "search",'Search','.html'); /* @license-end */ </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */ $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); /* @license-end */ </script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */ $(document).ready(function(){initNavTree('classoperations__research_1_1sat_1_1_circuit_constraint_proto.html',''); initResizable(); }); /* @license-end */ </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"><div class="title">CircuitConstraintProto Member List</div></div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#ab618dbbac4a8d749da0d85c32932df36">::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper</a></td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">friend</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a9b35d94da3444084fc3673b7717b6cfe">::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata</a></td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">friend</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#afb8396aa773b2cf0b644f1ddf0f6f75f">::TableStruct_ortools_2fsat_2fcp_5fmodel_2eproto</a></td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">friend</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#ad8bb72b1b92e94bd3667b23c8e207f08">_class_data_</a></td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a312ca8bb89c95cba7ac0712a184f5711">_InternalParse</a>(const char *ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext *ctx) final</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#ade092f7378c2eef944dd6eba16d5690e">_InternalSerialize</a>(uint8_t *target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream *stream) const final</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#ab7d68380fc35fbfa99eae087f21c0546">add_heads</a>(int32_t value)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a6621d62d6f9a24a33e9f33c46d7666eb">add_literals</a>(int32_t value)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#ac370bbdb8c279a9a9fcbaef5f920654e">add_tails</a>(int32_t value)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#af1033c8579625eedc97d25696eeca0b1">ByteSizeLong</a>() const final</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#aebfdcad3205581a661db07b288762d76">CircuitConstraintProto</a>()</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#aa61569b2b311778832fcfed2b65e60d8">CircuitConstraintProto</a>(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">explicit</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#adbf97f0d7cdb5afefea9eabb5e07fd1c">CircuitConstraintProto</a>(const CircuitConstraintProto &amp;from)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a0a9b3745a8998edad55c8097d12893e4">CircuitConstraintProto</a>(CircuitConstraintProto &amp;&amp;from) noexcept</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#aa530e8141d7dee31777dc2e03dce660f">CircuitConstraintProto</a>(::PROTOBUF_NAMESPACE_ID::Arena *arena, bool is_message_owned=false)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">explicit</span><span class="mlabel">protected</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a1e436b607da362266ed7e00d18cd6ac7">Clear</a>() final</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a357ebf6824ee207e4ba2f0606f7dc688">clear_heads</a>()</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a5339b1584860029bfdb4f080683852f5">clear_literals</a>()</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#ad2b545a6c52e40dbe620f8163bce15ae">clear_tails</a>()</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a14f61dafc55e339713d5b7bfdbd3074c">CopyFrom</a>(const CircuitConstraintProto &amp;from)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a39df289f6e1a78f1e143e00bf205515d">default_instance</a>()</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#ab979a4fadb39a428b72532ed725cf906">descriptor</a>()</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a2c971b2a10d6aa68bf5fa0a7d4200ae6">GetCachedSize</a>() const final</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#aa7e6ed13f1c34c5453b63a4d9645196e">GetClassData</a>() const final</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a8dc67673bf648eea5399ad612dad1805">GetDescriptor</a>()</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#abee10a388b53df255f15fbec07e1ac80">GetMetadata</a>() const final</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#ae86a80b38d5eef9a2fe7955f6f0bf747">GetReflection</a>()</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a666237c6a2efb14e03d3f687cbe8dc15">heads</a>(int index) const</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#acee60c829b5353afe4d2454ec5b5cd2c">heads</a>() const</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a5c1560f825b20c9cc2c1d4d7751f6a7c">heads_size</a>() const</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a90d91cb8124b21e3e66f93fb54f606c6">internal_default_instance</a>()</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a83794439b5a81a507b67b07f09d4f048">IsInitialized</a>() const final</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a5f92758c0938fbb4812b5bffffffa38da947d19ffa98588d00dfafd5d7d083cba">kHeadsFieldNumber</a> enum value</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a8473d52a88ddd9d90e879d1716586bee">kIndexInFileMessages</a></td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a5f92758c0938fbb4812b5bffffffa38da8d39ebe0490d12a9389064484bb35c48">kLiteralsFieldNumber</a> enum value</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a5f92758c0938fbb4812b5bffffffa38dabbd4315f52f9255799a8d6a8e943df43">kTailsFieldNumber</a> enum value</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a7a8021e2b57fad24fac287b8e50fb27e">literals</a>(int index) const</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#ad25565785ed0de8fc2cd5e7a8cfd29b3">literals</a>() const</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a72d41feda9a93c11089d3d99d6270999">literals_size</a>() const</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#abfeb49a1b1dac67ac45c861fbf81cdf5">MergeFrom</a>(const CircuitConstraintProto &amp;from)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a62eea3140267410e56cbd49212110779">mutable_heads</a>()</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a201011b665c31f3f6f333c5b67658460">mutable_literals</a>()</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#affba254b08536b6cedf3b068adb82022">mutable_tails</a>()</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a40e7385a33d6712b720d561dad37b972">New</a>(::PROTOBUF_NAMESPACE_ID::Arena *arena=nullptr) const final</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#aa3a956e6a970fe9b943c7a8d32cd95c7">operator=</a>(const CircuitConstraintProto &amp;from)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a8664dc5f54bbd3a150d29aff1aa70b93">operator=</a>(CircuitConstraintProto &amp;&amp;from) noexcept</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a548664f5aba41b028095653a83480a1d">set_heads</a>(int index, int32_t value)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a129ed1cb32c2716eb41b03f80e2637bd">set_literals</a>(int index, int32_t value)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#ae8bdc879be129dd229aa2569117c550f">set_tails</a>(int index, int32_t value)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#ac553b367cd4d09d924a939cdb4403588">Swap</a>(CircuitConstraintProto *other)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a3f29fae2e2b1458bafebce6492c8350a">swap</a></td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">friend</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a0578185acfa161f98842f4f938dabafa">tails</a>(int index) const</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#af9fcb89a95ac5ee4e6cfcd4d0d707af9">tails</a>() const</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a00c2180f8562823474c60e231be689b0">tails_size</a>() const</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a3d691f87f89619ad170608022890544c">UnsafeArenaSwap</a>(CircuitConstraintProto *other)</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html#a7e8031b535e10974f5bb4ae9b5602fa3">~CircuitConstraintProto</a>() override</td><td class="entry"><a class="el" href="classoperations__research_1_1sat_1_1_circuit_constraint_proto.html">CircuitConstraintProto</a></td><td class="entry"></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> </div> </div> <div id="footer-container"> <div id="footer"> </div> </div> </body> </html>
doc/com/asteroid/util/class-use/HibernateUtils.html
BiaoPro/asteroid
<!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_09) on Sat Jun 21 11:41:00 CST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>类 com.asteroid.util.HibernateUtils的使用</title> <meta name="date" content="2014-06-21"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="类 com.asteroid.util.HibernateUtils的使用"; } //--> </script> <noscript> <div>您的浏览器已禁用 JavaScript。</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="../../../../overview-summary.html">概览</a></li> <li><a href="../package-summary.html">程序包</a></li> <li><a href="../../../../com/asteroid/util/HibernateUtils.html" title="com.asteroid.util中的类">类</a></li> <li class="navBarCell1Rev">使用</li> <li><a href="../package-tree.html">树</a></li> <li><a href="../../../../deprecated-list.html">已过时</a></li> <li><a href="../../../../index-files/index-1.html">索引</a></li> <li><a href="../../../../help-doc.html">帮助</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>上一个</li> <li>下一个</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?com/asteroid/util/class-use/HibernateUtils.html" target="_top">框架</a></li> <li><a href="HibernateUtils.html" target="_top">无框架</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">所有类</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="类 com.asteroid.util.HibernateUtils 的使用" class="title">类 com.asteroid.util.HibernateUtils<br>的使用</h2> </div> <div class="classUseContainer">没有com.asteroid.util.HibernateUtils的用法</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="../../../../overview-summary.html">概览</a></li> <li><a href="../package-summary.html">程序包</a></li> <li><a href="../../../../com/asteroid/util/HibernateUtils.html" title="com.asteroid.util中的类">类</a></li> <li class="navBarCell1Rev">使用</li> <li><a href="../package-tree.html">树</a></li> <li><a href="../../../../deprecated-list.html">已过时</a></li> <li><a href="../../../../index-files/index-1.html">索引</a></li> <li><a href="../../../../help-doc.html">帮助</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>上一个</li> <li>下一个</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?com/asteroid/util/class-use/HibernateUtils.html" target="_top">框架</a></li> <li><a href="HibernateUtils.html" target="_top">无框架</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">所有类</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
Client/nakedobjects-client/gemini/src/action-list/action-list.component.css
NakedObjectsGroup/NakedObjectsFramework
:host { float: left; margin-bottom: var(--space-5); display: block; margin-right: var(--space-4); background-color: var(--menu-background-color); } nof-action, .submenu { display: block; cursor: pointer; outline: none; margin-right: var(--space-5); width: var(--action-width); } .submenu { padding: var(--space-3); color: var(--menu-text-color); } .submenu:hover { outline-style: solid; outline-width: 1px; outline-color: var(--default-contrast-color); } .collapsed { display: none; } .open { margin-left: var(--space-4); } .open.rootMenu { margin-left: 0px; } /*Icons*/ .icon-expand:before { content: var(--submenu-expand-icon); } .icon-collapse:before { content: var(--submenu-collapse-icon); } .icon-expand, .icon-collapse { font-size: var(--font-size-1); } .icon-expand:hover, .icon-collapse:hover { outline-color: var(--contrast-outline-color); outline-width: 1px; } [class^="icon-"], [class*=" icon-"] { font-family: "iconFont"; font-weight: var(--font-weight-1); font-style: normal; text-decoration: inherit; -webkit-font-smoothing: antialiased; display: inline-block; width: auto; height: auto; line-height: normal; vertical-align: baseline; background-image: none; background-position: 0% 0%; background-repeat: repeat; margin-top: 0; position: relative; }
ui.apps/src/main/content/jcr_root/apps/gathercontent/components/content/mapping-export/clientlibs/css/main.css
axamit/gathercontent-aem-integration
/* * Axamit, gc.support@axamit.com */ .mapper-container { position: relative; max-width: 551px; } #mapping-form-panel .x-panel-body { background-color: transparent; } .mapping form .x-form-item-description { padding-left: 0 !important; } .mapping #CQ select { border: 1px solid rgb(169, 169, 169); } #accordion, #meta-name-wrapper { width: 900px; } label.error { color: red; margin-left: 3px; } .mapping #CQ .x-form-item-label { width: 162px !important; } .mapping #CQ .x-form-search-trigger { left: 235px; } .path { width: 167px !important; } #template-path-error { left: 18px; position: relative; } #empty-mapping-modal { color: #0c0c0c; } .mapper-select { width: 100%; } #meta-name-label { float: left; } #meta-name-selection { padding-bottom: 10px; } #meta-name-select { float: right; width: 690px; } #meta-name-information { padding-bottom: 10px; color: red; } .moveTo { float: right; width: 30%; } .select-wrapper { padding-left: 165px; margin-top: -16px; } .conf-label { width: 125px; color: #000000; } .conf-wrapper { margin-top: 7px; } .select-wrapper > select { width: 310px; } #plugin-conf-wrapper { margin-top: 2px; } form { margin-bottom: 15px; } .x-form-item-description { color: #8F8F8F; font-size: 11px; margin-top: 5px; margin-bottom: 8px; padding-right: 5%; } h1 { width: 660px; } .mapper-element { width: 840px; } .mapping { margin-bottom: 40px; } .mapping li { width: 785px; border-top: none; } li.select2-results__option { width: initial; border-top: none; } form.hide { display: none; } .warn { color: red; } .disabled-gray { background-color: #eee; }
src/main/webapp/WEB-INF/templates/index.html
Javer-com-ua/FlowerExpert
<!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"> <head th:replace="pages/index/head :: head"> </head> <body> <noscript th:replace="counters/yandex_metrika :: noscript"></noscript> <!--begin bg-carousel--> <div id="bg-fade-carousel" class="carousel slide carousel-fade" data-ride="carousel"> <!-- Wrapper for slides --> <div class="carousel-inner"> <div class="item active"> <div class="slide1"></div> </div> <div class="item"> <div class="slide2"></div> </div> <div class="item"> <div class="slide3"></div> </div> </div> <!-- .carousel-inner --> <div class="container carousel-overlay text-center FIX_ME_HEIGHT"> <h1 class="parallax-slider" th:text="#{main.whatFlower}"></h1> <p class="lead"></p> <a class="parallax-slider_button" href="select_flowers" onclick="yaCounter33021659.reachGoal('START'); return true;"> <span class="fa fa-dollar"></span> <span th:text="#{main.button}"></span> </a> </div> </div> <!-- .carousel --> <!--end bg-carousel--> <script type="text/javascript" defer="defer">window.onload = function() { yaCounter33021659.reachGoal('MAIN_PAGE') }</script> </body> </html>
mago3d-admin/src/main/resources/templates/layer-group/modify.html
Gaia3D/mago3d
<!DOCTYPE html> <html th:lang="${accessibility}" xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="/layouts/default"> <head> <title>Layer 그룹 수정</title> <th:block layout:fragment="pageCustomStyle"> <link rel="stylesheet" th:href="@{/css/{lang}/font/font.css(lang=${lang},cacheVersion=${contentCacheVersion})}" /> <link rel="stylesheet" th:href="@{/images/{lang}/icon/glyph/glyphicon.css(lang=${lang},cacheVersion=${contentCacheVersion})}" /> <link rel="stylesheet" th:href="@{/externlib/normalize/normalize.min.css(cacheVersion=${contentCacheVersion})}" /> <link rel="stylesheet" th:href="@{/css/fontawesome-free-5.2.0-web/css/all.min.css(cacheVersion=${contentCacheVersion})}"> <link rel="stylesheet" th:href="@{/externlib/jquery-ui-1.12.1/jquery-ui.min.css(cacheVersion=${contentCacheVersion})}" /> <link rel="stylesheet" th:href="@{/css/{lang}/admin-style.css(lang=${lang},cacheVersion=${contentCacheVersion})}" /> <link rel="stylesheet" th:href="@{/css/fontawesome-free-5.2.0-web/css/all.min.css(cacheVersion=${contentCacheVersion})}"> </th:block> </head> <body> <th:block layout:fragment="pageCustomContent"> <div id="siteBody" class="site-body"> <div class="container"> <div class="site-content"> <div th:replace="~{/fragments/sub-menu :: #subMenuWrap}"></div> <div class="page-area"> <div th:replace="~{/fragments/page-header :: #pageHeaderWrap}"></div> <div class="page-content"> <div class="input-header row"> <div class="content-desc u-pull-right"><span class="icon-glyph glyph-emark-dot color-warning"></span><th:block th:text="#{check}"></th:block></div> </div> <form id="layerGroup" th:object="${layerGroup}" method="post" th:action="@{#}" onsubmit="return false;"> <input type="hidden" id="layerGroupId" name="layerGroupId" th:field="*{layerGroupId}" /> <table class="input-table scope-row" summary="2D 레이어 그룹 수정 테이블"> <caption class="hiddenTag">2D 레이어 그룹 수정</caption> <col class="col-label l" /> <col class="col-input" /> <tr> <th class="col-label" scope="row"> <label for="layerGroupName">Layer 그룹명</label> <span class="icon-glyph glyph-emark-dot color-warning"></span> </th> <td class="col-input"> <input type="text" id="layerGroupName" name="layerGroupName" th:field="*{layerGroupName}" class="l" /> </td> </tr> <tr> <th class="col-label" scope="row"> <label for="parentName">상위 레이어 그룹</label> <span class="icon-glyph glyph-emark-dot color-warning"></span> </th> <td class="col-input"> <input type="hidden" id="parent" name="parent" th:field="*{parent}" /> <input type="text" id="parentName" name="parentName" th:field="*{parentName}" class="l" th:readonly="true" /> </td> </tr> <tr> <th class="col-label l" scope="row"> <span>사용여부</span> <span class="icon-glyph glyph-emark-dot color-warning"></span> </th> <td class="col-input radio-set"> <input type="radio" id="available1" name="available" th:field="*{available}" value="true" checked /> <label for="available1" th:text="#{use}"></label> <input type="radio" id="available2" name="available" th:field="*{available}" value="false" /> <label for="available2" th:text="#{not.use}"></label> </td> </tr> <tr> <th class="col-label l" scope="row"><label for="description" th:text="#{description}"></label></th> <td class="col-input"> <input type="text" id="description" name="description" th:field="*{description}" class="xl" /> </td> </tr> </table> <div class="button-group"> <div class="center-buttons"> <input type="button" th:value="#{save}" onclick="updateLayerGroup();"/> <a href="/layer-group/list" class="button">목록</a> </div> </div> </form> </div> </div> </div> </div> </div> <!-- Dialog --> <div th:replace="~{/layer-group/layer-group-dialog :: #layerGroupDialog}"></div> </th:block> <th:block layout:fragment="pageCustomScript"> <script type="text/javascript" th:src="@{/externlib/jquery-3.3.1/jquery.min.js(cacheVersion=${contentCacheVersion})}"></script> <script type="text/javascript" th:src="@{/externlib/jquery-ui-1.12.1/jquery-ui.min.js(cacheVersion=${contentCacheVersion})}"></script> <script type="text/javascript" th:src="@{/js/{lang}/common.js(lang=${lang},cacheVersion=${contentCacheVersion})}"></script> <script type="text/javascript" th:src="@{/js/{lang}/message.js(lang=${lang},cacheVersion=${contentCacheVersion})}"></script> <script type="text/javascript" th:src="@{/js/navigation.js(cacheVersion=${contentCacheVersion})}"></script> <script th:inline="javascript"> function validate() { var number = /^[0-9]+$/; if ($("#layerGroupName").val() === null || $("#layerGroupName").val() === "") { alert("레이어 그룹명을 입력해 주세요."); $("#layerGroupName").focus(); return false; } if($("#parent").val() === null || $("#parent").val() === "" || !number.test($("#parent").val())) { alert("상위 레이어 그룹을 선택해 주세요."); $("#parent").focus(); return false; } } var layerGroupDialog = $( ".dialog" ).dialog({ autoOpen: false, height: 600, width: 1200, modal: true, overflow : "auto", resizable: false }); // 상위 Layer Group 찾기 $( "#layerGroupButton" ).on( "click", function() { layerGroupDialog.dialog( "open" ); layerGroupDialog.dialog( "option", "title", "Layer 그룹 선택"); }); // 다이얼로그에서 선택 function confirmParent(parent, parentName, parentDepth) { $("#parent").val(parent); $("#parentName").val(parentName); layerGroupDialog.dialog( "close" ); } $( "#rootParentSelect" ).on( "click", function() { $("#parent").val(0); $("#parentName").val("${layerGroup.parentName}"); layerGroupDialog.dialog( "close" ); }); // 저장 var updateLayerGroupFlag = true; function updateLayerGroup() { if (validate() === false) { return false; } if(updateLayerGroupFlag) { updateLayerGroupFlag = false; var formData = $("#layerGroup").serialize(); $.ajax({ url: "/layer-groups/update", type: "POST", headers: {"X-Requested-With": "XMLHttpRequest"}, data: formData, success: function(msg){ if(msg.statusCode <= 200) { alert(JS_MESSAGE["update"]); window.location.reload(); } else { alert(JS_MESSAGE[msg.errorCode]); console.log("---- " + msg.message); } updateLayerGroupFlag = true; }, error:function(request, status, error){ alert(JS_MESSAGE["ajax.error.message"]); updateLayerGroupFlag = true; } }); } else { alert(JS_MESSAGE["button.double.click"]); } } </script> </th:block> </body> </html>
project/doc/call/game/physicx/Physicx.html
CUB3D/Unknown-3
<!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_55) on Wed Feb 25 22:13:34 GMT 2015 --> <title>Physicx</title> <meta name="date" content="2015-02-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="Physicx"; } //--> </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/Physicx.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="../../../call/game/physicx/IBounded.html" title="interface in call.game.physicx"><span class="strong">Prev Class</span></a></li> <li>Next Class</li> </ul> <ul class="navList"> <li><a href="../../../index.html?call/game/physicx/Physicx.html" target="_top">Frames</a></li> <li><a href="Physicx.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">call.game.physicx</div> <h2 title="Class Physicx" class="title">Class Physicx</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>call.game.physicx.Physicx</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">Physicx</span> extends java.lang.Object</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../call/game/physicx/Physicx.html#Physicx()">Physicx</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static java.util.HashSet&lt;java.lang.String&gt;</code></td> <td class="colLast"><code><strong><a href="../../../call/game/physicx/Physicx.html#createMesh(call.game.image.Image)">createMesh</a></strong>(<a href="../../../call/game/image/Image.html" title="class in call.game.image">Image</a>&nbsp;image)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static boolean</code></td> <td class="colLast"><code><strong><a href="../../../call/game/physicx/Physicx.html#isIntersecting(call.game.physicx.BoundingBox, call.game.physicx.BoundingBox)">isIntersecting</a></strong>(<a href="../../../call/game/physicx/BoundingBox.html" title="class in call.game.physicx">BoundingBox</a>&nbsp;a, <a href="../../../call/game/physicx/BoundingBox.html" title="class in call.game.physicx">BoundingBox</a>&nbsp;b)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static boolean</code></td> <td class="colLast"><code><strong><a href="../../../call/game/physicx/Physicx.html#isIntersecting(java.awt.Rectangle, call.game.physicx.BoundingBox)">isIntersecting</a></strong>(java.awt.Rectangle&nbsp;a, <a href="../../../call/game/physicx/BoundingBox.html" title="class in call.game.physicx">BoundingBox</a>&nbsp;b)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static boolean</code></td> <td class="colLast"><code><strong><a href="../../../call/game/physicx/Physicx.html#isIntersecting(java.awt.Rectangle, java.awt.Rectangle)">isIntersecting</a></strong>(java.awt.Rectangle&nbsp;a, java.awt.Rectangle&nbsp;b)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static boolean</code></td> <td class="colLast"><code><strong><a href="../../../call/game/physicx/Physicx.html#isPPIntersecting(call.game.image.Image, call.game.image.Image)">isPPIntersecting</a></strong>(<a href="../../../call/game/image/Image.html" title="class in call.game.image">Image</a>&nbsp;a, <a href="../../../call/game/image/Image.html" title="class in call.game.image">Image</a>&nbsp;b)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="Physicx()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>Physicx</h4> <pre>public&nbsp;Physicx()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="isIntersecting(java.awt.Rectangle, java.awt.Rectangle)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>isIntersecting</h4> <pre>public static&nbsp;boolean&nbsp;isIntersecting(java.awt.Rectangle&nbsp;a, java.awt.Rectangle&nbsp;b)</pre> </li> </ul> <a name="isIntersecting(java.awt.Rectangle, call.game.physicx.BoundingBox)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>isIntersecting</h4> <pre>public static&nbsp;boolean&nbsp;isIntersecting(java.awt.Rectangle&nbsp;a, <a href="../../../call/game/physicx/BoundingBox.html" title="class in call.game.physicx">BoundingBox</a>&nbsp;b)</pre> </li> </ul> <a name="isIntersecting(call.game.physicx.BoundingBox, call.game.physicx.BoundingBox)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>isIntersecting</h4> <pre>public static&nbsp;boolean&nbsp;isIntersecting(<a href="../../../call/game/physicx/BoundingBox.html" title="class in call.game.physicx">BoundingBox</a>&nbsp;a, <a href="../../../call/game/physicx/BoundingBox.html" title="class in call.game.physicx">BoundingBox</a>&nbsp;b)</pre> </li> </ul> <a name="createMesh(call.game.image.Image)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>createMesh</h4> <pre>public static&nbsp;java.util.HashSet&lt;java.lang.String&gt;&nbsp;createMesh(<a href="../../../call/game/image/Image.html" title="class in call.game.image">Image</a>&nbsp;image)</pre> </li> </ul> <a name="isPPIntersecting(call.game.image.Image, call.game.image.Image)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>isPPIntersecting</h4> <pre>public static&nbsp;boolean&nbsp;isPPIntersecting(<a href="../../../call/game/image/Image.html" title="class in call.game.image">Image</a>&nbsp;a, <a href="../../../call/game/image/Image.html" title="class in call.game.image">Image</a>&nbsp;b)</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/Physicx.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="../../../call/game/physicx/IBounded.html" title="interface in call.game.physicx"><span class="strong">Prev Class</span></a></li> <li>Next Class</li> </ul> <ul class="navList"> <li><a href="../../../index.html?call/game/physicx/Physicx.html" target="_top">Frames</a></li> <li><a href="Physicx.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
2017.9.5/apidocs/org/wildfly/swarm/config/resource/adapters/class-use/ResourceAdapterConsumer.html
wildfly-swarm/wildfly-swarm-javadocs
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_112) on Tue Sep 12 14:31:27 MST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.wildfly.swarm.config.resource.adapters.ResourceAdapterConsumer (BOM: * : All 2017.9.5 API)</title> <meta name="date" content="2017-09-12"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.wildfly.swarm.config.resource.adapters.ResourceAdapterConsumer (BOM: * : All 2017.9.5 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.9.5</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/wildfly/swarm/config/resource/adapters/class-use/ResourceAdapterConsumer.html" target="_top">Frames</a></li> <li><a href="ResourceAdapterConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.resource.adapters.ResourceAdapterConsumer" class="title">Uses of Interface<br>org.wildfly.swarm.config.resource.adapters.ResourceAdapterConsumer</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.resource.adapters">org.wildfly.swarm.config.resource.adapters</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.resource.adapters">org.wildfly.swarm.resource.adapters</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a> in <a href="../../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/ResourceAdapters.html" title="type parameter in ResourceAdapters">T</a></code></td> <td class="colLast"><span class="typeNameLabel">ResourceAdapters.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/ResourceAdapters.html#resourceAdapter-java.lang.String-org.wildfly.swarm.config.resource.adapters.ResourceAdapterConsumer-">resourceAdapter</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;childKey, <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a>&nbsp;consumer)</code> <div class="block">Create and configure a ResourceAdapter object to the list of subresources</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.resource.adapters"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a> in <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/package-summary.html">org.wildfly.swarm.config.resource.adapters</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/package-summary.html">org.wildfly.swarm.config.resource.adapters</a> that return <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>default <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a>&lt;<a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="type parameter in ResourceAdapterConsumer">T</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ResourceAdapterConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html#andThen-org.wildfly.swarm.config.resource.adapters.ResourceAdapterConsumer-">andThen</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a>&lt;<a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="type parameter in ResourceAdapterConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/package-summary.html">org.wildfly.swarm.config.resource.adapters</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>default <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a>&lt;<a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="type parameter in ResourceAdapterConsumer">T</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ResourceAdapterConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html#andThen-org.wildfly.swarm.config.resource.adapters.ResourceAdapterConsumer-">andThen</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a>&lt;<a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="type parameter in ResourceAdapterConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.resource.adapters"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a> in <a href="../../../../../../../org/wildfly/swarm/resource/adapters/package-summary.html">org.wildfly.swarm.resource.adapters</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../org/wildfly/swarm/resource/adapters/package-summary.html">org.wildfly.swarm.resource.adapters</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/resource/adapters/RARArchive.html" title="interface in org.wildfly.swarm.resource.adapters">RARArchive</a></code></td> <td class="colLast"><span class="typeNameLabel">RARArchive.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/resource/adapters/RARArchive.html#resourceAdapter-java.lang.String-org.wildfly.swarm.config.resource.adapters.ResourceAdapterConsumer-">resourceAdapter</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;key, <a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a>&nbsp;consumer)</code> <div class="block">Add and configure a resource-adapter.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.9.5</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/wildfly/swarm/config/resource/adapters/class-use/ResourceAdapterConsumer.html" target="_top">Frames</a></li> <li><a href="ResourceAdapterConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
docs/html/PLACeS_8hpp_source.html
manuhalo/PLACeS
<!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>PLACeS: src/PLACeS.hpp Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">PLACeS </div> <div id="projectbrief">Peer-to-peer Locality Aware Content dElivery Simulator</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&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Friends</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">PLACeS.hpp</div> </div> </div><!--header--> <div class="contents"> <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;<span class="comment">/* </span></div> <div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160;<span class="comment"> * File: PLACeS.hpp</span></div> <div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160;<span class="comment"> * Author: Emanuele Di Pascale</span></div> <div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160;<span class="comment"> *</span></div> <div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160;<span class="comment"> * Created on 03 May 2012, 14:29</span></div> <div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160;<span class="comment"> */</span></div> <div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160;</div> <div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160;<span class="preprocessor">#ifndef PLACES_HPP</span></div> <div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define PLACES_HPP</span></div> <div class="line"><a name="l00010"></a><span class="lineno"> 10</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#include &lt;limits&gt;</span></div> <div class="line"><a name="l00011"></a><span class="lineno"> 11</span>&#160;<span class="preprocessor">#include &quot;boost/foreach.hpp&quot;</span></div> <div class="line"><a name="l00012"></a><span class="lineno"> 12</span>&#160;<span class="preprocessor">#include &quot;boost/program_options.hpp&quot;</span></div> <div class="line"><a name="l00013"></a><span class="lineno"> 13</span>&#160;<span class="preprocessor">#include &lt;boost/log/trivial.hpp&gt;</span></div> <div class="line"><a name="l00014"></a><span class="lineno"> 14</span>&#160;</div> <div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160;<span class="keyword">namespace </span>po = boost::program_options;</div> <div class="line"><a name="l00019"></a><span class="lineno"> 19</span>&#160;<span class="keyword">typedef</span> <span class="keywordtype">int</span> SimTime;</div> <div class="line"><a name="l00023"></a><span class="lineno"> 23</span>&#160;<span class="keyword">typedef</span> <span class="keywordtype">double</span> Capacity ; <span class="comment">// in Mbps</span></div> <div class="line"><a name="l00024"></a><span class="lineno"> 24</span>&#160;</div> <div class="line"><a name="l00031"></a><span class="lineno"> 31</span>&#160;<span class="keyword">typedef</span> std::pair&lt;unsigned int, unsigned int&gt; PonUser;</div> <div class="line"><a name="l00032"></a><span class="lineno"> 32</span>&#160;</div> <div class="line"><a name="l00038"></a><span class="lineno"> 38</span>&#160;<span class="keyword">enum</span> SimMode {VoD, IPTV};</div> <div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160;</div> <div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160;<span class="keyword">const</span> SimTime INF_TIME = std::numeric_limits&lt;int&gt;::max();</div> <div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160;<span class="keyword">const</span> PonUser UNKNOWN = std::make_pair(std::numeric_limits&lt;uint&gt;::max(),</div> <div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160; std::numeric_limits&lt;uint&gt;::max());</div> <div class="line"><a name="l00063"></a><span class="lineno"> 63</span>&#160;<span class="keyword">const</span> Capacity MAX_FLOW_SPEED = 1024; <span class="comment">// 1Gbps</span></div> <div class="line"><a name="l00064"></a><span class="lineno"> 64</span>&#160;</div> <div class="line"><a name="l00072"></a><span class="lineno"> 72</span>&#160;<span class="keyword">const</span> Capacity UNLIMITED = std::numeric_limits&lt;double&gt;::max();</div> <div class="line"><a name="l00073"></a><span class="lineno"> 73</span>&#160;</div> <div class="line"><a name="l00074"></a><span class="lineno"> 74</span>&#160;<span class="comment">// Error exit codes, deprecated (use BOOST_LOG_TRIVIAL instead)</span></div> <div class="line"><a name="l00075"></a><span class="lineno"> 75</span>&#160;<span class="preprocessor">#define ERR_FAILED_ROUTING 1</span></div> <div class="line"><a name="l00076"></a><span class="lineno"> 76</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define ERR_VANILLA_EVENT 2</span></div> <div class="line"><a name="l00077"></a><span class="lineno"> 77</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define ERR_NO_EVENT_HANDLE 3</span></div> <div class="line"><a name="l00078"></a><span class="lineno"> 78</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define ERR_EVENT_IN_THE_PAST 4</span></div> <div class="line"><a name="l00079"></a><span class="lineno"> 79</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define ERR_HANDLEMAP_INSERT 5</span></div> <div class="line"><a name="l00080"></a><span class="lineno"> 80</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define ERR_INPUT_PARAMETERS 6</span></div> <div class="line"><a name="l00081"></a><span class="lineno"> 81</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define ERR_UNKNOWN_CACHE_POLICY 7</span></div> <div class="line"><a name="l00082"></a><span class="lineno"> 82</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00083"></a><span class="lineno"> 83</span>&#160;<span class="preprocessor">#endif </span><span class="comment">/* PLACES_HPP */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00084"></a><span class="lineno"> 84</span>&#160;<span class="preprocessor"></span></div> </div><!-- fragment --></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Thu Jul 16 2015 15:11:52 for PLACeS by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.6 </small></address> </body> </html>
docs/2020.2.0-RELEASE-JAVA/zircon.jvm.libgdx/zircon.jvm.libgdx/org.hexworks.zircon.internal.application/-libgdx-application/get-tile-grid.html
Hexworks/zircon
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8"> <title>getTileGrid</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.application/LibgdxApplication/&lt;get-tileGrid&gt;/#/PointingToDeclaration//-289182350"> <div class="navigation-wrapper" id="navigation-wrapper"> <div class="breadcrumbs"><a href="../../index.html">zircon.jvm.libgdx</a>/<a href="../index.html">org.hexworks.zircon.internal.application</a>/<a href="index.html">LibgdxApplication</a>/<a href="get-tile-grid.html">getTileGrid</a></div> <div class="pull-right d-flex"> <div id="searchBar"></div> </div> </div> <div class="cover "> <h1 class="cover"><span>get</span><wbr></wbr><span>Tile</span><wbr></wbr><span>Grid</span></h1> </div> <div class="divergent-group" data-filterable-current=":zircon.jvm.libgdx:dokkaHtmlAsJava/main" data-filterable-set=":zircon.jvm.libgdx:dokkaHtmlAsJava/main"><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.jvm.libgdx:dokkaHtmlAsJava/main"><div class="symbol monospace block"><span data-unresolved-link="org.hexworks.zircon.internal.grid/InternalTileGrid///PointingToDeclaration/">InternalTileGrid</span> <a href="get-tile-grid.html">getTileGrid</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> <h2 class="">Sources</h2> <div class="table" data-togglable="Sources"><a data-name="%5Borg.hexworks.zircon.internal.application%2FLibgdxApplication%2F%3Cget-tileGrid%3E%2F%23%2FPointingToDeclaration%2F%5D%2FSource%2F-289182350" anchor-label="https://github.com/Hexworks/zircon/tree/master/zircon.jvm.libgdx/src/main/kotlin/org/hexworks/zircon/internal/application/LibgdxApplication.kt#L15" id="%5Borg.hexworks.zircon.internal.application%2FLibgdxApplication%2F%3Cget-tileGrid%3E%2F%23%2FPointingToDeclaration%2F%5D%2FSource%2F-289182350" data-filterable-set=":zircon.jvm.libgdx:dokkaHtmlAsJava/main"></a> <div class="table-row" data-filterable-current=":zircon.jvm.libgdx:dokkaHtmlAsJava/main" data-filterable-set=":zircon.jvm.libgdx:dokkaHtmlAsJava/main"> <div class="main-subrow keyValue "> <div class=""><span class="inline-flex"><a href="https://github.com/Hexworks/zircon/tree/master/zircon.jvm.libgdx/src/main/kotlin/org/hexworks/zircon/internal/application/LibgdxApplication.kt#L15">(source)</a><span class="anchor-wrapper"><span class="anchor-icon" pointing-to="%5Borg.hexworks.zircon.internal.application%2FLibgdxApplication%2F%3Cget-tileGrid%3E%2F%23%2FPointingToDeclaration%2F%5D%2FSource%2F-289182350"></span> <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div> </span></span></div> <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>
web/static/javadoc/5.9.0-rc1/acra/org.acra.config/-dialog-configuration/report-dialog-class.html
ACRA/acra
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8"> <title>reportDialogClass</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"><a href="../../../index.html"> <div id="logo"></div> </a> <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/main.js"></script> <div class="main-content" id="content" pageIds="acra::org.acra.config/DialogConfiguration/reportDialogClass/#/PointingToDeclaration//-535716451"> <div class="navigation-wrapper" id="navigation-wrapper"> <div class="breadcrumbs"><a href="../../../index.html">acra</a>/<a href="../index.html">org.acra.config</a>/<a href="index.html">DialogConfiguration</a>/<a href="report-dialog-class.html">reportDialogClass</a></div> <div class="pull-right d-flex"> <div class="filter-section" id="filter-section"><button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":acra-toast:dokkaHtml/release">androidJvm</button></div> <div id="searchBar"></div> </div> </div> <div class="cover "> <h1 class="cover"><span>report</span><wbr></wbr><span>Dialog</span><wbr></wbr><span>Class</span></h1> </div> <div class="divergent-group" data-filterable-current=":acra-toast:dokkaHtml/release" data-filterable-set=":acra-toast:dokkaHtml/release"><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=":acra-toast:dokkaHtml/release"><div class="symbol monospace">val <a href="report-dialog-class.html">reportDialogClass</a>: <a href="https://developer.android.com/reference/kotlin/java/lang/Class.html">Class</a>&lt;out <a href="https://developer.android.com/reference/kotlin/android/app/Activity.html">Activity</a>&gt;<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> <p class="paragraph">Custom CrashReportDialog class</p><p class="paragraph">Inside the activity, use <a href="../../org.acra.dialog/-crash-report-dialog-helper/index.html">org.acra.dialog.CrashReportDialogHelper</a> to integrate it ACRA.</p><h4 class="">Since</h4><p class="paragraph">5.0.0</p></div> </div> <div class="footer"><span class="go-to-top-icon"><a href="#content"></a></span><span>© 2021 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div> </div> </div> </body> </html>
2016.12.1/apidocs/org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html
wildfly-swarm/wildfly-swarm-javadocs
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_60-ea) on Thu Dec 15 09:48:27 EST 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>WelcomeFileConsumer (Public javadocs 2016.12.1 API)</title> <meta name="date" content="2016-12-15"> <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="WelcomeFileConsumer (Public javadocs 2016.12.1 API)"; } } catch(err) { } //--> var methods = {"i0":6,"i1":18}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/WelcomeFileConsumer.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2016.12.1</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFile.html" title="class in org.wildfly.swarm.config.undertow.servlet_container"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileSupplier.html" title="interface in org.wildfly.swarm.config.undertow.servlet_container"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html" target="_top">Frames</a></li> <li><a href="WelcomeFileConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.wildfly.swarm.config.undertow.servlet_container</div> <h2 title="Interface WelcomeFileConsumer" class="title">Interface WelcomeFileConsumer&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFile.html" title="class in org.wildfly.swarm.config.undertow.servlet_container">WelcomeFile</a>&lt;T&gt;&gt;</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Functional Interface:</dt> <dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd> </dl> <hr> <br> <pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a> public interface <span class="typeNameLabel">WelcomeFileConsumer&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFile.html" title="class in org.wildfly.swarm.config.undertow.servlet_container">WelcomeFile</a>&lt;T&gt;&gt;</span></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html#accept-T-">accept</a></span>(<a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html" title="type parameter in WelcomeFileConsumer">T</a>&nbsp;value)</code> <div class="block">Configure a pre-constructed instance of WelcomeFile resource</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>default <a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html" title="interface in org.wildfly.swarm.config.undertow.servlet_container">WelcomeFileConsumer</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html" title="type parameter in WelcomeFileConsumer">T</a>&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html#andThen-org.wildfly.swarm.config.undertow.servlet_container.WelcomeFileConsumer-">andThen</a></span>(<a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html" title="interface in org.wildfly.swarm.config.undertow.servlet_container">WelcomeFileConsumer</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html" title="type parameter in WelcomeFileConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="accept-org.wildfly.swarm.config.undertow.servlet_container.WelcomeFile-"> <!-- --> </a><a name="accept-T-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>accept</h4> <pre>void&nbsp;accept(<a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html" title="type parameter in WelcomeFileConsumer">T</a>&nbsp;value)</pre> <div class="block">Configure a pre-constructed instance of WelcomeFile resource</div> </li> </ul> <a name="andThen-org.wildfly.swarm.config.undertow.servlet_container.WelcomeFileConsumer-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>andThen</h4> <pre>default&nbsp;<a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html" title="interface in org.wildfly.swarm.config.undertow.servlet_container">WelcomeFileConsumer</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html" title="type parameter in WelcomeFileConsumer">T</a>&gt;&nbsp;andThen(<a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html" title="interface in org.wildfly.swarm.config.undertow.servlet_container">WelcomeFileConsumer</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html" title="type parameter in WelcomeFileConsumer">T</a>&gt;&nbsp;after)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/WelcomeFileConsumer.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2016.12.1</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFile.html" title="class in org.wildfly.swarm.config.undertow.servlet_container"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../../org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileSupplier.html" title="interface in org.wildfly.swarm.config.undertow.servlet_container"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/undertow/servlet_container/WelcomeFileConsumer.html" target="_top">Frames</a></li> <li><a href="WelcomeFileConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
CSS基础/06复合选择器demo.html
luoying123/my-web-demo
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title> 06复合选择器demo </title> <style> h3.title-msg { color: red; } </style> </head> <body> <h3 class="title-msg"> 我的CSS网页案例6 </h3> <h3> 复合选择器之标签指定式选择器 </h3> <p class="title-msg"> 我只是路过的段落标签,同样有title class属性 </p> </body> </html>
treebanks/kpv_ikdp/kpv_ikdp-feat-Clitic.html
UniversalDependencies/universaldependencies.github.io
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-GB" xml:lang="en-GB" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Statistics of Clitic in UD_Komi_Zyrian-IKDP</title> <link rel="root" href=""/> <!-- for JS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="../../css/jquery-ui-redmond.css"/> <link rel="stylesheet" type="text/css" href="../../css/style.css"/> <link rel="stylesheet" type="text/css" href="../../css/style-vis.css"/> <link rel="stylesheet" type="text/css" href="../../css/hint.css"/> <script type="text/javascript" src="../../lib/ext/head.load.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/3.2.2/anchor.min.js"></script> <script>document.addEventListener("DOMContentLoaded", function(event) {anchors.add();});</script> <!-- Set up this custom Google search at https://cse.google.com/cse/business/settings?cx=001145188882102106025:dl1mehhcgbo --> <!-- DZ 2021-01-22: I am temporarily hiding the search field to find out whether it slows down loading of the title page. <script> (function() { var cx = '001145188882102106025:dl1mehhcgbo'; var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; gcse.src = 'https://cse.google.com/cse.js?cx=' + cx; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s); })(); </script> --> <!-- <link rel="shortcut icon" href="favicon.ico"/> --> </head> <body> <div id="main" class="center"> <div id="hp-header"> <table width="100%"><tr><td width="50%"> <span class="header-text"><a href="http://universaldependencies.org/#language-">home</a></span> <span class="header-text"><a href="https://github.com/universaldependencies/docs/edit/pages-source/treebanks/kpv_ikdp/kpv_ikdp-feat-Clitic.md" target="#">edit page</a></span> <span class="header-text"><a href="https://github.com/universaldependencies/docs/issues">issue tracker</a></span> </td><td> <gcse:search></gcse:search> </td></tr></table> </div> <hr/> <div class="v2complete"> This page pertains to UD version 2. </div> <div id="content"> <noscript> <div id="noscript"> It appears that you have Javascript disabled. Please consider enabling Javascript for this page to see the visualizations. </div> </noscript> <!-- The content may include scripts and styles, hence we must load the shared libraries before the content. --> <script type="text/javascript"> console.time('loading libraries'); var root = '../../'; // filled in by jekyll head.js( // External libraries // DZ: Copied from embedding.html. I don't know which one is needed for what, so I'm currently keeping them all. root + 'lib/ext/jquery.min.js', root + 'lib/ext/jquery.svg.min.js', root + 'lib/ext/jquery.svgdom.min.js', root + 'lib/ext/jquery.timeago.js', root + 'lib/ext/jquery-ui.min.js', root + 'lib/ext/waypoints.min.js', root + 'lib/ext/jquery.address.min.js' ); </script> <h2 id="treebank-statistics-ud_komi_zyrian-ikdp-features-clitic">Treebank Statistics: UD_Komi_Zyrian-IKDP: Features: <code class="language-plaintext highlighter-rouge">Clitic</code></h2> <p>This feature is language-specific. It occurs with 1 different values: <code class="language-plaintext highlighter-rouge">So</code>.</p> <p>8 tokens (0%) have a non-empty value of <code class="language-plaintext highlighter-rouge">Clitic</code>. 8 types (1%) occur at least once with a non-empty value of <code class="language-plaintext highlighter-rouge">Clitic</code>. 8 lemmas (1%) occur at least once with a non-empty value of <code class="language-plaintext highlighter-rouge">Clitic</code>. The feature is used with 5 part-of-speech tags: <tt><a href="kpv_ikdp-pos-ADV.html">ADV</a></tt> (2; 0% instances), <tt><a href="kpv_ikdp-pos-NOUN.html">NOUN</a></tt> (2; 0% instances), <tt><a href="kpv_ikdp-pos-VERB.html">VERB</a></tt> (2; 0% instances), <tt><a href="kpv_ikdp-pos-NUM.html">NUM</a></tt> (1; 0% instances), <tt><a href="kpv_ikdp-pos-PRON.html">PRON</a></tt> (1; 0% instances).</p> <h3 id="adv"><code class="language-plaintext highlighter-rouge">ADV</code></h3> <p>2 <tt><a href="kpv_ikdp-pos-ADV.html">ADV</a></tt> tokens (1% of all <code class="language-plaintext highlighter-rouge">ADV</code> tokens) have a non-empty value of <code class="language-plaintext highlighter-rouge">Clitic</code>.</p> <p>The most frequent other feature values with which <code class="language-plaintext highlighter-rouge">ADV</code> and <code class="language-plaintext highlighter-rouge">Clitic</code> co-occurred: <tt><a href="kpv_ikdp-feat-Case.html">Case</a></tt><tt>=EMPTY</tt> (2; 100%).</p> <p><code class="language-plaintext highlighter-rouge">ADV</code> tokens may have the following values of <code class="language-plaintext highlighter-rouge">Clitic</code>:</p> <ul> <li><code class="language-plaintext highlighter-rouge">So</code> (2; 100% of non-empty <code class="language-plaintext highlighter-rouge">Clitic</code>): <em>сідзсэ, Медводзсэ</em></li> </ul> <h3 id="noun"><code class="language-plaintext highlighter-rouge">NOUN</code></h3> <p>2 <tt><a href="kpv_ikdp-pos-NOUN.html">NOUN</a></tt> tokens (0% of all <code class="language-plaintext highlighter-rouge">NOUN</code> tokens) have a non-empty value of <code class="language-plaintext highlighter-rouge">Clitic</code>.</p> <p>The most frequent other feature values with which <code class="language-plaintext highlighter-rouge">NOUN</code> and <code class="language-plaintext highlighter-rouge">Clitic</code> co-occurred: <tt><a href="kpv_ikdp-feat-Case.html">Case</a></tt><tt>=Nom</tt> (2; 100%), <tt><a href="kpv_ikdp-feat-Number.html">Number</a></tt><tt>=Sing</tt> (2; 100%), <tt><a href="kpv_ikdp-feat-Number-psor.html">Number[psor]</a></tt><tt>=Plur</tt> (2; 100%), <tt><a href="kpv_ikdp-feat-Person-psor.html">Person[psor]</a></tt><tt>=3</tt> (2; 100%).</p> <p><code class="language-plaintext highlighter-rouge">NOUN</code> tokens may have the following values of <code class="language-plaintext highlighter-rouge">Clitic</code>:</p> <ul> <li><code class="language-plaintext highlighter-rouge">So</code> (2; 100% of non-empty <code class="language-plaintext highlighter-rouge">Clitic</code>): <em>дадюуныссэ, кӧрныссэ</em></li> </ul> <h3 id="verb"><code class="language-plaintext highlighter-rouge">VERB</code></h3> <p>2 <tt><a href="kpv_ikdp-pos-VERB.html">VERB</a></tt> tokens (1% of all <code class="language-plaintext highlighter-rouge">VERB</code> tokens) have a non-empty value of <code class="language-plaintext highlighter-rouge">Clitic</code>.</p> <p>The most frequent other feature values with which <code class="language-plaintext highlighter-rouge">VERB</code> and <code class="language-plaintext highlighter-rouge">Clitic</code> co-occurred: <tt><a href="kpv_ikdp-feat-Mood.html">Mood</a></tt><tt>=EMPTY</tt> (2; 100%), <tt><a href="kpv_ikdp-feat-Number.html">Number</a></tt><tt>=EMPTY</tt> (2; 100%), <tt><a href="kpv_ikdp-feat-Person.html">Person</a></tt><tt>=EMPTY</tt> (2; 100%), <tt><a href="kpv_ikdp-feat-Tense.html">Tense</a></tt><tt>=EMPTY</tt> (2; 100%), <tt><a href="kpv_ikdp-feat-VerbForm.html">VerbForm</a></tt><tt>=Inf</tt> (2; 100%).</p> <p><code class="language-plaintext highlighter-rouge">VERB</code> tokens may have the following values of <code class="language-plaintext highlighter-rouge">Clitic</code>:</p> <ul> <li><code class="language-plaintext highlighter-rouge">So</code> (2; 100% of non-empty <code class="language-plaintext highlighter-rouge">Clitic</code>): <em>велэднысэ, рӧдиттьынысэ</em></li> </ul> <h3 id="num"><code class="language-plaintext highlighter-rouge">NUM</code></h3> <p>1 <tt><a href="kpv_ikdp-pos-NUM.html">NUM</a></tt> tokens (2% of all <code class="language-plaintext highlighter-rouge">NUM</code> tokens) have a non-empty value of <code class="language-plaintext highlighter-rouge">Clitic</code>.</p> <p>The most frequent other feature values with which <code class="language-plaintext highlighter-rouge">NUM</code> and <code class="language-plaintext highlighter-rouge">Clitic</code> co-occurred: <tt><a href="kpv_ikdp-feat-Case.html">Case</a></tt><tt>=Nom</tt> (1; 100%), <tt><a href="kpv_ikdp-feat-NumType.html">NumType</a></tt><tt>=Card</tt> (1; 100%), <tt><a href="kpv_ikdp-feat-Number.html">Number</a></tt><tt>=Sing</tt> (1; 100%).</p> <p><code class="language-plaintext highlighter-rouge">NUM</code> tokens may have the following values of <code class="language-plaintext highlighter-rouge">Clitic</code>:</p> <ul> <li><code class="language-plaintext highlighter-rouge">So</code> (1; 100% of non-empty <code class="language-plaintext highlighter-rouge">Clitic</code>): <em>Куимсэ</em></li> </ul> <h3 id="pron"><code class="language-plaintext highlighter-rouge">PRON</code></h3> <p>1 <tt><a href="kpv_ikdp-pos-PRON.html">PRON</a></tt> tokens (1% of all <code class="language-plaintext highlighter-rouge">PRON</code> tokens) have a non-empty value of <code class="language-plaintext highlighter-rouge">Clitic</code>.</p> <p>The most frequent other feature values with which <code class="language-plaintext highlighter-rouge">PRON</code> and <code class="language-plaintext highlighter-rouge">Clitic</code> co-occurred: <tt><a href="kpv_ikdp-feat-Case.html">Case</a></tt><tt>=Nom</tt> (1; 100%), <tt><a href="kpv_ikdp-feat-Number.html">Number</a></tt><tt>=Sing</tt> (1; 100%), <tt><a href="kpv_ikdp-feat-Person.html">Person</a></tt><tt>=EMPTY</tt> (1; 100%), <tt><a href="kpv_ikdp-feat-PronType.html">PronType</a></tt><tt>=Ind</tt> (1; 100%).</p> <p><code class="language-plaintext highlighter-rouge">PRON</code> tokens may have the following values of <code class="language-plaintext highlighter-rouge">Clitic</code>:</p> <ul> <li><code class="language-plaintext highlighter-rouge">So</code> (1; 100% of non-empty <code class="language-plaintext highlighter-rouge">Clitic</code>): <em>мыйкесэ</em></li> </ul> </div> <!-- support for embedded visualizations --> <script type="text/javascript"> var root = '../../'; // filled in by jekyll head.js( // We assume that external libraries such as jquery.min.js have already been loaded outside! // (See _layouts/base.html.) // brat helper modules root + 'lib/brat/configuration.js', root + 'lib/brat/util.js', root + 'lib/brat/annotation_log.js', root + 'lib/ext/webfont.js', // brat modules root + 'lib/brat/dispatcher.js', root + 'lib/brat/url_monitor.js', root + 'lib/brat/visualizer.js', // embedding configuration root + 'lib/local/config.js', // project-specific collection data root + 'lib/local/collections.js', // Annodoc root + 'lib/annodoc/annodoc.js', // NOTE: non-local libraries 'https://spyysalo.github.io/conllu.js/conllu.js' ); var webFontURLs = [ // root + 'static/fonts/Astloch-Bold.ttf', root + 'static/fonts/PT_Sans-Caption-Web-Regular.ttf', root + 'static/fonts/Liberation_Sans-Regular.ttf' ]; var setupTimeago = function() { jQuery("time.timeago").timeago(); }; head.ready(function() { setupTimeago(); // mark current collection (filled in by Jekyll) Collections.listing['_current'] = ''; // perform all embedding and support functions Annodoc.activate(Config.bratCollData, Collections.listing); }); </script> <!-- google analytics --> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-55233688-1', 'auto'); ga('send', 'pageview'); </script> <div id="footer"> <p class="footer-text">&copy; 2014–2021 <a href="http://universaldependencies.org/introduction.html#contributors" style="color:gray">Universal Dependencies contributors</a>. Site powered by <a href="http://spyysalo.github.io/annodoc" style="color:gray">Annodoc</a> and <a href="http://brat.nlplab.org/" style="color:gray">brat</a></p>. </div> </div> </body> </html>
orion_web_template/Template/vendors/bower_components/jqTree/_examples/10_icon_buttons.html
orioncode/orionplatform
--- title: Use icon toggle buttons layout: page js: examples/icon_buttons.js css: example.css --- <p id="nav"> <a href="../09_custom_html/">&laquo; Example 9</a> <a href="../11_right-to-left/" class="next">Example 11 &raquo;</a> </p> <h1>Example 10 - use icon toggle buttons</h1> <p> You can use the <strong>openedIcon</strong> and <strong>closedIcon</strong> options to use html for the toggle buttons. You can for example use <a href="http://fortawesome.github.io/Font-Awesome/">Fontawesome icons</a>. </p> <div id="tree1" data-url="/example_data/"></div> <h3>javascript</h3> {% highlight js %} $('#tree1').tree({ closedIcon: $('<i class="fa fa-arrow-circle-right"></i>'), openedIcon: $('<i class="fa fa-arrow-circle-down"></i>') }); {% endhighlight %}
docs/api/org/springframework/test/context/package-summary.html
mattxia/spring-2.5-analysis
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_03) on Mon Nov 19 21:41:12 CET 2007 --> <TITLE> org.springframework.test.context (Spring Framework API 2.5) </TITLE> <META NAME="date" CONTENT="2007-11-19"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.springframework.test.context (Spring Framework API 2.5)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <a href="http://www.springframework.org/" target="_top">The Spring Framework</a></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../org/springframework/test/annotation/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../../org/springframework/test/context/junit38/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/springframework/test/context/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <H2> Package org.springframework.test.context </H2> This package contains the <em>Spring TestContext Framework</em> which provides annotation-driven unit and integration testing support that is agnostic of the actual testing framework in use. <P> <B>See:</B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="#package_description"><B>Description</B></A> <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Interface Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../org/springframework/test/context/ContextLoader.html" title="interface in org.springframework.test.context">ContextLoader</A></B></TD> <TD> Strategy interface for loading an <A HREF="../../../../org/springframework/context/ApplicationContext.html" title="interface in org.springframework.context"><CODE>application context</CODE></A>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../org/springframework/test/context/TestExecutionListener.html" title="interface in org.springframework.test.context">TestExecutionListener</A></B></TD> <TD> <code>TestExecutionListener</code> defines a <em>listener</em> API for reacting to test execution events published by the <A HREF="../../../../org/springframework/test/context/TestContextManager.html" title="class in org.springframework.test.context"><CODE>TestContextManager</CODE></A> with which the listener is registered.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../org/springframework/test/context/TestContext.html" title="class in org.springframework.test.context">TestContext</A></B></TD> <TD> TestContext encapsulates the context in which a test is executed, agnostic of the actual testing framework in use.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../org/springframework/test/context/TestContextManager.html" title="class in org.springframework.test.context">TestContextManager</A></B></TD> <TD> <code>TestContextManager</code> is the main entry point into the <em>Spring TestContext Framework</em>, which provides support for loading and accessing <A HREF="../../../../org/springframework/context/ApplicationContext.html" title="interface in org.springframework.context"><CODE>application contexts</CODE></A>, dependency injection of test instances, <A HREF="../../../../org/springframework/transaction/annotation/Transactional.html" title="annotation in org.springframework.transaction.annotation"><CODE>transactional</CODE></A> execution of test methods, etc.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Annotation Types Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../org/springframework/test/context/ContextConfiguration.html" title="annotation in org.springframework.test.context">ContextConfiguration</A></B></TD> <TD> ContextConfiguration defines class-level metadata which can be used to instruct client code with regard to how to load and configure an <A HREF="../../../../org/springframework/context/ApplicationContext.html" title="interface in org.springframework.context"><CODE>ApplicationContext</CODE></A>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../org/springframework/test/context/TestExecutionListeners.html" title="annotation in org.springframework.test.context">TestExecutionListeners</A></B></TD> <TD>TestExecutionListeners defines class-level metadata for configuring which <A HREF="../../../../org/springframework/test/context/TestExecutionListener.html" title="interface in org.springframework.test.context"><CODE>TestExecutionListeners</CODE></A> should be registered with a <A HREF="../../../../org/springframework/test/context/TestContextManager.html" title="class in org.springframework.test.context"><CODE>TestContextManager</CODE></A>.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="package_description"><!-- --></A><H2> Package org.springframework.test.context Description </H2> <P> <p>This package contains the <em>Spring TestContext Framework</em> which provides annotation-driven unit and integration testing support that is agnostic of the actual testing framework in use. The same techniques and annotation-based configuration used in, for example, a JUnit 3.8 environment can also be applied to tests written with JUnit 4.4, TestNG, etc.</p> <p>In addition to providing generic and extensible testing infrastructure, the Spring TestContext Framework provides out-of-the-box support for Spring-specific integration testing functionality such as context management and caching, dependency injection of test fixtures, and transactional test management with default rollback semantics.</p> <P> <P> <DL> </DL> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <a href="http://www.springframework.org/" target="_top">The Spring Framework</a></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../org/springframework/test/annotation/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../../org/springframework/test/context/junit38/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/springframework/test/context/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright &copy; 2002-2007 <a href=http://www.springframework.org/ target=_top>The Spring Framework</a>.</i> </BODY> </HTML>
dom/doc/servicio/correo/package-use.html
resto-tesis/resto-tesis
<!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_67) on Fri Nov 14 18:07:20 ART 2014 --> <title>Uses of Package servicio.correo</title> <meta name="date" content="2014-11-14"> <link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package servicio.correo"; } //--> </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?servicio/correo/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 servicio.correo" class="title">Uses of Package<br>servicio.correo</h1> </div> <div class="contentContainer">No usage of servicio.correo</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?servicio/correo/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>
Spring/jars/spring-framework-5.1.18.RELEASE/docs/javadoc-api/org/springframework/web/reactive/resource/class-use/ContentVersionStrategy.html
akhr/java
<!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_232) on Tue Sep 15 08:53:08 UTC 2020 --> <title>Uses of Class org.springframework.web.reactive.resource.ContentVersionStrategy (Spring Framework 5.1.18.RELEASE API)</title> <meta name="date" content="2020-09-15"> <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.springframework.web.reactive.resource.ContentVersionStrategy (Spring Framework 5.1.18.RELEASE API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/springframework/web/reactive/resource/ContentVersionStrategy.html" title="class in org.springframework.web.reactive.resource">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-files/index-1.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Spring Framework</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/springframework/web/reactive/resource/class-use/ContentVersionStrategy.html" target="_top">Frames</a></li> <li><a href="ContentVersionStrategy.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.springframework.web.reactive.resource.ContentVersionStrategy" class="title">Uses of Class<br>org.springframework.web.reactive.resource.ContentVersionStrategy</h2> </div> <div class="classUseContainer">No usage of org.springframework.web.reactive.resource.ContentVersionStrategy</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/springframework/web/reactive/resource/ContentVersionStrategy.html" title="class in org.springframework.web.reactive.resource">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-files/index-1.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Spring Framework</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/springframework/web/reactive/resource/class-use/ContentVersionStrategy.html" target="_top">Frames</a></li> <li><a href="ContentVersionStrategy.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
docs/sv/amiq_eth_pkg-amiq_eth_packet_ptp.html
amiq-consulting/amiq_eth
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta name="collection" content="api"> <title>amiq_eth API Specification</title> <meta name="keywords" content="amiq_eth API Specification"> <link href="style.css" rel="stylesheet" type="text/css"> <link href="jq.css" rel="stylesheet" type="text/css"/> <script src="jq.js"></script> <script src="search.js"></script> <script> $(document).ready(function() { $("input#autocomplete").catcomplete({ autoFocus: true, source: SEARCH_INDEX, select: function( event, ui ) { parent.elementFrame.location.href = ui.item.link; return false; } }); }); </script> <script src="mktree.js" language="javascript"></script> <script type="text/javascript"> function windowTitle() { parent.document.title=document.title; } function toggleText(id) { var expandedStyle = document.getElementById('expanded'+id).style; var collapsedStyle = document.getElementById('collapsed'+id).style; if (expandedStyle.display == 'block') { expandedStyle.display = 'none'; collapsedStyle.display = 'block'; } else { expandedStyle.display = 'block'; collapsedStyle.display = 'none'; } } </script> </head> <body onload="windowTitle();" bgcolor="white"> <a name="top"></a> <h2 class="page-element-name">class <a href="summary-amiq_eth_pkg.html">amiq_eth_pkg</a> :: amiq_eth_packet_ptp</h2> <hr> <div class="fileSummary" id="fileSummary"> <a href="#constructor">Constructor</a> <a href="#typedefs">Typedefs</a> <a href="#variables">Variables</a> <a href="#constraints">Constraints</a> <a href="#functions">Functions</a> <a href="#diagrams">Diagrams</a> </div> <hr> <div class="classHierarchy"> <a href="amiq_eth_pkg-amiq_eth_packet.html">amiq_eth_packet</a> <br> &nbsp;&nbsp;<img src="inherit.gif"> <a href="amiq_eth_pkg-amiq_eth_packet_ether_type.html">amiq_eth_packet_ether_type</a> <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="inherit.gif"> amiq_eth_packet_ptp <br> </div> <hr> <p> <pre>PTP packet</pre> </p> <hr> <!-- ========= START Parameters ======= --> <!-- ========= END Parameters ======= --> <!-- ========= START Constructor ======= --> <a name="inheritedconstructor"></a> <table width="100%"> <tbody> <tr class="elementsTableHeading"> <th colspan="2"> <a class="floatRight" href="#top">Top</a> <a name="constructor">Constructor</a> </th> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> <a ></a> </div> </td> <td> <div class="functionSignature"> <a name="function_new"><b>new</b>( input <a >string</a> name = "" )</a> </div> <div class="description">Constructor<br><br><b>Arguments:</b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>name</b> - the name assigned to the instance of this class<br></div> </td> </tr> </tbody> </table> <!-- ========= END Constructor ======= --> <!-- ========= START Typedefs ======= --> <a name="inheritedtypedefs"></a> <table width="100%"> <tbody> <tr class="elementsTableHeading"> <th colspan="2"> <a class="floatRight" href="#top">Top</a> <a name="typedefs">Typedefs</a> </th> </tr> <tr class="elementsTableRow"> <td> <b>type_id</b> -> uvm_object_registry#(amiq_eth_packet_ptp, "amiq_eth_packet_ptp") <div class="description"></div> </td> </tr> </tbody> </table> <!-- ========= END Typedefs ======= --> <!-- ========= START Struct Typedefs ======= --> <!-- ========= END Struct Typedefs ======= --> <!-- ========= START Enum Typedefs ======= --> <!-- ========= END Enum Typedefs ======= --> <!-- ========= START Variables ======= --> <a name="inheritedvariables"></a> <table width="100%"> <tbody> <tr class="elementsTableHeading"> <th colspan="2"> <a class="floatRight" href="#top">Top</a> <a name="variables">Variables</a> </th> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> rand <a href="amiq_eth_pkg-amiq_eth_packet_ptp_announce_message.html">amiq_eth_packet_ptp_announce_message</a> </div> </td> <td> <div class="functionSignature"> <a name="variable_announce_message_body"><b>announce_message_body</b></a><br> </div> <div class="description"></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> rand <a href="amiq_eth_pkg-amiq_eth_packet_ptp_delay_req_message.html">amiq_eth_packet_ptp_delay_req_message</a> </div> </td> <td> <div class="functionSignature"> <a name="variable_delay_req_message_body"><b>delay_req_message_body</b></a><br> </div> <div class="description"></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> rand <a href="summary-typedef-amiq_eth_pkg.html#typedef_amiq_eth_fcs">amiq_eth_fcs</a> </div> </td> <td> <div class="functionSignature"> <a name="variable_fcs"><b>fcs</b></a><br> </div> <div class="description"></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> rand <a href="amiq_eth_pkg-amiq_eth_packet_ptp_header.html">amiq_eth_packet_ptp_header</a> </div> </td> <td> <div class="functionSignature"> <a name="variable_header"><b>header</b></a><br> </div> <div class="description"></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> rand <a href="amiq_eth_pkg-amiq_eth_packet_ptp_sync_message.html">amiq_eth_packet_ptp_sync_message</a> </div> </td> <td> <div class="functionSignature"> <a name="variable_sync_message_body"><b>sync_message_body</b></a><br> </div> <div class="description"></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> const static <a >string</a> </div> </td> <td> <div class="functionSignature"> <a name="variable_type_name"><b>type_name</b></a><br> </div> <div class="description"></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> rand <a >bit</a> </div> </td> <td> <div class="functionSignature"> <a name="variable_use_correct_fcs"><b>use_correct_fcs</b></a><br> </div> <div class="description"></div> </td> </tr> </tbody> </table> <!-- ========= END Variables ======= --> <!-- ========= START Inherited Variables ======= --> <a name="inheritedVariables"></a> <table width="100%"> <tbody> <tr class="TableSubHeadingColor"> <th colspan="2"> <a class="floatRight" href="#top">Top</a> <b>Variables inherited from <a href="summary-amiq_eth_pkg.html">amiq_eth_pkg</a> :: <a href="amiq_eth_pkg-amiq_eth_packet.html">amiq_eth_packet</a> </b> </th> </tr> <tr class="elementsTableRow"> <td> <div style="cursor: pointer" onclick="toggleText('IVariables0')" id="collapsedIVariables0"><img src="more.jpg"></div> <div style="display:none;cursor: pointer" onclick="toggleText('IVariables0')" id="expandedIVariables0"> <div><img src="less.jpg"><br></div> <code> <code> <a href="amiq_eth_pkg-amiq_eth_packet.html#variable_destination_address">destination_address</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#variable_min_frame_size">min_frame_size</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#variable_preamble">preamble</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#variable_sfd">sfd</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#variable_source_address">source_address</a> </code> </code> </div> </td> </tr> </tbody> </table> <!-- ========= END Inherited Variables ======= --> <!-- ========= START Constraints ======= --> <a name="inheritedconstraints"></a> <table width="100%"> <tbody> <tr class="elementsTableHeading"> <th colspan="2"> <a class="floatRight" href="#top">Top</a> <a name="constraints">Constraints</a> </th> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> <a href="amiq_eth_pkg-amiq_eth_packet_ptp.html#_use_correct_fcs_c"></a> </div> </td> <td> <div class="functionSignature"> <a name="constrain_use_correct_fcs_c"><b>use_correct_fcs_c</b></a><br> </div> <div class="description"></div> </td> </tr> </tbody> </table> <!-- ========= END Constraints ======= --> <!-- ========= START Functions ======= --> <a name="inheritedfunctions"></a> <table width="100%"> <tbody> <tr class="elementsTableHeading"> <th colspan="2"> <a class="floatRight" href="#top">Top</a> <a name="functions">Functions</a> </th> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> <a >void</a> </div> </td> <td> <div class="functionSignature"> <a name="function___m_uvm_field_automation"><b>__m_uvm_field_automation</b>( input <a >uvm_object</a> tmp_data__, input <a >int</a> what__, input <a >string</a> str__ )</a> </div> <div class="description"><pre></pre></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> virtual <a >bit</a> </div> </td> <td> <div class="functionSignature"> <a name="function_compare"><b>compare</b>( input <a >uvm_object</a> rhs, input <a >uvm_comparer</a> comparer = null )</a> </div> <div class="description">Compares the current class instance with the one provided as an argument<br><br><b>Returns:</b><br>&nbsp;&nbsp;&nbsp;&nbsp;1 - objects are the same, 0 - objects are different<br><br><b>Arguments:</b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>rhs</b> - Right Hand Side object<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>comparer</b> - The UVM comparer object used in evaluating this comparison - default is "null"<br></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> virtual <a >string</a> </div> </td> <td> <div class="functionSignature"> <a name="function_convert2string"><b>convert2string</b>()</a> </div> <div class="description">Converts the information containing in the instance of this class to an easy-to-read string<br><br><b>Returns:</b><br>&nbsp;&nbsp;&nbsp;&nbsp;easy-to-read string with the information contained in the instance of this class<br></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> <a >uvm_object</a> </div> </td> <td> <div class="functionSignature"> <a name="function_create"><b>create</b>( input <a >string</a> name = "" )</a> </div> <div class="description"><pre></pre></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> virtual <a >void</a> </div> </td> <td> <div class="functionSignature"> <a name="function_do_pack"><b>do_pack</b>( input <a >uvm_packer</a> packer )</a> </div> <div class="description">Pack the entire Ethernet PTP packet<br><br><b>Arguments:</b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>packer</b> - the packer used by this function<br></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> virtual <a >void</a> </div> </td> <td> <div class="functionSignature"> <a name="function_do_unpack"><b>do_unpack</b>( input <a >uvm_packer</a> packer )</a> </div> <div class="description">Unpack the entire Ethernet PTP packet<br><br><b>Arguments:</b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>packer</b> - the packer used by this function<br></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> virtual <a >uvm_object_wrapper</a> </div> </td> <td> <div class="functionSignature"> <a name="function_get_object_type"><b>get_object_type</b>()</a> </div> <div class="description"><pre></pre></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> static <a href="amiq_eth_pkg-amiq_eth_packet_ptp.html#typedef_type_id">type_id</a> </div> </td> <td> <div class="functionSignature"> <a name="function_get_type"><b>get_type</b>()</a> </div> <div class="description"><pre></pre></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> virtual <a >string</a> </div> </td> <td> <div class="functionSignature"> <a name="function_get_type_name"><b>get_type_name</b>()</a> </div> <div class="description"><pre></pre></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> virtual <a >void</a> </div> </td> <td> <div class="functionSignature"> <a name="function_pack_for_fcs"><b>pack_for_fcs</b>( ref <a >bit</a> [] bitstream )</a> </div> <div class="description">Function for packing the Ethernet packet using only the required information for computing the FCS<br><br><b>Arguments:</b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>bitstream</b> - the packed bit stream is placed in "bitstream" parameter<br></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> virtual <a >void</a> </div> </td> <td> <div class="functionSignature"> <a name="function_pack_ptp_with_options"><b>pack_ptp_with_options</b>( input <a >uvm_packer</a> packer, input <a >bit</a> local_pack_header, input <a >bit</a> local_pack_body, input <a >bit</a> local_pack_fcs )</a> </div> <div class="description">Pack Ethernet PTP delay request message<br><br><b>Arguments:</b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>packer</b> - the packer used by this function<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>local_pack_header</b> - boolean to control if to pack or not the "header" field<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>local_pack_body</b> - boolean to control if to pack or not the "body" field<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>local_pack_fcs</b> - boolean to control if to pack or not the "fcs" field<br></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> virtual <a >uvm_tlm_generic_payload</a> </div> </td> <td> <div class="functionSignature"> <a name="function_to_generic_payload"><b>to_generic_payload</b>()</a> </div> <div class="description">Function for packing the Ethernet packet into an UVM generic payload class<br><br><b>Returns:</b><br>&nbsp;&nbsp;&nbsp;&nbsp;an instance of the UVM generic payload containing the packed Ethernet packet<br></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> virtual <a >void</a> </div> </td> <td> <div class="functionSignature"> <a name="function_to_wireshark_array"><b>to_wireshark_array</b>( ref <a >byte unsigned</a> [$] byte_data )</a> </div> <div class="description">Pack the Ethernet packet to a list of bytes in the format required by Wireshark software<br><br><b>Arguments:</b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>byte_data</b> - array in which to put the packed information<br></div> </td> </tr> <tr class="elementsTableRow"> <td width="5%"> <div class="functionSignature"> virtual <a >void</a> </div> </td> <td> <div class="functionSignature"> <a name="function_unpack_ptp_with_options"><b>unpack_ptp_with_options</b>( input <a >uvm_packer</a> packer, input <a >bit</a> local_pack_header, input <a >bit</a> local_pack_body, input <a >bit</a> local_pack_fcs )</a> </div> <div class="description">Unpack Ethernet PTP delay request message<br><br><b>Arguments:</b><br>&nbsp;&nbsp;&nbsp;&nbsp;<b>packer</b> - the packer used by this function<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>local_pack_header</b> - boolean to control if to unpack or not the "header" field<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>local_pack_body</b> - boolean to control if to unpack or not the "body" field<br>&nbsp;&nbsp;&nbsp;&nbsp;<b>local_pack_fcs</b> - boolean to control if to unpack or not the "fcs" field<br></div> </td> </tr> </tbody> </table> <!-- ========= END Functions ======= --> <!-- ========= START Inherited Functions ======= --> <a name="inheritedFunctions"></a> <table width="100%"> <tbody> <tr class="TableSubHeadingColor" bgcolor="#eeeeff"> <th colspan="2"> <a class="floatRight" href="#top">Top</a> <b>Functions inherited from <a href="summary-amiq_eth_pkg.html">amiq_eth_pkg</a> :: <a href="amiq_eth_pkg-amiq_eth_packet_ether_type.html">amiq_eth_packet_ether_type</a> </b> </th> </tr> <tr class="elementsTableRow"> <td> <div style="cursor: pointer" onclick="toggleText('IF0')" id="collapsedIF0"><img src="more.jpg"></div> <div style="display:none;cursor: pointer" onclick="toggleText('IF0')" id="expandedIF0"> <div><img src="less.jpg"><br></div> <code> <a href="amiq_eth_pkg-amiq_eth_packet_ether_type.html#function_do_pack_ether_type">do_pack_ether_type</a> , <a href="amiq_eth_pkg-amiq_eth_packet_ether_type.html#function_get_ether_type">get_ether_type</a> , <a href="amiq_eth_pkg-amiq_eth_packet_ether_type.html#function_get_pack_ether_type">get_pack_ether_type</a> , <a href="amiq_eth_pkg-amiq_eth_packet_ether_type.html#function_set_pack_ether_type">set_pack_ether_type</a> </code> </div> </td> </tr> </tbody> </table> <table width="100%"> <tbody> <tr class="TableSubHeadingColor" bgcolor="#eeeeff"> <th colspan="2"> <a class="floatRight" href="#top">Top</a> <b>Functions inherited from <a href="summary-amiq_eth_pkg.html">amiq_eth_pkg</a> :: <a href="amiq_eth_pkg-amiq_eth_packet.html">amiq_eth_packet</a> </b> </th> </tr> <tr class="elementsTableRow"> <td> <div style="cursor: pointer" onclick="toggleText('IF1')" id="collapsedIF1"><img src="more.jpg"></div> <div style="display:none;cursor: pointer" onclick="toggleText('IF1')" id="expandedIF1"> <div><img src="less.jpg"><br></div> <code> <a href="amiq_eth_pkg-amiq_eth_packet.html#function_do_pack_with_options">do_pack_with_options</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#function_do_unpack_with_options">do_unpack_with_options</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#function_get_correct_fcs">get_correct_fcs</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#function_get_pack_destination_address">get_pack_destination_address</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#function_get_pack_preamble">get_pack_preamble</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#function_get_pack_sfd">get_pack_sfd</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#function_get_pack_source_address">get_pack_source_address</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#function_set_pack_destination_address">set_pack_destination_address</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#function_set_pack_preamble">set_pack_preamble</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#function_set_pack_sfd">set_pack_sfd</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#function_set_pack_source_address">set_pack_source_address</a> , <a href="amiq_eth_pkg-amiq_eth_packet.html#function_to_wireshark_string">to_wireshark_string</a> </code> </div> </td> </tr> </tbody> </table> <!-- ========= END Inherited Functions ======= --> <!-- ========= START Tasks ======= --> <!-- ========= END Tasks ======= --> <!-- ========= START Inherited Tasks ======= --> <!-- ========= END Inherited Tasks ======= --> <!-- ========= START Diagrams ======= --> <table summary="" width="100%" border="1" cellpadding="3" cellspacing="0"> <tbody> <tr class="TableHeadingColor"> <th colspan="2"> <a class="floatRight" href="#top">Top</a> <a name="diagrams">Diagrams</a> </th> </tr> <tr class="elementsTableRow"> <td> <div style="cursor: pointer" onclick="toggleText('UC1')" id="collapsedUC1"><img src="more.jpg"><i>&nbsp;Inheritance Diagram</i></div> <div style="display:none;cursor: pointer" onclick="toggleText('UC1')" id="expandedUC1"> <div><img src="less.jpg"><i>&nbsp;Inheritance Diagram</i><br></div> <div style="text-align:center"><img src="amiq_eth_pkg-amiq_eth_packet_ptp_inheritance.png" border="0" usemap="#_inheritance"> <map name="_inheritance"> <area shape="rect" id="node1" href="amiq_eth_pkg-amiq_eth_packet_ptp.html" alt="" coords="985,5,1189,35"><area shape="rect" id="node2" href="amiq_eth_pkg-amiq_eth_packet_ether_type.html" alt="" coords="632,5,904,35"><area shape="poly" id="edge1" alt="" coords="984,23,918,23,918,17,984,17"><area shape="rect" id="node3" href="amiq_eth_pkg-amiq_eth_packet.html" alt="" coords="385,5,551,35"><area shape="poly" id="edge2" alt="" coords="632,23,565,23,565,17,632,17"><area shape="rect" id="node4" alt="" coords="185,5,303,35"><area shape="poly" id="edge3" alt="" coords="384,23,317,23,317,17,384,17"><area shape="rect" id="node5" alt="" coords="5,5,104,35"><area shape="poly" id="edge4" alt="" coords="185,23,118,23,118,17,185,17"> </map> </div> </div> <br> </td> </tr> </tbody> </table> <!-- ========= END Diagrams ======= --> <hr> The documentation for this class was generated from the following file: <a href="../../sv/amiq_eth_packet_ptp.sv">amiq_eth_packet_ptp.sv</a> <div id="bottomPart"> <hr> <p>Generated by <b>cristian.slav</b> on Thu Nov 06 11:19:27 EET 2014 using <a href="http://www.dvteclipse.com/" target="_new"> Specador<sup>TM</sup></a> Version 3.5.25 </p> </div> </body> </html>
web/js/spl/5654facc-ad51-4501-a505-9c0b2035e653.html
OHDSI/Penelope
<?xml version="1.0" encoding="UTF-8"?> <html><body class="spl" id="spl"> <div class="DocumentTitle"> <p class="DocumentTitle"><strong>GOLD BOND BABY CORNSTARCH PLUS- starch, corn, kaolin and zinc oxide powder </strong><br>Chattem, Inc.<br></p> <p class="disclaimer">Disclaimer: Most OTC drugs are not reviewed and approved by FDA, however they may be marketed if they comply with applicable regulations and policies. FDA has not evaluated whether this product complies.</p> </div> <h1>Gold Bond Baby Powder</h1> <div class="Contents"> <div class="Section" data-sectionCode="48780-1"> <a name="section-1"></a><p></p> </div> <div class="Section" data-sectionCode="42229-5"> <a name="section-1"></a><p></p> <h1></h1> <p class="First"><span class="Bold Italics">Drug Facts</span></p> </div> <div class="Section" data-sectionCode="55106-9"> <a name="section-2"></a><p></p> <h1><span class="Bold Italics">Active ingredients</span></h1> <p class="First">Cornstarch 79%</p> </div> <div class="Section" data-sectionCode="55106-9"> <a name="section-3"></a><p></p> <h1><span class="Bold Italics">Active ingredients</span></h1> <p class="First">Kaolin 4%</p> </div> <div class="Section" data-sectionCode="55106-9"> <a name="section-4"></a><p></p> <h1><span class="Bold Italics">Active ingredients</span></h1> <p class="First">Zinc Oxide 15%</p> </div> <div class="Section" data-sectionCode="55105-1"> <a name="section-5"></a><p></p> <h1><span class="Bold Italics">Purpose</span></h1> <p class="First">Skin Protectant</p> </div> <div class="Section" data-sectionCode="34067-9"> <a name="section-6"></a><p></p> <h1><span class="Bold Italics">Uses</span></h1> <ul class="Square"> <li>helps treat and prevent <span class="product-label-link" type="condition" conceptid="200164" conceptname="Diaper rash">diaper rash</span><br> </li> <li>protect chafed skin and minor <span class="product-label-link" type="condition" conceptid="4280604" conceptname="Skin irritation">skin irritations</span> due to <span class="product-label-link" type="condition" conceptid="200164" conceptname="Diaper rash">diaper rash</span><br> </li> <li>helps protect from wetness</li> </ul> </div> <div class="Section" data-sectionCode="34071-1"> <a name="section-7"></a><p></p> <h1><span class="Bold Italics">Warnings</span></h1> <p class="First"><span class="Bold">For external use only.</span></p> <div class="Section" data-sectionCode="50567-7"> <a name="section-7.1"></a><p></p> <h2><span class="Bold">When using this product</span></h2> <ul class="Square"> <li>avoid contact with eyes<br> </li> <li>do not use on broken skin<br> </li> <li>keep powder away from child’s face to avoid inhalation, which can cause breathing problems</li> </ul> </div> <div class="Section" data-sectionCode="50566-9"> <a name="section-7.2"></a><p></p> <h2><span class="Bold">Stop use and ask a doctor if</span></h2> <ul class="Square"> <li>condition worsens<br> </li> <li>symptoms do not get better within 7 days</li> </ul> </div> <div class="Section" data-sectionCode="50565-1"> <a name="section-7.3"></a><p></p> <h2><span class="Bold">Keep out of reach of children. </span></h2> <p class="First">In case of accidental ingestion, get medical help or contact a Poison Control Center right away. </p> </div> </div> <div class="Section" data-sectionCode="34068-7"> <a name="section-8"></a><p></p> <h1><span class="Bold Italics">Directions</span></h1> <ul class="Square"> <li> <span class="Bold">adults and children 2 years and older</span>: apply freely up to 3 or 4 times daily. For best results, <span class="product-label-link" type="condition" conceptid="4039266" conceptname="Dry skin">dry skin</span> thoroughly before applying<br> </li> <li> <span class="Bold">babies: </span>change wet and soiled diapers promptly, cleanse the diaper area and allow to dry. Apply powder liberally as often as necessary, with each diaper change, especially at bedtime, or anytime when exposure to wet diapers may be prolonged. Apply powder close to the body away from child’s face. Carefully shake the powder into the diaper or into the hand and apply to diaper area. </li> </ul> </div> <div class="Section" data-sectionCode="51727-6"> <a name="section-9"></a><p></p> <h1><span class="Bold Italics">Inactive ingredients</span></h1> <p class="First">silica, fragrance (227-071)</p> <p><br></p> </div> <div class="Section" data-sectionCode="51945-4"> <a name="section-10"></a><p></p> <h1><span class="Bold">PRINCIPAL DISPLAY PANEL</span></h1> <p class="First">Cornstarch Plus Gold Bond<span class="Sub">®</span> Baby Powder<br>Medicated Healing Since 1908<span class="Sub">®</span><br>Triple Action Relief<br>Helps prevent &amp; Treat <span class="product-label-link" type="condition" conceptid="200164" conceptname="Diaper rash">Diaper Rash</span> Chafing Minor <span class="product-label-link" type="condition" conceptid="4280604" conceptname="Skin irritation">Skin Irritations</span><br>Net wt 4 oz (113 g) 0073 5 6 0 - 04 </p> <p><img alt="PRINCIPAL DISPLAY PANEL Cornstarch Plus Gold Bond® Baby Powder Net wt 4 oz (113 g) 0073 5 6 0 - 04 " src="http://dailymed.nlm.nih.gov/dailymed/image.cfm?setid=5654facc-ad51-4501-a505-9c0b2035e653&amp;name=gold-bond-baby-powder-01.jpg"></p> </div> </div> <div class="DataElementsTables"> <table class="contentTablePetite" cellSpacing="0" cellPadding="3" width="100%"><tbody> <tr><td class="contentTableTitle"> <strong>GOLD BOND BABY CORNSTARCH PLUS  </strong><br><span class="contentTableReg">cornstarch and kaolin and zinc oxide powder</span> </td></tr> <tr><td><table width="100%" cellpadding="5" cellspacing="0" class="formTablePetite"> <tr><td colspan="4" class="formHeadingTitle">Product Information</td></tr> <tr class="formTableRowAlt"> <td class="formLabel">Product Type</td> <td class="formItem">HUMAN OTC DRUG LABEL</td> <td class="formLabel">Item Code (Source)</td> <td class="formItem">NDC:41167-0230</td> </tr> <tr class="formTableRow"> <td width="30%" class="formLabel">Route of Administration</td> <td class="formItem">TOPICAL</td> <td width="30%" class="formLabel">DEA Schedule</td> <td class="formItem">     </td> </tr> </table></td></tr> <tr><td><table width="100%" cellpadding="3" cellspacing="0" class="formTablePetite"> <tr><td colspan="3" class="formHeadingTitle">Active Ingredient/Active Moiety</td></tr> <tr> <th class="formTitle" scope="col">Ingredient Name</th> <th class="formTitle" scope="col">Basis of Strength</th> <th class="formTitle" scope="col">Strength</th> </tr> <tr class="formTableRowAlt"> <td class="formItem"> <strong>STARCH, CORN</strong> (STARCH, CORN) </td> <td class="formItem">STARCH, CORN</td> <td class="formItem">0.79 g  in 1 g</td> </tr> <tr class="formTableRow"> <td class="formItem"> <strong>KAOLIN</strong> (KAOLIN) </td> <td class="formItem">KAOLIN</td> <td class="formItem">0.04 g  in 1 g</td> </tr> <tr class="formTableRowAlt"> <td class="formItem"> <strong>ZINC OXIDE</strong> (ZINC OXIDE) </td> <td class="formItem">ZINC OXIDE</td> <td class="formItem">0.15 g  in 1 g</td> </tr> </table></td></tr> <tr><td><table width="100%" cellpadding="3" cellspacing="0" class="formTablePetite"> <tr><td colspan="2" class="formHeadingTitle">Inactive Ingredients</td></tr> <tr> <th class="formTitle" scope="col">Ingredient Name</th> <th class="formTitle" scope="col">Strength</th> </tr> <tr class="formTableRowAlt"> <td class="formItem"><strong>SILICON DIOXIDE</strong></td> <td class="formItem"> </td> </tr> </table></td></tr> <tr><td></td></tr> <tr><td><table width="100%" cellpadding="3" cellspacing="0" class="formTablePetite"> <tr><td colspan="5" class="formHeadingTitle">Packaging</td></tr> <tr> <th scope="col" width="1" class="formTitle">#</th> <th scope="col" class="formTitle">Item Code</th> <th scope="col" class="formTitle">Package Description</th> <th scope="col" class="formTitle">Marketing Start Date</th> <th scope="col" class="formTitle">Marketing End Date</th> </tr> <tr class="formTableRowAlt"> <th scope="row" class="formItem">1</th> <td class="formItem">NDC:41167-0230-4</td> <td class="formItem">1 in 1 CARTON</td> <td class="formItem"></td> <td class="formItem"></td> </tr> <tr class="formTableRowAlt"> <th scope="row" class="formItem">1</th> <td class="formItem"></td> <td class="formItem">113 g in 1 BOTTLE</td> <td class="formItem"></td> <td class="formItem"></td> </tr> </table></td></tr> <tr><td></td></tr> <tr><td class="normalizer"><table width="100%" cellpadding="3" cellspacing="0" class="formTableMorePetite"> <tr><td colspan="4" class="formHeadingReg"><span class="formHeadingTitle">Marketing Information</span></td></tr> <tr> <th scope="col" class="formTitle">Marketing Category</th> <th scope="col" class="formTitle">Application Number or Monograph Citation</th> <th scope="col" class="formTitle">Marketing Start Date</th> <th scope="col" class="formTitle">Marketing End Date</th> </tr> <tr class="formTableRowAlt"> <td class="formItem">OTC MONOGRAPH FINAL</td> <td class="formItem">part347</td> <td class="formItem">04/29/1996</td> <td class="formItem"></td> </tr> </table></td></tr> </tbody></table> <table width="100%" cellpadding="3" cellspacing="0" class="formTableMorePetite"><tr><td colspan="4" class="formHeadingReg"> <span class="formHeadingTitle">Labeler - </span>Chattem, Inc. (003336013) </td></tr></table> </div> <p><div class="EffectiveDate">Revised: 9/2011<div class="DocumentMetadata"> <div> <a href="javascript:toggleMixin();">Document Id: </a>e35989c4-d381-47f8-a44a-6aa3b78a38a2</div> <div>Set id: 5654facc-ad51-4501-a505-9c0b2035e653</div> <div>Version: 3</div> <div>Effective Time: 20110909</div> </div> </div> <div class="DistributorName">Chattem, Inc.</div></p> </body></html>
doc/documentation/ca/ualberta/cs/team1travelexpenseapp/package-use.html
CMPUT301W15T01/Team1Project
<!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_34) on Tue Apr 07 13:58:18 MDT 2015 --> <title>Uses of Package ca.ualberta.cs.team1travelexpenseapp</title> <meta name="date" content="2015-04-07"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package ca.ualberta.cs.team1travelexpenseapp"; } //--> </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?ca/ualberta/cs/team1travelexpenseapp/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 ca.ualberta.cs.team1travelexpenseapp" class="title">Uses of Package<br>ca.ualberta.cs.team1travelexpenseapp</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="../../../../ca/ualberta/cs/team1travelexpenseapp/package-summary.html">ca.ualberta.cs.team1travelexpenseapp</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#ca.ualberta.cs.team1travelexpenseapp">ca.ualberta.cs.team1travelexpenseapp</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#ca.ualberta.cs.team1travelexpenseapp.claims">ca.ualberta.cs.team1travelexpenseapp.claims</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#ca.ualberta.cs.team1travelexpenseapp.singletons">ca.ualberta.cs.team1travelexpenseapp.singletons</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#ca.ualberta.cs.team1travelexpenseapp.users">ca.ualberta.cs.team1travelexpenseapp.users</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#dataManagers">dataManagers</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="ca.ualberta.cs.team1travelexpenseapp"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../ca/ualberta/cs/team1travelexpenseapp/package-summary.html">ca.ualberta.cs.team1travelexpenseapp</a> used by <a href="../../../../ca/ualberta/cs/team1travelexpenseapp/package-summary.html">ca.ualberta.cs.team1travelexpenseapp</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/ClaimantClaimsListActivity.html#ca.ualberta.cs.team1travelexpenseapp">ClaimantClaimsListActivity</a> <div class="block">Displays the claimant's list of claims and allows them to be clicked to view the underlying expenses.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/ClaimantExpenseListActivity.html#ca.ualberta.cs.team1travelexpenseapp">ClaimantExpenseListActivity</a> <div class="block">View for showing the expense items of a chosen claim Allows navigation to add/edit expense items Allows claimants to submit claims, as well as view comments from approvers</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/ClaimArrayAdapter.html#ca.ualberta.cs.team1travelexpenseapp">ClaimArrayAdapter</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/ClaimList.html#ca.ualberta.cs.team1travelexpenseapp">ClaimList</a> <div class="block">Implements a list of claims along along with a set of listeners to be updated whenever the list is modified.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/Destination.html#ca.ualberta.cs.team1travelexpenseapp">Destination</a> <div class="block">Destination is the base class model object for storing the name, reason and location of the travel destination.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/EditClaimActivity.html#ca.ualberta.cs.team1travelexpenseapp">EditClaimActivity</a> <div class="block">View for adding/editing claims Provides UI for entering claim information</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/EditExpenseActivity.html#ca.ualberta.cs.team1travelexpenseapp">EditExpenseActivity</a> <div class="block">View for adding/editing an Expense item.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/Expense.html#ca.ualberta.cs.team1travelexpenseapp">Expense</a> <div class="block">Implements the model of an Expense item which is an individual part of a specific claim and contains a date, category, description, cost, currency, receipt photo and whether the expense is flagged or incomplete.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/ExpenseList.html#ca.ualberta.cs.team1travelexpenseapp">ExpenseList</a> <div class="block">Stores a list of Expenses along with a set of listeners to be updated whenever the list is modified.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/Listener.html#ca.ualberta.cs.team1travelexpenseapp">Listener</a> <div class="block">Listener interface, listeners will be placed in views and passed to model objects to allow the model to call update in the listener, the listener then updates the necessary elements of the views in the update method.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/ReceiptPhoto.html#ca.ualberta.cs.team1travelexpenseapp">ReceiptPhoto</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/Tag.html#ca.ualberta.cs.team1travelexpenseapp">Tag</a> <div class="block">Implements the Tags which will be added to Claims in order to provide a way of filtering specific types of Claim.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="ca.ualberta.cs.team1travelexpenseapp.claims"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../ca/ualberta/cs/team1travelexpenseapp/package-summary.html">ca.ualberta.cs.team1travelexpenseapp</a> used by <a href="../../../../ca/ualberta/cs/team1travelexpenseapp/claims/package-summary.html">ca.ualberta.cs.team1travelexpenseapp.claims</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/Destination.html#ca.ualberta.cs.team1travelexpenseapp.claims">Destination</a> <div class="block">Destination is the base class model object for storing the name, reason and location of the travel destination.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/ExpenseList.html#ca.ualberta.cs.team1travelexpenseapp.claims">ExpenseList</a> <div class="block">Stores a list of Expenses along with a set of listeners to be updated whenever the list is modified.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/Tag.html#ca.ualberta.cs.team1travelexpenseapp.claims">Tag</a> <div class="block">Implements the Tags which will be added to Claims in order to provide a way of filtering specific types of Claim.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="ca.ualberta.cs.team1travelexpenseapp.singletons"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../ca/ualberta/cs/team1travelexpenseapp/package-summary.html">ca.ualberta.cs.team1travelexpenseapp</a> used by <a href="../../../../ca/ualberta/cs/team1travelexpenseapp/singletons/package-summary.html">ca.ualberta.cs.team1travelexpenseapp.singletons</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/Expense.html#ca.ualberta.cs.team1travelexpenseapp.singletons">Expense</a> <div class="block">Implements the model of an Expense item which is an individual part of a specific claim and contains a date, category, description, cost, currency, receipt photo and whether the expense is flagged or incomplete.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="ca.ualberta.cs.team1travelexpenseapp.users"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../ca/ualberta/cs/team1travelexpenseapp/package-summary.html">ca.ualberta.cs.team1travelexpenseapp</a> used by <a href="../../../../ca/ualberta/cs/team1travelexpenseapp/users/package-summary.html">ca.ualberta.cs.team1travelexpenseapp.users</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/ClaimList.html#ca.ualberta.cs.team1travelexpenseapp.users">ClaimList</a> <div class="block">Implements a list of claims along along with a set of listeners to be updated whenever the list is modified.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/TagList.html#ca.ualberta.cs.team1travelexpenseapp.users">TagList</a> <div class="block">Stores a list of tags (as an ArrayList) along with a set of listeners to be updated whenever the list is modified.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="dataManagers"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../ca/ualberta/cs/team1travelexpenseapp/package-summary.html">ca.ualberta.cs.team1travelexpenseapp</a> used by <a href="../../../../dataManagers/package-summary.html">dataManagers</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/ClaimList.html#dataManagers">ClaimList</a> <div class="block">Implements a list of claims along along with a set of listeners to be updated whenever the list is modified.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/ReceiptPhoto.html#dataManagers">ReceiptPhoto</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../ca/ualberta/cs/team1travelexpenseapp/class-use/TagList.html#dataManagers">TagList</a> <div class="block">Stores a list of tags (as an ArrayList) along with a set of listeners to be updated whenever the list is modified.</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?ca/ualberta/cs/team1travelexpenseapp/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>
front/output/comment_result.html
zhaowenjian/CCCourse
<!DOCTYPE html> <html ng-app="NKUCourse"> <head> <meta charset="utf-8" /> <meta name="description" content=""/> <meta name="generator" content="Nanoc 4.3.7"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" /> <title></title> <link rel="stylesheet" href="lib/bower_components/angular-material/angular-material.css"> <link rel="stylesheet" type="text/css" href="lib/bower_components/intl-tel-input/build/css/intlTelInput.css" /> <link rel="stylesheet" type="text/css"href="css/scss-css/common.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/nc-nav.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/common_course.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/common_comment.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/welcome.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/advice_feedback.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/nc-nav_constant.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/all_comments.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/course.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/advice.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/hot_courses.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/comment_result.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/main.css"/> <link rel="stylesheet" type="text/css"href="css/scss-css/style.css"/> <script src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script> <script src="lib/bower_components/jquery/dist/jquery.js"></script> <script src="lib/bower_components/angular/angular.js"></script> <script src="lib/bower_components/angular-aria/angular-aria.js"></script> <script src="lib/bower_components/angular-animate/angular-animate.js"></script> <script src="lib/bower_components/angular-material/angular-material.js"></script> <script src="lib/bower_components/angular-material-icons/angular-material-icons.min.js"></script> <script src="lib/bower_components/intl-tel-input/build/js/intlTelInput.js"></script> <script src="lib/bower_components/intl-tel-input/lib/libphonenumber/build/utils.js"></script> <script src="lib/bower_components/international-phone-number/releases/international-phone-number.js"></script> <script src="lib/bower_components/angular-resource/angular-resource.js"></script> <script src="lib/bower_components/angular-messages/angular-messages.js"></script> <script src="lib/bower_components/binnng/slip.js/dist/min.slip.js"></script> <script src="js/coffee-js/ng_app.js"></script> <script src="js/coffee-js/constants.js"></script> <script src="js/coffee-js/net_manager.js"></script> <script src="js/coffee-js/nc-nav.js"></script> <script src="js/coffee-js/nc-star.js"></script> <script src="js/coffee-js/nc-message.js"></script> <script src="js/coffee-js/application.js"></script> <script src="js/coffee-js/main.js"></script> <script src="js/coffee-js/advice_feedback.js"></script> <script src="js/coffee-js/advice.js"></script> <script src="js/coffee-js/course.js"></script> <script src="js/coffee-js/welcome.js"></script> <script src="js/coffee-js/jquery_querystring.js"></script> <script src="js/coffee-js/all_comments.js"></script> <script src="js/coffee-js/hot_courses.js"></script> <script src="js/coffee-js/comment_result.js"></script> </head> <body ng-controller="CommentResultCtrl" id="comment-result" ng-class="" ng-cloak> <div> <div id="conclusion" layout-align="center center"> <p> 亲爱的南开人 <br> 您已回顾了{{count}}门公选课 </p> <div id="btn-group" layout="column"> <!-- <md-button class="btn md-raised md-primary" ng-click="back_search()">分享</md-button> --> <md-button class="btn md-raised md-primary" ng-click="back_search()">再评一门</md-button> <md-button class="btn md-raised md-primary" ng-click="go_advice()">下一步</md-button> </div> </div> </div> <div id="ng-playground"> </div> </body> </html>
_includes/slidePhotos.html
Luke-Holly/Sampson-the-Longhorn-Website
<div class="section animate"> <div id="Does" class="middle"> <img src="https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/2717.jpg" /> </div> <div class="left title"> <div class="content"> <h2>An incredible performing animal.</h2> <p>Sampson is gentle, fun, and loves to show off. He's a real attention-getter who enjoys performing and meeting new people in any place.</p> <a href="#" class="btn-primary">Learn more</a> </div> </div> <div class="right tiles"> <div id="blueimp-gallery" class="blueimp-gallery"> <div class="slides"></div> <h3 class="title"></h3> <a class="prev">‹</a> <a class="next">›</a> <a class="close">×</a> <a class="play-pause"></a> <ol class="indicator"></ol> </div> <div id="links"> <a href="img/commercial.jpg" title="commercial"> <img src="img/commercial.jpg" alt="Sampson in a commercial"> </a> <a href="img/kids.jpg" title="Kids"> <img src="img/kids.jpg" alt="Sampson with kids"> </a> <a href="img/izzy.jpg" title="Izzy"> <img src="img/izzy.jpg" alt="Sampson's trailer"> </a> <img src="https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/Sampson9.jpg" /> <img src="https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/Sampson11.jpg" /> <img src="https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/Sampson15.jpg" /> <img src="https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/Sampson19.jpg" /> </div> </div> </div> <div class="section" id="videos"> <div class="middle"> <img src="https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/SampsonNissan.jpg" /> </div> <div class="right title"> <div class="content"> <h2>Commercials, Promotions, Anything.</h2> <p>Sampson has performed in commercials and ads for years, and is a real attention-getter in any advertisement. He's bold and stately, and a great actor.</p> </div> </div> <div class="left tiles"> <div id="blueimp-video-carousel" class="blueimp-gallery blueimp-gallery-controls blueimp-gallery-carousel"> <div class="slides"></div> <h3 class="title"></h3> <a class="prev">‹</a> <a class="next">›</a> <a class="play-pause"></a> </div> <script> blueimp.Gallery([ { title: 'Casa Ford Commercial', href: 'https://www.youtube.com/watch?v=UeropdKE1VQ', youtube: 'UeropdKE1VQ', type: 'text/html', poster: 'https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/Sampson6.jpg' }, { title: 'Gold N Cash Roundup Commercial', href: 'https://www.youtube.com/watch?v=i_9_qA-lOdE', type: 'text/html', youtube: 'i_9_qA-lOdE', poster: 'https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/Sampson19.jpg' } ], { container: '#blueimp-video-carousel', carousel: true } ); </script> </div> </div> <div class="section"> <div class="middle"> <img src="https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/withKids.jpg" /> </div> <div class="left title"> <div class="content"> <h2>Gentle and kind.</h2> <p>Sampson loves photo-ops, and is a gentle, kind soul. He's awesome with kids and families and loves to be ridden.</p> </div> </div> <div class="right tiles"> <img src="https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/Sampson17.jpg" /> <img src="https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/Sampson2.JPG" /> <img src="https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/Sampson8.jpg" /> <img src="https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/Sampson18.jpg" /> <img src="https://luke-holly.github.io/Sampson-the-Longhorn-Website/img/Sampson4.JPG" /> </div> </div> </div>
archive/v1.6/zh/docs/reference/config/adapters/statsd.html
istio/istio.io
<!doctype html><html lang=en><head><title>Redirecting&mldr;</title><link rel=canonical href=/v1.6/zh/docs/reference/config/policy-and-telemetry/adapters/statsd/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=/v1.6/zh/docs/reference/config/policy-and-telemetry/adapters/statsd/"></head><body><h1>Redirecting&mldr;</h1><a href=/v1.6/zh/docs/reference/config/policy-and-telemetry/adapters/statsd/>Click here if you are not redirected.</a></body></html>
docs/source-class-Native5.Services.Account.ApplicationRepository.html
native5/native5-sdk-client-php
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="ApiGen 2.8.0" /> <meta name="robots" content="noindex" /> <title>File Native5/Services/Account/ApplicationRepository.php</title> <script type="text/javascript" src="resources/combined.js?1180343265"></script> <script type="text/javascript" src="elementlist.js?4004830262"></script> <link rel="stylesheet" type="text/css" media="all" href="resources/bootstrap.min.css?2446941819" /> <link rel="stylesheet" type="text/css" media="all" href="resources/style.css?2979642362" /> </head> <body> <div id="navigation" class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <div class="brand" style="padding: 5px 0 0 5px; height: 20px; line-height: 20px; margin-left: -15PX;"> <img alt="Native5 APIs" src="resources/logo.png" style="width: 32px;" title="Native5 APIs" /> Native5 APIs </div> <div class="nav-collapse"> <ul class="nav"> <li class="divider-vertical"></li> <li> <a href="namespace-Native5.Services.Account.html" title="Summary of Native5\Services\Account"><span>Namespace</span></a> </li> <li> <a href="class-Native5.Services.Account.ApplicationRepository.html" title="Summary of Native5\Services\Account\ApplicationRepository"><span>Class</span></a> </li> <li class="divider-vertical"></li> <li> <a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a> </li> </ul> </div> </div> </div> </div> <div id="left"> <div id="menu"> <form id="search" class="form-search"> <input type="hidden" name="cx" value="" /> <input type="hidden" name="ie" value="UTF-8" /> <input type="text" name="q" class="search-query" placeholder="Search" /> </form> <div id="groups"> <h3>Namespaces</h3> <ul> <li class="active"><a href="namespace-Native5.html">Native5<span></span></a> <ul> <li><a href="namespace-Native5.Api.html">Api</a> </li> <li><a href="namespace-Native5.Control.html">Control</a> </li> <li><a href="namespace-Native5.Identity.html">Identity</a> </li> <li><a href="namespace-Native5.Route.html">Route</a> </li> <li><a href="namespace-Native5.Scheduler.html">Scheduler</a> </li> <li><a href="namespace-Native5.Security.html">Security</a> </li> <li class="active"><a href="namespace-Native5.Services.html">Services<span></span></a> <ul> <li class="active"><a href="namespace-Native5.Services.Account.html">Account</a> </li> <li><a href="namespace-Native5.Services.Analytics.html">Analytics</a> </li> <li><a href="namespace-Native5.Services.Identity.html">Identity</a> </li> <li><a href="namespace-Native5.Services.Job.html">Job</a> </li> <li><a href="namespace-Native5.Services.Messaging.html">Messaging</a> </li> <li><a href="namespace-Native5.Services.Users.html">Users</a> </li> </ul></li> <li><a href="namespace-Native5.Sessions.html">Sessions</a> </li> <li><a href="namespace-Native5.UI.html">UI</a> </li> <li><a href="namespace-Native5.Users.html">Users</a> </li> </ul></li> <li><a href="namespace-None.html">None</a> </li> <li><a href="namespace-PHP.html">PHP</a> </li> </ul> </div> <div id="elements"> <h3>Classes</h3> <ul> <li><a href="class-Native5.Services.Account.Application.html">Application</a></li> <li><a href="class-Native5.Services.Account.ApplicationDAO.html">ApplicationDAO</a></li> <li><a href="class-Native5.Services.Account.ApplicationDeployment.html">ApplicationDeployment</a></li> <li class="active"><a href="class-Native5.Services.Account.ApplicationRepository.html">ApplicationRepository</a></li> <li><a href="class-Native5.Services.Account.DefaultAccountManager.html">DefaultAccountManager</a></li> </ul> <h3>Interfaces</h3> <ul> <li><a href="class-Native5.Services.Account.AccountManager.html">AccountManager</a></li> </ul> </div> </div> </div> <div id="splitter"></div> <div id="right"> <div id="rightInner"> <pre id="source"><code><span id="1" class="l"><a class="l" href="#1"> 1 </a><span class="xlang">&lt;?php</span> </span><span id="2" class="l"><a class="l" href="#2"> 2 </a><span class="php-comment">/** </span></span><span id="3" class="l"><a class="l" href="#3"> 3 </a><span class="php-comment"> * Copyright 2012 Native5. All Rights Reserved </span></span><span id="4" class="l"><a class="l" href="#4"> 4 </a><span class="php-comment"> * </span></span><span id="5" class="l"><a class="l" href="#5"> 5 </a><span class="php-comment"> * Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); </span></span><span id="6" class="l"><a class="l" href="#6"> 6 </a><span class="php-comment"> * You may not use this file except in compliance with the License. </span></span><span id="7" class="l"><a class="l" href="#7"> 7 </a><span class="php-comment"> * </span></span><span id="8" class="l"><a class="l" href="#8"> 8 </a><span class="php-comment"> * Unless required by applicable law or agreed to in writing, software </span></span><span id="9" class="l"><a class="l" href="#9"> 9 </a><span class="php-comment"> * distributed under the License is distributed on an &quot;AS IS&quot; BASIS, </span></span><span id="10" class="l"><a class="l" href="#10">10 </a><span class="php-comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. </span></span><span id="11" class="l"><a class="l" href="#11">11 </a><span class="php-comment"> * See the License for the specific language governing permissions and </span></span><span id="12" class="l"><a class="l" href="#12">12 </a><span class="php-comment"> * limitations under the License. </span></span><span id="13" class="l"><a class="l" href="#13">13 </a><span class="php-comment"> * PHP version 5.3+ </span></span><span id="14" class="l"><a class="l" href="#14">14 </a><span class="php-comment"> * </span></span><span id="15" class="l"><a class="l" href="#15">15 </a><span class="php-comment"> * @category Native5 Application Services </span></span><span id="16" class="l"><a class="l" href="#16">16 </a><span class="php-comment"> * @package Native5\Core\&lt;package&gt; </span></span><span id="17" class="l"><a class="l" href="#17">17 </a><span class="php-comment"> * @author Shamik &lt;shamik@native5.com&gt; </span></span><span id="18" class="l"><a class="l" href="#18">18 </a><span class="php-comment"> * @copyright 2013 Native5. All Rights Reserved </span></span><span id="19" class="l"><a class="l" href="#19">19 </a><span class="php-comment"> * @license See attached LICENSE for details </span></span><span id="20" class="l"><a class="l" href="#20">20 </a><span class="php-comment"> * @version GIT: $gitid$ </span></span><span id="21" class="l"><a class="l" href="#21">21 </a><span class="php-comment"> * @link http://www.docs.native5.com </span></span><span id="22" class="l"><a class="l" href="#22">22 </a><span class="php-comment"> */</span> </span><span id="23" class="l"><a class="l" href="#23">23 </a> </span><span id="24" class="l"><a class="l" href="#24">24 </a><span class="php-keyword1">namespace</span> Native5\Services\Account; </span><span id="25" class="l"><a class="l" href="#25">25 </a> </span><span id="26" class="l"><a class="l" href="#26">26 </a><span class="php-keyword1">class</span> <a id="ApplicationRepository" href="#ApplicationRepository">ApplicationRepository</a> { </span><span id="27" class="l"><a class="l" href="#27">27 </a> <span class="php-keyword1">private</span> <span class="php-var"><a id="$_type" href="#$_type">$_type</a></span>; </span><span id="28" class="l"><a class="l" href="#28">28 </a> <span class="php-keyword1">private</span> <span class="php-var"><a id="$_url" href="#$_url">$_url</a></span>; </span><span id="29" class="l"><a class="l" href="#29">29 </a> </span><span id="30" class="l"><a class="l" href="#30">30 </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <span class="php-keyword2">setType</span> (<span class="php-var">$type</span>) { </span><span id="31" class="l"><a class="l" href="#31">31 </a> <span class="php-var">$this</span>-&gt;_type = <span class="php-var">$type</span>; </span><span id="32" class="l"><a class="l" href="#32">32 </a> } </span><span id="33" class="l"><a class="l" href="#33">33 </a> </span><span id="34" class="l"><a class="l" href="#34">34 </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <span class="php-keyword2">getType</span> () { </span><span id="35" class="l"><a class="l" href="#35">35 </a> <span class="php-keyword1">return</span> <span class="php-var">$this</span>-&gt;_type; </span><span id="36" class="l"><a class="l" href="#36">36 </a> } </span><span id="37" class="l"><a class="l" href="#37">37 </a> </span><span id="38" class="l"><a class="l" href="#38">38 </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <a id="_setUrl" href="#_setUrl">setUrl</a> (<span class="php-var">$url</span>) { </span><span id="39" class="l"><a class="l" href="#39">39 </a> <span class="php-var">$this</span>-&gt;_url = <span class="php-var">$url</span>; </span><span id="40" class="l"><a class="l" href="#40">40 </a> } </span><span id="41" class="l"><a class="l" href="#41">41 </a> </span><span id="42" class="l"><a class="l" href="#42">42 </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <a id="_getUrl" href="#_getUrl">getUrl</a> () { </span><span id="43" class="l"><a class="l" href="#43">43 </a> <span class="php-keyword1">return</span> <span class="php-var">$this</span>-&gt;_url; </span><span id="44" class="l"><a class="l" href="#44">44 </a> } </span><span id="45" class="l"><a class="l" href="#45">45 </a> </span><span id="46" class="l"><a class="l" href="#46">46 </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <span class="php-keyword2">serialize</span>(<span class="php-var">$format</span>) { </span><span id="47" class="l"><a class="l" href="#47">47 </a> <span class="php-keyword1">if</span>(<span class="php-var">$format</span> == <span class="php-quote">'json'</span>) { </span><span id="48" class="l"><a class="l" href="#48">48 </a> <span class="php-var">$output</span> = <span class="php-keyword1">array</span>(); </span><span id="49" class="l"><a class="l" href="#49">49 </a> <span class="php-var">$output</span>[<span class="php-quote">'type'</span>] = <span class="php-var">$this</span>-&gt;_type; </span><span id="50" class="l"><a class="l" href="#50">50 </a> <span class="php-var">$output</span>[<span class="php-quote">'url'</span>] = <span class="php-var">$this</span>-&gt;_url; </span><span id="51" class="l"><a class="l" href="#51">51 </a> <span class="php-keyword1">return</span> <span class="php-var">$output</span>; </span><span id="52" class="l"><a class="l" href="#52">52 </a> } </span><span id="53" class="l"><a class="l" href="#53">53 </a> } </span><span id="54" class="l"><a class="l" href="#54">54 </a>} </span><span id="55" class="l"><a class="l" href="#55">55 </a> </span><span id="56" class="l"><a class="l" href="#56">56 </a></span></code></pre> </div> </div> </body> </html>
pages/sandbox/estudiante/index.html
J3S/WebFundamentos
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Sandbox | Estudiante</title> <!-- Tell the browser to be responsive to screen width --> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <!-- Bootstrap 3.3.6 --> <link rel="stylesheet" href="../../../externo/bootstrap/css/bootstrap.min.css"> <!-- Font Awesome --> <link rel="stylesheet" href="../../../externo/font-awesome/css/font-awesome.min.css"> <!-- Ionicons --> <link rel="stylesheet" href="../../../externo/ionicons/css/ionicons.min.css"> <!-- Theme style --> <link rel="stylesheet" href="../../../externo/admin-lte/css/AdminLTE.min.css"> <!-- AdminLTE Skins. Choose a skin from the css/skins folder instead of downloading all of them to reduce the load. --> <link rel="stylesheet" href="../../../externo/admin-lte/css/skins/_all-skins.css"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body class="hold-transition skin-blue sidebar-mini"> <!-- Site wrapper --> <div class="wrapper"> <header class="main-header"> <!-- Logo --> <a href="#" class="logo"> <!-- mini logo for sidebar mini 50x50 pixels --> <span class="logo-mini"><b>SB</b></span> <!-- logo for regular state and mobile devices --> <span class="logo-lg"><b>Sandbox</b></span> </a> <!-- Header Navbar: style can be found in header.less --> <nav class="navbar navbar-static-top"> <!-- Sidebar toggle button--> <a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <div class="navbar-custom-menu"> <ul class="nav navbar-nav"> <!-- User Account: style can be found in dropdown.less --> <li class="dropdown user user-menu"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <img class="user-image" alt="User Image" id="imagen-menu"> <span class="hidden-xs nombre" id="nombre-menu">Alexander Pierce</span> </a> <ul class="dropdown-menu"> <!-- User image --> <li class="user-header"> <img class="img-circle" alt="User Image" id="imagen-popup-menu"> <p class="nombre" id="nombre-popup-menu"> Alexander Pierce - Web Developer <small>Member since Nov. 2012</small> </p> </li> <!-- Menu Footer--> <li class="user-footer"> <div class="pull-left"> <a href="./perfil" class="btn btn-default btn-flat">Perfil</a> </div> <div class="pull-right"> <a href="../../../" class="btn btn-default btn-flat">Cerrar sesión</a> </div> </li> </ul> </li> </ul> </div> </nav> </header> <!-- =============================================== --> <!-- Left side column. contains the sidebar --> <aside class="main-sidebar"> <!-- sidebar: style can be found in sidebar.less --> <section class="sidebar"> <!-- Sidebar user panel --> <div class="user-panel"> <div class="pull-left image"> <img class="img-circle" alt="User Image" id="imagen-perfil"> </div> <div class="pull-left info"> <p class="nombre" id="nombre-perfil">Alexander Pierce</p> <a href="#" id="nivel-prog"><i class="fa fa-circle text-success"></i> Online</a> </div> </div> <!-- sidebar menu: : style can be found in sidebar.less --> <ul class="sidebar-menu"> <li class="header">Opciones</li> <li class="active"><a href="#"><i class="fa fa-tasks"></i> <span>Resumen</span></a></li> <li><a href="./ejercicios"><i class="fa fa-book"></i> <span>Ejercicios</span></a></li> </ul> </section> <!-- /.sidebar --> </aside> <!-- =============================================== --> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Estadísticas <small>de ejercicios resueltos</small> </h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> <li class="active">Resumen</li> </ol> </section> <!-- Main content --> <section class="content"> <!-- LINE CHART --> <div class="box box-info"> <div class="box-header with-border"> <h3 class="box-title">Ejercicios resueltos en la última semana</h3> </div> <div class="box-body"> <div class="chart"> <canvas id="lineChart" style="height:250px"></canvas> </div> </div> <div class="box-header with-border"> <h3 class="box-title">Porcentaje resuelto por nivel</h3> </div> <div class="box-body"> <div class="row" id="nivel"></div> </div> <!-- /.box-body --> </div> <!-- /.box --> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <footer class="main-footer"> <div class="pull-right hidden-xs"> <b>Version</b> 2.3.7 </div> <strong>Copyright &copy; 2014-2016 <a href="http://almsaeedstudio.com">Almsaeed Studio</a>.</strong> All rights reserved. </footer> <!-- Control Sidebar --> <aside class="control-sidebar control-sidebar-dark"> <!-- Create the tabs --> <ul class="nav nav-tabs nav-justified control-sidebar-tabs"> </ul> <!-- Tab panes --> <div class="tab-content"> <!-- Home tab content --> <div class="tab-pane" id="control-sidebar-home-tab"> </div> <!-- /.tab-pane --> <!-- Stats tab content --> <div class="tab-pane" id="control-sidebar-stats-tab">Stats Tab Content</div> <!-- /.tab-pane --> </div> </aside> <!-- /.control-sidebar --> <!-- Add the sidebar's background. This div must be placed immediately after the control sidebar --> <div class="control-sidebar-bg"></div> </div> <!-- ./wrapper --> <!-- jQuery 2.2.3 --> <script src="../../../externo/jquery/jquery-2.2.3.min.js"></script> <!-- Bootstrap 3.3.6 --> <script src="../../../externo/bootstrap/js/bootstrap.min.js"></script> <!-- SlimScroll --> <script src="../../../externo/slimScroll/jquery.slimscroll.min.js"></script> <!-- FastClick --> <script src="../../../externo/fastclick/fastclick.js"></script> <!-- AdminLTE App --> <script src="../../../externo/admin-lte/js/app.min.js"></script> <!-- AdminLTE for demo purposes --> <script src="../../../externo/admin-lte/js/demo.js"></script> <script src="../../../externo/chartjs/Chart.js"></script> <script src="../../../externo/knob/jquery.knob.js"></script> <script src="../../../js/sandbox_estudiante.js"></script> <script src="../../../js/sandbox_estudiante_cargar_datos.js"></script> </body> </html>
2016/05/09/2016-05-09-js中的函数参数的传递/index.html
panpan040828/panpan040828.github.io
<!doctype html> <html class="theme-next pisces use-motion"> <head> <meta charset="UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/> <meta http-equiv="Cache-Control" content="no-transform" /> <meta http-equiv="Cache-Control" content="no-siteapp" /> <link href="/vendors/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" /> <link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css"> <link href="/vendors/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" /> <link href="/css/main.css?v=5.1.0" rel="stylesheet" type="text/css" /> <meta name="keywords" content="javaScript," /> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" /> <meta name="description" content="函数外部的值复制给函数内部的参数,就和把值从一个变量复制到另一个变量一样。 一. js里面变量的类型js里变量类型包括两种:基本类型值、引用类型值。 基本类型:简单的数据段。包括:undefined、Null、Boolean、Number、String 引用类型:指的是可能由多个值构成的对象。包括:对象、数组、日期、正则表达式、函数 二. js中函数参数的传递1. 传递的是基本类型的参数函数传递的"> <meta property="og:type" content="article"> <meta property="og:title" content="js中的函数参数传递"> <meta property="og:url" content="http://panpanfish.com/2016/05/09/2016-05-09-js中的函数参数的传递/index.html"> <meta property="og:site_name" content="筱鱼兒"> <meta property="og:description" content="函数外部的值复制给函数内部的参数,就和把值从一个变量复制到另一个变量一样。 一. js里面变量的类型js里变量类型包括两种:基本类型值、引用类型值。 基本类型:简单的数据段。包括:undefined、Null、Boolean、Number、String 引用类型:指的是可能由多个值构成的对象。包括:对象、数组、日期、正则表达式、函数 二. js中函数参数的传递1. 传递的是基本类型的参数函数传递的"> <meta property="og:updated_time" content="2016-05-16T03:28:36.994Z"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="js中的函数参数传递"> <meta name="twitter:description" content="函数外部的值复制给函数内部的参数,就和把值从一个变量复制到另一个变量一样。 一. js里面变量的类型js里变量类型包括两种:基本类型值、引用类型值。 基本类型:简单的数据段。包括:undefined、Null、Boolean、Number、String 引用类型:指的是可能由多个值构成的对象。包括:对象、数组、日期、正则表达式、函数 二. js中函数参数的传递1. 传递的是基本类型的参数函数传递的"> <script type="text/javascript" id="hexo.configurations"> var NexT = window.NexT || {}; var CONFIG = { root: '/', scheme: 'Pisces', sidebar: {"position":"left","display":"post"}, fancybox: true, motion: true, duoshuo: { userId: 0, author: '博主' }, algolia: { applicationID: '', apiKey: '', indexName: '', hits: {"per_page":10}, labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"} } }; </script> <title> js中的函数参数传递 | 筱鱼兒 </title> </head> <body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans"> <script type="text/javascript"> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "//hm.baidu.com/hm.js?e18d9ee1b355055e9a39ffec741beb44"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <div class="container one-collumn sidebar-position-left page-post-detail "> <div class="my-headband"></div> <header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"><div class="my-site-meta "> <div class="custom-logo-site-title"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <span class="site-title">筱鱼兒</span> <span class="logo-line-after"><i></i></span> </a> </div> <p class="site-subtitle">温柔于己,温柔于人</p> </div> <div class="site-nav-toggle"> <button> <span class="btn-bar"></span> <span class="btn-bar"></span> <span class="btn-bar"></span> </button> </div> <nav class="site-nav"> <ul id="menu" class="menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"> <i class="menu-item-icon fa fa-fw fa-home"></i> <br /> 首页 </a> </li> <li class="menu-item menu-item-categories"> <a href="/categories" rel="section"> <i class="menu-item-icon fa fa-fw fa-th"></i> <br /> 分类 </a> </li> <li class="menu-item menu-item-archives"> <a href="/archives" rel="section"> <i class="menu-item-icon fa fa-fw fa-archive"></i> <br /> 归档 </a> </li> <li class="menu-item menu-item-tags"> <a href="/tags" rel="section"> <i class="menu-item-icon fa fa-fw fa-tags"></i> <br /> 标签 </a> </li> <li class="menu-item menu-item-demo"> <a href="/categories/Demo/" rel="section"> <i class="menu-item-icon fa fa-fw fa-code"></i> <br /> demo </a> </li> </ul> </nav> </div> </header> <main id="main" class="main"> <div class="main-inner"> <div class="content-wrap"> <div id="content" class="content"> <div id="posts" class="posts-expand"> <article class="post post-type-normal " itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <h1 class="post-title" itemprop="name headline"> js中的函数参数传递 </h1> <div class="post-meta"> <span class="post-time"> <span class="post-meta-item-icon"> <i class="fa fa-calendar-o"></i> </span> <span class="post-meta-item-text">发表于</span> <time itemprop="dateCreated" datetime="2016-05-09T00:00:00+08:00" content="2016-05-09"> 2016-05-09 </time> </span> <span class="post-category" > &nbsp; | &nbsp; <span class="post-meta-item-icon"> <i class="fa fa-folder-o"></i> </span> <span class="post-meta-item-text">分类于</span> <span itemprop="about" itemscope itemtype="https://schema.org/Thing"> <a href="/categories/前端笔记/" itemprop="url" rel="index"> <span itemprop="name">前端笔记</span> </a> </span> </span> <span class="post-comments-count"> &nbsp; | &nbsp; <a href="/2016/05/09/2016-05-09-js中的函数参数的传递/#comments" itemprop="discussionUrl"> <span class="post-comments-count ds-thread-count" data-thread-key="2016/05/09/2016-05-09-js中的函数参数的传递/" itemprop="commentsCount"></span> </a> </span> </div> </header> <div class="post-body" itemprop="articleBody"> <p>函数外部的值复制给函数内部的参数,就和把值从一个<strong>变量</strong>复制到另一个变量一样。</p> <h3 id="一-js里面变量的类型"><a href="#一-js里面变量的类型" class="headerlink" title="一. js里面变量的类型"></a>一. js里面变量的类型</h3><p>js里变量类型包括两种:基本类型值、引用类型值。</p> <p><strong>基本类型:</strong>简单的数据段。包括:undefined、Null、Boolean、Number、String</p> <p><strong>引用类型:</strong>指的是可能由多个值构成的对象。包括:对象、数组、日期、正则表达式、函数</p> <h3 id="二-js中函数参数的传递"><a href="#二-js中函数参数的传递" class="headerlink" title="二. js中函数参数的传递"></a>二. js中函数参数的传递</h3><h4 id="1-传递的是基本类型的参数"><a href="#1-传递的是基本类型的参数" class="headerlink" title="1. 传递的是基本类型的参数"></a>1. 传递的是基本类型的参数</h4><p>函数传递的是基本类型的参数时,只是将传递的值复制给一个函数内部的局部变量(arguments对象中的一个元素),而原来那个变量没有变化。</p> <pre><code>eg: function addTen(num){ num+=10; return num; } var count=20; var reslut=addTen(count);//30 alert(count);//20 并没有变化 </code></pre><h4 id="2-传递的是引用类型的参数时"><a href="#2-传递的是引用类型的参数时" class="headerlink" title="2. 传递的是引用类型的参数时"></a>2. 传递的是引用类型的参数时</h4><p>在向参数传递引用类型的值时,会把这个值在内存中的<strong>地址</strong>复制给函数中的局部变量(arguments对象中的一个元素),因此这个局部变量的变化会反映在函数的外部。</p> <pre><code> eg1: function setName(obj){ obj.name=&quot;ss&quot;; } var person=new Object(); setName(person);//把person在内存中的地址复制给了obj,所以对obj的修改其实就是对外部person的修改 alert(person.name);//&quot;ss&quot; eg2: function setName(obj){ obj.name=&quot;ss&quot;; obj=new Object();//内部重写了obj并不会影响person的变化 obj.name=&quot;dd&quot;; } var person=new Object(); setName(person);//将person的地址传给了obj alert(person.name)//&quot;ss&quot; eg3: var a={b:1}; var c=1; var foo1 = function(value){ value=2; } foo1(a.b); foo1(c); console.log(a.b);//1 console.log(c);//1 var foo2 = function(value){ value.b = 2; } foo2(a); console.log(a.b);//按引用传 </code></pre> </div> <div> </div> <div> </div> <footer class="post-footer"> <div class="post-tags"> <a href="/tags/javaScript/" rel="tag"># javaScript</a> </div> <div class="post-nav"> <div class="post-nav-next post-nav-item"> <a href="/2016/05/09/2016-05-08-前端性能优化的经验/" rel="next" title="前端性能优化的经验"> <i class="fa fa-chevron-left"></i> 前端性能优化的经验 </a> </div> <span class="post-nav-divider"></span> <div class="post-nav-prev post-nav-item"> <a href="/2016/05/13/2016-05-13-js中的同步和异步执行/" rel="prev" title="js中的同步和异步执行"> js中的同步和异步执行 <i class="fa fa-chevron-right"></i> </a> </div> </div> </footer> </article> <div class="post-spread"> </div> </div> </div> <div class="comments" id="comments"> <div class="ds-thread" data-thread-key="2016/05/09/2016-05-09-js中的函数参数的传递/" data-title="js中的函数参数传递" data-url="http://panpanfish.com/2016/05/09/2016-05-09-js中的函数参数的传递/"> </div> </div> </div> <div class="sidebar-toggle"> <div class="sidebar-toggle-line-wrap"> <span class="sidebar-toggle-line sidebar-toggle-line-first"></span> <span class="sidebar-toggle-line sidebar-toggle-line-middle"></span> <span class="sidebar-toggle-line sidebar-toggle-line-last"></span> </div> </div> <aside id="sidebar" class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc sidebar-nav-active" data-target="post-toc-wrap" > 文章目录 </li> <li class="sidebar-nav-overview" data-target="site-overview"> 站点概览 </li> </ul> <section class="site-overview sidebar-panel "> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" src="/uploads/icon.jpg" alt="Yu Pan" /> <p class="site-author-name" itemprop="name">Yu Pan</p> <p class="site-description motion-element" itemprop="description">在学习中不断进步</p> </div> <nav class="site-state motion-element"> <div class="site-state-item site-state-posts"> <a href="/archives"> <span class="site-state-item-count">81</span> <span class="site-state-item-name">日志</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories"> <span class="site-state-item-count">10</span> <span class="site-state-item-name">分类</span> </a> </div> <div class="site-state-item site-state-tags"> <a href="/tags"> <span class="site-state-item-count">16</span> <span class="site-state-item-name">标签</span> </a> </div> </nav> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/panpan040828" target="_blank" title="GitHub"> <i class="fa fa-fw fa-github"></i> GitHub </a> </span> <span class="links-of-author-item"> <a href="http://weibo.com" target="_blank" title="微博"> <i class="fa fa-fw fa-globe"></i> 微博 </a> </span> </div> </section> <section class="post-toc-wrap motion-element sidebar-panel sidebar-panel-active"> <div class="post-toc"> <div class="post-toc-content"><ol class="nav"><li class="nav-item nav-level-3"><a class="nav-link" href="#一-js里面变量的类型"><span class="nav-number">1.</span> <span class="nav-text">一. js里面变量的类型</span></a></li><li class="nav-item nav-level-3"><a class="nav-link" href="#二-js中函数参数的传递"><span class="nav-number">2.</span> <span class="nav-text">二. js中函数参数的传递</span></a><ol class="nav-child"><li class="nav-item nav-level-4"><a class="nav-link" href="#1-传递的是基本类型的参数"><span class="nav-number">2.1.</span> <span class="nav-text">1. 传递的是基本类型的参数</span></a></li><li class="nav-item nav-level-4"><a class="nav-link" href="#2-传递的是引用类型的参数时"><span class="nav-number">2.2.</span> <span class="nav-text">2. 传递的是引用类型的参数时</span></a></li></ol></li></ol></div> </div> </section> </div> </aside> </div> </main> <footer id="footer" class="footer"> <div class="footer-inner"> <div class="copyright" > &copy; <span itemprop="copyrightYear">2016</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">Yu Pan</span> </div> <!-- <div class="powered-by"> 由 <a class="theme-link" href="http://hexo.io">Hexo</a> 强力驱动 </div> <div class="theme-info"> 主题 - <a class="theme-link" href="https://github.com/iissnan/hexo-theme-next"> NexT.Pisces </a> </div> --> </div> </footer> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> </div> </div> <script type="text/javascript"> if (Object.prototype.toString.call(window.Promise) !== '[object Function]') { window.Promise = null; } </script> <script type="text/javascript" src="/vendors/jquery/index.js?v=2.1.3"></script> <script type="text/javascript" src="/vendors/fastclick/lib/fastclick.min.js?v=1.0.6"></script> <script type="text/javascript" src="/vendors/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script> <script type="text/javascript" src="/vendors/velocity/velocity.min.js?v=1.2.1"></script> <script type="text/javascript" src="/vendors/velocity/velocity.ui.min.js?v=1.2.1"></script> <script type="text/javascript" src="/vendors/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script> <script type="text/javascript" src="/js/src/utils.js?v=5.1.0"></script> <script type="text/javascript" src="/js/src/motion.js?v=5.1.0"></script> <script type="text/javascript" src="/js/src/affix.js?v=5.1.0"></script> <script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.1.0"></script> <script type="text/javascript" src="/js/src/scrollspy.js?v=5.1.0"></script> <script type="text/javascript" src="/js/src/post-details.js?v=5.1.0"></script> <script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.0"></script> <script type="text/javascript"> var duoshuoQuery = {short_name:"panpanfish"}; (function() { var ds = document.createElement('script'); ds.type = 'text/javascript';ds.async = true; ds.id = 'duoshuo-script'; ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js'; ds.charset = 'UTF-8'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ds); })(); </script> </body> </html>
Source/bidbuy/public/frontend/assets/css/css/sidebar.css
beannguyen/bidbuyvn
.heading-sidebar { background: url(images/title-sidebar.png) no-repeat top right; height: 22px; line-height: 22px; } .heading-sidebar h3 { margin-left: 50px; }
docs/_docs/javadoc/com/centurylink/mdw/timer/startup/package-frame.html
CenturyLinkCloud/mdw
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc --> <title>com.centurylink.mdw.timer.startup (MDW 6 API JavaDocs)</title> <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="../../../../../com/centurylink/mdw/timer/startup/package-summary.html" target="classFrame">com.centurylink.mdw.timer.startup</a></h1> <div class="indexContainer"> <h2 title="Classes">Classes</h2> <ul title="Classes"> <li><a href="AssetImportMonitor.html" title="class in com.centurylink.mdw.timer.startup" target="classFrame">AssetImportMonitor</a></li> <li><a href="ScheduledEventMonitor.html" title="class in com.centurylink.mdw.timer.startup" target="classFrame">ScheduledEventMonitor</a></li> <li><a href="TimerTaskRegistration.html" title="class in com.centurylink.mdw.timer.startup" target="classFrame">TimerTaskRegistration</a></li> <li><a href="UnscheduledEventMonitor.html" title="class in com.centurylink.mdw.timer.startup" target="classFrame">UnscheduledEventMonitor</a></li> <li><a href="UserGroupMonitor.html" title="class in com.centurylink.mdw.timer.startup" target="classFrame">UserGroupMonitor</a></li> </ul> </div> </body> </html>
2017.5.0/apidocs/org/wildfly/swarm/config/messaging/activemq/server/class-use/DiscoveryGroup.html
wildfly-swarm/wildfly-swarm-javadocs
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_112) on Mon May 01 08:43:55 MST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.config.messaging.activemq.server.DiscoveryGroup (Public javadocs 2017.5.0 API)</title> <meta name="date" content="2017-05-01"> <link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.wildfly.swarm.config.messaging.activemq.server.DiscoveryGroup (Public javadocs 2017.5.0 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.5.0</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?org/wildfly/swarm/config/messaging/activemq/server/class-use/DiscoveryGroup.html" target="_top">Frames</a></li> <li><a href="DiscoveryGroup.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.config.messaging.activemq.server.DiscoveryGroup" class="title">Uses of Class<br>org.wildfly.swarm.config.messaging.activemq.server.DiscoveryGroup</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.messaging.activemq">org.wildfly.swarm.config.messaging.activemq</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.messaging.activemq.server">org.wildfly.swarm.config.messaging.activemq.server</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.messaging.activemq"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a> in <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/package-summary.html">org.wildfly.swarm.config.messaging.activemq</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/package-summary.html">org.wildfly.swarm.config.messaging.activemq</a> that return <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a></code></td> <td class="colLast"><span class="typeNameLabel">Server.ServerResources.</span><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/Server.ServerResources.html#discoveryGroup-java.lang.String-">discoveryGroup</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;key)</code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/package-summary.html">org.wildfly.swarm.config.messaging.activemq</a> that return types with arguments of type <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Server.ServerResources.</span><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/Server.ServerResources.html#discoveryGroups--">discoveryGroups</a></span>()</code> <div class="block">Get the list of DiscoveryGroup resources</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/package-summary.html">org.wildfly.swarm.config.messaging.activemq</a> with parameters of type <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/Server.html" title="type parameter in Server">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Server.</span><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/Server.html#discoveryGroup-org.wildfly.swarm.config.messaging.activemq.server.DiscoveryGroup-">discoveryGroup</a></span>(<a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a>&nbsp;value)</code> <div class="block">Add the DiscoveryGroup object to the list of subresources</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Method parameters in <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/package-summary.html">org.wildfly.swarm.config.messaging.activemq</a> with type arguments of type <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/Server.html" title="type parameter in Server">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Server.</span><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/Server.html#discoveryGroups-java.util.List-">discoveryGroups</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a>&gt;&nbsp;value)</code> <div class="block">Add all DiscoveryGroup objects to this subresource</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.messaging.activemq.server"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a> in <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/package-summary.html">org.wildfly.swarm.config.messaging.activemq.server</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/package-summary.html">org.wildfly.swarm.config.messaging.activemq.server</a> with type parameters of type <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a>&lt;T extends <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a>&lt;T&gt;&gt;</span></code> <div class="block">Multicast group to listen to receive broadcast from other servers announcing their connectors.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroupConsumer.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroupConsumer</a>&lt;T extends <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a>&lt;T&gt;&gt;</span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroupSupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroupSupplier</a>&lt;T extends <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a>&gt;</span></code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/package-summary.html">org.wildfly.swarm.config.messaging.activemq.server</a> that return <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">DiscoveryGroup</a></code></td> <td class="colLast"><span class="typeNameLabel">DiscoveryGroupSupplier.</span><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroupSupplier.html#get--">get</a></span>()</code> <div class="block">Constructed instance of DiscoveryGroup resource</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/DiscoveryGroup.html" title="class in org.wildfly.swarm.config.messaging.activemq.server">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.5.0</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?org/wildfly/swarm/config/messaging/activemq/server/class-use/DiscoveryGroup.html" target="_top">Frames</a></li> <li><a href="DiscoveryGroup.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
2.5.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/elytron/DirContextConsumer.html
wildfly-swarm/wildfly-swarm-javadocs
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Wed Dec 04 18:43:01 MST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>DirContextConsumer (BOM: * : All 2.5.1.Final-SNAPSHOT API)</title> <meta name="date" content="2019-12-04"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="DirContextConsumer (BOM: * : All 2.5.1.Final-SNAPSHOT API)"; } } catch(err) { } //--> var methods = {"i0":6,"i1":18}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/DirContextConsumer.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.5.1.Final-SNAPSHOT</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/config/elytron/DirContext.ReferralMode.html" title="enum in org.wildfly.swarm.config.elytron"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/wildfly/swarm/config/elytron/DirContextSupplier.html" title="interface in org.wildfly.swarm.config.elytron"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/elytron/DirContextConsumer.html" target="_top">Frames</a></li> <li><a href="DirContextConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.wildfly.swarm.config.elytron</div> <h2 title="Interface DirContextConsumer" class="title">Interface DirContextConsumer&lt;T extends <a href="../../../../../org/wildfly/swarm/config/elytron/DirContext.html" title="class in org.wildfly.swarm.config.elytron">DirContext</a>&lt;T&gt;&gt;</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Functional Interface:</dt> <dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd> </dl> <hr> <br> <pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a> public interface <span class="typeNameLabel">DirContextConsumer&lt;T extends <a href="../../../../../org/wildfly/swarm/config/elytron/DirContext.html" title="class in org.wildfly.swarm.config.elytron">DirContext</a>&lt;T&gt;&gt;</span></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/elytron/DirContextConsumer.html#accept-T-">accept</a></span>(<a href="../../../../../org/wildfly/swarm/config/elytron/DirContextConsumer.html" title="type parameter in DirContextConsumer">T</a>&nbsp;value)</code> <div class="block">Configure a pre-constructed instance of DirContext resource</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>default <a href="../../../../../org/wildfly/swarm/config/elytron/DirContextConsumer.html" title="interface in org.wildfly.swarm.config.elytron">DirContextConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/elytron/DirContextConsumer.html" title="type parameter in DirContextConsumer">T</a>&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/elytron/DirContextConsumer.html#andThen-org.wildfly.swarm.config.elytron.DirContextConsumer-">andThen</a></span>(<a href="../../../../../org/wildfly/swarm/config/elytron/DirContextConsumer.html" title="interface in org.wildfly.swarm.config.elytron">DirContextConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/elytron/DirContextConsumer.html" title="type parameter in DirContextConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="accept-org.wildfly.swarm.config.elytron.DirContext-"> <!-- --> </a><a name="accept-T-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>accept</h4> <pre>void&nbsp;accept(<a href="../../../../../org/wildfly/swarm/config/elytron/DirContextConsumer.html" title="type parameter in DirContextConsumer">T</a>&nbsp;value)</pre> <div class="block">Configure a pre-constructed instance of DirContext resource</div> </li> </ul> <a name="andThen-org.wildfly.swarm.config.elytron.DirContextConsumer-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>andThen</h4> <pre>default&nbsp;<a href="../../../../../org/wildfly/swarm/config/elytron/DirContextConsumer.html" title="interface in org.wildfly.swarm.config.elytron">DirContextConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/elytron/DirContextConsumer.html" title="type parameter in DirContextConsumer">T</a>&gt;&nbsp;andThen(<a href="../../../../../org/wildfly/swarm/config/elytron/DirContextConsumer.html" title="interface in org.wildfly.swarm.config.elytron">DirContextConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/elytron/DirContextConsumer.html" title="type parameter in DirContextConsumer">T</a>&gt;&nbsp;after)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/DirContextConsumer.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.5.1.Final-SNAPSHOT</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/config/elytron/DirContext.ReferralMode.html" title="enum in org.wildfly.swarm.config.elytron"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/wildfly/swarm/config/elytron/DirContextSupplier.html" title="interface in org.wildfly.swarm.config.elytron"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/elytron/DirContextConsumer.html" target="_top">Frames</a></li> <li><a href="DirContextConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
old/documentation/function-mdwp_MarkdownPost.html
cityindex-attic/WordPress-publish-from-external
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="ApiGen 2.7.0" /> <title>Function mdwp_MarkdownPost</title> <script type="text/javascript" src="resources/combined.js?2398159053"></script> <script type="text/javascript" src="elementlist.js?1206859476"></script> <link rel="stylesheet" type="text/css" media="all" href="resources/style.css?1567499433" /> </head> <body> <div id="left"> <div id="menu"> <a href="index.html" title="Overview"><span>Overview</span></a> <div id="groups"> <h3>Packages</h3> <ul> <li><a href="package-david.coombes.html">david-coombes</a> </li> <li class="active"><a href="package-None.html">None</a> </li> <li><a href="package-PlaceLocalInclude.html">PlaceLocalInclude<span></span></a> <ul> <li><a href="package-PlaceLocalInclude.simple.html">simple<span></span></a> <ul> <li><a href="package-PlaceLocalInclude.simple.html.html">html<span></span></a> <ul> <li><a href="package-PlaceLocalInclude.simple.html.dom.html">dom</a> </li> </ul></li></ul></li></ul></li> <li><a href="package-post.editor.html">post-editor</a> </li> </ul> </div> <hr /> <div id="elements"> <h3>Classes</h3> <ul> <li><a href="class-Markdown_Parser.html">Markdown_Parser</a></li> <li><a href="class-MarkdownExtra_Parser.html">MarkdownExtra_Parser</a></li> <li><a href="class-Textile.html">Textile</a></li> </ul> <h3>Functions</h3> <ul> <li><a href="function-identify_modifier_markdown.html">identify_modifier_markdown</a></li> <li><a href="function-Markdown.html">Markdown</a></li> <li><a href="function-mdwp_add_p.html">mdwp_add_p</a></li> <li><a href="function-mdwp_hide_tags.html">mdwp_hide_tags</a></li> <li class="active"><a href="function-mdwp_MarkdownPost.html">mdwp_MarkdownPost</a></li> <li><a href="function-mdwp_show_tags.html">mdwp_show_tags</a></li> <li><a href="function-mdwp_strip_p.html">mdwp_strip_p</a></li> <li><a href="function-smarty_modifier_markdown.html">smarty_modifier_markdown</a></li> </ul> </div> </div> </div> <div id="splitter"></div> <div id="right"> <div id="rightInner"> <form id="search"> <input type="hidden" name="cx" value="" /> <input type="hidden" name="ie" value="UTF-8" /> <input type="text" name="q" class="text" /> <input type="submit" value="Search" /> </form> <div id="navigation"> <ul> <li> <a href="index.html" title="Overview"><span>Overview</span></a> </li> <li> <a href="package-None.html" title="Summary of None"><span>Package</span></a> </li> <li class="active"> <span>Function</span> </li> </ul> <ul> <li> <a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a> </li> <li> <a href="todo.html" title="Todo list"><span>Todo</span></a> </li> </ul> <ul> </ul> </div> <div id="content" class="function"> <h1>Function mdwp_MarkdownPost</h1> <div class="info"> <b>Located at</b> <a href="source-function-mdwp_MarkdownPost.html#105" title="Go to source code">markdown.php</a><br /> </div> <table class="summary" id="parameters"> <caption>Parameters summary</caption> <tr data-order="text" id="$text"> <td class="name"><code> </code></td> <td class="value"><code><var>$text</var></code></td> <td> </td> </tr> </table> </div> <div id="footer"> API documentation generated by <a href="http://apigen.org">ApiGen 2.7.0</a> </div> </div> </div> </body> </html>
src/main/webapp/regionResults.html
navssurtani/query-demo
<!DOCTYPE html> <html xmlns:ng="http://angularjs.org" id="ng-app" ng-app="query-demo"> <head lang="en"> <meta charset="UTF-8"> <title>Election results!</title> </head> <body> <h3>Let's get the election results <strong>for a region!</strong></h3> <select name="regionNumbers" id="regionNumbers" style="width: 100px"> <option value="0">0</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <input id="electionResults" type="submit" name="electionResults" value="Get Election Results!"> <br /> <br /> <h4>Senate results</h4> <div id="senateResultsTable"> </div> <br /> <br /> <h4>Governor results</h4> <div id="governorResultsTable"> </div> <br/> <br/> </body> <script type="text/javascript"> window.onload = function() { var port = ""; var url = 'ws://' + window.location.host + port + '/ispn-query-demo/regionResult'; var ws = new WebSocket(url); document.getElementById("electionResults").onclick = function(event){ var pollingStation = getpollingStation(); console.log("Polling station: " + pollingStation); var senateJson = {"pollingStation": pollingStation, "electionType": "senateVote"}; var govJson = {"pollingStation": pollingStation, "electionType": "governorVote"}; ws.send(JSON.stringify(senateJson)); ws.send(JSON.stringify(govJson)); }; ws.onconnect = function(e) { console.log("Connected up!"); }; ws.onerror = function(e) { console.log("Error somewhere: " + e); }; ws.onclose = function(e) { console.log("Host has closed the connection"); console.log(e); }; ws.onmessage = function(e) { result = JSON.parse(e.data); console.log(result); var electionType = result.electionType; var tableToInsert = buildInnerHtml(result.candidates); if (electionType === "senateVote") { document.getElementById("senateResultsTable").innerHTML = tableToInsert; }; if (electionType === "governorVote") { document.getElementById("governorResultsTable").innerHTML = tableToInsert; }; }; function buildInnerHtml() { var candidates = arguments[0]; console.log(candidates); var tagTableEntryOpen = "<td style='width: 100px; text-align: left;'>"; var tagTableEntryClose = "</td>" // Will be a table with two columns. var tableString = "<table>"; tableString += "<tr><td style='width: 100px; color: red; text-align: left;'>Candidate</td>"; tableString += "<td style='width: 100px; color: red; text-align: left;'>Votes</td></tr>"; tableString += "<tr>" + tagTableEntryOpen + "---------------" + tagTableEntryClose; tableString += tagTableEntryOpen + "---------------" + tagTableEntryClose + "</tr>"; for (var i = 0; i < candidates.length; i++) { var c = candidates[i]; tableString += "<tr>" + tagTableEntryOpen + c.name + tagTableEntryClose; tableString += tagTableEntryOpen + c.votes + tagTableEntryClose + "</tr>"; } tableString += "</table>"; return tableString; } function getpollingStation() { regionElement = document.getElementById("regionNumbers"); return regionElement.selectedIndex; }; } </script>
Allura/allura/ext/admin/templates/project_tools.html
lym/allura-git
{#- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -#} {% extends g.theme.master %} {% from 'allura:templates/jinja_master/sidebar_menu.html' import sidebar_item with context %} {% do g.register_forge_css('css/forge/deck.css') %} {% do g.register_forge_js('js/project_tools.js', location='body_js_tail') %} {% block title %}{{c.project.name}} / Tools{% endblock %} {% block header %}Tools{% endblock %} {% block content %} {% set full_url = h.absurl(c.project.url()) %} <h3>Click to install</h3> <div class="nested-grid-container"> {% for tool in installable_tools %} <span class="tcenter grid-4 installable_tool"> <a class="install_trig" data-tool="{{ tool['name'] }}"> <span class="tool_title">{{ tool['app'].tool_label }}{{' (%s)' % tool.app.status if tool.app.status != 'production' else ''}}</span><br /> <img src="{{ g.theme.app_icon_url(tool['name'], 32) or 'unk.png' }}" alt=""> </a> </span> {% endfor %} <span class="tcenter grid-4 installable_tool"> <a class="install_trig" data-tool=""> <span class="tool_title">Subproject</span><br /> <img src="{{ g.theme.app_icon_url('subproject', 32) }}" alt=""> </a> </span> </div> <form method="post" action="update_mounts?limit={{limit}}&page={{page}}" id="install_form" style="display:none"> <input type="hidden" name="new.ordinal" value="{{total_mounts}}"/> <input type="hidden" name="new.ep_name" class="new_ep_name"> <label class="grid-13" for="new.mount_label">Label</label> <div class="grid-13"><input type="text" name="new.mount_label" class="new_mount_label" title="This will be the name displayed in your project toolbar."> </div> <label class="grid-13" for="new.mount_point">Url Path</label> <div class="grid-13"> <input id="id_url_input" type="text" name="new.mount_point" title="The url for this tool relative to {{ full_url }} " class="new_mount_point"> <p><span id="full-url-preview" data-url="{{full_url}}"></span></p> </div> <div id="install_options">{# js inserts form fields here #}</div> <div class="grid-13">&nbsp;</div> <hr> <div class="grid-13">&nbsp;</div> <div class="grid-13"> <input type="submit" value="Save" name="new.install"> <a href="#" class="close btn link">Cancel</a> </div> {{lib.csrf_token()}} </form> {{c.install_modal.display(content='<h1>Install <span id="install_tool_label">Tool</span></h1>')}} <div> {{c.page_list.display(page=page, limit=limit, count=total_mounts)}} </div> <h3>Installed tools</h3> <p> Sortable - define top menu order by moving tools with your mouse. </p> <div id="sortable" class="clearfix fourcol"> {% for mount in mounts %} {% if 'ac' in mount %} {% set app = mount['ac'].load()(c.project, mount['ac']) %} {% set links = app.admin_menu() %} {% set label = mount['ac'].options['mount_label'] if mount['ac'].options['mount_label'] != 'Tool Name' else mount['ac'].options['mount_point'] %} <div class="fleft {%if app.tool_label.lower()=='admin' or (app.tool_label.lower() in app.project.neighborhood.get_anchored_tools().keys())%}isnt_sorted{%endif%}"> <ul class="deck"> <li class="tcenter"> <span class="tool_title">{{ label }}</span><br /> <img src="{{ g.theme.app_icon_url(app, 48) }}" alt=""> </li> {% for link in links %} {{sidebar_item(link)}} {% endfor %} {{sidebar_item(app.admin_menu_delete_button)}} </ul> {# for ordering #} <input type="hidden" class="mount_point" value="{{mount['ac'].options.mount_point}}"/> {% for w in app.admin_menu_widgets() %} {{ w.display() }} {% endfor %} </div> {% endif %} {% if 'sub' in mount and not mount['sub'].deleted %} <div class="fleft"> <ul class="deck"> <li class="tcenter"> <span class="tool_name">{{ mount['sub'].name }}</span><br /> <img src="{{ g.theme.app_icon_url('subproject', 48) }}" alt=""> </li> <li> <a href="#" data-mount-point="{{ mount['sub'].shortname }}" data-subproject="true" class="admin_tool_delete_modal"> <span>Delete</span> </a> </li> </ul> </div> {% endif %} {% endfor %} </div> </div> <div style="clear:both"> {{c.page_list.display(page=page, limit=limit, count=total_mounts)}} </div> {{c.admin_modal.display()}} {{c.mount_delete.display()}} <div><!--dummy--> <h3 style="clear:left">Grouping</h3> <form method="POST" action="configure_tool_grouping?limit={{limit}}&page={{page}}" id="configure_grouping_form"> <label>Threshold for grouping tools by type: <input name="grouping_threshold" value="{{c.project.get_tool_data('allura', 'grouping_threshold', 1)}}"/> </label> <br/><input type="submit" value="Change"/> {{lib.csrf_token()}} </form> {% endblock %} {% block extra_js %} <script> var defaults = { {% for tool in installable_tools %} '{{tool.name}}':{'default_label':'{{tool.app.default_mount_label}}','default_mount':'{{tool.app.default_mount_point}}'}{% if not loop.last %},{% endif %} {% endfor %} }; var install_options_url = "{{ c.project.url().rstrip('/') }}/admin/options_on_install"; </script> <script> /* Real-time preview of a Url Path (aka mount point). */ var url_preview = $('#full-url-preview'); // "Preview Url Path" displayed on when creating a new tool. var full_url = $(url_preview).data().url; // Full url path of current project. // Update the url path preview as they type. $('#id_url_input').keyup(function(){ url_preview.html(full_url + '<strong class="url-keyword">' + $(this).val() + "</strong>"); }); // Set url_preview to the Url Path Defaults when creating a new tool. $('.installable_tool').find('a').on('click', function () { // Add the link tool's 'nice name'. defaults['external link'] = defaults.link var tool_name = $.trim($(this).text().toLowerCase()); // If a tool has a default url path, use it for an initial preview. if (defaults[tool_name]) { url_preview.html(full_url + '<strong class="url-keyword">' + defaults[tool_name].default_mount + "</strong>"); } else { // No defaults for this tool, so we use the base url to ensure the url_preview is reset. url_preview.html(full_url); } }); </script> {% endblock %} {% block extra_css %} <style type="text/css"> .pad .fourcol .fleft { min-height: 200px; } div.isnt_sorted > ul.deck { cursor: not-allowed; } #configure_grouping_form { padding-left: 10px; } #configure_grouping_form input[name=grouping_threshold] { width: 1.5em; } #full-url-preview{ color: white; font-size: small; } #full-url-preview .url-keyword{ color: orange; } </style> {% endblock %}
Project/WebApplication/web/documentazione/WebApplication/javadoc/deprecated-list.html
AL333Z/ASWProject
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="it"> <head> <!-- Generated by javadoc (version 1.7.0_45) on Tue Jan 14 10:26:13 CET 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Deprecated List</title> <meta name="date" content="2014-01-14"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Deprecated List"; } //--> </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>Package</li> <li>Class</li> <li>Use</li> <li><a href="overview-tree.html">Tree</a></li> <li class="navBarCell1Rev">Deprecated</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?deprecated-list.html" target="_top">Frames</a></li> <li><a href="deprecated-list.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="Deprecated API" class="title">Deprecated API</h1> <h2 title="Contents">Contents</h2> </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>Package</li> <li>Class</li> <li>Use</li> <li><a href="overview-tree.html">Tree</a></li> <li class="navBarCell1Rev">Deprecated</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?deprecated-list.html" target="_top">Frames</a></li> <li><a href="deprecated-list.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>
shopping-platfrom/src/main/webapp/resources/css/magnifier.css
TZClub/OMIPlatform
@charset "utf-8"; *{ margin: 0; padding: 0; } ul li{ list-style: none; } img{ border: 0; } /* 垂直居中 */ .small-img{ display: flex; align-items:center; justify-content: center; } .clearfix:before, .clearfix:after{ display: table; line-height: 0; content: ""; } .magnifier{ width: 500px; position: relative; } .magnifier-container{ width: 500px; height: 500px; overflow: hidden; position: relative; border: 1px solid #ddd; } .move-view{ width: 100px; height: 100px; position: absolute; background-image: url('../images/move-box.png'); } .images-cover{ height: 100%; width: 100%; position: relative; } .images-cover img{ position: absolute; } .magnifier-assembly{ height: 92px; overflow: hidden; position: relative; padding-left: 30px; padding-right: 30px; } .magnifier-btn{ position: absolute; font-family: "宋体"; width: 100%; top: 50%; left: 0; margin-top: -40px; } .magnifier-btn span{ line-height: 80px; height: 80px; width: 20px; background-color: #6e6e6e; opacity: 0.1; color: #fff; display: block; z-index: 9998; text-align: center; font-size: 20px; cursor: pointer; border-radius: 3px; } .magnifier-btn .magnifier-btn-left{ float: left; } .magnifier-btn .magnifier-btn-right{ float: right; } .magnifier-line{ position: relative; overflow: hidden; height: 92px; } .magnifier-line ul{ display: block; font-size: 0; width: 10000%; position: absolute; left: 0; z-index: 9997; } .magnifier-line li{ float: left; width: 100px; cursor: pointer; } .magnifier-line ul > .active .small-img{ border-color: #bbb; } .small-img{ height: 78px; padding: 1px; margin: 5px; overflow: hidden; border: 1px solid #ddd; text-align: center; } .small-img img{ max-width: 100%; max-height: 100%; } .magnifier-view{ width: 100%; height: 100%; position: absolute; right: -105%; top: 0; z-index: 9999; background-color: #fff; display: none; overflow: hidden; } .magnifier-view img{ display: block; } .animation03{ transition: all 0.3s ease-in 0.1s; -ms-transition: all 0.3s ease-in 0.1s; -moz-transition: all 0.3s ease-in 0.1s; -webkit-transition: all 0.3s ease-in 0.1s; -o-transition: all 0.3s ease-in 0.1s; }
docs/javadoc/uk/co/samuelwall/materialtaptargetprompt/extras/package-summary.html
sjwall/MaterialTapTargetPrompt
<!-- ~ Copyright (C) 2016-2021 Samuel Wall ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <!DOCTYPE HTML> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc --> <title>uk.co.samuelwall.materialtaptargetprompt.extras (material-tap-target-prompt 3.3.2 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.5.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="uk.co.samuelwall.materialtaptargetprompt.extras (material-tap-target-prompt 3.3.2 API)"; } } catch(err) { } //--> 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 class="navBarCell1Rev">Package</li> <li>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" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li> </ul> <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> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> </div> <a id="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> </div> <div class="navPadding">&nbsp;</div> <script type="text/javascript"><!-- $('.navPadding').css('padding-top', $('.fixedNav').css("height")); //--> </script> </nav> </header> <main role="main"> <div class="header"> <h1 title="Package" class="title">Package&nbsp;uk.co.samuelwall.materialtaptargetprompt.extras</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="typeSummary"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <th class="colFirst" scope="row"><a href="PromptBackground.html" title="class in uk.co.samuelwall.materialtaptargetprompt.extras">PromptBackground</a></th> <td class="colLast"> <div class="block">Used to render the prompt background.</div> </td> </tr> <tr class="rowColor"> <th class="colFirst" scope="row"><a href="PromptFocal.html" title="class in uk.co.samuelwall.materialtaptargetprompt.extras">PromptFocal</a></th> <td class="colLast"> <div class="block">Used to render the prompt focal.</div> </td> </tr> <tr class="altColor"> <th class="colFirst" scope="row"><a href="PromptOptions.html" title="class in uk.co.samuelwall.materialtaptargetprompt.extras">PromptOptions</a>&lt;T extends <a href="PromptOptions.html" title="class in uk.co.samuelwall.materialtaptargetprompt.extras">PromptOptions</a>&gt;</th> <td class="colLast"> <div class="block">Contains all the settings for creating a prompt.</div> </td> </tr> <tr class="rowColor"> <th class="colFirst" scope="row"><a href="PromptText.html" title="class in uk.co.samuelwall.materialtaptargetprompt.extras">PromptText</a></th> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <th class="colFirst" scope="row"><a href="PromptUtils.html" title="class in uk.co.samuelwall.materialtaptargetprompt.extras">PromptUtils</a></th> <td class="colLast"> <div class="block">Useful methods for prompts that don't fit else where.</div> </td> </tr> </tbody> </table> </li> </ul> </div> </main> <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 class="navBarCell1Rev">Package</li> <li>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" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> </div> <a id="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </nav> </footer> </body> </html>
docs/interfaces/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.map.html
jbeard4/SCION-CORE
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Map | typescript</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../assets/css/main.css"> </head> <body> <header> <div class="tsd-page-toolbar"> <div class="container"> <div class="table-wrap"> <div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base=".."> <div class="field"> <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label> <input id="tsd-search-field" type="text" /> </div> <ul class="results"> <li class="state loading">Preparing search index...</li> <li class="state failure">The search index is not available</li> </ul> <a href="../index.html" class="title">typescript</a> </div> <div class="table-cell" id="tsd-widgets"> <div id="tsd-filter"> <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a> <div class="tsd-filter-group"> <div class="tsd-select" id="tsd-filter-visibility"> <span class="tsd-select-label">All</span> <ul class="tsd-select-list"> <li data-value="public">Public</li> <li data-value="protected">Public/Protected</li> <li data-value="private" class="selected">All</li> </ul> </div> <input type="checkbox" id="tsd-filter-inherited" checked /> <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label> <input type="checkbox" id="tsd-filter-externals" checked /> <label class="tsd-widget" for="tsd-filter-externals">Externals</label> <input type="checkbox" id="tsd-filter-only-exported" /> <label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label> </div> </div> <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a> </div> </div> </div> </div> <div class="tsd-page-title"> <div class="container"> <ul class="tsd-breadcrumb"> <li> <a href="../globals.html">Globals</a> </li> <li> <a href="../modules/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.html">&quot;.nvm/versions/v8.4.0/lib/node_modules/typedoc/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d&quot;</a> </li> <li> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.map.html">Map</a> </li> </ul> <h1>Interface Map&lt;K, V&gt;</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <section class="tsd-panel tsd-type-parameters"> <h3>Type parameters</h3> <ul class="tsd-type-parameters"> <li> <h4>K</h4> </li> <li> <h4>V</h4> </li> </ul> </section> <section class="tsd-panel tsd-hierarchy"> <h3>Hierarchy</h3> <ul class="tsd-hierarchy"> <li> <span class="target">Map</span> </li> </ul> </section> <section class="tsd-panel-group tsd-index-group"> <h2>Index</h2> <section class="tsd-panel tsd-index-panel"> <div class="tsd-index-content"> <section class="tsd-index-section tsd-is-external tsd-is-not-exported"> <h3>Properties</h3> <ul class="tsd-index-list"> <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-external tsd-is-not-exported"><a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.map.html#___tostringtag" class="tsd-kind-icon">__@to<wbr>String<wbr>Tag</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-external tsd-is-not-exported"> <h2>Properties</h2> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-external tsd-is-not-exported"> <a name="___tostringtag" class="tsd-anchor"></a> <h3>__@to<wbr>String<wbr>Tag</h3> <div class="tsd-signature tsd-kind-icon">__@to<wbr>String<wbr>Tag<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"Map"</span></div> <aside class="tsd-sources"> <ul> <li>Defined in .nvm/versions/v8.4.0/lib/node_modules/typedoc/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:130</li> </ul> </aside> </section> </section> </div> <div class="col-4 col-menu menu-sticky-wrap menu-highlight"> <nav class="tsd-navigation primary"> <ul> <li class="globals "> <a href="../globals.html"><em>Globals</em></a> </li> <li class="label tsd-is-external"> <span>Internals</span> </li> <li class=" tsd-kind-external-module"> <a href="../modules/_workspace_scion_scxml_platform_projects_scion_core_tsd_scion_core_d_.html">"workspace/scion-<wbr>scxml-<wbr>platform/projects/SCION-<wbr>CORE/tsd/scion-<wbr>core.d"</a> </li> <li class="label tsd-is-external"> <span>Externals</span> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_collection_d_.html">".nvm/versions/v8.4.0/lib/node_<wbr>modules/typedoc/node_<wbr>modules/typescript/lib/lib.es2015.collection.d"</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_core_d_.html">".nvm/versions/v8.4.0/lib/node_<wbr>modules/typedoc/node_<wbr>modules/typescript/lib/lib.es2015.core.d"</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_d_.html">".nvm/versions/v8.4.0/lib/node_<wbr>modules/typedoc/node_<wbr>modules/typescript/lib/lib.es2015.d"</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_generator_d_.html">".nvm/versions/v8.4.0/lib/node_<wbr>modules/typedoc/node_<wbr>modules/typescript/lib/lib.es2015.generator.d"</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_iterable_d_.html">".nvm/versions/v8.4.0/lib/node_<wbr>modules/typedoc/node_<wbr>modules/typescript/lib/lib.es2015.iterable.d"</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_promise_d_.html">".nvm/versions/v8.4.0/lib/node_<wbr>modules/typedoc/node_<wbr>modules/typescript/lib/lib.es2015.promise.d"</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_proxy_d_.html">".nvm/versions/v8.4.0/lib/node_<wbr>modules/typedoc/node_<wbr>modules/typescript/lib/lib.es2015.proxy.d"</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_reflect_d_.html">".nvm/versions/v8.4.0/lib/node_<wbr>modules/typedoc/node_<wbr>modules/typescript/lib/lib.es2015.reflect.d"</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_d_.html">".nvm/versions/v8.4.0/lib/node_<wbr>modules/typedoc/node_<wbr>modules/typescript/lib/lib.es2015.symbol.d"</a> </li> <li class="current tsd-kind-external-module tsd-is-external"> <a href="../modules/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.html">".nvm/versions/v8.4.0/lib/node_<wbr>modules/typedoc/node_<wbr>modules/typescript/lib/lib.es2015.symbol.wellknown.d"</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es5_d_.html">".nvm/versions/v8.4.0/lib/node_<wbr>modules/typedoc/node_<wbr>modules/typescript/lib/lib.es5.d"</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/_workspace_scion_scxml_platform_projects_scion_core_node_modules_scion_core_base_tsd_scion_core_base_d_.html">"workspace/scion-<wbr>scxml-<wbr>platform/projects/SCION-<wbr>CORE/node_<wbr>modules/scion-<wbr>core-<wbr>base/tsd/scion-<wbr>core-<wbr>base.d"</a> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-has-type-parameter tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.array.html" class="tsd-kind-icon">Array</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.arraybuffer.html" class="tsd-kind-icon">Array<wbr>Buffer</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.arraybufferconstructor.html" class="tsd-kind-icon">Array<wbr>Buffer<wbr>Constructor</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.arrayconstructor.html" class="tsd-kind-icon">Array<wbr>Constructor</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.dataview.html" class="tsd-kind-icon">Data<wbr>View</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.date.html" class="tsd-kind-icon">Date</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.float32array.html" class="tsd-kind-icon">Float32<wbr>Array</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.float64array.html" class="tsd-kind-icon">Float64<wbr>Array</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.function.html" class="tsd-kind-icon">Function</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.generatorfunction.html" class="tsd-kind-icon">Generator<wbr>Function</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.int16array.html" class="tsd-kind-icon">Int16<wbr>Array</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.int32array.html" class="tsd-kind-icon">Int32<wbr>Array</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.int8array.html" class="tsd-kind-icon">Int8<wbr>Array</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.json.html" class="tsd-kind-icon">JSON</a> </li> </ul> <ul class="current"> <li class="current tsd-kind-interface tsd-parent-kind-external-module tsd-has-type-parameter tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.map.html" class="tsd-kind-icon">Map</a> <ul> <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.map.html#___tostringtag" class="tsd-kind-icon">__@to<wbr>String<wbr>Tag</a> </li> </ul> </li> </ul> <ul class="after-current"> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.mapconstructor.html" class="tsd-kind-icon">Map<wbr>Constructor</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.math.html" class="tsd-kind-icon">Math</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-has-type-parameter tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.promise.html" class="tsd-kind-icon">Promise</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.promiseconstructor.html" class="tsd-kind-icon">Promise<wbr>Constructor</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.regexp.html" class="tsd-kind-icon">Reg<wbr>Exp</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.regexpconstructor.html" class="tsd-kind-icon">Reg<wbr>Exp<wbr>Constructor</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-has-type-parameter tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.set.html" class="tsd-kind-icon">Set</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.setconstructor.html" class="tsd-kind-icon">Set<wbr>Constructor</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.string.html" class="tsd-kind-icon">String</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.symbol.html" class="tsd-kind-icon">Symbol</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.symbolconstructor.html" class="tsd-kind-icon">Symbol<wbr>Constructor</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.uint16array.html" class="tsd-kind-icon">Uint16<wbr>Array</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.uint32array.html" class="tsd-kind-icon">Uint32<wbr>Array</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.uint8array.html" class="tsd-kind-icon">Uint8<wbr>Array</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.uint8clampedarray.html" class="tsd-kind-icon">Uint8<wbr>Clamped<wbr>Array</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-has-type-parameter tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.weakmap.html" class="tsd-kind-icon">Weak<wbr>Map</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-has-type-parameter tsd-is-external tsd-is-not-exported"> <a href="__nvm_versions_v8_4_0_lib_node_modules_typedoc_node_modules_typescript_lib_lib_es2015_symbol_wellknown_d_.weakset.html" class="tsd-kind-icon">Weak<wbr>Set</a> </li> </ul> </nav> </div> </div> </div> <footer class="with-border-bottom"> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> <ul class="tsd-legend"> <li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li> <li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li> <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li> <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li> <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li> <li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li> <li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li> <li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li> <li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li> <li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li> <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li> <li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li> </ul> </div> </div> </footer> <div class="container tsd-generator"> <p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p> </div> <div class="overlay"></div> <script src="../assets/js/main.js"></script> <script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script> </body> </html>
angularjs/pick-tags-tab/index.html
y12studio/y12js
<!doctype html> <html ng-app="fooApp" class="full" lang="zh"> <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>Angular static</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0/angular.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0/angular-resource.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0/angular-route.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.string/2.3.3/underscore.string.min.js"></script> <script src="http://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.11.2.js"></script> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> <link rel="stylesheet" href="app.css"> <script src="app.js"></script> </head> <body ng-controller="MainCtrl"> <div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="/">Project name</a> </div> <div class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li class="active"><a href="/">Home</a> </li> <li><a href="#about">About</a> </li> <li><a href="#contact">Contact</a> </li> </ul> </div> <!--/.nav-collapse --> </div> </div> <div class="container"> <tabset> <tab> <tab-heading> <span class='glyphicon glyphicon-ok-circle'></span><em>PickArray2D</em> </tab-heading> <h2>Pick Array 2D</h2> <p>pick {{radioModel || 'null'}} <span class="col glyphicon glyphicon-ok-circle" ng-class="'color-pick-'+radioModel"></span> </p> <p>MouseEnter:{{mouseEnterEnable}}<span class="glyphicon" ng-class=" mouseEnterEnable ? 'glyphicon-play' : 'glyphicon-stop'"></span> </p> <div class="btn-group"> <label class="btn" ng-model="radioModel" btn-radio="'90A'">90A</label> <label class="btn" ng-model="radioModel" btn-radio="'90B'">90B</label> <label class="btn" ng-model="radioModel" btn-radio="'70A'">70A</label> </div> <div> <div> <span class="col" style="background:#CCDDCC;">A/B</span> <span class="col" style="background:#CCDDCC;" ng-repeat="x in root.xaxis">{{x}}</span> </div> <div ng-repeat="arr in root.arr"> <span style="background:#CCDDCC;" class="col">{{root.yaxis[$index]}}</span> <span popover="{{root.objs[id]}}" popover-trigger="mouseenter" ng-mouseenter="mouseenter(id)" class="col glyphicon" ng-class="root.objs[id].class" ng-repeat="id in arr" ng-click="pick(id)"></span> </div> </div> </tab> <tab> <tab-heading> <span class='glyphicon glyphicon-ok-circle'></span><em>JSON</em> </tab-heading> <h2>JSON</h2> </tab> <tab heading="Foo">Foo</tab> </tabset> </div> <!-- /.container --> </body> </html>
src/main/webapp/email-footer.html
voxbone/MailRTC
<html> <head></head> <body> <div class="business-card"> <a href="http://localhost:8080/?number=3228082181">Click2Call</a> <div> </body> </html>
admin-jaxrs/src/main/resources/html/bean-prop.html
deephacks/confit
<td><div title="{{property.desc}}" ui-jq="tooltip">{{property.name}}</div></td> <td>{{property.type.substr(property.type.lastIndexOf('.') + 1)}}</td> <td> <div ng-switch on="property.defaultValue"> <div ng-switch-when="null"> <p class="muted"><i>undefined</i></p> </div> <div ng-switch-default> {{property.defaultValue}} </div> </div> </td> <td> <div ng-switch on="property.enum"> <div ng-switch-when="true"> <select ng-model="bean.properties[property.name]"> <option ng-repeat="enum in property.enums">{{enum}}</option> </select> </div> <div ng-switch-default> <input type="text" ng-model="bean.properties[property.name]"> </div> </div> </td> <td> <button class="btn btn-mini" ng-click="edit(property.name)"> Edit </button> <button class="btn btn-mini" ng-click="clear(property.name)"> Clear </button> </td>
doc/xjt/workflow/def/package-tree.html
xiejuntao/Xworkflow
<!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_13) on Sat Mar 10 15:25:35 CST 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> xjt.workflow.def 类分层结构 </TITLE> <META NAME="date" CONTENT="2012-03-10"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="xjt.workflow.def 类分层结构"; } } </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="跳过导航链接"></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>概述</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">类</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">使用</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>树</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../xjt/workflow/dao/hibernate/package-tree.html"><B>上一个</B></A>&nbsp; &nbsp;<A HREF="../../../xjt/workflow/def/service/package-tree.html"><B>下一个</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?xjt/workflow/def/package-tree.html" target="_top"><B>框架</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>无框架</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>所有类</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>所有类</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> 软件包 xjt.workflow.def 的分层结构 </H2> </CENTER> <DL> <DT><B>软件包分层结构:</B><DD><A HREF="../../../overview-tree.html">所有软件包</A></DL> <HR> <H2> 类分层结构 </H2> <UL> <LI TYPE="circle">java.lang.Object<UL> <LI TYPE="circle">xjt.workflow.def.<A HREF="../../../xjt/workflow/def/Action.html" title="xjt.workflow.def 中的类"><B>Action</B></A> (implements java.io.Serializable) <LI TYPE="circle">xjt.workflow.def.<A HREF="../../../xjt/workflow/def/Node.html" title="xjt.workflow.def 中的类"><B>Node</B></A> (implements java.io.Serializable) <LI TYPE="circle">xjt.workflow.def.<A HREF="../../../xjt/workflow/def/Transition.html" title="xjt.workflow.def 中的类"><B>Transition</B></A> (implements java.io.Serializable) <LI TYPE="circle">xjt.workflow.def.<A HREF="../../../xjt/workflow/def/WorkFlow.html" title="xjt.workflow.def 中的类"><B>WorkFlow</B></A> (implements java.io.Serializable) <LI TYPE="circle">xjt.workflow.def.<A HREF="../../../xjt/workflow/def/WorkItem.html" title="xjt.workflow.def 中的类"><B>WorkItem</B></A> (implements java.io.Serializable) </UL> </UL> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="跳过导航链接"></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>概述</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">类</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">使用</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>树</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../xjt/workflow/dao/hibernate/package-tree.html"><B>上一个</B></A>&nbsp; &nbsp;<A HREF="../../../xjt/workflow/def/service/package-tree.html"><B>下一个</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?xjt/workflow/def/package-tree.html" target="_top"><B>框架</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>无框架</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>所有类</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>所有类</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
doc/net/floodlightcontroller/learningswitch/ILearningSwitchServiceO.html
fbotelho-university-code/poseidon
<!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_51) on Tue Aug 27 20:56:52 WEST 2013 --> <TITLE> ILearningSwitchServiceO </TITLE> <META NAME="date" CONTENT="2013-08-27"> <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="ILearningSwitchServiceO"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ILearningSwitchServiceO.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../net/floodlightcontroller/learningswitch/ILearningSwitchService.html" title="interface in net.floodlightcontroller.learningswitch"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../net/floodlightcontroller/learningswitch/LearningSwitch.html" title="class in net.floodlightcontroller.learningswitch"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?net/floodlightcontroller/learningswitch/ILearningSwitchServiceO.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ILearningSwitchServiceO.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> net.floodlightcontroller.learningswitch</FONT> <BR> Interface ILearningSwitchServiceO</H2> <DL> <DT><B>All Superinterfaces:</B> <DD><A HREF="../../../net/floodlightcontroller/core/module/IFloodlightService.html" title="interface in net.floodlightcontroller.core.module">IFloodlightService</A>, java.io.Serializable</DD> </DL> <DL> <DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../net/floodlightcontroller/learningswitch/LearningSwitchO.html" title="class in net.floodlightcontroller.learningswitch">LearningSwitchO</A></DD> </DL> <HR> <DL> <DT><PRE>public interface <B>ILearningSwitchServiceO</B><DT>extends <A HREF="../../../net/floodlightcontroller/core/module/IFloodlightService.html" title="interface in net.floodlightcontroller.core.module">IFloodlightService</A></DL> </PRE> <P> <HR> <P> <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.util.Map&lt;<A HREF="../../../net/floodlightcontroller/core/IOFSwitch.html" title="interface in net.floodlightcontroller.core">IOFSwitch</A>,java.util.Map&lt;<A HREF="../../../net/floodlightcontroller/core/types/MacVlanPair.html" title="class in net.floodlightcontroller.core.types">MacVlanPair</A>,java.lang.Short&gt;&gt;</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../net/floodlightcontroller/learningswitch/ILearningSwitchServiceO.html#getTable()">getTable</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the LearningSwitch's learned host table</TD> </TR> </TABLE> &nbsp; <P> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="getTable()"><!-- --></A><H3> getTable</H3> <PRE> java.util.Map&lt;<A HREF="../../../net/floodlightcontroller/core/IOFSwitch.html" title="interface in net.floodlightcontroller.core">IOFSwitch</A>,java.util.Map&lt;<A HREF="../../../net/floodlightcontroller/core/types/MacVlanPair.html" title="class in net.floodlightcontroller.core.types">MacVlanPair</A>,java.lang.Short&gt;&gt; <B>getTable</B>()</PRE> <DL> <DD>Returns the LearningSwitch's learned host table <P> <DD><DL> </DL> </DD> <DD><DL> <DT><B>Returns:</B><DD>The learned host table</DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ILearningSwitchServiceO.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../net/floodlightcontroller/learningswitch/ILearningSwitchService.html" title="interface in net.floodlightcontroller.learningswitch"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../net/floodlightcontroller/learningswitch/LearningSwitch.html" title="class in net.floodlightcontroller.learningswitch"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?net/floodlightcontroller/learningswitch/ILearningSwitchServiceO.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ILearningSwitchServiceO.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
poi-3.10-FINAL/docs/apidocs/org/apache/poi/ss/formula/class-use/EvaluationName.html
pedro93/ifarmaStudents
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="ru"> <head> <title>Uses of Interface org.apache.poi.ss.formula.EvaluationName (POI API Documentation)</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.apache.poi.ss.formula.EvaluationName (POI API Documentation)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">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/poi/ss/formula/class-use/EvaluationName.html" target="_top">Frames</a></li> <li><a href="EvaluationName.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.apache.poi.ss.formula.EvaluationName" class="title">Uses of Interface<br>org.apache.poi.ss.formula.EvaluationName</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.hssf.usermodel">org.apache.poi.hssf.usermodel</a></td> <td class="colLast"> <div class="block">usermodel package maps HSSF low level strutures to familiar workbook/sheet model Related Documentation For overviews, tutorials, examples, guides, and tool documentation, please see: <a href="http://poi.apache.org">Apache POI Project</a> </div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.poi.ss.formula">org.apache.poi.ss.formula</a></td> <td class="colLast"> <div class="block">This package contains common internal POI code for manipulating formulas.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.xssf.usermodel">org.apache.poi.xssf.usermodel</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.poi.hssf.usermodel"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a> in <a href="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</a> that return <a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a></code></td> <td class="colLast"><span class="strong">HSSFEvaluationWorkbook.</span><code><strong><a href="../../../../../../org/apache/poi/hssf/usermodel/HSSFEvaluationWorkbook.html#getName(org.apache.poi.ss.formula.ptg.NamePtg)">getName</a></strong>(<a href="../../../../../../org/apache/poi/ss/formula/ptg/NamePtg.html" title="class in org.apache.poi.ss.formula.ptg">NamePtg</a>&nbsp;namePtg)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a></code></td> <td class="colLast"><span class="strong">HSSFEvaluationWorkbook.</span><code><strong><a href="../../../../../../org/apache/poi/hssf/usermodel/HSSFEvaluationWorkbook.html#getName(java.lang.String, int)">getName</a></strong>(java.lang.String&nbsp;name, int&nbsp;sheetIndex)</code> <div class="block">Lookup a named range by its name.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.poi.ss.formula"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a> in <a href="../../../../../../org/apache/poi/ss/formula/package-summary.html">org.apache.poi.ss.formula</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/apache/poi/ss/formula/package-summary.html">org.apache.poi.ss.formula</a> that return <a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a></code></td> <td class="colLast"><span class="strong">EvaluationWorkbook.</span><code><strong><a href="../../../../../../org/apache/poi/ss/formula/EvaluationWorkbook.html#getName(org.apache.poi.ss.formula.ptg.NamePtg)">getName</a></strong>(<a href="../../../../../../org/apache/poi/ss/formula/ptg/NamePtg.html" title="class in org.apache.poi.ss.formula.ptg">NamePtg</a>&nbsp;namePtg)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a></code></td> <td class="colLast"><span class="strong">FormulaParsingWorkbook.</span><code><strong><a href="../../../../../../org/apache/poi/ss/formula/FormulaParsingWorkbook.html#getName(java.lang.String, int)">getName</a></strong>(java.lang.String&nbsp;name, int&nbsp;sheetIndex)</code> <div class="block">named range name matching is case insensitive</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a></code></td> <td class="colLast"><span class="strong">EvaluationWorkbook.</span><code><strong><a href="../../../../../../org/apache/poi/ss/formula/EvaluationWorkbook.html#getName(java.lang.String, int)">getName</a></strong>(java.lang.String&nbsp;name, int&nbsp;sheetIndex)</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.poi.xssf.usermodel"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a> in <a href="../../../../../../org/apache/poi/xssf/usermodel/package-summary.html">org.apache.poi.xssf.usermodel</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/apache/poi/xssf/usermodel/package-summary.html">org.apache.poi.xssf.usermodel</a> that return <a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a></code></td> <td class="colLast"><span class="strong">XSSFEvaluationWorkbook.</span><code><strong><a href="../../../../../../org/apache/poi/xssf/usermodel/XSSFEvaluationWorkbook.html#getName(org.apache.poi.ss.formula.ptg.NamePtg)">getName</a></strong>(<a href="../../../../../../org/apache/poi/ss/formula/ptg/NamePtg.html" title="class in org.apache.poi.ss.formula.ptg">NamePtg</a>&nbsp;namePtg)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">EvaluationName</a></code></td> <td class="colLast"><span class="strong">XSSFEvaluationWorkbook.</span><code><strong><a href="../../../../../../org/apache/poi/xssf/usermodel/XSSFEvaluationWorkbook.html#getName(java.lang.String, int)">getName</a></strong>(java.lang.String&nbsp;name, int&nbsp;sheetIndex)</code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/poi/ss/formula/EvaluationName.html" title="interface in org.apache.poi.ss.formula">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/poi/ss/formula/class-use/EvaluationName.html" target="_top">Frames</a></li> <li><a href="EvaluationName.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 2014 The Apache Software Foundation or its licensors, as applicable.</i> </small></p> </body> </html>
django_project/old/hoaxdetector/mainapp/templates/mainapp/index.html
barliant/fnc-id
{% load staticfiles %} <!DOCTYPE html> <html lang="en"> <head> <title>HoaxDetector</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!--===============================================================================================--> <link rel="icon" type="image/png" href="{% static 'images/icons/favicon.ico' %}"/> <!--===============================================================================================--> <!--===============================================================================================--> <link rel="stylesheet" type="text/css" href="{% static 'fonts/font-awesome-4.7.0/css/font-awesome.min.css' %}"> <!--===============================================================================================--> <link rel="stylesheet" type="text/css" href="{% static 'fonts/iconic/css/material-design-iconic-font.min.css' %}"> <!--===============================================================================================--> <link rel="stylesheet" type="text/css" href="{% static 'css/util.css' %}"> <link rel="stylesheet" type="text/css" href="{% static 'css/main.css' %}"> <!--===============================================================================================--> </head> <body> <div class="container-contact100"> <div class="contact100-map" id="google_map" data-map-x="40.722047" data-map-y="-73.986422" data-pin="{% static 'images/icons/map-marker.png' %}" data-scrollwhell="0" data-draggable="1"></div> <div class="wrap-contact100"> <form class="contact100-form validate-form"> <span class="contact100-form-title"> Is it Hoax or Not? </span> <div class="wrap-input100 validate-input" data-validate = "Please enter the article you want to check"> <textarea class="input100" name="article" placeholder="Enter the article you want to check"></textarea> <span class="focus-input100"></span> </div> <div class="container-contact100-form-btn"> <button class="contact100-form-btn"> Check Hoax! </button> </div> </form> <div class="contact100-more"> By <a class="contact100-more-highlight" href="/home">HoaxDetector</a> </div> </div> </div> <div id="dropDownSelect1"></div> <!--===============================================================================================--> <script src="{% static 'vendor/jquery/jquery-3.2.1.min.js' %}"></script> <script src="{% static 'vendor/bootstrap/js/bootstrap.min.js' %}"></script> <script src="{% static 'js/main.js' %}"></script> <!--===============================================================================================--> </body> </html>
ctl-sms-inventory/views/view-categories.html
CampusTechNg/ctl-sms
{{> header}} <!-- BEGIN PAGE LEVEL PLUGINS --> <link href="/public/metronic-for-bolt/assets/global/plugins/datatables/datatables.min.css" rel="stylesheet" type="text/css" /> <link href="/public/metronic-for-bolt/assets/global/plugins/datatables/plugins/bootstrap/datatables.bootstrap.css" rel="stylesheet" type="text/css" /> <link href="/public/metronic-for-bolt/assets/pages/css/datatable_custom.css" rel="stylesheet" type="text/css" /> <link href="/public/bolt-ui-sweetalert/dist/sweetalert.css" rel="stylesheet" type="text/css" /> </style> <!-- END PAGE LEVEL PLUGINS --> {{> sub_header}} {{> nav }} <!-- BEGIN PAGE TITLE--> <div class="container-fluid"> <div class="col-md-12"> <h3 class="page-title"> Avaliable Categories</h3> </div> </div> <!-- END PAGE TITLE--> <!-- BEGIN PAGE CONTENT--> <div class="container-fluid"> <div class="col-md-12"> <div class="portlet light portlet-fit portlet-datatable bordered"> <div class="portlet-title"> <div class="caption"> <i class="icon-list font-green"></i> <span class="caption-subject font-green sbold uppercase">List of Avaliable Categories</span> </div> <div class="actions"> <div class="btn-group"> <a href="{{app_root}}/add-category" class="btn green"> <i class="fa fa-plus"></i> <span class="hidden-xs"> Add Category</span> </a> </div> <div class="btn-group"> <a href="" class="btn red" id="delete_btn"> <i class="fa fa-trash-o"></i> <span class="hidden-xs">Delete</span> </a> </div> <div class="btn-group"> <a class="btn blue" href="javascript:;" data-toggle="dropdown"> <i class="fa fa-cog"></i> <span class="hidden-xs"> Tools </span> <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu pull-right" id="sample_3_tools"> <li> <a href="javascript:;" data-action="0" class="tool-action"> <i class="icon-printer"></i> Print</a> </li> <li> <a href="javascript:;" data-action="1" class="tool-action"> <i class="icon-check"></i> Copy</a> </li> <li> <a href="javascript:;" data-action="2" class="tool-action"> <i class="icon-doc"></i> PDF</a> </li> <li> <a href="javascript:;" data-action="3" class="tool-action"> <i class="icon-paper-clip"></i> Excel</a> </li> <li> <a href="javascript:;" data-action="4" class="tool-action"> <i class="icon-cloud-upload"></i> CSV</a> </li> <li class="divider"> </li> <li> <a href="javascript:;" data-action="5" class="tool-action"> <i class="icon-refresh"></i> Reload</a> </li> </li> </ul> </div> </div> </div> <div class="portlet-body"> <div class="table-container"> <table class="table table-striped table-bordered table-hover table-checkable" id="sample_3"> <thead> <tr> <th class="table-checkbox" width="5%"> <label class="mt-checkbox mt-checkbox-single mt-checkbox-outline"> <input type="checkbox" class="group-checkable" data-set="#sample_3 .checkboxes" /> <span></span> </label> </th> <th> Category name </th> <th> Description </th> <th class="action"> Action </th> </tr> </thead> <tbody> {{#each categories}} <tr> <td> <label class="mt-checkbox mt-checkbox-single mt-checkbox-outline"> <input type="checkbox" class="checkboxes" value="{{_id}}" /> <span></span> </label> </td> <td> {{displayName}} </td> <td> {{description}} </td> <td> <a href="{{../ app_root}}/edit-category/{{_id}}" class="btn dark btn-xs btn-outline sbold uppercase"> <i class="fa fa-edit"></i> <span class="hidden-xs"> Edit </span> </a> </td> </tr> {{/each}} </tbody> </table> </div> </div> </div> </div> <!-- END PAGE CONTENT--> {{> copyright }} {{> sub_footer }} <!-- BEGIN PAGE LEVEL PLUGINS --> <script src="/public/metronic-for-bolt/assets/global/scripts/datatable.js" type="text/javascript"></script> <script src="/public/metronic-for-bolt/assets/global/plugins/datatables/datatables.min.js" type="text/javascript"></script> <script src="/public/metronic-for-bolt/assets/global/plugins/datatables/plugins/bootstrap/datatables.bootstrap.js" type="text/javascript"></script> <script src="/public/bolt-ui-sweetalert/dist/sweetalert.min.js" type="text/javascript"></script> <script src="/public/bolt-ui-sweetalert/dist/sweetalert-dev.js" type="text/javascript"></script> <!-- END PAGE LEVEL PLUGINS --> <!-- BEGIN UNIQUE SCRIPT FOR ONLY THIS PAGE --> <script type="text/javascript"> $('#delete_btn').click(function(event) { event.preventDefault(); if(!$('.checkboxes').is(':checked')) { swal({ title: "No Selection!", text: "Select at least one item", type: "info", showCancelButton: false, closeOnConfirm: true }); return; } swal({ title: "Are you sure?", text: "Proceed with delete operation?", type: "warning", showCancelButton: true, confirmButtonText: "Yes", cancelButtonText: "No", closeOnConfirm: false, closeOnCancel: true }, function () { var names = $('input[type=checkbox]:checked').map(function() { return $(this).val(); }).get(); function deleteCategory(index) { if (index == -1) { swal({ title: "Delete Operation", text: "Delete operation terminated.", type: "warning", showCancelButton: false, closeOnConfirm: true }, function(isConfirm){ if (isConfirm) { window.location.href="{{app_root}}/view-categories"; } }); } else if (index >= names.length) { //this is the end //be sure something was deleted if (names.length > 0) { //Sweet alert swal({ title: "Delete Operation", text: "Delete operation completed.", type: "success", showCancelButton: false, closeOnConfirm: true }, function(isConfirm){ if (isConfirm) { window.location.href="{{app_root}}/view-categories"; } }); } } else { var name = names[index]; $.ajax({ url: "{{bolt_root}}/api/db/categories/remove?_id=" + name, type: 'POST', data: JSON.stringify({}), //processData: false, dataType: 'json', contentType: 'application/json', headers: {'X-Bolt-App-Token': '{{app_token}}'}, success: function(response, status, xhr) { if(response.code === 0){ deleteCategory(++index); } else { swal({ title: response.errorUserTitle, text: response.errorUserMessage, type: "error", showCancelButton: true, closeOnConfirm: true }, function(isConfirm){ if (isConfirm) { deleteCategory(++index); } else { deleteCategory(-1); } }); } }, error: function(xhr, status, err){ alert(xhr.responseText); } }); } } deleteCategory(0); }); }); </script> <!-- END UNIQUE SCRIPT FOR ONLY THIS PAGE --> <!-- BEGIN PAGE LEVEL SCRIPTS --> <script src="/public/metronic-for-bolt/assets/pages/scripts/table-datatables-buttons.min.js" type="text/javascript"></script> <!-- END PAGE LEVEL SCRIPTS --> {{> footer }}
web131_project/text5.html
brendajean1123/webdesignsbybrenda
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/transitional.dtd"> <html> <head> <meta HTTP-EQUIV=CONTENT-TYPE CONTENT="text/html; charset=utf-8"> <title>The Multiple Access Problem</title> </head> <body text="#000000" bgcolor="#FFFFFF" link="#DD4814" vlink="#3C3C3C" alink="#DD4814"> <center> <a href="text0.html">First page</a> <a href="text4.html">Back</a> <a href="text6.html">Continue</a> <a href="text63.html">Last page</a> <a href="694_CELLULAR_NETWORK.html">Overview</a> <a href="img5.html">Graphics</a></center><br> <h1 style="direction:ltr;">The Multiple Access Problem</h1> <ul><li style="direction:ltr;"><h2>The base stations need to serve many mobile terminals at the same time (both downlink and uplink)</h2></li> <li style="direction:ltr;"><h2>All mobiles in the cell need to transmit to the base station</h2></li> <li style="direction:ltr;"><h2>Interference among different senders and receivers</h2></li> <li style="direction:ltr;"><h2>So we need multiple access scheme</h2></li> </ul></body> </html>
2016.11.0/apidocs/org/wildfly/swarm/jolokia/access/JolokiaAccess.Supplier.html
wildfly-swarm/wildfly-swarm-javadocs
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_60-ea) on Fri Nov 04 13:24:33 EDT 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JolokiaAccess.Supplier (Public javadocs 2016.11.0 API)</title> <meta name="date" content="2016-11-04"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="JolokiaAccess.Supplier (Public javadocs 2016.11.0 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/JolokiaAccess.Supplier.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2016.11.0</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/jolokia/access/JolokiaAccess.Consumer.html" title="interface in org.wildfly.swarm.jolokia.access"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/wildfly/swarm/jolokia/access/MBeanRule.html" title="class in org.wildfly.swarm.jolokia.access"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/jolokia/access/JolokiaAccess.Supplier.html" target="_top">Frames</a></li> <li><a href="JolokiaAccess.Supplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li>Method</li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</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">org.wildfly.swarm.jolokia.access</div> <h2 title="Interface JolokiaAccess.Supplier" class="title">Interface JolokiaAccess.Supplier</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Superinterfaces:</dt> <dd><a href="http://docs.oracle.com/javase/8/docs/api/java/util/function/Supplier.html?is-external=true" title="class or interface in java.util.function">Supplier</a>&lt;<a href="../../../../../org/wildfly/swarm/jolokia/access/JolokiaAccess.html" title="class in org.wildfly.swarm.jolokia.access">JolokiaAccess</a>&gt;</dd> </dl> <dl> <dt>Enclosing class:</dt> <dd><a href="../../../../../org/wildfly/swarm/jolokia/access/JolokiaAccess.html" title="class in org.wildfly.swarm.jolokia.access">JolokiaAccess</a></dd> </dl> <hr> <br> <pre>public static interface <span class="typeNameLabel">JolokiaAccess.Supplier</span> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/util/function/Supplier.html?is-external=true" title="class or interface in java.util.function">Supplier</a>&lt;<a href="../../../../../org/wildfly/swarm/jolokia/access/JolokiaAccess.html" title="class in org.wildfly.swarm.jolokia.access">JolokiaAccess</a>&gt;</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.util.function.Supplier"> <!-- --> </a> <h3>Methods inherited from interface&nbsp;java.util.function.<a href="http://docs.oracle.com/javase/8/docs/api/java/util/function/Supplier.html?is-external=true" title="class or interface in java.util.function">Supplier</a></h3> <code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/function/Supplier.html?is-external=true#get--" title="class or interface in java.util.function">get</a></code></li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/JolokiaAccess.Supplier.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2016.11.0</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/jolokia/access/JolokiaAccess.Consumer.html" title="interface in org.wildfly.swarm.jolokia.access"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/wildfly/swarm/jolokia/access/MBeanRule.html" title="class in org.wildfly.swarm.jolokia.access"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/jolokia/access/JolokiaAccess.Supplier.html" target="_top">Frames</a></li> <li><a href="JolokiaAccess.Supplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li>Method</li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li>Method</li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
dashboard/src/main/resources/web/public/styles/fusepool.css
fusepoolP3/p3-ldp-marmotta
/** * Copyright (C) 2014 Salzburg Research. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ body { background-color: #eeeeee; font-family: 'PT Sans Caption', sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; margin: 0; padding: 0; } div#content { margin-left: 30%; margin-right: 30%; } img { border: 0; } a, a:active, a:visited { color: #d43f76; } a:hover { background-color: #d43f76; color: #ffffff; } h1 { font-size: 2.8em; display: block; margin-bottom: -10px; } h1:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } h1 img#logo { float: right; margin-top: -20px; } footer { margin-top: 5em; padding-top: 0.1em; min-height: 10em; background-color: #ffffff; color: #cccccc; text-align: center; font-size: 11px; }
docs/typenum/consts/type.P550.html
nitro-devs/nitro-game-engine
<!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 `P550` type in crate `typenum`."> <meta name="keywords" content="rust, rustlang, rust-lang, P550"> <title>typenum::consts::P550 - Rust</title> <link rel="stylesheet" type="text/css" href="../../normalize.css"> <link rel="stylesheet" type="text/css" href="../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc type"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../index.html'>typenum</a>::<wbr><a href='index.html'>consts</a></p><script>window.sidebarCurrent = {name: 'P550', ty: 'type', 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"> <h1 class='fqn'><span class='in-band'>Type Definition <a href='../index.html'>typenum</a>::<wbr><a href='index.html'>consts</a>::<wbr><a class="type" href=''>P550</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'>&#x2212;</span>] </a> </span><a class='srclink' href='../../src/typenum/home/jacob/nitro-game-engine/target/debug/build/typenum-cb7a8e569dce0703/out/consts.rs.html#1160' title='goto source code'>[src]</a></span></h1> <pre class='rust typedef'>type P550 = <a class="struct" href="../../typenum/int/struct.PInt.html" title="struct typenum::int::PInt">PInt</a>&lt;<a class="type" href="../../typenum/consts/type.U550.html" title="type typenum::consts::U550">U550</a>&gt;;</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>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</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 = "typenum"; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script defer src="../../search-index.js"></script> </body> </html>
docs/nphysics2d/volumetric/fn.convex_polyline_area_unchecked.html
nitro-devs/nitro-game-engine
<!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 `convex_polyline_area_unchecked` fn in crate `nphysics2d`."> <meta name="keywords" content="rust, rustlang, rust-lang, convex_polyline_area_unchecked"> <title>nphysics2d::volumetric::convex_polyline_area_unchecked - Rust</title> <link rel="stylesheet" type="text/css" href="../../normalize.css"> <link rel="stylesheet" type="text/css" href="../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc fn"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../index.html'>nphysics2d</a>::<wbr><a href='index.html'>volumetric</a></p><script>window.sidebarCurrent = {name: 'convex_polyline_area_unchecked', ty: 'fn', 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"> <h1 class='fqn'><span class='in-band'>Function <a href='../index.html'>nphysics2d</a>::<wbr><a href='index.html'>volumetric</a>::<wbr><a class="fn" href=''>convex_polyline_area_unchecked</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'>&#x2212;</span>] </a> </span><a class='srclink' href='../../src/nphysics2d/volumetric/volumetric_convex2.rs.html#84-97' title='goto source code'>[src]</a></span></h1> <pre class='rust fn'>pub fn convex_polyline_area_unchecked&lt;N:&nbsp;<a class="trait" href="../../alga/general/real/trait.Real.html" title="trait alga::general::real::Real">Real</a>&gt;(convex_polyline: &amp;<a class="struct" href="../../ncollide_procedural/polyline/struct.Polyline.html" title="struct ncollide_procedural::polyline::Polyline">Polyline</a>&lt;<a class="type" href="../../nphysics2d/math/type.Point.html" title="type nphysics2d::math::Point">Point</a>&lt;N&gt;&gt;)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&gt; N</pre><div class='docblock'><p>The area of a convex polyline.</p> <p>The polyline is not checked to be actually convex.</p> </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>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</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 = "nphysics2d"; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script defer src="../../search-index.js"></script> </body> </html>
static/css/horarios.css
paulomoreno/DAS
@charset "UTF-8"; /* CSS Document */ input:focus{ outline: 0; border-bottom-color: #00ccff; } input[type="checkbox"] { display:none; } input[type="checkbox"] + label span { display:inline-block; width:13px; height:13px; margin:5px 10px 10px 10px; vertical-align:middle; box-shadow: 0px 0px 0px 1px black; border: 2px solid white; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; cursor:pointer; } input[type="checkbox"] + label a{ color: black; font-weight: 400; } input[type="checkbox"]:checked + label a{ font-weight: 700; } input[type="checkbox"] + label a:hover{ color: #00ccff; } input[type="checkbox"]:checked + label span{ background-color: black; } input[type="checkbox"]:checked + label{ font-weight: 400; } input[type="checkbox"]:checked + label img{ opacity: 1.0; filter: alpha(opacity=100); /* msie */ } .linha{ width: 100%; overflow: auto; margin: 0; } .coluna_horarios_out{ float: none; display: block; margin-right: 3%; margin-top: 58px; } .coluna_horarios{ max-height: 350px; overflow: scroll; } .coluna_horarios .linha_horario:nth-of-type(2n){ background-color: #f5f5f5; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .linha_col{ float: left; min-width: 50px; vertical-align: middle; display: inline-block; } .linha_col h2{ margin-top: 40px; padding-left: 15px; min-width: 90px; font-weight: 600; display: inline-block; } .linha_col h3{ margin-top: 20px; } .coluna_horarios h3, .coluna_horarios_out h3{ font-weight: 600; font-size: 12pt; color: #00ccff; display: inline-block; } .header_padding_esquerda{ width: 155px; height: 10px; } .header_padding_direita{ width: 26px; height: 10px; } .linha_col_header{ float: none; display: block; height: 38px; vertical-align: middle; overflow: hidden; background-color: black; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; padding-bottom: 5px; } .linha_col_header h3{ margin-top: 7px; font-size: 14pt; font-weight: 400; color: white; } .h_coluna_esquerda{ float: left; } .h_coluna_direita{ float: right; } .h_coluna_centro{ float: none; } .linha_col_dias{ float: none; display: block; overflow: hidden; padding-bottom: 30px; } .dia{ text-align: center; float: left; width: 14.27%; } .dia input{ margin-top: 13px; font-size: 12pt; text-align: center; width: 60%; border: none; border-bottom: 1px solid black; } .dia input + label span{ margin: 0; margin-left: 5px; margin-right: -14px; margin-top: 20px; } .coluna_horarios .linha_horario:nth-of-type(2n) input{ background-color: #f5f5f5; } .coluna_horarios .linha_horario:nth-of-type(2n) input + label span{ border-color: #f5f5f5; } .dia input:focus{ border-bottom-color: #00ccff; } .excluir_horario_out{ float: right; width: 26px; margin-top: 40px; overflow: visible; text-align: center; } .excluir_horario{ width: 20px; height: 20px; margin: 2px; margin-left: 4px; font-weight: 300; font-size: 11pt; margin-left: auto; margin-right: auto; cursor: pointer; color: white; border-color: #f25880; background-color: #f25880; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; } .excluir_horario_out:hover .excluir_horario{ margin:0; margin-left: 2px; padding-top: 1px; font-size: 13pt; width: 24px; height: 24px; } .coluna_1{ float: left; } .coluna_2{ float: none; overflow: auto; }
de.mhus.osgi.micro/micro-osgi/target/apidocs/de/mhus/micro/osgi/package-use.html
mhus/mhus-inka
<!DOCTYPE HTML> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (11.0.5) on Thu Apr 23 22:56:21 CEST 2020 --> <title>Uses of Package de.mhus.micro.osgi (micro-osgi 7.0.0-SNAPSHOT API)</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="dc.created" content="2020-04-23"> <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="Uses of Package de.mhus.micro.osgi (micro-osgi 7.0.0-SNAPSHOT API)"; } } catch(err) { } //--> 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="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li> </ul> <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> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> </div> <a id="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> </div> <div class="navPadding">&nbsp;</div> <script type="text/javascript"><!-- $('.navPadding').css('padding-top', $('.fixedNav').css("height")); //--> </script> </nav> </header> <main role="main"> <div class="header"> <h1 title="Uses of Package de.mhus.micro.osgi" class="title">Uses of Package<br>de.mhus.micro.osgi</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"><a id="de.mhus.micro.osgi"> <!-- --> </a> <table class="useSummary"> <caption><span>Classes in <a href="package-summary.html">de.mhus.micro.osgi</a> used by <a href="package-summary.html">de.mhus.micro.osgi</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <th class="colFirst" scope="row"><a href="class-use/LocalOperationsProvider.html#de.mhus.micro.osgi">LocalOperationsProvider</a></th> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <th class="colFirst" scope="row"><a href="class-use/OperationApiImpl.html#de.mhus.micro.osgi">OperationApiImpl</a></th> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> </main> <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="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> </div> <a id="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </nav> <p class="legalCopy"><small>Copyright &#169; 2020. All rights reserved.</small></p> </footer> </body> </html>
css/subtitles.css
CCMA-Enginyeria/ebu-tt-d-parser
.subtitles { position: absolute; width: 100%; height: 100%; top: 0px; left: 0px; font-size: 1em; pointer-events: none; } .subtitles .regionContainer { position: absolute; display: table; text-align: center; font-family: inherit; } .subtitles .regionContainer .displayAlign { display: table-cell; vertical-align: bottom; } .subtitles .regionContainer .displayAlign.displayAlign-before { vertical-align: top; } .subtitles .regionContainer .displayAlign.displayAlign-center { vertical-align: middle; } .subtitles .regionContainer .displayAlign.displayAlign-after { vertical-align: bottom; } .subtitles .regionContainer .multiRowAlign { display: inline-block; } .subtitles .regionContainer .multiRowAlign.multiRowAlign-start { text-align: left; } .subtitles .regionContainer .multiRowAlign.multiRowAlign-center { text-align: center; } .subtitles .regionContainer .multiRowAlign.multiRowAlign-end { text-align: right; } .subtitles .regionContainer span { font-family: inherit; } .subtitles .regionContainer.user-no-background { background-color: transparent!important; } .subtitles .regionContainer.user-no-background .span-subtitle { background-color: transparent!important; text-shadow: 0px 0px 5px black; } .subtitles .regionContainer.user-force-background { background-color: transparent!important; } .subtitles .regionContainer.user-force-background .span-subtitle { background-color: black!important; }
donaciones.html
horminka/horminka.github.io
--- layout: page title: Donaciones permalink: /donaciones/ ref: donaciones lang: Español --- <div class="container-fluid"> <div class="row"> <div class="col-md-12 header" style="background: url('{{ site.url }}/img/header-donaciones.jpg') center center no-repeat; background-size: cover"></div> </div> </div> <div class="container seccion-donaciones"> <div class="row"> <div class="col-md-12"> {% include language_selector.html %} <h1>Donaciones</h1> <p>HorMinka es una entidad sin ánimo de lucro creada en la ciudad de Neiva (sur de Colombia) por jóvenes profesionales que decidieron apostarle al desarrollo regional y nacional y que buscan poner la ciencia y la tecnología al servicio de la sociedad. Para el desarrollo de nuestras actividades de impacto social (alfabetización digital, proyectos tecnológicos comunitarios, participación en la construcción de políticas públicas sobre ciencia y tecnología, entre otras) y su sostenimiento necesitamos recursos. Contribuya al avance de la ciencia y la tecnología en la sociedad y al desarrollo regional haciendo sus donaciones en dinero o en especie (computadores, herramientas, mobiliario, etc.) a nuestra organización.</p> <p>Como entidad legalmente constituida podemos emitir certificados de donación en caso de ser requeridos para efectuar deducciones de impuestos. Así mismo, se reconocerá públicamente su colaboración, si así se desea. Sus donaciones aseguran la continuidad y avance de nuestras actividades.</p> <p><strong>¡Gracias!</strong></p> </div> </div> <div class="row"> <div class="col-md-12 text-center" style="padding-top: 30px;"> <i class="fa fa-btc fa-3x" aria-hidden="true"></i> <p>¡Recibimos Bitcoins!</p> <p style="font-size: 13px">19FZwswVecKAfV5pJWkJRGTX1uEP8oWBi2</p> </div> </div> </div>
src/main/webapp/resource/css/backend.css
hawklithm/zblog
a,a:hover,a:focus{text-decoration: none;outline: medium none;} h1, h2, h3, h4, h5, h6,p{margin: 0;padding: 0;} /************** login ************/ #login{width:500px;margin:0px auto;margin-top: 150px;} #login #logo{text-align: center;float: left;padding-top: 10px;width: 200px;} #login p{padding: 12px 12px 12px 0;} #login .message{background-color: #ffffe0;border:1px solid #e6db55; border-radius: 3px;text-align: center;margin-bottom: 10px;} #login #loginform{background-color:#fff;border: 1px solid #e5e5e5;font-weight: normal;padding:24px; box-shadow: 0 4px 10px -1px rgba(200, 200, 200, 0.7);margin-left: 200px;} .icon{padding-right: 0.75em;} #sidebar{overflow-x: hidden;padding: 20px;border-right: 1px solid #cccccc;} /****************** side-menu **************/ ul{list-style: none outside none;padding: 0;} .side-menu a{display: block;} .side-menu ul a:hover{background-color: #d2d2dd;} .side-menu ul a.last{border-bottom: 1px solid #c8c8cb;} .side-menu i.left, .side-menu i.right{display: inline-block; line-height: 2.25em;padding-right: 0.75em;} .side-menu i.right{float: right;} .side-menu .nav-header{background: rgb(239, 239, 240);color: #444; border-bottom: 1px solid #c8c8cb;border-left: medium none; font-size: 1em;font-weight: normal; line-height: 2.5em;height: 40px; margin-bottom: 0;padding: 0.25em 0.25em 0.25em 1em;} /* .side-menu .sub-menu{display: none;} */ .side-menu .sub-menu a{padding: 0.5em 1em; color: #222;line-height: 20px;} .header{margin-top: 20px;} .header small{font-size: 12px;margin-left: 10px;} .databox{background-color: #f5f5f5;height: 80px;width: 100%;border-radius: 4px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);} .sybomol_red{background-color: #f16868;text-align: center;border-radius: 4px 0 0 4px;} .sybomol_terques{background-color: #6ccac9;text-align: center;border-radius: 4px 0 0 4px;} .sybomol_blue{background-color: #57c8f2;text-align: center;border-radius: 4px 0 0 4px;} .sybomol_yellow{background-color: #f8d347;text-align: center;border-radius: 4px 0 0 4px;} .sybomol{float: left;height: 100%;width: 45%;} .sybomol i{margin-top: 35px;} .value{color: #666;float: left;font-size: 35px;height: 100%;text-align: center;width: 55%;} .value p{font-size: 14px;} /*************** 后台首页 **************/ ul.ul-group li{padding: 5px 0;} ul.table-nav{float: left;font-size: 12px;font-family: sans-serif;} ul.table-nav li{ float: left;display: inline-block;} ul.table-nav li a, ul.table-nav li span{line-height: 2;padding: 0.2em;} ul.table-nav li span{color:#999;font-weight: normal;} ul.table-nav li a.active{color: #000;font-weight: bold;} /********** 数据table表格 **************/ .list-table{border-color: #dfdfdf;border-radius: 3px;border-style: solid;border-width: 1px;font-size: 12px;} .list-table thead th:first-of-type, .list-table thead th:last-of-type{ border-top-left-radius: 3px;} .list-table a,.list-table thead tr th{color:#21759b;} .list-table thead tr th{ font-weight: normal;border-bottom: 1px solid #ddd;background: linear-gradient(to top, #ececec, #f9f9f9) repeat scroll 0 0 #f1f1f1;} .list-table th.center,.list-table td.center{text-align: center;} .list-table td span.pointer{cursor: pointer;} /*************** row-action ***************/ .list-table tr:hover .row-action{visibility: visible;} .list-table .row-action{padding: 2px 0 0;visibility: hidden;} #upload-table .filename{padding:4px 7px 2px;} #upload-table .fileformat{margin: 2px 0 9px 0;} /**************** fast-edit ************/ #edit-row{display: none;} #edit-row div{float: left;font-size: 12px;padding: 0 6px;} #edit-row h5{margin-bottom: 0.5em;} #edit-row span{display: block;margin: 0.2em 0;clear: both;} #edit-row span label{width: 5em;display: block;float: left;line-height: 1.8em;font-weight: normal;} #edit-row input[type="text"], #edit-row textarea{width: 83%;outline: 0 none;border-radius: 3px;background-color: #fff; border:1px solid #dfdfdf;} #edit-row textarea{height: 4em;width: 95%} #edit-row input[type="text"]:focus, #edit-row textarea:focus{border-color: #aaa;} #edit-row input[type="radio"]{margin-right: 0.5em;} .edit-col-left{width: 45%;} .edit-col-center{width: 24%;} #edit-row ul{border:1px solid #ddd;background-color: #fff;padding: 0 5px;} #edit-row ul li{margin: 0.2em 0;} .edit-col-right{width: 30%;} #edit-row p{padding: 1em 0.5em 0 0.5em;clear: both;} /**************** 编辑器 ************/ #editor-nav li a{border-bottom-width: 0;font-size: 10px;padding: 7px 15px;} #editor-txt textarea{border: 1px solid #d4d4d4;border-radius: 4px;resize:none;} /************ form ****************/ form.text-left label{font-weight: normal;text-align: left;padding-top: 7px;padding-left: 40px;} form.text-left .help-block{margin-bottom: 0px;} img.avatar{float: left;margin-right: 10px;margin-top: 1px;} /************ uploader文件上传 ***************/ #uploader .tip{font-size: 12px;letter-spacing: 1px;color: #bbb;font-weight: bold;margin:0 0 12px 12px;} #uploader .upload-list{border: 3px dashed #e6e6e6;margin: 10px;padding: 15px;} .upload-item{border: 1px solid #dfdfdf;min-height: 36px;width: 100%;margin-top: -1px;} .upload-item img{margin: 2px;max-height: 32px;max-width: 40px;} .upload-item .upload-item-name{line-height: 36px;padding-left: 10px;display: inline-block;width: 15%;} .upload-item a{float: right;margin-right: 15px;line-height: 36px;} .upload-item .progress{display: inline-block;vertical-align: middle;width: 70%;margin:0 0 0 15px;} #uploader .placeholder{background-image:url("../img/upload.png");background-position:center 93px;background-color:transparent;background-repeat:no-repeat; color: #cccccc;font-size: 18px;min-height: 350px;padding-top: 178px;text-align: center;} #uploader #status-bar{border-top: 1px solid #dadada;height: 63px;line-height: 63px;padding: 0 20px;position: relative;} #status-bar .info{color: #666666;display: inline-block;font-size: 14px;} #status-bar .btns{line-height: 40px;position: absolute;right: 20px;top: 10px;} #status-bar #append-picker{display: inline-block;float: left;} #status-bar #append-picker .webuploader-pick, #status-bar .uploadBtn{ background-color: #fff;color: #565656;cursor: pointer; border: 1px solid #cfcfcf;border-radius: 3px; display: inline-block;float: left; font-size: 14px;margin-left: 10px;padding: 0 18px;} #status-bar .uploadBtn{background-color: #00b7ee;color: #fff;border-color: transparent;} /**************** pager **********/ #pager{float: right;padding-right: 15px;} #pager ul{margin: 0;} .page-info{line-height: 25px;padding-top: 5px;} .footer{position: absolute;bottom: 0;width: 100%;height: 60px;background-color: #f5f5f5;} .footer .text-muted{margin: 20px 0;} .footer > .container {padding-right: 15px;padding-left: 15px;}
compose/templates/compose/page_feature.html
pkimber/compose
{% extends 'web/base.html' %} {% load thumbnail %} {% block content %} {% include 'compose/_event_feature.html' %} {% endblock content %}
PhysX-3.3/PhysXSDK/Documentation/PhysXAPI/files/classPxDeletionListener-members.html
LiangYue1981816/CrossEngine
<html> <head> <title>Member List</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <LINK HREF="NVIDIA.css" REL="stylesheet" TYPE="text/css"> </head> <body bgcolor="#FFFFFF"> <div id="header"> <hr class="first"> <img alt="" src="images/PhysXlogo.png" align="middle"> <br> <center> <a class="qindex" href="main.html">Main Page</a> &nbsp; <a class="qindex" href="hierarchy.html">Class Hierarchy</a> &nbsp; <a class="qindex" href="annotated.html">Compound List</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; </center> <hr class="second"> </div> <!-- Generated by Doxygen 1.8.3.1 --> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">PxDeletionListener Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classPxDeletionListener.html">PxDeletionListener</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classPxDeletionListener.html#a76fa5705a41d0996d0f31c591f4f049c">onRelease</a>(const PxBase *observed, void *userData, PxDeletionEventFlag::Enum deletionEvent)=0</td><td class="entry"><a class="el" href="classPxDeletionListener.html">PxDeletionListener</a></td><td class="entry"><span class="mlabel">pure virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classPxDeletionListener.html#afc09e12240bd133f30d23fd73adb62d2">PxDeletionListener</a>()</td><td class="entry"><a class="el" href="classPxDeletionListener.html">PxDeletionListener</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classPxDeletionListener.html#a7c42c11dd067fbabe73b818a5d476bce">~PxDeletionListener</a>()</td><td class="entry"><a class="el" href="classPxDeletionListener.html">PxDeletionListener</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span><span class="mlabel">virtual</span></td></tr> </table></div><!-- contents --> <hr style="width: 100%; height: 2px;"><br> Copyright &copy; 2008-2015 NVIDIA Corporation, 2701 San Tomas Expressway, Santa Clara, CA 95050 U.S.A. All rights reserved. <a href="http://www.nvidia.com ">www.nvidia.com</a> </body> </html>
core/templates/pages/learner-dashboard-page/learner-dashboard-page.component.css
oppia/oppia
/* NOTE to developers: Only the files ending with '.css' (but not '.rtl.css') should be edited. The styling should be generalized enough that the autogenerated '.rtl.css' files should work without any manual input. The '.rtl.css' file can be generated by running the 'python -m scripts.rtl_css --mode generate' script. Some additional rules that can be added to the CSS files can be found here: https://rtlcss.com/learn/usage-guide/control-directives . */ .oppia-learner-dashboard-container { margin: 0 auto 30px auto; max-width: 1400px; text-align: left; } .oppia-learner-dashboard-button-menu { padding: 8px; } .oppia-learner-dashboard-title { color: #01645c; font-family: 'Capriola', 'Roboto', Arial, sans-serif; font-size: 3em; margin-bottom: 33px; margin-top: 0; padding-top: 65.5px; text-align: center; } .oppia-learner-dashboard-section-not-active-button { filter: invert(31%) sepia(3%) saturate(11%) hue-rotate(341deg) brightness(101%) contrast(90%); } .oppia-learner-dashboard-section-active-button { filter: invert(12%) sepia(99%) saturate(4263%) hue-rotate(171deg) brightness(94%) contrast(101%); } .oppia-learner-dashboard-progress-button-menu { background: #e8e7e3; border-bottom: 2px solid #d4d4d4; border-radius: 0; box-shadow: none; padding: 0.1px; } .home-button, .goals-button { left: 10px; position: relative; } .oppia-learner-dashboard-buttons { background: #fff 0% 0% no-repeat padding-box; bottom: 0; box-shadow: 0 -3px 5px #3333331a; height: 2.5rem; position: absolute; width: 100%; z-index: 20; } .oppia-learner-dashboard-progress-button-menu-options { color: #00645c; cursor: pointer; display: inline-block; font-size: 19px; font-weight: 500; margin: 0 16px; padding: 23px 5px; text-align: center; } .empty-feedback-threads { color: #333; font-family: "Roboto", Arial, sans-serif; font-size: 18px; } .oppia-buttons { cursor: pointer; display: inline-block; } .oppia-svg-image { display: block; height: 48px; width: 64px; } .oppia-learner-dashboard-menu { cursor: pointer; font-family: "Roboto", Arial, sans-serif; font-size: 18px; margin: 0; padding: 17px 20px 17px 20px; } .oppia-learner-dashboard-section-active { background-color: rgba(0, 100, 92, 0.1); color: #00645c; } .oppia-learner-dashborad-menu-hover:hover { background-color: rgba(0, 100, 92, 0.1); } .oppia-learner-dashboard-side-content { min-width: 241px; padding-left: 100px; width: 20%; } .oppia-learner-dashboard-main-content { padding: 0; width: 60%; } .oppia-learner-dashboard-main-content .remove-icon { color: white; float: right; font-size: 20px; left: -7px; margin-left: -26px; margin-top: 10px; position: relative; width: 18px; z-index: 20; } .oppia-learner-dashboard-main-menu { background-color: white; height: auto; margin: 64px 0 0 0; padding: 0; } .oppia-learner-dashboard-mobile-mode { margin: auto; width: 100%; } .oppia-learner-dashboard-main-content-title { color: #076962; display: inline-block; font-family: 'Capriola', 'Roboto', Arial, sans-serif; font-size: 24px; padding-bottom: 8px; } .oppia-learner-dashboard-sort { float: right; padding-right: 7.5px; padding-top: 8px; } .oppia-learner-dashboard-main-content-container .oppia-learner-dashboard-no-activity-card { background: rgb(255,255,255); box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); font-family: "Capriola", "Roboto", Arial, sans-serif; margin: 0 17px 0 4px; padding: 30px 55px 30px 30px; } .oppia-learner-dashboard-sort-mobile { float: none; padding: 0 7.5px; } .oppia-learner-dashboard-feedback-section { margin: 0 23px 0 0; } .oppia-learner-dashboard-feedback-section .table { background-color: white; margin-bottom: 10px; margin-left: 6px; } .oppia-feedback-section-top-margin { margin-top: 64px; } .oppia-learner-dashboard-feedback-section .feedback-thread-message-count { color: #757575; font-size: 100.25%; } .oppia-learner-dashboard-feedback-section .feedback-message-spacing { left: 3px; padding: 0; text-align: center; } .oppia-learner-dashboard-feedback-section .feedback-message-header { display: inline-block; text-align: center; width: 8%; } .oppia-learner-dashboard-feedback-section .feedback-thread-new-message { margin-right: 10px; } .oppia-learner-dashboard-feedback-section .feedback-thread-new-message-send { margin: 6px 0 0 14px; } .oppia-row { display: flex; } .oppia-sort-options { width: auto; } .oppia-learner-dashboard-intro-button-link { margin-top: 13px; width: 230px; } .oppia-btn-secondary { padding: 0 3px; } .oppia-exploration-title { font-size: 105%; margin-left: 7px; } .oppia-message-summaries { padding: 13px 8px 7px 8px; } .oppia-profile-picture { margin-top: 4px; min-width: 32px; } .oppia-updated-status { float: right; margin-right: 15px; } .oppia-feedback-message-spacing { width: 8%; } @media (max-width: 768px) { .oppia-learner-dashboard-feedback-section .feedback-thread-new-message { margin-left: 14px; } .oppia-learner-dashboard-feedback-section .feedback-message-author-name { margin-left: 10px; } .oppia-learner-dashboard-feedback-section .feedback-thread-new-message-send { margin: 6px 0 0 28px; } .oppia-learner-dashboard-feedback-section .feedback-thread-reply-box { margin-top: 9px; } .oppia-learner-dashboard-feedback-section .feedback-thread-message-body { margin-left: 43px; } .oppia-learner-dashboard-container { margin-bottom: 0; } } @media screen and (min-width: 768px) and (max-width: 1000px) { .oppia-learner-dashboard-buttons { height: 0.1rem; } .oppia-buttons { margin-left: 135px; } .oppia-learner-dashboard-progress-button-menu-options { margin: 0 70px; } } @media(max-width:450px) { .oppia-learner-dashboard-progress-button-menu-options { font-size: 16px; } } @media screen and (min-width: 1001px) and (max-width: 1200px) { .oppia-buttons { margin-left: 205px; } .oppia-learner-dashboard-progress-button-menu-options { margin: 0 110px; } } .oppia-learner-dashboard-feedback-section .col-sm-11 { padding: 0 20px 0 0; } .oppia-learner-dashboard-feedback-section .feedback-thread-reply-box { font-size: 1em; height: 70px; margin-left: 14px; resize: vertical; } .oppia-learner-dashboard-feedback-section .feedback-thread-warning { color: #0277bd; margin-left: 4px; } .oppia-learner-dashboard-feedback-section .feedback-thread-learner-profile-pic { margin-left: 26px; margin-top: 4px; min-width: 32px; } @media (max-width: 810px) { .sort-explorations-select.oppia-learner-dashboard-sort { padding: 0 0 6px 7.5px; width: 100%; } .oppia-learner-dashboard-main-content-container { margin-bottom: 10vh; } } @media (max-width: 500px) { .oppia-learner-dashboard-main-content-container { padding: 7px; } .oppia-learner-dashboard-main-content-container .oppia-learner-dashboard-no-activity-card { margin: 0 2px 0 4px; } .oppia-learner-dashboard-feedback-section .feedback-thread-reply-box { font-size: 1em; height: 70px; margin-left: 14px; resize: vertical; } .oppia-learner-dashboard-feedback-section .feedback-thread-learner-profile-pic { margin-left: 15px; } } @media screen and (max-width: 470px) { .oppia-learner-dashboard-main-content, .oppia-learner-dashboard-side-content { width: 100%; } } .oppia-dashboard-tooltip:hover + .oppia-dashboard-tooltip-text { visibility: visible; } .oppia-learner-dashboard-page-portfolio { font-weight: bold; margin-right: 14px; margin-top: 8px; text-align: right; } /* The css below helps in using headroom.js for footer. */ .oppia-learner-dashboard-buttons.headroom { bottom: 0; left: 0; right: 0; } .oppia-learner-dashboard-buttons.headroom--top { margin-bottom: 5px; } .oppia-learner-dashboard-buttons.headroom--unfixed { position: relative; transform: translateY(0); } .oppia-learner-dashboard-buttons.headroom--scrolled { transition: transform 200ms ease-in-out; } .oppia-learner-dashboard-buttons.headroom--unpinned { bottom: -30px; } .oppia-learner-dashboard-buttons.headroom--pinned { margin-bottom: 38px; position: fixed; transform: translateY(-100%); }
frontend/marketplace/src/index.html
inspectIT/marketplace
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta http-equiv="encoding" content="utf-8"> <meta name="description" content=""/> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <title>Marketplace</title> <base href="/"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" type="image/x-icon" href="favicon.ico"> </head> <body> <app-root>Loading...</app-root> </body> </html>
gwt/javadoc/com/rhizospherejs/gwt/rebind/class-use/BridgeType.html
battlehorse/rhizosphere
<!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-google-v3) on Tue Jun 28 23:58:16 BST 2011 --> <TITLE> Uses of Class com.rhizospherejs.gwt.rebind.BridgeType </TITLE> <META NAME="date" CONTENT="2011-06-28"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.rhizospherejs.gwt.rebind.BridgeType"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/rhizospherejs/gwt/rebind/BridgeType.html" title="annotation in com.rhizospherejs.gwt.rebind"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/rhizospherejs/gwt/rebind//class-useBridgeType.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="BridgeType.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>com.rhizospherejs.gwt.rebind.BridgeType</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../com/rhizospherejs/gwt/rebind/BridgeType.html" title="annotation in com.rhizospherejs.gwt.rebind">BridgeType</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#com.rhizospherejs.gwt.client.bridge"><B>com.rhizospherejs.gwt.client.bridge</B></A></TD> <TD>Defines functionality to map bi-directionally between custom POJOs used as representation of Rhizosphere models and equivalent custom-tailored JavaScriptObjects that the underlying Rhizosphere javascript library can understand.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="com.rhizospherejs.gwt.client.bridge"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../com/rhizospherejs/gwt/rebind/BridgeType.html" title="annotation in com.rhizospherejs.gwt.rebind">BridgeType</A> in <A HREF="../../../../../com/rhizospherejs/gwt/client/bridge/package-summary.html">com.rhizospherejs.gwt.client.bridge</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../com/rhizospherejs/gwt/client/bridge/package-summary.html">com.rhizospherejs.gwt.client.bridge</A> with annotations of type <A HREF="../../../../../com/rhizospherejs/gwt/rebind/BridgeType.html" title="annotation in com.rhizospherejs.gwt.rebind">BridgeType</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>JsoBuilder.</B><B><A HREF="../../../../../com/rhizospherejs/gwt/client/bridge/JsoBuilder.html#setBoolean(java.lang.String, boolean)">setBoolean</A></B>(java.lang.String&nbsp;attribute, boolean&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets a boolean on the target JavaScriptObject.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>JsoBuilder.</B><B><A HREF="../../../../../com/rhizospherejs/gwt/client/bridge/JsoBuilder.html#setDate(java.lang.String, java.util.Date)">setDate</A></B>(java.lang.String&nbsp;attribute, java.util.Date&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets a Date on the target JavaScriptObject.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>JsoBuilder.</B><B><A HREF="../../../../../com/rhizospherejs/gwt/client/bridge/JsoBuilder.html#setDouble(java.lang.String, double)">setDouble</A></B>(java.lang.String&nbsp;attribute, double&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets a double on the target JavaScriptObject.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>JsoBuilder.</B><B><A HREF="../../../../../com/rhizospherejs/gwt/client/bridge/JsoBuilder.html#setFloat(java.lang.String, float)">setFloat</A></B>(java.lang.String&nbsp;attribute, float&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets a float on the target JavaScriptObject.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>JsoBuilder.</B><B><A HREF="../../../../../com/rhizospherejs/gwt/client/bridge/JsoBuilder.html#setInteger(java.lang.String, int)">setInteger</A></B>(java.lang.String&nbsp;attribute, int&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets an integer on the target JavaScriptObject.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>JsoBuilder.</B><B><A HREF="../../../../../com/rhizospherejs/gwt/client/bridge/JsoBuilder.html#setJavaScriptObject(java.lang.String, com.google.gwt.core.client.JavaScriptObject)">setJavaScriptObject</A></B>(java.lang.String&nbsp;attribute, com.google.gwt.core.client.JavaScriptObject&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets a JavaScriptObject on the target JavaScriptObject.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>JsoBuilder.</B><B><A HREF="../../../../../com/rhizospherejs/gwt/client/bridge/JsoBuilder.html#setObject(java.lang.String, java.lang.Object)">setObject</A></B>(java.lang.String&nbsp;attribute, java.lang.Object&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets an opaque object on the target JavaScriptObject.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>JsoBuilder.</B><B><A HREF="../../../../../com/rhizospherejs/gwt/client/bridge/JsoBuilder.html#setObjectArray(java.lang.String, java.lang.Object[])">setObjectArray</A></B>(java.lang.String&nbsp;attribute, java.lang.Object[]&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets an opaque array of objects on the target JavaScriptObject.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>JsoBuilder.</B><B><A HREF="../../../../../com/rhizospherejs/gwt/client/bridge/JsoBuilder.html#setString(java.lang.String, java.lang.String)">setString</A></B>(java.lang.String&nbsp;attribute, java.lang.String&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets a String on the target JavaScriptObject.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/rhizospherejs/gwt/rebind/BridgeType.html" title="annotation in com.rhizospherejs.gwt.rebind"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/rhizospherejs/gwt/rebind//class-useBridgeType.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="BridgeType.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
2017.12.1/apidocs/org/wildfly/swarm/config/modcluster/mod_cluster_config/dynamic_load_provider/package-frame.html
wildfly-swarm/wildfly-swarm-javadocs
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Wed Dec 13 10:32:40 MST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>org.wildfly.swarm.config.modcluster.mod_cluster_config.dynamic_load_provider (BOM: * : All 2017.12.1 API)</title> <meta name="date" content="2017-12-13"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../../script.js"></script> </head> <body> <h1 class="bar"><a href="../../../../../../../org/wildfly/swarm/config/modcluster/mod_cluster_config/dynamic_load_provider/package-summary.html" target="classFrame">org.wildfly.swarm.config.modcluster.mod_cluster_config.dynamic_load_provider</a></h1> <div class="indexContainer"> <h2 title="Interfaces">Interfaces</h2> <ul title="Interfaces"> <li><a href="CustomLoadMetricConsumer.html" title="interface in org.wildfly.swarm.config.modcluster.mod_cluster_config.dynamic_load_provider" target="classFrame"><span class="interfaceName">CustomLoadMetricConsumer</span></a></li> <li><a href="CustomLoadMetricSupplier.html" title="interface in org.wildfly.swarm.config.modcluster.mod_cluster_config.dynamic_load_provider" target="classFrame"><span class="interfaceName">CustomLoadMetricSupplier</span></a></li> <li><a href="LoadMetricConsumer.html" title="interface in org.wildfly.swarm.config.modcluster.mod_cluster_config.dynamic_load_provider" target="classFrame"><span class="interfaceName">LoadMetricConsumer</span></a></li> <li><a href="LoadMetricSupplier.html" title="interface in org.wildfly.swarm.config.modcluster.mod_cluster_config.dynamic_load_provider" target="classFrame"><span class="interfaceName">LoadMetricSupplier</span></a></li> </ul> <h2 title="Classes">Classes</h2> <ul title="Classes"> <li><a href="CustomLoadMetric.html" title="class in org.wildfly.swarm.config.modcluster.mod_cluster_config.dynamic_load_provider" target="classFrame">CustomLoadMetric</a></li> <li><a href="LoadMetric.html" title="class in org.wildfly.swarm.config.modcluster.mod_cluster_config.dynamic_load_provider" target="classFrame">LoadMetric</a></li> </ul> <h2 title="Enums">Enums</h2> <ul title="Enums"> <li><a href="LoadMetric.Type.html" title="enum in org.wildfly.swarm.config.modcluster.mod_cluster_config.dynamic_load_provider" target="classFrame">LoadMetric.Type</a></li> </ul> </div> </body> </html>
2.1.0.Final/apidocs/org/wildfly/swarm/config/security/manager/package-use.html
wildfly-swarm/wildfly-swarm-javadocs
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Tue Aug 14 15:31:53 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Package org.wildfly.swarm.config.security.manager (BOM: * : All 2.1.0.Final API)</title> <meta name="date" content="2018-08-14"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package org.wildfly.swarm.config.security.manager (BOM: * : All 2.1.0.Final API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.1.0.Final</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/security/manager/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package org.wildfly.swarm.config.security.manager" class="title">Uses of Package<br>org.wildfly.swarm.config.security.manager</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/wildfly/swarm/config/security/manager/package-summary.html">org.wildfly.swarm.config.security.manager</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.security.manager">org.wildfly.swarm.config.security.manager</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../../org/wildfly/swarm/config/security/manager/package-summary.html">org.wildfly.swarm.config.security.manager</a> used by <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../../org/wildfly/swarm/config/security/manager/class-use/DefaultDeploymentPermissions.html#org.wildfly.swarm.config">DefaultDeploymentPermissions</a> <div class="block">The permissions that are to be granted to deployments</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../../org/wildfly/swarm/config/security/manager/class-use/DefaultDeploymentPermissionsConsumer.html#org.wildfly.swarm.config">DefaultDeploymentPermissionsConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../../org/wildfly/swarm/config/security/manager/class-use/DefaultDeploymentPermissionsSupplier.html#org.wildfly.swarm.config">DefaultDeploymentPermissionsSupplier</a>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.security.manager"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../../org/wildfly/swarm/config/security/manager/package-summary.html">org.wildfly.swarm.config.security.manager</a> used by <a href="../../../../../../org/wildfly/swarm/config/security/manager/package-summary.html">org.wildfly.swarm.config.security.manager</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../../org/wildfly/swarm/config/security/manager/class-use/DefaultDeploymentPermissions.html#org.wildfly.swarm.config.security.manager">DefaultDeploymentPermissions</a> <div class="block">The permissions that are to be granted to deployments</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../../org/wildfly/swarm/config/security/manager/class-use/DefaultDeploymentPermissionsConsumer.html#org.wildfly.swarm.config.security.manager">DefaultDeploymentPermissionsConsumer</a>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.1.0.Final</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/security/manager/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
docs/4.1/classes/TopologyClosedEvent.html
mongodb/node-mongodb-native
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>TopologyClosedEvent | mongodb</title> <meta name="description" content="Documentation for mongodb"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../assets/css/main.css"> <script async src="../assets/js/search.js" id="search-script"></script> </head> <body> <header> <div class="tsd-page-toolbar"> <div class="container"> <div class="table-wrap"> <div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base=".."> <div class="field"> <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label> <input id="tsd-search-field" type="text" /> </div> <ul class="results"> <li class="state loading">Preparing search index...</li> <li class="state failure">The search index is not available</li> </ul> <a href="../index.html" class="title">mongodb</a> </div> <div class="table-cell" id="tsd-widgets"> <div id="tsd-filter"> <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a> <div class="tsd-filter-group"> <div class="tsd-select" id="tsd-filter-visibility"> <span class="tsd-select-label">All</span> <ul class="tsd-select-list"> <li data-value="public">Public</li> <li data-value="protected">Public/Protected</li> <li data-value="private" class="selected">All</li> </ul> </div> <input type="checkbox" id="tsd-filter-inherited" checked /> <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label> <input type="checkbox" id="tsd-filter-externals" checked /> <label class="tsd-widget" for="tsd-filter-externals">Externals</label> </div> </div> <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a> </div> </div> </div> </div> <div class="tsd-page-title"> <div class="container"> <ul class="tsd-breadcrumb"> <li> <a href="../modules.html">mongodb</a> </li> <li> <a href="TopologyClosedEvent.html">TopologyClosedEvent</a> </li> </ul> <h1>Class TopologyClosedEvent</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <section class="tsd-panel tsd-comment"> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Emitted when topology is closed.</p> </div> </div> </section> <section class="tsd-panel tsd-hierarchy"> <h3>Hierarchy</h3> <ul class="tsd-hierarchy"> <li> <span class="target">TopologyClosedEvent</span> </li> </ul> </section> <section class="tsd-panel-group tsd-index-group"> <h2>Index</h2> <section class="tsd-panel tsd-index-panel"> <div class="tsd-index-content"> <section class="tsd-index-section "> <h3>Constructors</h3> <ul class="tsd-index-list"> <li class="tsd-kind-constructor tsd-parent-kind-class"><a href="TopologyClosedEvent.html#constructor" class="tsd-kind-icon">constructor</a></li> </ul> </section> <section class="tsd-index-section "> <h3>Properties</h3> <ul class="tsd-index-list"> <li class="tsd-kind-property tsd-parent-kind-class"><a href="TopologyClosedEvent.html#topologyId" class="tsd-kind-icon">topology<wbr>Id</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group "> <h2>Constructors</h2> <section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class"> <a name="constructor" class="tsd-anchor"></a> <h3>constructor</h3> <ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class"> <li class="tsd-signature tsd-kind-icon">new <wbr>Topology<wbr>Closed<wbr>Event<span class="tsd-signature-symbol">(</span>topologyId<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="TopologyClosedEvent.html" class="tsd-signature-type" data-tsd-kind="Class">TopologyClosedEvent</a></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/mongodb/node-mongodb-native/blob/c9a962f1/src/sdam/events.ts#L120">src/sdam/events.ts:120</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <dl class="tsd-comment-tags"> <dt>internal</dt> <dd></dd> </dl> </div> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>topologyId: <span class="tsd-signature-type">number</span></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <a href="TopologyClosedEvent.html" class="tsd-signature-type" data-tsd-kind="Class">TopologyClosedEvent</a></h4> </li> </ul> </section> </section> <section class="tsd-panel-group tsd-member-group "> <h2>Properties</h2> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"> <a name="topologyId" class="tsd-anchor"></a> <h3>topology<wbr>Id</h3> <div class="tsd-signature tsd-kind-icon">topology<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/mongodb/node-mongodb-native/blob/c9a962f1/src/sdam/events.ts#L117">src/sdam/events.ts:117</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>A unique identifier for the topology</p> </div> </div> </section> </section> </div> <div class="col-4 col-menu menu-sticky-wrap menu-highlight"> <nav class="tsd-navigation primary"> <ul> <li class=" "> <a href="../modules.html">Exports</a> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> </ul> <ul class="current"> <li class="current tsd-kind-class"> <a href="TopologyClosedEvent.html" class="tsd-kind-icon">Topology<wbr>Closed<wbr>Event</a> <ul> <li class=" tsd-kind-constructor tsd-parent-kind-class"> <a href="TopologyClosedEvent.html#constructor" class="tsd-kind-icon">constructor</a> </li> <li class=" tsd-kind-property tsd-parent-kind-class"> <a href="TopologyClosedEvent.html#topologyId" class="tsd-kind-icon">topology<wbr>Id</a> </li> </ul> </li> </ul> <ul class="after-current"> </ul> </nav> </div> </div> </div> <footer class="with-border-bottom"> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li> </ul> </div> </div> </footer> <div class="container tsd-generator"> <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p> </div> <div class="overlay"></div> <script src="../assets/js/main.js"></script> </body> </html>
docs/jdiff/changes/org.apache.zookeeper.AsyncCallback.DataCallback.html
BZCareer/zookeeper-quickstart
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd"> <HTML> <HEAD> <meta name="generator" content="JDiff v1.0.9"> <!-- Generated by the JDiff Javadoc doclet --> <!-- (http://www.jdiff.org) --> <meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared."> <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet"> <TITLE> org.apache.zookeeper.AsyncCallback.DataCallback </TITLE> <LINK REL="stylesheet" TYPE="text/css" HREF="../stylesheet-jdiff.css" TITLE="Style"> </HEAD> <BODY> <!-- Start of nav bar --> <TABLE summary="Navigation bar" BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <TABLE summary="Navigation bar" BORDER="0" CELLPADDING="0" CELLSPACING="3"> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../api/org/apache/zookeeper/AsyncCallback.DataCallback.html" target="_top"><FONT CLASS="NavBarFont1"><B><tt>zookeeper 3.5.1-alpha</tt></B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="changes-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="pkg_org.apache.zookeeper.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="jdiff_statistics.html"><FONT CLASS="NavBarFont1"><B>Statistics</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="jdiff_help.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM><b>Generated by<br><a href="http://www.jdiff.org" class="staysblack" target="_top">JDiff</a></b></EM></TD> </TR> <TR> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="org.apache.zookeeper.AsyncCallback.ChildrenCallback.html"><B>PREV CLASS</B></A> &nbsp;<A HREF="org.apache.zookeeper.AsyncCallback.StatCallback.html"><B>NEXT CLASS</B></A> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <A HREF="../changes.html" TARGET="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="org.apache.zookeeper.AsyncCallback.DataCallback.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL: &nbsp; CONSTRUCTORS&nbsp;|&nbsp; <a href="#methods">METHODS</a>&nbsp;|&nbsp; FIELDS </FONT></TD> </TR> </TABLE> <HR> <!-- End of nav bar --> <H2> Interface org.apache.zookeeper.<A HREF="../../api/org/apache/zookeeper/AsyncCallback.DataCallback.html" target="_top"><tt>AsyncCallback.DataCallback</tt></A> </H2> <a NAME="constructors"></a> <a NAME="methods"></a> <p> <a NAME="Changed"></a> <TABLE summary="Changed Methods" BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD VALIGN="TOP" COLSPAN=3><FONT SIZE="+1"><B>Changed Methods</B></FONT></TD> </TR> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="org.apache.zookeeper.AsyncCallback.DataCallback.processResult_changed(int, java.lang.String, java.lang.Object, byte[], org.apache.zookeeper.data.Stat)"></A> <nobr><code>void</code>&nbsp;<A HREF="../../api/org/apache/zookeeper/AsyncCallback.DataCallback.html#processResult(int, java.lang.String, java.lang.Object, byte[], org.apache.zookeeper.data.Stat)" target="_top"><tt>processResult</tt></A>(<code>int,</nobr> String<nobr>,</nobr> Object<nobr>,</nobr> byte[]<nobr>,</nobr> Stat<nobr><nobr></code>) </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> Changed from non-abstract to abstract. </TD> <TD VALIGN="TOP">Process the result of asynchronous calls.</TD> </TR> </TABLE> &nbsp; <a NAME="fields"></a> <HR> <!-- Start of nav bar --> <TABLE summary="Navigation bar" BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <TABLE summary="Navigation bar" BORDER="0" CELLPADDING="0" CELLSPACING="3"> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../api/org/apache/zookeeper/AsyncCallback.DataCallback.html" target="_top"><FONT CLASS="NavBarFont1"><B><tt>zookeeper 3.5.1-alpha</tt></B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="changes-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="pkg_org.apache.zookeeper.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="jdiff_statistics.html"><FONT CLASS="NavBarFont1"><B>Statistics</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="jdiff_help.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3></TD> </TR> <TR> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="org.apache.zookeeper.AsyncCallback.ChildrenCallback.html"><B>PREV CLASS</B></A> &nbsp;<A HREF="org.apache.zookeeper.AsyncCallback.StatCallback.html"><B>NEXT CLASS</B></A> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <A HREF="../changes.html" TARGET="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="org.apache.zookeeper.AsyncCallback.DataCallback.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD> <TD BGCOLOR="0xFFFFFF" CLASS="NavBarCell3"></TD> </TR> </TABLE> <HR> <!-- End of nav bar --> </BODY> </HTML>
doc/javadoc/com/thinkaurelius/titan/util/stats/package-frame.html
hixiaoxi/titan-all-0.3.0
<!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_12-ea) on Fri Mar 29 10:37:21 MDT 2013 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>com.thinkaurelius.titan.util.stats (Titan: Distributed Graph Database 0.3.0 API)</title> <meta name="date" content="2013-03-29"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <h1 class="bar"><a href="../../../../../com/thinkaurelius/titan/util/stats/package-summary.html" target="classFrame">com.thinkaurelius.titan.util.stats</a></h1> <div class="indexContainer"> <h2 title="Classes">Classes</h2> <ul title="Classes"> <li><a href="IntegerDoubleFrequency.html" title="class in com.thinkaurelius.titan.util.stats" target="classFrame">IntegerDoubleFrequency</a></li> <li><a href="IntegerLongFrequency.html" title="class in com.thinkaurelius.titan.util.stats" target="classFrame">IntegerLongFrequency</a></li> <li><a href="ObjectAccumulator.html" title="class in com.thinkaurelius.titan.util.stats" target="classFrame">ObjectAccumulator</a></li> </ul> </div> </body> </html>
apache-cassandra-2.0.16/javadoc/org/apache/cassandra/transport/class-use/Message.html
anuragkapur/cassandra-2.1.2-ak-skynet
<!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.transport.Message (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.transport.Message (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/transport/Message.html" title="class in org.apache.cassandra.transport">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/transport/class-use/Message.html" target="_top">Frames</a></li> <li><a href="Message.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.transport.Message" class="title">Uses of Class<br>org.apache.cassandra.transport.Message</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../org/apache/cassandra/transport/Message.html" title="class in org.apache.cassandra.transport">Message</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.cassandra.transport">org.apache.cassandra.transport</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.cassandra.transport.messages">org.apache.cassandra.transport.messages</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.transport"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/cassandra/transport/Message.html" title="class in org.apache.cassandra.transport">Message</a> in <a href="../../../../../org/apache/cassandra/transport/package-summary.html">org.apache.cassandra.transport</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/apache/cassandra/transport/package-summary.html">org.apache.cassandra.transport</a> with type parameters of type <a href="../../../../../org/apache/cassandra/transport/Message.html" title="class in org.apache.cassandra.transport">Message</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Interface and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static interface&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/Message.Codec.html" title="interface in org.apache.cassandra.transport">Message.Codec</a>&lt;M extends <a href="../../../../../org/apache/cassandra/transport/Message.html" title="class in org.apache.cassandra.transport">Message</a>&gt;</strong></code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../org/apache/cassandra/transport/Message.html" title="class in org.apache.cassandra.transport">Message</a> in <a href="../../../../../org/apache/cassandra/transport/package-summary.html">org.apache.cassandra.transport</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/Message.Request.html" title="class in org.apache.cassandra.transport">Message.Request</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/Message.Response.html" title="class in org.apache.cassandra.transport">Message.Response</a></strong></code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../org/apache/cassandra/transport/package-summary.html">org.apache.cassandra.transport</a> that return <a href="../../../../../org/apache/cassandra/transport/Message.html" title="class in org.apache.cassandra.transport">Message</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/cassandra/transport/Message.html" title="class in org.apache.cassandra.transport">Message</a></code></td> <td class="colLast"><span class="strong">Message.</span><code><strong><a href="../../../../../org/apache/cassandra/transport/Message.html#setStreamId(int)">setStreamId</a></strong>(int&nbsp;streamId)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/cassandra/transport/Message.html" title="class in org.apache.cassandra.transport">Message</a></code></td> <td class="colLast"><span class="strong">Message.Response.</span><code><strong><a href="../../../../../org/apache/cassandra/transport/Message.Response.html#setTracingId(java.util.UUID)">setTracingId</a></strong>(java.util.UUID&nbsp;tracingId)</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.cassandra.transport.messages"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/cassandra/transport/Message.html" title="class in org.apache.cassandra.transport">Message</a> in <a href="../../../../../org/apache/cassandra/transport/messages/package-summary.html">org.apache.cassandra.transport.messages</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../org/apache/cassandra/transport/Message.html" title="class in org.apache.cassandra.transport">Message</a> in <a href="../../../../../org/apache/cassandra/transport/messages/package-summary.html">org.apache.cassandra.transport.messages</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/AuthChallenge.html" title="class in org.apache.cassandra.transport.messages">AuthChallenge</a></strong></code> <div class="block">SASL challenge sent from client to server</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/AuthenticateMessage.html" title="class in org.apache.cassandra.transport.messages">AuthenticateMessage</a></strong></code> <div class="block">Message to indicate that the server is ready to receive requests.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/AuthResponse.html" title="class in org.apache.cassandra.transport.messages">AuthResponse</a></strong></code> <div class="block">A SASL token message sent from client to server.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/AuthSuccess.html" title="class in org.apache.cassandra.transport.messages">AuthSuccess</a></strong></code> <div class="block">Indicates to the client that authentication has succeeded.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/BatchMessage.html" title="class in org.apache.cassandra.transport.messages">BatchMessage</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/CredentialsMessage.html" title="class in org.apache.cassandra.transport.messages">CredentialsMessage</a></strong></code> <div class="block">Message to indicate that the server is ready to receive requests.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/ErrorMessage.html" title="class in org.apache.cassandra.transport.messages">ErrorMessage</a></strong></code> <div class="block">Message to indicate an error to the client.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/EventMessage.html" title="class in org.apache.cassandra.transport.messages">EventMessage</a></strong></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/ExecuteMessage.html" title="class in org.apache.cassandra.transport.messages">ExecuteMessage</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/OptionsMessage.html" title="class in org.apache.cassandra.transport.messages">OptionsMessage</a></strong></code> <div class="block">Message to indicate that the server is ready to receive requests.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/PrepareMessage.html" title="class in org.apache.cassandra.transport.messages">PrepareMessage</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/QueryMessage.html" title="class in org.apache.cassandra.transport.messages">QueryMessage</a></strong></code> <div class="block">A CQL query</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/ReadyMessage.html" title="class in org.apache.cassandra.transport.messages">ReadyMessage</a></strong></code> <div class="block">Message to indicate that the server is ready to receive requests.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/RegisterMessage.html" title="class in org.apache.cassandra.transport.messages">RegisterMessage</a></strong></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/ResultMessage.html" title="class in org.apache.cassandra.transport.messages">ResultMessage</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/ResultMessage.Prepared.html" title="class in org.apache.cassandra.transport.messages">ResultMessage.Prepared</a></strong></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/ResultMessage.Rows.html" title="class in org.apache.cassandra.transport.messages">ResultMessage.Rows</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/ResultMessage.SchemaChange.html" title="class in org.apache.cassandra.transport.messages">ResultMessage.SchemaChange</a></strong></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/ResultMessage.SetKeyspace.html" title="class in org.apache.cassandra.transport.messages">ResultMessage.SetKeyspace</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/ResultMessage.Void.html" title="class in org.apache.cassandra.transport.messages">ResultMessage.Void</a></strong></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/StartupMessage.html" title="class in org.apache.cassandra.transport.messages">StartupMessage</a></strong></code> <div class="block">The initial message of the protocol.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/transport/messages/SupportedMessage.html" title="class in org.apache.cassandra.transport.messages">SupportedMessage</a></strong></code> <div class="block">Message to indicate that the server is ready to receive requests.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/cassandra/transport/Message.html" title="class in org.apache.cassandra.transport">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/transport/class-use/Message.html" target="_top">Frames</a></li> <li><a href="Message.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 &copy; 2015 The Apache Software Foundation</small></p> </body> </html>
docs/versions/1.2.2/javadoc/nl/esciencecenter/xenon/util/package-tree.html
NLeSC/Xenon
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc --> <title>nl.esciencecenter.xenon.util Class Hierarchy (Xenon 1.2.2 API)</title> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="nl.esciencecenter.xenon.util Class Hierarchy (Xenon 1.2.2 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../nl/esciencecenter/xenon/jobs/package-tree.html">Prev</a></li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?nl/esciencecenter/xenon/util/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">Hierarchy For Package nl.esciencecenter.xenon.util</h1> <span class="packageHierarchyLabel">Package Hierarchies:</span> <ul class="horizontal"> <li><a href="../../../../overview-tree.html">All Packages</a></li> </ul> </div> <div class="contentContainer"> <h2 title="Class Hierarchy">Class Hierarchy</h2> <ul> <li type="circle">java.lang.Object <ul> <li type="circle">nl.esciencecenter.xenon.util.<a href="../../../../nl/esciencecenter/xenon/util/AdaptorDocGenerator.html" title="class in nl.esciencecenter.xenon.util"><span class="typeNameLink">AdaptorDocGenerator</span></a></li> <li type="circle">nl.esciencecenter.xenon.jobs.<a href="../../../../nl/esciencecenter/xenon/jobs/JobDescription.html" title="class in nl.esciencecenter.xenon.jobs"><span class="typeNameLink">JobDescription</span></a> <ul> <li type="circle">nl.esciencecenter.xenon.util.<a href="../../../../nl/esciencecenter/xenon/util/JavaJobDescription.html" title="class in nl.esciencecenter.xenon.util"><span class="typeNameLink">JavaJobDescription</span></a></li> </ul> </li> <li type="circle">nl.esciencecenter.xenon.util.<a href="../../../../nl/esciencecenter/xenon/util/Sandbox.html" title="class in nl.esciencecenter.xenon.util"><span class="typeNameLink">Sandbox</span></a></li> <li type="circle">nl.esciencecenter.xenon.util.<a href="../../../../nl/esciencecenter/xenon/util/Sandbox.Pair.html" title="class in nl.esciencecenter.xenon.util"><span class="typeNameLink">Sandbox.Pair</span></a></li> <li type="circle">java.lang.Thread (implements java.lang.Runnable) <ul> <li type="circle">nl.esciencecenter.xenon.util.<a href="../../../../nl/esciencecenter/xenon/util/InputWriter.html" title="class in nl.esciencecenter.xenon.util"><span class="typeNameLink">InputWriter</span></a></li> <li type="circle">nl.esciencecenter.xenon.util.<a href="../../../../nl/esciencecenter/xenon/util/OutputReader.html" title="class in nl.esciencecenter.xenon.util"><span class="typeNameLink">OutputReader</span></a></li> <li type="circle">nl.esciencecenter.xenon.util.<a href="../../../../nl/esciencecenter/xenon/util/StreamForwarder.html" title="class in nl.esciencecenter.xenon.util"><span class="typeNameLink">StreamForwarder</span></a></li> </ul> </li> <li type="circle">nl.esciencecenter.xenon.util.<a href="../../../../nl/esciencecenter/xenon/util/Utils.html" title="class in nl.esciencecenter.xenon.util"><span class="typeNameLink">Utils</span></a></li> </ul> </li> </ul> <h2 title="Interface Hierarchy">Interface Hierarchy</h2> <ul> <li type="circle">nl.esciencecenter.xenon.util.<a href="../../../../nl/esciencecenter/xenon/util/FileVisitor.html" title="interface in nl.esciencecenter.xenon.util"><span class="typeNameLink">FileVisitor</span></a></li> </ul> <h2 title="Enum Hierarchy">Enum Hierarchy</h2> <ul> <li type="circle">java.lang.Object <ul> <li type="circle">java.lang.Enum&lt;E&gt; (implements java.lang.Comparable&lt;T&gt;, java.io.Serializable) <ul> <li type="circle">nl.esciencecenter.xenon.util.<a href="../../../../nl/esciencecenter/xenon/util/FileVisitResult.html" title="enum in nl.esciencecenter.xenon.util"><span class="typeNameLink">FileVisitResult</span></a></li> </ul> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../nl/esciencecenter/xenon/jobs/package-tree.html">Prev</a></li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?nl/esciencecenter/xenon/util/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
target_dir/documentation/preference/examinepreferencekeys.html
PureBasicCN/PureBasicPreference
<html><head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"><title>ExaminePreferenceKeys</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">ExaminePreferenceKeys()</font></b></p> <p><b>语法</b></p><blockquote> Result = <font color="#3A3966"><b>ExaminePreferenceKeys</b></font>()</blockquote> </blockquote> <b>概要</b><br><blockquote> Starts the enumeration of all the keys found in the current group of the preference file. The current group can be selected with <a href="preferencegroup.html">PreferenceGroup()</a> or by examining all groups with <a href="examinepreferencegroups.html">ExaminePreferenceGroups()</a>. <a href="nextpreferencekey.html">NextPreferenceKey()</a> can be used to list all the keys found. </blockquote><p><b>参数</b></p><blockquote> 无. </blockquote><p><b>返回值</b></p><blockquote> Nonzero if the enumeration has been successfully started, zero otherwise. </blockquote><p><b>示例</b></p><blockquote> <pre><font face="Courier New, Courier, mono"size="2"> <font color="#3A3966">; Open a preference file</font> <font color="#3A3966"> OpenPreferences</font>(<font color="#924B72">#PB_Compiler_Home</font> +"Examples\Sources\Data\test.pref") <font color="#3A3966">; Select a group</font> <font color="#3A3966"> PreferenceGroup</font>("window") <font color="#3A3966">; Examine keys in the group 'window' </font> <font color="#3A3966"> ExaminePreferenceKeys</font>() <b><font color="#3A3966">While</font></b> <font color="#3A3966">NextPreferenceKey</font>() <font color="#3A3966">; While a key exists</font> <font color="#3A3966"> MessageRequester</font>("Key group 'window'",<font color="#3A3966"> PreferenceKeyName</font>() + " = " +<font color="#3A3966"> PreferenceKeyValue</font>()) <font color="#3A3966">; Display the key with its data</font> <b><font color="#3A3966">Wend</font></b> <font color="#3A3966">; Close the preference file</font> <font color="#3A3966"> ClosePreferences</font>() </font></pre> </blockquote><p><b>参阅</b></p><blockquote> <a href="examinepreferencegroups.html">ExaminePreferenceGroups()</a>, <a href="nextpreferencegroup.html">NextPreferenceGroup()</a>, <a href="nextpreferencekey.html">NextPreferenceKey()</a> </Blockquote><p><b>已支持操作系统 </b><Blockquote>所有</Blockquote></p><center>&lt;- <a href=examinepreferencegroups.html>ExaminePreferenceGroups()</a> - <a href="index.html">Preference Index</a> - <a href="flushpreferencebuffer.html">FlushPreferenceBuffer()</a> -&gt;<br><br> </body></html>
Earmouse/doc/pk/contender/earmouse/class-use/Main.html
pklinken/Earmouse
<!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_55) on Tue Jul 08 19:58:22 CEST 2014 --> <title>Uses of Class pk.contender.earmouse.Main</title> <meta name="date" content="2014-07-08"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class pk.contender.earmouse.Main"; } //--> </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="../../../../pk/contender/earmouse/Main.html" title="class in pk.contender.earmouse">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?pk/contender/earmouse/class-use/Main.html" target="_top">Frames</a></li> <li><a href="Main.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 pk.contender.earmouse.Main" class="title">Uses of Class<br>pk.contender.earmouse.Main</h2> </div> <div class="classUseContainer">No usage of pk.contender.earmouse.Main</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="../../../../pk/contender/earmouse/Main.html" title="class in pk.contender.earmouse">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?pk/contender/earmouse/class-use/Main.html" target="_top">Frames</a></li> <li><a href="Main.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>
src/app/frontend/replicationcontrollerdetail/replicationcontrollerinfo.html
luxas/dashboard
<!-- Copyright 2015 Google Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <div flex="nogrow" class="kd-replicationcontrollerinfo-item"> <md-button class="md-primary" ng-click="infoCtrl.handleDeleteReplicationControllerDialog()"> <md-icon class="material-icons">delete</md-icon> DELETE REPLICATION CONTROLLER </md-button> </div> <div flex layout="column" class="kd-replicationcontrollerinfo-item"> <div flex layout="column" class="kd-replicationcontrollerinfo-info"> <span class="kd-replicationcontrollerinfo-title"> Replication controller </span> <span class="kd-replicationcontrollerinfo-line">Name</span> <span class="kd-replicationcontrollerinfo-subline"> <kd-middle-ellipsis display-string="{{::infoCtrl.details.name}}"> </kd-middle-ellipsis> </span> <span class="kd-replicationcontrollerinfo-line">Namespace</span> <span class="kd-replicationcontrollerinfo-subline"> {{::infoCtrl.details.namespace}} </span> <div layout="row" layout-align="start end"> <div flex="nogrow"> <span class="kd-replicationcontrollerinfo-line">Pods</span> <span class="kd-replicationcontrollerinfo-subline" ng-if="!infoCtrl.areDesiredPodsRunning()"> {{::infoCtrl.details.podInfo.current}} created, {{::infoCtrl.details.podInfo.desired}} desired </span> <span class="kd-replicationcontrollerinfo-subline" ng-if="infoCtrl.areDesiredPodsRunning()"> {{::infoCtrl.details.podInfo.running}} running </span> </div> <div flex="nogrow"> <md-button class="md-icon-button md-primary"> <md-icon class="material-icons" ng-click="infoCtrl.handleUpdateReplicasDialog()"> mode_edit </md-icon> </md-button> </div> </div> <div ng-if="!infoCtrl.areDesiredPodsRunning()"> <span class="kd-replicationcontrollerinfo-line">Pods status</span> <span class="kd-replicationcontrollerinfo-subline"> <span ng-if="::infoCtrl.details.podInfo.pending" class="kd-comma-separated-item"> {{::infoCtrl.details.podInfo.pending}} pending<!-- Collapse whitespace --></span> <span ng-if="::infoCtrl.details.podInfo.failed" class="kd-comma-separated-item"> {{::infoCtrl.details.podInfo.failed}} failed<!-- Collapse whitespace --></span> <span ng-if="::infoCtrl.details.podInfo.running" class="kd-comma-separated-item"> {{::infoCtrl.details.podInfo.running}} running </span> </span> </div> <span class="kd-replicationcontrollerinfo-line">Label selector</span> <span class="kd-replicationcontrollerinfo-subline kd-has-labels"> <kd-labels labels="::infoCtrl.details.labelSelector"></kd-labels> </span> <span class="kd-replicationcontrollerinfo-line">Labels</span> <span class="kd-replicationcontrollerinfo-subline kd-has-labels"> <kd-labels labels="::infoCtrl.details.labels"></kd-labels> </span> <span class="kd-replicationcontrollerinfo-line">Images</span> <span class="kd-replicationcontrollerinfo-subline" ng-repeat="image in infoCtrl.details.containerImages"> <kd-middle-ellipsis display-string="{{::image}}"></kd-middle-ellipsis> </span> </div> <div flex layout="column" class="kd-replicationcontrollerinfo-info"> <div ng-if="::infoCtrl.details.services" layout="column"> <span class="kd-replicationcontrollerinfo-title">Services</span> <div ng-repeat="service in ::infoCtrl.details.services"> <span class="kd-replicationcontrollerinfo-line">Name</span> <span class="kd-replicationcontrollerinfo-subline"> {{::service.name}} </span> <span class="kd-replicationcontrollerinfo-line">Label selector</span> <span class="kd-replicationcontrollerinfo-subline kd-has-labels"> <kd-labels labels="::service.selector"></kd-labels> </span> <span class="kd-replicationcontrollerinfo-line">Internal endpoint</span> <div class="kd-replicationcontrollerinfo-subline"> <div ng-if="::service.internalEndpoint"> <kd-service-endpoint endpoint="::service.internalEndpoint"></kd-service-endpoint> </div> <span ng-hide="service.internalEndpoint">none</span> </div> <span class="kd-replicationcontrollerinfo-line">External endpoint</span> <div class="kd-replicationcontrollerinfo-subline"> <div ng-repeat="endpoint in service.externalEndpoints"> <kd-service-endpoint endpoint="::endpoint"></kd-service-endpoint> </div> <span class="kd-replicationcontrollerinfo-subline" ng-hide="::service.externalEndpoints"> none </span> </div> </div> </div> </div> </div>
tests/index.html
FeatureFlagger/featureflagger-admin
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>FeatureflaggerAdmin Tests</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> {{content-for "head"}} {{content-for "test-head"}} <link rel="stylesheet" href="{{rootURL}}assets/vendor.css"> <link rel="stylesheet" href="{{rootURL}}assets/featureflagger-admin.css"> <link rel="stylesheet" href="{{rootURL}}assets/test-support.css"> {{content-for "head-footer"}} {{content-for "test-head-footer"}} </head> <body> {{content-for "body"}} {{content-for "test-body"}} <script src="/testem.js" integrity=""></script> <script src="{{rootURL}}assets/vendor.js"></script> <script src="{{rootURL}}assets/test-support.js"></script> <script src="{{rootURL}}assets/featureflagger-admin.js"></script> <script src="{{rootURL}}assets/tests.js"></script> {{content-for "body-footer"}} {{content-for "test-body-footer"}} </body> </html>
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_13b_testAbaNumberCheck_29753_good_emo.html
dcarda/aba.route.validator
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" /> <link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media="all"/> <link rel="stylesheet" href="../../../../../aui/css/aui-experimental.min.css" media="all"/> <!--[if IE 9]><link rel="stylesheet" href="../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]--> <style type="text/css" media="all"> @import url('../../../../../style.css'); @import url('../../../../../tree.css'); </style> <script src="../../../../../jquery-1.8.3.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script> <script src="../../../../../package-nodes-tree.js" type="text/javascript"></script> <script src="../../../../../clover-tree.js" type="text/javascript"></script> <script src="../../../../../clover.js" type="text/javascript"></script> <script src="../../../../../clover-descriptions.js" type="text/javascript"></script> <script src="../../../../../cloud.js" type="text/javascript"></script> <title>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title> </head> <body> <div id="page"> <header id="header" role="banner"> <nav class="aui-header aui-dropdown2-trigger-group" role="navigation"> <div class="aui-header-inner"> <div class="aui-header-primary"> <h1 id="logo" class="aui-header-logo aui-header-logo-clover"> <a href="http://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</span></a> </h1> </div> <div class="aui-header-secondary"> <ul class="aui-nav"> <li id="system-help-menu"> <a class="aui-nav-link" title="Open online documentation" target="_blank" href="http://openclover.org/documentation"> <span class="aui-icon aui-icon-small aui-iconfont-help">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <a href="http://cardatechnologies.com" target="_top"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </a> </div> <div class="aui-page-header-main" > <h1> <a href="http://cardatechnologies.com" target="_top"> ABA Route Transit Number Validator 1.0.1-SNAPSHOT </a> </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li> <li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li> <li><a href="test-Test_AbaRouteValidator_13b.html">Class Test_AbaRouteValidator_13b</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_29753_good </h1> <table class="aui"> <thead> <tr> <th>Test</th> <th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th> <th><label title="When the test execution was started">Start time</label></th> <th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th> <th><label title="A failure or error message if the test is not successful.">Message</label></th> </tr> </thead> <tbody> <tr> <td> <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_13b.html?line=61336#src-61336" >testAbaNumberCheck_29753_good</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:42:41 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</div> <table class="aui aui-table-sortable"> <thead> <tr> <th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th> <th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_29753_good</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=18960#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a> </td> <td> <span class="sortValue">0.7352941</span>73.5% </td> <td class="align-middle" style="width: 100%" colspan="3"> <div> <div title="73.5% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:73.5%"></div></div></div> </td> </tr> </tbody> </table> </div> <!-- class="aui-page-panel-content-clover" --> <footer id="footer" role="contentinfo"> <section class="footer-body"> <ul> <li> Report generated by <a target="_new" href="http://openclover.org">OpenClover</a> v 4.4.1 on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT. </li> </ul> <ul> <li>OpenClover is free and open-source software. </li> </ul> </section> </footer> </section> <!-- class="aui-page-panel-content" --> </div> <!-- class="aui-page-panel-inner" --> </div> <!-- class="aui-page-panel" --> </div> <!-- id="page" --> </body> </html>
gora-hbase/docs/api/org/apache/nutch/parse/class-use/OutlinkExtractor.html
prateekbansal/apache-gora-0.4
<!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_25) on Thu Jun 27 10:36:05 PDT 2013 --> <TITLE> Uses of Class org.apache.nutch.parse.OutlinkExtractor (apache-nutch 2.2.1 API) </TITLE> <META NAME="date" CONTENT="2013-06-27"> <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.nutch.parse.OutlinkExtractor (apache-nutch 2.2.1 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/nutch/parse/OutlinkExtractor.html" title="class in org.apache.nutch.parse"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/nutch/parse//class-useOutlinkExtractor.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="OutlinkExtractor.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.nutch.parse.OutlinkExtractor</B></H2> </CENTER> No usage of org.apache.nutch.parse.OutlinkExtractor <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/nutch/parse/OutlinkExtractor.html" title="class in org.apache.nutch.parse"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/nutch/parse//class-useOutlinkExtractor.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="OutlinkExtractor.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &copy; 2013 The Apache Software Foundation </BODY> </HTML>
man_pages/html/man3/vprintf.3.html
cs-education/sysassets
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML><HEAD><TITLE>Invalid Man Page</TITLE></HEAD> <BODY> <H1>Invalid Man Page</H1> The requested file vprintf.3 is not a valid (unformatted) man page.</BODY></HTML>
frontend/dist/index.html
project-humix/humix-think
<!doctype html><html ng-app="public"><head><meta charset="utf-8"><title>HUMIX-THINK</title><meta name="description" content=""><meta name="viewport" content="width=device-width"><link rel="stylesheet" href="styles/vendor-c2769e81fe.css"><link rel="stylesheet" href="styles/app-58445d9824.css"></head><body style="overflow-y: auto;"><!--[if lt IE 10]> <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]--><ng-navbar></ng-navbar><div ui-view=""></div><script src="scripts/vendor-fb79ee0498.js"></script><script src="scripts/app-13baaa21cb.js"></script></body></html>
docs/devapidocs/org/apache/hadoop/hbase/master/TableLockManager.TableLock.html
devansh2015/hbase-0.98.8
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_67) on Fri Nov 14 18:24:29 PST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>TableLockManager.TableLock (HBase 0.98.8-hadoop2 API)</title> <meta name="date" content="2014-11-14"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="TableLockManager.TableLock (HBase 0.98.8-hadoop2 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/TableLockManager.TableLock.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/hadoop/hbase/master/TableLockManager.NullTableLockManager.html" title="class in org.apache.hadoop.hbase.master"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../org/apache/hadoop/hbase/master/TableNamespaceManager.html" title="class in org.apache.hadoop.hbase.master"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/hadoop/hbase/master/TableLockManager.TableLock.html" target="_top">Frames</a></li> <li><a href="TableLockManager.TableLock.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.hadoop.hbase.master</div> <h2 title="Interface TableLockManager.TableLock" class="title">Interface TableLockManager.TableLock</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Enclosing class:</dt> <dd><a href="../../../../../org/apache/hadoop/hbase/master/TableLockManager.html" title="class in org.apache.hadoop.hbase.master">TableLockManager</a></dd> </dl> <hr> <br> <pre><a href="../../../../../org/apache/hadoop/hbase/classification/InterfaceAudience.Private.html" title="annotation in org.apache.hadoop.hbase.classification">@InterfaceAudience.Private</a> public static interface <span class="strong">TableLockManager.TableLock</span></pre> <div class="block">A distributed lock for a table.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/master/TableLockManager.TableLock.html#acquire()">acquire</a></strong>()</code> <div class="block">Acquire the lock, with the configured lock timeout.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/hbase/master/TableLockManager.TableLock.html#release()">release</a></strong>()</code> <div class="block">Release the lock already held.</div> </td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="acquire()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>acquire</h4> <pre>void&nbsp;acquire() throws <a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> <div class="block">Acquire the lock, with the configured lock timeout.</div> <dl><dt><span class="strong">Throws:</span></dt> <dd><code><a href="../../../../../org/apache/hadoop/hbase/exceptions/LockTimeoutException.html" title="class in org.apache.hadoop.hbase.exceptions">LockTimeoutException</a></code> - If unable to acquire a lock within a specified time period (if any)</dd> <dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code> - If unrecoverable error occurs</dd></dl> </li> </ul> <a name="release()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>release</h4> <pre>void&nbsp;release() throws <a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> <div class="block">Release the lock already held.</div> <dl><dt><span class="strong">Throws:</span></dt> <dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code> - If there is an unrecoverable error releasing the lock</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/TableLockManager.TableLock.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/hadoop/hbase/master/TableLockManager.NullTableLockManager.html" title="class in org.apache.hadoop.hbase.master"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../org/apache/hadoop/hbase/master/TableNamespaceManager.html" title="class in org.apache.hadoop.hbase.master"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/hadoop/hbase/master/TableLockManager.TableLock.html" target="_top">Frames</a></li> <li><a href="TableLockManager.TableLock.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> </body> </html>
site/apidocs/io/permazen/class-use/JCounterField.html
archiecobbs/jsimpledb
<!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 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class io.permazen.JCounterField (Permazen 4.1.6 API)</title> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class io.permazen.JCounterField (Permazen 4.1.6 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="../../../io/permazen/JCounterField.html" title="class in io.permazen">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?io/permazen/class-use/JCounterField.html" target="_top">Frames</a></li> <li><a href="JCounterField.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class io.permazen.JCounterField" class="title">Uses of Class<br>io.permazen.JCounterField</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="../../../io/permazen/JCounterField.html" title="class in io.permazen">JCounterField</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#io.permazen">io.permazen</a></td> <td class="colLast"> <div class="block">Abstraction layer allowing access to a <a href="../../../io/permazen/core/Database.html" title="class in io.permazen.core"><code>Database</code></a> using normal Java objects.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="io.permazen"> <!-- --> </a> <h3>Uses of <a href="../../../io/permazen/JCounterField.html" title="class in io.permazen">JCounterField</a> in <a href="../../../io/permazen/package-summary.html">io.permazen</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="../../../io/permazen/package-summary.html">io.permazen</a> with parameters of type <a href="../../../io/permazen/JCounterField.html" title="class in io.permazen">JCounterField</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../io/permazen/JFieldSwitch.html" title="type parameter in JFieldSwitch">R</a></code></td> <td class="colLast"><span class="typeNameLabel">JFieldSwitch.</span><code><span class="memberNameLink"><a href="../../../io/permazen/JFieldSwitch.html#caseJCounterField-io.permazen.JCounterField-">caseJCounterField</a></span>(<a href="../../../io/permazen/JCounterField.html" title="class in io.permazen">JCounterField</a>&nbsp;field)</code> <div class="block">Handle a <a href="../../../io/permazen/JCounterField.html" title="class in io.permazen"><code>JCounterField</code></a>.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../io/permazen/JFieldSwitchAdapter.html" title="type parameter in JFieldSwitchAdapter">R</a></code></td> <td class="colLast"><span class="typeNameLabel">JFieldSwitchAdapter.</span><code><span class="memberNameLink"><a href="../../../io/permazen/JFieldSwitchAdapter.html#caseJCounterField-io.permazen.JCounterField-">caseJCounterField</a></span>(<a href="../../../io/permazen/JCounterField.html" title="class in io.permazen">JCounterField</a>&nbsp;field)</code> <div class="block">Handle a <a href="../../../io/permazen/JCounterField.html" title="class in io.permazen"><code>JCounterField</code></a>.</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="../../../io/permazen/JCounterField.html" title="class in io.permazen">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?io/permazen/class-use/JCounterField.html" target="_top">Frames</a></li> <li><a href="JCounterField.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2020. All rights reserved.</small></p> </body> </html>
Spring/jars/spring-framework-5.1.18.RELEASE/docs/javadoc-api/org/springframework/jdbc/support/incrementer/class-use/PostgresSequenceMaxValueIncrementer.html
akhr/java
<!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_232) on Tue Sep 15 08:53:07 UTC 2020 --> <title>Uses of Class org.springframework.jdbc.support.incrementer.PostgresSequenceMaxValueIncrementer (Spring Framework 5.1.18.RELEASE API)</title> <meta name="date" content="2020-09-15"> <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.springframework.jdbc.support.incrementer.PostgresSequenceMaxValueIncrementer (Spring Framework 5.1.18.RELEASE API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/springframework/jdbc/support/incrementer/PostgresSequenceMaxValueIncrementer.html" title="class in org.springframework.jdbc.support.incrementer">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-files/index-1.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Spring Framework</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/springframework/jdbc/support/incrementer/class-use/PostgresSequenceMaxValueIncrementer.html" target="_top">Frames</a></li> <li><a href="PostgresSequenceMaxValueIncrementer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.springframework.jdbc.support.incrementer.PostgresSequenceMaxValueIncrementer" class="title">Uses of Class<br>org.springframework.jdbc.support.incrementer.PostgresSequenceMaxValueIncrementer</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/springframework/jdbc/support/incrementer/PostgresSequenceMaxValueIncrementer.html" title="class in org.springframework.jdbc.support.incrementer">PostgresSequenceMaxValueIncrementer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.springframework.jdbc.support.incrementer">org.springframework.jdbc.support.incrementer</a></td> <td class="colLast"> <div class="block">Provides a support framework for incrementing database table values via sequences, with implementations for various databases.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.springframework.jdbc.support.incrementer"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/springframework/jdbc/support/incrementer/PostgresSequenceMaxValueIncrementer.html" title="class in org.springframework.jdbc.support.incrementer">PostgresSequenceMaxValueIncrementer</a> in <a href="../../../../../../org/springframework/jdbc/support/incrementer/package-summary.html">org.springframework.jdbc.support.incrementer</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/springframework/jdbc/support/incrementer/PostgresSequenceMaxValueIncrementer.html" title="class in org.springframework.jdbc.support.incrementer">PostgresSequenceMaxValueIncrementer</a> in <a href="../../../../../../org/springframework/jdbc/support/incrementer/package-summary.html">org.springframework.jdbc.support.incrementer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/springframework/jdbc/support/incrementer/PostgreSQLSequenceMaxValueIncrementer.html" title="class in org.springframework.jdbc.support.incrementer">PostgreSQLSequenceMaxValueIncrementer</a></span></code> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp; <div class="block"><span class="deprecationComment">in favor of the differently named <a href="../../../../../../org/springframework/jdbc/support/incrementer/PostgresSequenceMaxValueIncrementer.html" title="class in org.springframework.jdbc.support.incrementer"><code>PostgresSequenceMaxValueIncrementer</code></a></span></div> </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/springframework/jdbc/support/incrementer/PostgresSequenceMaxValueIncrementer.html" title="class in org.springframework.jdbc.support.incrementer">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-files/index-1.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Spring Framework</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/springframework/jdbc/support/incrementer/class-use/PostgresSequenceMaxValueIncrementer.html" target="_top">Frames</a></li> <li><a href="PostgresSequenceMaxValueIncrementer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
html/api-SVG.html
iigrow/html5
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> </head> <body> <!--SVG(Scalable Vector Graphics)可伸缩性矢量图形 基于XML编码的开放式图形\图像标准 --> <svg width="500px" height="500px"> <rect width="30" height="20" style="fill:rgb(0,0,255);stroke-width:1;stroke:rgb(0,0,0)" /> <circle cx="50" cy="10" r="10" /> <ellipse cx="20" cy="30" rx="10" ry="15" r="10" /> <line x1="20" y1="20" x2="60" y2="60" style="stroke:rgb(99,99,99);stroke-width:2" /> <polyline points="0,0 20,20 30,30 30,40" /> <polygon points="0,0 20,20 60,30 30,40" /> <!--M = moveto L = lineto H = horizontal lineto V = vertical lineto C = curveto S = smooth curveto Q = quadratic Belzier curve T = smooth quadratic Belzier curveto A = elliptical Arc Z = closepath 以上字符小写时表示相对定位,大写时表示绝对定位 --> <path d="M153 334 C153 334 151 334 151 334 C151 339 153 344 156 344 C164 344 171 339 171 334 C171 322 164 314 156 314 C142 314 131 322 131 334 C131 350 142 364 156 364 C175 364 191 350 191 334 C191 311 175 294 156 294 C131 294 111 311 111 334 C111 361 131 384 156 384 C186 384 211 361 211 334 C211 300 186 274 156 274" style="fill:white;stroke:red;stroke-width:2" /> <!-- <defs> 元素用于预定义一个元素使其能够在SVG图像中重复使用--> <defs> <linearGradient id="orange_red" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1"/> <stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1"/> </linearGradient> </defs> <ellipse cx="100" cy="190" rx="85" ry="55" style="fill:url(#orange_red)"/> <!--如果要显示<defs>需要使用<use>元素来引入--> <use xlink:href="#orange_red" x="50" y="50" /> <!--<symbol>元素用于定义可重复使用的符号--> <symbol id="shape2"> <circle cx="25" cy="25" r="25" style="fill:#bf55ec;"/> </symbol> <use xlink:href="#shape2" x="50" y="25" /> <text x="0,0 20,20 60,30 30,40" y="0,0 20,20 60,30 30,40" dx="" dy="" rotate="0.1">你猜现在几点了<text/> </svg> <script> </script> </body>
swiftp/doc/be/ppareit/swiftp/server/Account.html
dschoonwinkel/ConnectNet
<!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_60) on Wed Mar 04 14:40:46 SAST 2015 --> <title>Account</title> <meta name="date" content="2015-03-04"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Account"; } //--> </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/Account.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev Class</li> <li><a href="../../../../be/ppareit/swiftp/server/CmdAbstractListing.html" title="class in be.ppareit.swiftp.server"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?be/ppareit/swiftp/server/Account.html" target="_top">Frames</a></li> <li><a href="Account.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">be.ppareit.swiftp.server</div> <h2 title="Class Account" class="title">Class Account</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>be.ppareit.swiftp.server.Account</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">Account</span> extends java.lang.Object</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../be/ppareit/swiftp/server/Account.html#Account()">Account</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../be/ppareit/swiftp/server/Account.html#getUsername()">getUsername</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../be/ppareit/swiftp/server/Account.html#setUsername(java.lang.String)">setUsername</a></strong>(java.lang.String&nbsp;username)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="Account()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>Account</h4> <pre>public&nbsp;Account()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="getUsername()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getUsername</h4> <pre>public&nbsp;java.lang.String&nbsp;getUsername()</pre> </li> </ul> <a name="setUsername(java.lang.String)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>setUsername</h4> <pre>public&nbsp;void&nbsp;setUsername(java.lang.String&nbsp;username)</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/Account.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev Class</li> <li><a href="../../../../be/ppareit/swiftp/server/CmdAbstractListing.html" title="class in be.ppareit.swiftp.server"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?be/ppareit/swiftp/server/Account.html" target="_top">Frames</a></li> <li><a href="Account.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
app/partials/device.add.html
ncapito/hackathon
<h2>Add Device</h2> <form ng-submit="submitInsert()"> <p> <label>device:</label> <input type="text" ng-model="device.bit_id" autofocus="true" /> </p> <p> <label>percent:</label> <input type="number" ng-model="device.percent" /> </p> <input type="submit" class="btn" /> </form>
docs/com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html
google-code-export/google-api-dfp-java
<!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-google-v5) on Thu Dec 19 17:42:31 EST 2013 --> <title>LineItemSummaryDuration</title> <meta name="date" content="2013-12-19"> <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="LineItemSummaryDuration"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummary.html" title="class in com.google.api.ads.dfp.v201302"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryReservationStatus.html" title="class in com.google.api.ads.dfp.v201302"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html" target="_top">Frames</a></li> <li><a href="LineItemSummaryDuration.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">com.google.api.ads.dfp.v201302</div> <h2 title="Class LineItemSummaryDuration" class="title">Class LineItemSummaryDuration</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>com.google.api.ads.dfp.v201302.LineItemSummaryDuration</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Serializable</dd> </dl> <hr> <br> <pre>public class <span class="strong">LineItemSummaryDuration</span> extends java.lang.Object implements java.io.Serializable</pre> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../../serialized-form.html#com.google.api.ads.dfp.v201302.LineItemSummaryDuration">Serialized Form</a></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">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#_DAILY">_DAILY</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#_LIFETIME">_LIFETIME</a></strong></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#_NONE">_NONE</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html" title="class in com.google.api.ads.dfp.v201302">LineItemSummaryDuration</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#DAILY">DAILY</a></strong></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html" title="class in com.google.api.ads.dfp.v201302">LineItemSummaryDuration</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#LIFETIME">LIFETIME</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html" title="class in com.google.api.ads.dfp.v201302">LineItemSummaryDuration</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#NONE">NONE</a></strong></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier</th> <th class="colLast" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>protected </code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#LineItemSummaryDuration(java.lang.String)">LineItemSummaryDuration</a></strong>(java.lang.String&nbsp;value)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object&nbsp;obj)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html" title="class in com.google.api.ads.dfp.v201302">LineItemSummaryDuration</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#fromString(java.lang.String)">fromString</a></strong>(java.lang.String&nbsp;value)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html" title="class in com.google.api.ads.dfp.v201302">LineItemSummaryDuration</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#fromValue(java.lang.String)">fromValue</a></strong>(java.lang.String&nbsp;value)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static org.apache.axis.encoding.Deserializer</code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#getDeserializer(java.lang.String, java.lang.Class, javax.xml.namespace.QName)">getDeserializer</a></strong>(java.lang.String&nbsp;mechType, java.lang.Class&nbsp;_javaType, javax.xml.namespace.QName&nbsp;_xmlType)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static org.apache.axis.encoding.Serializer</code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#getSerializer(java.lang.String, java.lang.Class, javax.xml.namespace.QName)">getSerializer</a></strong>(java.lang.String&nbsp;mechType, java.lang.Class&nbsp;_javaType, javax.xml.namespace.QName&nbsp;_xmlType)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static org.apache.axis.description.TypeDesc</code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#getTypeDesc()">getTypeDesc</a></strong>()</code> <div class="block">Return type metadata object</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#getValue()">getValue</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#hashCode()">hashCode</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>java.lang.Object</code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#readResolve()">readResolve</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html#toString()">toString</a></strong>()</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, finalize, getClass, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ FIELD DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="field_detail"> <!-- --> </a> <h3>Field Detail</h3> <a name="_NONE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>_NONE</h4> <pre>public static final&nbsp;java.lang.String _NONE</pre> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../../constant-values.html#com.google.api.ads.dfp.v201302.LineItemSummaryDuration._NONE">Constant Field Values</a></dd></dl> </li> </ul> <a name="_LIFETIME"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>_LIFETIME</h4> <pre>public static final&nbsp;java.lang.String _LIFETIME</pre> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../../constant-values.html#com.google.api.ads.dfp.v201302.LineItemSummaryDuration._LIFETIME">Constant Field Values</a></dd></dl> </li> </ul> <a name="_DAILY"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>_DAILY</h4> <pre>public static final&nbsp;java.lang.String _DAILY</pre> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../../constant-values.html#com.google.api.ads.dfp.v201302.LineItemSummaryDuration._DAILY">Constant Field Values</a></dd></dl> </li> </ul> <a name="NONE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>NONE</h4> <pre>public static final&nbsp;<a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html" title="class in com.google.api.ads.dfp.v201302">LineItemSummaryDuration</a> NONE</pre> </li> </ul> <a name="LIFETIME"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LIFETIME</h4> <pre>public static final&nbsp;<a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html" title="class in com.google.api.ads.dfp.v201302">LineItemSummaryDuration</a> LIFETIME</pre> </li> </ul> <a name="DAILY"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>DAILY</h4> <pre>public static final&nbsp;<a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html" title="class in com.google.api.ads.dfp.v201302">LineItemSummaryDuration</a> DAILY</pre> </li> </ul> </li> </ul> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="LineItemSummaryDuration(java.lang.String)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>LineItemSummaryDuration</h4> <pre>protected&nbsp;LineItemSummaryDuration(java.lang.String&nbsp;value)</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="getValue()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getValue</h4> <pre>public&nbsp;java.lang.String&nbsp;getValue()</pre> </li> </ul> <a name="fromValue(java.lang.String)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>fromValue</h4> <pre>public static&nbsp;<a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html" title="class in com.google.api.ads.dfp.v201302">LineItemSummaryDuration</a>&nbsp;fromValue(java.lang.String&nbsp;value) throws java.lang.IllegalArgumentException</pre> <dl><dt><span class="strong">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code></dd></dl> </li> </ul> <a name="fromString(java.lang.String)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>fromString</h4> <pre>public static&nbsp;<a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html" title="class in com.google.api.ads.dfp.v201302">LineItemSummaryDuration</a>&nbsp;fromString(java.lang.String&nbsp;value) throws java.lang.IllegalArgumentException</pre> <dl><dt><span class="strong">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code></dd></dl> </li> </ul> <a name="equals(java.lang.Object)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>equals</h4> <pre>public&nbsp;boolean&nbsp;equals(java.lang.Object&nbsp;obj)</pre> <dl> <dt><strong>Overrides:</strong></dt> <dd><code>equals</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd> </dl> </li> </ul> <a name="hashCode()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>hashCode</h4> <pre>public&nbsp;int&nbsp;hashCode()</pre> <dl> <dt><strong>Overrides:</strong></dt> <dd><code>hashCode</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd> </dl> </li> </ul> <a name="toString()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toString</h4> <pre>public&nbsp;java.lang.String&nbsp;toString()</pre> <dl> <dt><strong>Overrides:</strong></dt> <dd><code>toString</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd> </dl> </li> </ul> <a name="readResolve()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>readResolve</h4> <pre>public&nbsp;java.lang.Object&nbsp;readResolve() throws java.io.ObjectStreamException</pre> <dl><dt><span class="strong">Throws:</span></dt> <dd><code>java.io.ObjectStreamException</code></dd></dl> </li> </ul> <a name="getSerializer(java.lang.String, java.lang.Class, javax.xml.namespace.QName)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getSerializer</h4> <pre>public static&nbsp;org.apache.axis.encoding.Serializer&nbsp;getSerializer(java.lang.String&nbsp;mechType, java.lang.Class&nbsp;_javaType, javax.xml.namespace.QName&nbsp;_xmlType)</pre> </li> </ul> <a name="getDeserializer(java.lang.String, java.lang.Class, javax.xml.namespace.QName)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getDeserializer</h4> <pre>public static&nbsp;org.apache.axis.encoding.Deserializer&nbsp;getDeserializer(java.lang.String&nbsp;mechType, java.lang.Class&nbsp;_javaType, javax.xml.namespace.QName&nbsp;_xmlType)</pre> </li> </ul> <a name="getTypeDesc()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>getTypeDesc</h4> <pre>public static&nbsp;org.apache.axis.description.TypeDesc&nbsp;getTypeDesc()</pre> <div class="block">Return type metadata object</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="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummary.html" title="class in com.google.api.ads.dfp.v201302"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../../com/google/api/ads/dfp/v201302/LineItemSummaryReservationStatus.html" title="class in com.google.api.ads.dfp.v201302"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/google/api/ads/dfp/v201302/LineItemSummaryDuration.html" target="_top">Frames</a></li> <li><a href="LineItemSummaryDuration.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
javadocs/com/gravspace/abstractions/package-tree.html
ranoble/Megapode
<!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_07) on Wed Jan 29 10:36:10 GMT 2014 --> <title>com.gravspace.abstractions Class Hierarchy</title> <meta name="date" content="2014-01-29"> <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="com.gravspace.abstractions Class Hierarchy"; } //--> </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>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../..//package-tree.html">Prev</a></li> <li><a href="../../../com/gravspace/annotations/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?com/gravspace/abstractions/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">Hierarchy For Package com.gravspace.abstractions</h1> <span class="strong">Package Hierarchies:</span> <ul class="horizontal"> <li><a href="../../../overview-tree.html">All Packages</a></li> </ul> </div> <div class="contentContainer"> <h2 title="Class Hierarchy">Class Hierarchy</h2> <ul> <li type="circle">java.lang.Object <ul> <li type="circle">com.gravspace.abstractions.<a href="../../../com/gravspace/abstractions/PageRoute.html" title="class in com.gravspace.abstractions"><span class="strong">PageRoute</span></a></li> </ul> </li> </ul> <h2 title="Interface Hierarchy">Interface Hierarchy</h2> <ul> <li type="circle">com.gravspace.abstractions.<a href="../../../com/gravspace/abstractions/ICalculation.html" title="interface in com.gravspace.abstractions"><span class="strong">ICalculation</span></a></li> <li type="circle">com.gravspace.abstractions.<a href="../../../com/gravspace/abstractions/IDataAccessor.html" title="interface in com.gravspace.abstractions"><span class="strong">IDataAccessor</span></a></li> <li type="circle">com.gravspace.abstractions.<a href="../../../com/gravspace/abstractions/IRenderer.html" title="interface in com.gravspace.abstractions"><span class="strong">IRenderer</span></a></li> <li type="circle">com.gravspace.abstractions.<a href="../../../com/gravspace/abstractions/ISession.html" title="interface in com.gravspace.abstractions"><span class="strong">ISession</span></a></li> <li type="circle">com.gravspace.abstractions.<a href="../../../com/gravspace/abstractions/ITask.html" title="interface in com.gravspace.abstractions"><span class="strong">ITask</span></a></li> <li type="circle">com.gravspace.abstractions.<a href="../../../com/gravspace/abstractions/IWidget.html" title="interface in com.gravspace.abstractions"><span class="strong">IWidget</span></a> <ul> <li type="circle">com.gravspace.abstractions.<a href="../../../com/gravspace/abstractions/IPage.html" title="interface in com.gravspace.abstractions"><span class="strong">IPage</span></a></li> </ul> </li> <li type="circle">com.gravspace.abstractions.<a href="../../../com/gravspace/abstractions/Widget.html" title="interface in com.gravspace.abstractions"><span class="strong">Widget</span></a></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>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../..//package-tree.html">Prev</a></li> <li><a href="../../../com/gravspace/annotations/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?com/gravspace/abstractions/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
play2-maven-plugin/1.0.0-alpha7/license.html
play2-maven-plugin/play2-maven-plugin.github.io
<!DOCTYPE html> <!-- | Generated by Apache Maven Doxia at 2014-06-01 | Rendered using Apache Maven Fluido Skin 1.3.1 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="Date-Revision-yyyymmdd" content="20140601" /> <meta http-equiv="Content-Language" content="en" /> <title>Play! 2.x - Project License</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.1.min.css" /> <link rel="stylesheet" href="./css/site.css" /> <link rel="stylesheet" href="./css/print.css" media="print" /> <script type="text/javascript" src="./js/apache-maven-fluido-1.3.1.min.js"></script> <link rel="stylesheet" type="text/css" href="./css/site.css"/> </head> <body class="topBarDisabled"> <div class="container-fluid"> <div id="banner"> <div class="pull-left"> <div id="bannerLeft"> <h2>Play! 2.x</h2> </div> </div> <div class="pull-right"> </div> <div class="clear"><hr/></div> </div> <div id="breadcrumbs"> <ul class="breadcrumb"> <li id="publishDate">Last Published: 2014-06-01 <span class="divider">|</span> </li> <li id="projectVersion">Version: 1.0.0-alpha7 </li> </ul> </div> <div class="row-fluid"> <div id="leftColumn" class="span3"> <div class="well sidebar-nav"> <ul class="nav nav-list"> <li class="nav-header">Modules</li> <li> <a href="play2-provider-api/index.html" title="Play! 2.x Provider API"> <i class="none"></i> Play! 2.x Provider API</a> </li> <li> <a href="play2-maven-plugin/index.html" title="Play! 2.x Maven Plugin"> <i class="none"></i> Play! 2.x Maven Plugin</a> </li> <li> <a href="play2-providers/index.html" title="Play! 2.x Providers"> <i class="none"></i> Play! 2.x Providers</a> </li> <li class="nav-header">Project Documentation</li> <li> <a href="project-info.html" title="Project Information"> <i class="icon-chevron-down"></i> Project Information</a> <ul class="nav nav-list"> <li> <a href="index.html" title="About"> <i class="none"></i> About</a> </li> <li> <a href="plugin-management.html" title="Plugin Management"> <i class="none"></i> Plugin Management</a> </li> <li> <a href="distribution-management.html" title="Distribution Management"> <i class="none"></i> Distribution Management</a> </li> <li> <a href="dependency-info.html" title="Dependency Information"> <i class="none"></i> Dependency Information</a> </li> <li> <a href="dependency-convergence.html" title="Dependency Convergence"> <i class="none"></i> Dependency Convergence</a> </li> <li> <a href="source-repository.html" title="Source Repository"> <i class="none"></i> Source Repository</a> </li> <li> <a href="mail-lists.html" title="Mailing Lists"> <i class="none"></i> Mailing Lists</a> </li> <li> <a href="issue-tracking.html" title="Issue Tracking"> <i class="none"></i> Issue Tracking</a> </li> <li> <a href="integration.html" title="Continuous Integration"> <i class="none"></i> Continuous Integration</a> </li> <li> <a href="plugins.html" title="Project Plugins"> <i class="none"></i> Project Plugins</a> </li> <li class="active"> <a href="#"><i class="none"></i>Project License</a> </li> <li> <a href="modules.html" title="Project Modules"> <i class="none"></i> Project Modules</a> </li> <li> <a href="team-list.html" title="Project Team"> <i class="none"></i> Project Team</a> </li> <li> <a href="project-summary.html" title="Project Summary"> <i class="none"></i> Project Summary</a> </li> <li> <a href="dependencies.html" title="Dependencies"> <i class="none"></i> Dependencies</a> </li> </ul> </li> </ul> <hr /> <div id="poweredBy"> <div class="clear"></div> <div class="clear"></div> <div class="clear"></div> <div class="clear"></div> <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> <img class="builtBy" alt="Built by Maven" src="./images/logos/maven-feather.png" /> </a> </div> </div> </div> <div id="bodyColumn" class="span9" > <div class="section"> <h2>Overview<a name="Overview"></a></h2><a name="Overview"></a> <p>Typically the licenses listed for the project are that of the project itself, and not of dependencies.</p></div> <div class="section"> <h2>Project License<a name="Project_License"></a></h2><a name="Project_License"></a> <div class="section"> <h3>The Apache Software License, Version 2.0<a name="The_Apache_Software_License_Version_2.0"></a></h3><a name="The_Apache_Software_License_Version_2.0"></a> <div class="source"> <pre> Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. &quot;License&quot; shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. &quot;Licensor&quot; shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. &quot;Legal Entity&quot; shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, &quot;control&quot; means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity exercising permissions granted by this License. &quot;Source&quot; form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. &quot;Object&quot; form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. &quot;Work&quot; shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). &quot;Derivative Works&quot; shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. &quot;Contribution&quot; shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, &quot;submitted&quot; means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as &quot;Not a Contribution.&quot; &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a &quot;NOTICE&quot; text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets &quot;[]&quot; replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same &quot;printed page&quot; as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. </pre></div></div></div> </div> </div> </div> <hr/> <footer> <div class="container-fluid"> <div class="row-fluid"> <p >Copyright &copy; 2013&#x2013;2014. All rights reserved. </p> </div> </div> </footer> </body> </html>
packages/hbase-0.98.7-hadoop2/docs/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationListener.html
gsoundar/mambo-ec2-deploy
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_67) on Wed Oct 08 15:57:24 PDT 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Interface org.apache.hadoop.hbase.replication.ReplicationListener (HBase 0.98.7-hadoop2 API)</title> <meta name="date" content="2014-10-08"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.apache.hadoop.hbase.replication.ReplicationListener (HBase 0.98.7-hadoop2 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationListener.html" title="interface in org.apache.hadoop.hbase.replication">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/hadoop/hbase/replication/class-use/ReplicationListener.html" target="_top">Frames</a></li> <li><a href="ReplicationListener.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.apache.hadoop.hbase.replication.ReplicationListener" class="title">Uses of Interface<br>org.apache.hadoop.hbase.replication.ReplicationListener</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationListener.html" title="interface in org.apache.hadoop.hbase.replication">ReplicationListener</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.hadoop.hbase.replication">org.apache.hadoop.hbase.replication</a></td> <td class="colLast"> <div class="block">Multi Cluster Replication</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.hadoop.hbase.replication.regionserver">org.apache.hadoop.hbase.replication.regionserver</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.hadoop.hbase.replication"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationListener.html" title="interface in org.apache.hadoop.hbase.replication">ReplicationListener</a> in <a href="../../../../../../org/apache/hadoop/hbase/replication/package-summary.html">org.apache.hadoop.hbase.replication</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/apache/hadoop/hbase/replication/package-summary.html">org.apache.hadoop.hbase.replication</a> with parameters of type <a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationListener.html" title="interface in org.apache.hadoop.hbase.replication">ReplicationListener</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">ReplicationTracker.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationTracker.html#registerListener(org.apache.hadoop.hbase.replication.ReplicationListener)">registerListener</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationListener.html" title="interface in org.apache.hadoop.hbase.replication">ReplicationListener</a>&nbsp;listener)</code> <div class="block">Register a replication listener to receive replication events.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">ReplicationTrackerZKImpl.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationTrackerZKImpl.html#registerListener(org.apache.hadoop.hbase.replication.ReplicationListener)">registerListener</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationListener.html" title="interface in org.apache.hadoop.hbase.replication">ReplicationListener</a>&nbsp;listener)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">ReplicationTracker.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationTracker.html#removeListener(org.apache.hadoop.hbase.replication.ReplicationListener)">removeListener</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationListener.html" title="interface in org.apache.hadoop.hbase.replication">ReplicationListener</a>&nbsp;listener)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">ReplicationTrackerZKImpl.</span><code><strong><a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationTrackerZKImpl.html#removeListener(org.apache.hadoop.hbase.replication.ReplicationListener)">removeListener</a></strong>(<a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationListener.html" title="interface in org.apache.hadoop.hbase.replication">ReplicationListener</a>&nbsp;listener)</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.hadoop.hbase.replication.regionserver"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationListener.html" title="interface in org.apache.hadoop.hbase.replication">ReplicationListener</a> in <a href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/package-summary.html">org.apache.hadoop.hbase.replication.regionserver</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/package-summary.html">org.apache.hadoop.hbase.replication.regionserver</a> that implement <a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationListener.html" title="interface in org.apache.hadoop.hbase.replication">ReplicationListener</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.html" title="class in org.apache.hadoop.hbase.replication.regionserver">ReplicationSourceManager</a></strong></code> <div class="block">This class is responsible to manage all the replication sources.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationListener.html" title="interface in org.apache.hadoop.hbase.replication">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/hadoop/hbase/replication/class-use/ReplicationListener.html" target="_top">Frames</a></li> <li><a href="ReplicationListener.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> </body> </html>
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_12_testAbaNumberCheck_25517_good_x6d.html
dcarda/aba.route.validator
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" /> <link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media="all"/> <link rel="stylesheet" href="../../../../../aui/css/aui-experimental.min.css" media="all"/> <!--[if IE 9]><link rel="stylesheet" href="../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]--> <style type="text/css" media="all"> @import url('../../../../../style.css'); @import url('../../../../../tree.css'); </style> <script src="../../../../../jquery-1.8.3.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script> <script src="../../../../../package-nodes-tree.js" type="text/javascript"></script> <script src="../../../../../clover-tree.js" type="text/javascript"></script> <script src="../../../../../clover.js" type="text/javascript"></script> <script src="../../../../../clover-descriptions.js" type="text/javascript"></script> <script src="../../../../../cloud.js" type="text/javascript"></script> <title>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title> </head> <body> <div id="page"> <header id="header" role="banner"> <nav class="aui-header aui-dropdown2-trigger-group" role="navigation"> <div class="aui-header-inner"> <div class="aui-header-primary"> <h1 id="logo" class="aui-header-logo aui-header-logo-clover"> <a href="http://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</span></a> </h1> </div> <div class="aui-header-secondary"> <ul class="aui-nav"> <li id="system-help-menu"> <a class="aui-nav-link" title="Open online documentation" target="_blank" href="http://openclover.org/documentation"> <span class="aui-icon aui-icon-small aui-iconfont-help">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <a href="http://cardatechnologies.com" target="_top"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </a> </div> <div class="aui-page-header-main" > <h1> <a href="http://cardatechnologies.com" target="_top"> ABA Route Transit Number Validator 1.0.1-SNAPSHOT </a> </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li> <li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li> <li><a href="test-Test_AbaRouteValidator_12.html">Class Test_AbaRouteValidator_12</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_25517_good </h1> <table class="aui"> <thead> <tr> <th>Test</th> <th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th> <th><label title="When the test execution was started">Start time</label></th> <th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th> <th><label title="A failure or error message if the test is not successful.">Message</label></th> </tr> </thead> <tbody> <tr> <td> <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_12.html?line=12472#src-12472" >testAbaNumberCheck_25517_good</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:41:13 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</div> <table class="aui aui-table-sortable"> <thead> <tr> <th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th> <th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_25517_good</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=42997#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a> </td> <td> <span class="sortValue">0.7352941</span>73.5% </td> <td class="align-middle" style="width: 100%" colspan="3"> <div> <div title="73.5% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:73.5%"></div></div></div> </td> </tr> </tbody> </table> </div> <!-- class="aui-page-panel-content-clover" --> <footer id="footer" role="contentinfo"> <section class="footer-body"> <ul> <li> Report generated by <a target="_new" href="http://openclover.org">OpenClover</a> v 4.4.1 on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT. </li> </ul> <ul> <li>OpenClover is free and open-source software. </li> </ul> </section> </footer> </section> <!-- class="aui-page-panel-content" --> </div> <!-- class="aui-page-panel-inner" --> </div> <!-- class="aui-page-panel" --> </div> <!-- id="page" --> </body> </html>
src/sap.m/test/sap/m/demokit/cart/webapp/test/integration/opaTestsWithGherkinAndComponent.qunit.html
cschuff/openui5
<!DOCTYPE html> <html> <head> <title>Opa tests for Shopping Cart written in Gherkin using a Component</title> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <meta charset="utf-8"> <script id="sap-ui-bootstrap" src="../../../../../../../../resources/sap-ui-core.js" data-sap-ui-bindingSyntax="complex" data-sap-ui-theme='sap_bluecrystal' data-sap-ui-language="en" data-sap-ui-libs='sap.m' data-sap-ui-animation="false" data-sap-ui-compatVersion="edge" data-sap-ui-resourceroots='{ "Arrangement": "./arrangement/component/Arrangement", "sap.ui.demo.cart" : "../../" }'> </script> <script src="../../../../../../../../resources/sap/ui/qunit/qunit-css.js"></script> <script src="../../../../../../../../resources/sap/ui/thirdparty/qunit.js"></script> <script src="../../../../../../../../resources/sap/ui/qunit/qunit-junit.js"></script> <script src="../../../../../../../../resources/sap/ui/qunit/qunit-coverage.js"></script> <script> // we want to be able to load our tests asynchronously - pause QUnit until we loaded everything QUnit.config.autostart = false; sap.ui.require([ "sap/ui/demo/cart/localService/mockserver", "sap/ui/test/gherkin/opa5TestHarness", "sap/ui/demo/cart/test/integration/StepsComponent", "sap/ui/demo/cart/test/integration/configureOpa" ], function (mockserver, testHarness, Steps) { "use strict"; mockserver.init(); testHarness.test({featurePath: "sap/ui/demo/cart/test/integration/DeleteProduct", generateMissingSteps : true}); testHarness.test({ featurePath: "sap/ui/demo/cart/test/integration/BuyProduct", generateMissingSteps : true, steps: Steps }); testHarness.test({featurePath: "sap/ui/demo/cart/test/integration/SaveForLater", generateMissingSteps : true}); testHarness.test({featurePath: "sap/ui/demo/cart/test/integration/ProductsFilter", generateMissingSteps : true}); QUnit.start(); }); </script> </head> <body> <div id="qunit"></div> <div id="qunit-fixture"></div> </body> </html>
core/src/test/resources/com/squarespace/template/plugins/f-get-1.html
Squarespace/template-compiler
:JSON { "items": [ { "id": "123" }, { "id": "456" } ], "one": { "two": { "123": { "name": "Bob" }, "456": { "name": "Fred" } } } } :TEMPLATE {.repeated section items} {.var @obj one.two|get @.id}{@obj.name} {.end} :OUTPUT Bob Fred
zstackbuild/pypi_source/pypi/simple/netaddr/index.html
ghxandsky/zstack-utility
<a href='netaddr-0.7.14.tar.gz'>netaddr-0.7.14.tar.gz</a><br />
pdf2html/share/base.css
veenfang/Xshare
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */ /* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* Demo CSS for pdf2htmlEX */ /* Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> */ /* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */ #pdf-outline { /* PDF Outline */ position:absolute; top:0; left:0; bottom:0; width:193px; overflow:auto; margin:0px; padding:0 0 0 7px; background-color:#707070; display:none; } #pdf-outline ul { margin-left:13px; margin-right:3px; padding-left:3px; } #pdf-outline li { list-style-type:disc; list-style-position:outside; } #pdf-outline a { font-size:13px; color:#e8e8e8; } #pdf-outline a:visited { color:#e8e8e8; } #pdf-outline a:hover{ color:#e8e8e8; } #pdf-outline a:active{ color:#e8e8e8; } #pdf-main { /* PDF container */ position:absolute; top:0; left:0px; margin:0; padding:0; border-width:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */ } @media screen { /* for sidebar */ #pdf-outline.opened { display:block; } #pdf-outline.opened + #pdf-main { left:200px; } #pdf-main { /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test) * alternatively you may set width and height */ bottom:0; right:0; overflow:auto; background-color:#808080; } } @media print { @page { margin:0; } html { margin:0; } body { margin:0; -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */ } #pdf-main { width:auto; height:auto; overflow:visible; background-color:transparent; } .d { display:none; } } /* Part 2: Page Elements: Modify with caution * The followings are base classes, which are meant to be override by PDF specific classes * So do not increase the specificity (e.g. ".classname" -> "#pdf-main .classname") */ .pd { /* page decoration */ position:relative; margin: 13px auto; border-width: 0; box-shadow: 1px 1px 3px 1px #333; overflow: hidden; } .pf { /* page */ position:absolute; top:0; left:0; width:100%; height:100%; background-color:white; overflow: hidden; margin:0; border-width:0; /* required by pdf2htmlEX.js for page visibility test */ } .pc { /* content of a page */ position:absolute; border-width:0; top:0; left:0; width:100%; height:100%; overflow:hidden; display:block; transform-origin:0% 0%; -ms-transform-origin:0% 0%; -moz-transform-origin:0% 0%; -webkit-transform-origin:0% 0%; -o-transform-origin:0% 0%; } .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */ display:block; } .bi { position:absolute; left:0; top:0; width:100%; height:100%; -ms-user-select:none; -moz-user-select:none; -webkit-user-select:none; user-select:none; } @media print { .pd { margin:0; box-shadow:none; page-break-after:always; page-break-inside:avoid; } @-moz-document url-prefix() { /* fix page truncation for FireFox */ .pd { overflow:visible; border:1px solid #FFFFFF; } .pf {overflow:visible;} .pc {overflow:visible;} } } .t { /* text line */ position:absolute; white-space:pre; font-size:1px; transform-origin:0% 100%; -ms-transform-origin:0% 100%; -moz-transform-origin:0% 100%; -webkit-transform-origin:0% 100%; -o-transform-origin:0% 100%; } span { /* text blocks within a line */ position:relative; vertical-align: baseline; /* _<id> for spaces may need display:inline, which will override this */ display:inline-block; } ._ { /* text shift */ color:transparent; z-index:-1; } /* selection background should not be opaque, for fallback mode */ ::selection{ background: rgba(127,255,255,0.4); } ::-moz-selection{ background: rgba(127,255,255,0.4); } .pi { /* info for Javascript */ display:none; } .t { /* annotation links */ } /* transparent color - WebKit */ .d { /* css drawing */ position:absolute; transform-origin:0% 100%; -ms-transform-origin:0% 100%; -moz-transform-origin:0% 100%; -webkit-transform-origin:0% 100%; -o-transform-origin:0% 100%; } /* Base CSS END */
docs/typenum/consts/U264.t.html
nitro-devs/nitro-game-engine
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="refresh" content="0;URL=type.U264.html"> </head> <body> <p>Redirecting to <a href="type.U264.html">type.U264.html</a>...</p> <script>location.replace("type.U264.html" + location.search + location.hash);</script> </body> </html>
docs/apidocs/org/apache/hadoop/hbase/rest/protobuf/generated/class-use/ColumnSchemaMessage.ColumnSchema.Builder.html
zqxjjj/NobidaBase
<!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 Mon Jun 24 22:25:09 UTC 2013 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema.Builder (HBase 0.94.9 API) </TITLE> <META NAME="date" CONTENT="2013-06-24"> <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.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema.Builder (HBase 0.94.9 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../../index.html?org/apache/hadoop/hbase/rest/protobuf/generated//class-useColumnSchemaMessage.ColumnSchema.Builder.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ColumnSchemaMessage.ColumnSchema.Builder.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema.Builder</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.hbase.rest.protobuf.generated"><B>org.apache.hadoop.hbase.rest.protobuf.generated</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.hbase.rest.protobuf.generated"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A> in <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.rest.protobuf.generated</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.rest.protobuf.generated</A> that return <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#addAllAttrs(java.lang.Iterable)">addAllAttrs</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang">Iterable</A>&lt;? extends <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Attribute.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Attribute</A>&gt;&nbsp;values)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#addAttrs(org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema.Attribute.Builder)">addAttrs</A></B>(<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Attribute.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Attribute.Builder</A>&nbsp;builderForValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#addAttrs(org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema.Attribute)">addAttrs</A></B>(<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Attribute.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Attribute</A>&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#addAttrs(int, org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema.Attribute.Builder)">addAttrs</A></B>(int&nbsp;index, <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Attribute.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Attribute.Builder</A>&nbsp;builderForValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#addAttrs(int, org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema.Attribute)">addAttrs</A></B>(int&nbsp;index, <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Attribute.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Attribute</A>&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>TableSchemaMessage.TableSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/TableSchemaMessage.TableSchema.Builder.html#addColumnsBuilder()">addColumnsBuilder</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>TableSchemaMessage.TableSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/TableSchemaMessage.TableSchema.Builder.html#addColumnsBuilder(int)">addColumnsBuilder</A></B>(int&nbsp;index)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#clear()">clear</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#clearAttrs()">clearAttrs</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#clearCompression()">clearCompression</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#clearMaxVersions()">clearMaxVersions</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#clearName()">clearName</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#clearTtl()">clearTtl</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#clone()">clone</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>TableSchemaMessage.TableSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/TableSchemaMessage.TableSchema.Builder.html#getColumnsBuilder(int)">getColumnsBuilder</A></B>(int&nbsp;index)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#mergeFrom(com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite)">mergeFrom</A></B>(com.google.protobuf.CodedInputStream&nbsp;input, com.google.protobuf.ExtensionRegistryLite&nbsp;extensionRegistry)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#mergeFrom(org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema)">mergeFrom</A></B>(<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema</A>&nbsp;other)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#mergeFrom(com.google.protobuf.Message)">mergeFrom</A></B>(com.google.protobuf.Message&nbsp;other)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.html#newBuilder()">newBuilder</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.html#newBuilder(org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema)">newBuilder</A></B>(<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema</A>&nbsp;prototype)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.html#newBuilderForType()">newBuilderForType</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.html#newBuilderForType(com.google.protobuf.GeneratedMessage.BuilderParent)">newBuilderForType</A></B>(com.google.protobuf.GeneratedMessage.BuilderParent&nbsp;parent)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#removeAttrs(int)">removeAttrs</A></B>(int&nbsp;index)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#setAttrs(int, org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema.Attribute.Builder)">setAttrs</A></B>(int&nbsp;index, <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Attribute.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Attribute.Builder</A>&nbsp;builderForValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#setAttrs(int, org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema.Attribute)">setAttrs</A></B>(int&nbsp;index, <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Attribute.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Attribute</A>&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#setCompression(java.lang.String)">setCompression</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#setMaxVersions(int)">setMaxVersions</A></B>(int&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#setName(java.lang.String)">setName</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html#setTtl(int)">setTtl</A></B>(int&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>ColumnSchemaMessage.ColumnSchema.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.html#toBuilder()">toBuilder</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.rest.protobuf.generated</A> that return types with arguments of type <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A>&gt;</CODE></FONT></TD> <TD><CODE><B>TableSchemaMessage.TableSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/TableSchemaMessage.TableSchema.Builder.html#getColumnsBuilderList()">getColumnsBuilderList</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.rest.protobuf.generated</A> with parameters of type <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/TableSchemaMessage.TableSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">TableSchemaMessage.TableSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>TableSchemaMessage.TableSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/TableSchemaMessage.TableSchema.Builder.html#addColumns(org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema.Builder)">addColumns</A></B>(<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A>&nbsp;builderForValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/TableSchemaMessage.TableSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">TableSchemaMessage.TableSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>TableSchemaMessage.TableSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/TableSchemaMessage.TableSchema.Builder.html#addColumns(int, org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema.Builder)">addColumns</A></B>(int&nbsp;index, <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A>&nbsp;builderForValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/TableSchemaMessage.TableSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">TableSchemaMessage.TableSchema.Builder</A></CODE></FONT></TD> <TD><CODE><B>TableSchemaMessage.TableSchema.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/TableSchemaMessage.TableSchema.Builder.html#setColumns(int, org.apache.hadoop.hbase.rest.protobuf.generated.ColumnSchemaMessage.ColumnSchema.Builder)">setColumns</A></B>(int&nbsp;index, <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">ColumnSchemaMessage.ColumnSchema.Builder</A>&nbsp;builderForValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/ColumnSchemaMessage.ColumnSchema.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../../index.html?org/apache/hadoop/hbase/rest/protobuf/generated//class-useColumnSchemaMessage.ColumnSchema.Builder.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ColumnSchemaMessage.ColumnSchema.Builder.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2013 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved. </BODY> </HTML>
page/java.html
guozhaoqing/guozhaoqing.github.io
<<!DOCTYPE html> <html> <head> <title></title> </head> <body> java </body> </html>
Admin/Tpl/Menu/module_list.html
lz1988/ddglass
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>栏目设置</title> <meta name="author" content="OEdev"> <script src="__ROOT__/Public/Admin/js/jquery-1.6.js"></script> <script src="__ROOT__/Public/Admin/js/public.js"></script> <link type="text/css" rel="stylesheet" href="__ROOT__/Public/Admin/css/admin.css"> <style type="text/css"> #show { } </style> </head> <body> <div class="main-wrap"> <div class="path"><p>{$cur_menu} > {$res.menu_title}</p></div> <div class="main-cont"> <h3 class="title"> <a href="{:U('Menu/add')}/module_id/{$request.pid}" class="btn-general" {$add}><span>添加模块</span></a> <if condition="$res.level eq 0"> 一级模块 <elseif condition="$res.level eq 1"/> 二级模块 <else/> 操作方法 </if> </h3> <div class="search-area "> <form id="" name="formfind" action="" method="GET"> <input type="hidden" name="pid" value="{$request.pid}"/> <div class="item"> <label>模块名:</label> <input type="text" size="14" class="input-150" name="menu_title" value="{$request.menu_title}" id="phone"/> <label>状态:</label> <select name="status"> <option value="3">全部</option> <option value="1" <if condition="$request.status eq 1 ">selected</if> >正常</option> <option value="0" <if condition="$request.status eq 0 ">selected</if> >冻结</option> </select> <input class="button_s" type="submit" name="findsub" value="搜 索"> <input class="button_s" type="button" name="findsub" value="显示所有" onclick="document.location='{:U('Menu/index')}'"> </div> </form> </div> <form action="" method="POST" name="orgtype"/> <table width="100%" border="0" cellpadding="0" cellspacing="0" class="table" align="center"> <thead class="tb-tit-bg"> <tr> <th width="4%"> <div class="th-gap">ID</div> </th> <th width="20%"> <div class="th-gap">模块标题</div> </th> <th width="40%"> <div class="th-gap">备注</div> </th> <th width="10%"> <div class="th-gap">状态</div> </th> <th width="10%"> <div class="th-gap">是否折叠</div> </th> <th width="20%"> <div class="th-gap">操作</div> </th> </tr> </thead> <tfoot class="tb-foot-bg"></tfoot> <tbody id="tableClass"> <foreach name="list" item="name"> <tr onmouseover="overColor(this)" onmouseout="outColor(this)"> <td align="left" class="hback"> <input type="checkbox" <?php if(in_array($name['menu_id'],$notdel) OR $notdel=='ALL'){echo "disabled";} ?> value="{$name.menu_id}" name="menu_id[]">{$name.menu_id} </td> <td class="hback"> {$name.menu_title} </td> <td class="hback"> {$name.remark} </td> <td align="center"> <if condition="($name['status'] eq '1')"> <img id="flag8" alt="开启" src="__ROOT__/Public/Admin/images/yes.gif" onclick="javascript:fetch_ajax('close',{$name.menu_id});" style="cursor:pointer;"> <else/> <img id="flag8" alt="关闭" src="__ROOT__/Public/Admin/images/no.gif" onclick="javascript:fetch_ajax('open',{$name.menu_id});" style="cursor:pointer;"> </if> </td> <td align="center"> <if condition="($name['iscollapse'] eq '1')"> <img id="flag8" alt="收起" src="__ROOT__/Public/Admin/images/yes.gif" onclick="javascript:fetch_ajaxs('close',{$name.menu_id});" style="cursor:pointer;"> <else/> <img id="flag8" alt="展开" src="__ROOT__/Public/Admin/images/no.gif" onclick="javascript:fetch_ajaxs('open',{$name.menu_id});" style="cursor:pointer;"> </if> </td> <td align="center" class="hback"> <!-- 添加子栏目 --> <if condition="$res.level neq 2"> <a href="{:U('Menu/module_list')}/pid/{$name.menu_id}" class="icon-edit">所属分类</a> &nbsp; </if> <a href="{:U('Menu/edit')}/id/{$name.menu_id}" class="icon-edit" {$edit}>编辑</a> &nbsp; <a {$del} href="{:U('Menu/del')}/menu_id/{$name.menu_id}" onclick="{if(confirm(&#39;确定要删除吗?一旦删除无法恢复!&#39;)){return true;} return false;}" class="icon-del" <?php if(in_array($name['menu_id'],$notdel) OR $notdel=='ALL'){echo "style='display:none;'";} ?> >删除</a> </td> </tr> </foreach> <tr> <td align="center" colspan="" class="hback"><input type="checkbox" name="del_idall" onclick="check_all('menu_id');" value=""/>选择 </td> <td align="left" colspan="7" class="hback"><input {$del} type="button" class="button" value="删除" onclick="check_from('删除','__APP__/Menu/del/')" name="delall" id="delall"/> </td> </tr> </tbody> </table> </form> <table width="95%" border="0" cellspacing="0" cellpadding="0" align="center" style="margin-top:10px;"> <tbody> <tr> <td align="center" class="page">{$page}</td> </tr> </tbody> </table> </div> </div> <!-- 以下为子栏目操作页面 --> <script type="text/javascript"> //一级列表栏目 // $("#tableClass tr").hover(function (){ // alert(44); // // });$("Element".attr(key,value)") //alert($("Element".attr(href,add)")).text()); function fetch_ajax(status,cid){ $.get("__URL__/set_status",{cid:cid,status:status},function (data) { //alert(data); if (data == "1") { window.location.reload(); } else { alert("失败!"); } }); } function fetch_ajaxs(status,cid){ $.get("__URL__/set_iscollapse",{cid:cid,status:status},function (data) { //alert(data); if (data == "1") { window.location.reload(); } else { alert("失败!"); } }); } </script> </body> </html>